diff --git a/CMakeLists.txt b/CMakeLists.txt index db127bac2f2..79a68c1a339 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -133,6 +133,7 @@ include(cmake/CompilerFlags.cmake) INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/src ) INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party ) +INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/btwxt/src ) INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/re2 ) INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/doj ) INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/nlohmann ) @@ -161,14 +162,16 @@ set(RE2_BUILD_TESTING OFF CACHE BOOL "" FORCE) if( BUILD_TESTING ) set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) set(BUILD_GTEST ON CACHE BOOL "" FORCE) - set(BUILD_GMOCK OFF CACHE BOOL "" FORCE) + set(BUILD_GMOCK ON CACHE BOOL "" FORCE) option( TEST_ANNUAL_SIMULATION "Use annual simulations for tests instead of only design days" OFF ) enable_testing() include(CTest) + ADD_SUBDIRECTORY(third_party/gtest) endif() # E+ required libraries ADD_SUBDIRECTORY(idd) + ADD_SUBDIRECTORY(third_party/SQLite) ADD_SUBDIRECTORY(third_party/ObjexxFCL) ADD_SUBDIRECTORY(third_party/BCVTB) @@ -177,14 +180,17 @@ ADD_SUBDIRECTORY(third_party/FMI) ADD_SUBDIRECTORY(third_party/zlib) ADD_SUBDIRECTORY(third_party/DElight) ADD_SUBDIRECTORY(third_party/re2) + ADD_SUBDIRECTORY(scripts/dev/generate_embeddable_epJSON_schema) IF( NOT APPLE ) ADD_SUBDIRECTORY(third_party/FMUParser) ENDIF() ADD_SUBDIRECTORY(third_party/Windows-CalcEngine) -if( BUILD_TESTING ) - ADD_SUBDIRECTORY(third_party/gtest) -endif() + +# Btwxt +INCLUDE_DIRECTORIES( ${gtest_SOURCE_DIR}/include/ SYSTEM ) +set(BUILD_BTWXT_TESTING ${BUILD_TESTING} CACHE BOOL "" FORCE) +ADD_SUBDIRECTORY(third_party/btwxt) # Kiva INCLUDE(third_party/cmake/kiva.cmake) @@ -243,23 +249,7 @@ if( BUILD_FORTRAN ) endif() if( BUILD_PACKAGE ) - set(CPACK_INSTALL_CMAKE_PROJECTS - "${CMAKE_BINARY_DIR};EnergyPlus;ALL;/" - ) - - if( BUILD_FORTRAN ) - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/ExpandObjects/;ExpandObjects;ALL;/") - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/ReadVars/;ReadVars;ALL;/") - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/Transition/;Transition;ALL;/") - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/Basement/;Basement;ALL;/") - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/HVAC-Diagram/;HVAC-Diagram;ALL;/") - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/ParametricPreprocessor/;ParametricPreprocessor;ALL;/") - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/Slab/;Slab;ALL;/") - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/ConvertESOMTR/;ConvertESOMTR;ALL;/") - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/CalcSoilSurfTemp/;CalcSoilSurfTemp;ALL;/") - list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/AppGPostProcess/;AppGPostProcess;ALL;/") - endif() - + # We handle everything in a dedicated cmake file include(cmake/Install.cmake) endif() diff --git a/cmake/Install.cmake b/cmake/Install.cmake index 9057c9558a7..1d8a0c55762 100644 --- a/cmake/Install.cmake +++ b/cmake/Install.cmake @@ -1,6 +1,123 @@ +###################################################################################################################################################### +# D E F A U L T G E N E R A T O R S # +###################################################################################################################################################### + + +# Default the Binary generators: problem is that none of the CPACK_BINARY_ will show up in CMakeCache, +# which makes it less clear what will happen in terms of package generation +#if(WIN32) + #set(CPACK_GENERATOR "IFW;ZIP") +#elseif(APPLE) + #set(CPACK_GENERATOR "IFW;TGZ") +#elseif(UNIX) + #set(CPACK_GENERATOR "STGZ;TGZ") +#endif() + + + +# So instead, let's cache the default value we want for the individual options for CPACK_BINARY_ +if (UNIX) + + # Set everything to off for now + set(CPACK_BINARY_DEB OFF CACHE BOOL "Recommended OFF") + set(CPACK_BINARY_FREEBSD OFF CACHE BOOL "Recommended OFF") + set(CPACK_BINARY_RPM OFF CACHE BOOL "Recommended OFF") + set(CPACK_BINARY_TBZ2 OFF CACHE BOOL "Recommended OFF") + set(CPACK_BINARY_NSIS OFF CACHE BOOL "Recommended OFF") + + if(APPLE) + set(CPACK_BINARY_IFW ON CACHE BOOL "Enable to build IFW package, which is the recommended method") + set(CPACK_BINARY_STGZ OFF CACHE BOOL "Recommended OFF") + + # Mac Specific options to turn off + set(CPACK_BINARY_BUNDLE OFF CACHE BOOL "Recommended OFF") + set(CPACK_BINARY_DRAGNDROP OFF CACHE BOOL "Recommended OFF") + set(CPACK_BINARY_OSXX11 OFF CACHE BOOL "Recommended OFF") + set(CPACK_BINARY_PACKAGEMAKER OFF CACHE BOOL "This was the legacy method on Apple, superseded by IFW.") + set(CPACK_BINRARY_PRODUCTBUILD OFF CACHE BOOL "Recommended OFF") + + else() + set(CPACK_BINARY_IFW OFF CACHE BOOL "This should be off") + set(CPACK_BINARY_STGZ ON CACHE BOOL "Enable to build a Linux sh installer script, which is the recommended method") # Uses STGZ currently (install .sh script CACHE BOOL) + + # Unix (non Apple CACHE BOOL) specific option to turn off + set(CPACK_BINARY_TZ OFF CACHE BOOL "Recommended OFF") + endif() + # Tar.gz for inclusion in other programs for eg + set(CPACK_BINARY_TGZ ON CACHE BOOL "Enable to build a tar.gz package, recommended for an official release") + + +elseif(WIN32) + set(CPACK_BINARY_IFW ON CACHE BOOL "Enable to build IFW package, which is the recommend method") + set(CPACK_BINARY_ZIP ON CACHE BOOL "Enable to build a ZIP package, recommended for an official release") + + set(CPACK_BINARY_NSIS OFF CACHE BOOL "This was the legacy method on Windows, superseded by IFW") + set(CPACK_BINARY_7Z OFF CACHE BOOL "Recommended OFF") + set(CPACK_BINARY_NUGET OFF CACHE BOOL "Recommended OFF") + set(CPACK_BINARY_WIX OFF CACHE BOOL "Recommended OFF") + + + # TODO: the "FORCE" is temporary to avoid people having an existing build directory build IFW, remove after next release + # We want to force update the cache to avoid user suddenly getting build errors + if(CPACK_BINARY_NSIS) + set(CPACK_BINARY_NSIS OFF CACHE BOOL "This was the legacy method on Windows, superseded by IFW" FORCE) + set(CPACK_BINARY_IFW ON CACHE BOOL "Enable to build IFW package, which is the recommend method" FORCE) + message("Switching from NSIS to IFW as the supported generator has changed on Windows") + endif() + +endif() + + +# Turn off source generators +# Need a list, which can't be empty, but not have sensible defined value. So a list of two empty element works as +# a workaround +# list(CPACK_SOURCE_GENERATOR ";") + +# Instead use indiv CPACK_SOURCE_: all to OFF +if (UNIX) + + set(CPACK_SOURCE_RPM OFF CACHE BOOL "Recommended OFF") + set(CPACK_SOURCE_TBZ2 OFF CACHE BOOL "Recommended OFF") + set(CPACK_SOURCE_TGZ OFF CACHE BOOL "Recommended OFF") + set(CPACK_SOURCE_TXZ OFF CACHE BOOL "Recommended OFF") + set(CPACK_SOURCE_TZ OFF CACHE BOOL "Recommended OFF") + set(CPACK_SOURCE_ZIP OFF CACHE BOOL "Recommended OFF") + +elseif(WIN32) + + set(CPACK_SOURCE_7Z OFF CACHE BOOL "Recommended OFF") + set(CPACK_SOURCE_ZIP OFF CACHE BOOL "Recommended OFF") +endif() + + +###################################################################################################################################################### +# B A S E I N S T A L L & P R O J E C T I N F O # +###################################################################################################################################################### + +# Base install +set(CPACK_INSTALL_CMAKE_PROJECTS + "${CMAKE_BINARY_DIR};EnergyPlus;ALL;/" +) + +if( BUILD_FORTRAN ) + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/ExpandObjects/;ExpandObjects;ALL;/") + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/ReadVars/;ReadVars;ALL;/") + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/Transition/;Transition;ALL;/") + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/Basement/;Basement;ALL;/") + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/HVAC-Diagram/;HVAC-Diagram;ALL;/") + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/ParametricPreprocessor/;ParametricPreprocessor;ALL;/") + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/Slab/;Slab;ALL;/") + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/ConvertESOMTR/;ConvertESOMTR;ALL;/") + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/CalcSoilSurfTemp/;CalcSoilSurfTemp;ALL;/") + list(APPEND CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR}/src/AppGPostProcess/;AppGPostProcess;ALL;/") +endif() + set(CPACK_PACKAGE_VENDOR "US Department of Energy" ) +set(CPACK_IFW_PACKAGE_PUBLISHER "${CPACK_PACKAGE_VENDOR}") + set(CPACK_PACKAGE_CONTACT "Edwin Lee ") -set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "EnergyPlus is a whole building energy simulation program that engineers, architects, and researchers use to model both energy consumption and water use in buildings.") +set(CPACK_PACKAGE_DESCRIPTION "EnergyPlus is a whole building energy simulation program that engineers, architects, and researchers use to model both energy consumption and water use in buildings.") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "EnergyPlus is a whole building energy simulation program.") list(APPEND CMAKE_MODULE_PATH "${CMAKE_BINARY_DIR}/Modules") @@ -12,6 +129,8 @@ set(CPACK_PACKAGE_VERSION_BUILD "${CMAKE_VERSION_BUILD}" ) set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}-${CPACK_PACKAGE_VERSION_BUILD}") # Default the debian package name to include version to allow several versions to be installed concurrently instead of overwriting any existing one # set(CPACK_DEBIAN_PACKAGE_NAME "energyplus-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") + +set(CPACK_IFW_PRODUCT_URL "https://www.energyplus.net") # set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://www.energyplus.net") include(cmake/TargetArch.cmake) @@ -34,15 +153,19 @@ if( WIN32 AND NOT UNIX ) endif() endif() -install(FILES "${CMAKE_SOURCE_DIR}/LICENSE.txt" DESTINATION "./") +install(FILES "${CMAKE_SOURCE_DIR}/LICENSE.txt" DESTINATION "./" COMPONENT Licenses) set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/LICENSE.txt") install( FILES "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Energy+.idd" DESTINATION ./ ) install( FILES "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Energy+.schema.epJSON" DESTINATION ./ ) + +################################################################# A U T O D O C S ################################################################## + # Some docs are generated on the fly here, create a dir for the 'built' files set( DOCS_OUT "${CMAKE_BINARY_DIR}/autodocs" ) -install(CODE "execute_process(COMMAND \"${CMAKE_COMMAND}\" -E make_directory \"${DOCS_OUT}\")") +# This is NOT an install command, we actually want it to be performed so we can generate the package, so do it at build system generation +file(MAKE_DIRECTORY ${DOCS_OUT}) # the output variables listing install(CODE "execute_process(COMMAND \"${PYTHON_EXECUTABLE}\" \"${CMAKE_SOURCE_DIR}/doc/tools/parse_output_variables.py\" \"${CMAKE_SOURCE_DIR}/src/EnergyPlus\" \"${DOCS_OUT}/SetupOutputVariables.csv\" \"${DOCS_OUT}/SetupOutputVariables.md\")") @@ -69,6 +192,10 @@ else() message(WARNING "No GITHUB_TOKEN found in environment; package won't include the change log") endif() + +################################################################# D A T A S E T S ################################################################## + + # Install files that are in the current repo INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/AirCooledChiller.idf" DESTINATION "./DataSets" COMPONENT Datasets) INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/ASHRAE_2005_HOF_Materials.idf" DESTINATION "./DataSets" COMPONENT Datasets) @@ -92,6 +219,7 @@ INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/LCCusePriceEscalationDataSet2015.idf INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/LCCusePriceEscalationDataSet2016.idf" DESTINATION "./DataSets" COMPONENT Datasets) INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/LCCusePriceEscalationDataSet2017.idf" DESTINATION "./DataSets" COMPONENT Datasets) INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/LCCusePriceEscalationDataSet2018.idf" DESTINATION "./DataSets" COMPONENT Datasets) +INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/LCCusePriceEscalationDataSet2019.idf" DESTINATION "./DataSets" COMPONENT Datasets) INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/MoistureMaterials.idf" DESTINATION "./DataSets" COMPONENT Datasets) INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/PerfCurves.idf" DESTINATION "./DataSets" COMPONENT Datasets) INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/PrecipitationSchedulesUSA.idf" DESTINATION "./DataSets" COMPONENT Datasets) @@ -122,6 +250,9 @@ INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/Macro/SandiaPVdata.imf" DESTINATION INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/Macro/SolarCollectors.imf" DESTINATION "./MacroDataSets" COMPONENT Datasets) INSTALL(FILES "${CMAKE_SOURCE_DIR}/datasets/Macro/UtilityTariffObjects.imf" DESTINATION "./MacroDataSets" COMPONENT Datasets) + +############################################################# W E A T H E R D A T A ############################################################# + # weather files INSTALL(FILES "${CMAKE_SOURCE_DIR}/weather/USA_CA_San.Francisco.Intl.AP.724940_TMY3.ddy" DESTINATION "./WeatherData" COMPONENT WeatherData) INSTALL(FILES "${CMAKE_SOURCE_DIR}/weather/USA_CA_San.Francisco.Intl.AP.724940_TMY3.epw" DESTINATION "./WeatherData" COMPONENT WeatherData) @@ -139,6 +270,9 @@ INSTALL(FILES "${CMAKE_SOURCE_DIR}/weather/USA_VA_Sterling-Washington.Dulles.Int INSTALL(FILES "${CMAKE_SOURCE_DIR}/weather/USA_VA_Sterling-Washington.Dulles.Intl.AP.724030_TMY3.epw" DESTINATION "./WeatherData" COMPONENT WeatherData) INSTALL(FILES "${CMAKE_SOURCE_DIR}/weather/USA_VA_Sterling-Washington.Dulles.Intl.AP.724030_TMY3.stat" DESTINATION "./WeatherData" COMPONENT WeatherData) + +############################################################# E X A M P L E F I L E S ######################################################### + INSTALL( DIRECTORY testfiles/ DESTINATION ExampleFiles/ COMPONENT ExampleFiles PATTERN _* EXCLUDE @@ -147,12 +281,17 @@ INSTALL( DIRECTORY testfiles/ DESTINATION ExampleFiles/ PATTERN performance EXCLUDE ) + +############################################################# M I S C E L L A N E O U S ########################################################## + # TODO Remove version from file name or generate # These files names are stored in variables because they also appear as start menu shortcuts later. set( RULES_XLS Rules9-1-0-to-9-2-0.md ) install(FILES "${CMAKE_SOURCE_DIR}/release/Bugreprt.txt" DESTINATION "./") install(FILES "${CMAKE_SOURCE_DIR}/release/ep.gif" DESTINATION "./") install(FILES "${CMAKE_SOURCE_DIR}/release/readme.html" DESTINATION "./") +set(CPACK_RESOURCE_FILE_README "${CMAKE_SOURCE_DIR}/release/readme.html") + install(FILES "${CMAKE_SOURCE_DIR}/bin/CurveFitTools/IceStorageCurveFitTool.xlsm" DESTINATION "PreProcess/HVACCurveFitTool/") install(FILES "${CMAKE_SOURCE_DIR}/idd/V9-1-0-Energy+.idd" DESTINATION "PreProcess/IDFVersionUpdater/") install(FILES "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Energy+.idd" DESTINATION "PreProcess/IDFVersionUpdater/" RENAME "V9-2-0-Energy+.idd" ) @@ -165,6 +304,11 @@ install(FILES "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/workflows/coeff_conv.py" DESTIN install(FILES "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/workflows/energyplus.py" DESTINATION "workflows/") # COMPONENT Workflows) install(FILES "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/workflows/transition.py" DESTINATION "workflows/") # COMPONENT Workflows) + +###################################################################################################################################################### +# P L A T F O R M S P E C I F I C # +###################################################################################################################################################### + if( WIN32 ) # calcsoilsurftemp is now built from source, just need to install the batch run script INSTALL(FILES "${CMAKE_SOURCE_DIR}/src/CalcSoilSurfTemp/RunCalcSoilSurfTemp.bat" DESTINATION "PreProcess/CalcSoilSurfTemp/") @@ -238,18 +382,29 @@ if( WIN32 ) INSTALL(FILES "${CMAKE_SOURCE_DIR}/bin/IDFVersionUpdater/Run-Win/IDFVersionUpdater Libs/Shell.dll" DESTINATION "PreProcess/IDFVersionUpdater/IDFVersionUpdater Libs/") INSTALL(FILES "${CMAKE_SOURCE_DIR}/bin/IDFVersionUpdater/Run-Win/IDFVersionUpdater.exe" DESTINATION "PreProcess/IDFVersionUpdater/") INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/EPMacro/Windows/EPMacro.exe" DESTINATION "./") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/ComDlg32.OCX" DESTINATION "./temp/") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Dforrt.dll" DESTINATION "./temp/") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Graph32.ocx" DESTINATION "./temp/") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Gsw32.exe" DESTINATION "./temp/") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Gswdll32.dll" DESTINATION "./temp/") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/MSCOMCTL.OCX" DESTINATION "./temp/") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Msflxgrd.ocx" DESTINATION "./temp/") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/MSINET.OCX" DESTINATION "./temp/") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Msvcrtd.dll" DESTINATION "./temp/") - INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Vsflex7L.ocx" DESTINATION "./temp/") + + # This copies system DLLs into a temp folder. It is later used by the install script of this specific component + # to check if the dll isn't present on the target system, in which case it will copy it to the system folder (eg: C:\Windows\SysWOW64\) + # and use the regsvr32.exe to register said DLL. + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/ComDlg32.OCX" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Dforrt.dll" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Graph32.ocx" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Gsw32.exe" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Gswdll32.dll" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/MSCOMCTL.OCX" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Msflxgrd.ocx" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/MSINET.OCX" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Msvcrtd.dll" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) + INSTALL(PROGRAMS "${CMAKE_SOURCE_DIR}/bin/System/Vsflex7L.ocx" DESTINATION "./temp/" COMPONENT CopyAndRegisterSystemDLLs) endif() +# The group, which will be used to configure the root package +# set(CPACK_IFW_PACKAGE_GROUP "EnergyPlus") +#set(CPACK_IFW_PACKAGE_WIZARD_DEFAULT_WIDTH 640) +#set(CPACK_IFW_PACKAGE_WIZARD_DEFAULT_HEIGHT 480) +set(CPACK_IFW_PACKAGE_WINDOW_ICON "${CMAKE_SOURCE_DIR}/release/ep_nobg.png") + + if( APPLE ) set(CPACK_PACKAGE_DEFAULT_LOCATION "/Applications") set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") @@ -266,8 +421,30 @@ if( APPLE ) install(PROGRAMS scripts/runepmacro DESTINATION "./") install(PROGRAMS scripts/runreadvars DESTINATION "./") + # You need at least one "install(..." command for it to be registered as a component install(CODE "MESSAGE(\"Creating symlinks.\")" COMPONENT Symlinks) + # Custom installer icon. Has to be .icns on mac, .ico on windows, not supported on Unix + set(CPACK_IFW_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/release/ep.icns") +elseif(WIN32) + + # TODO: TEMP + set(CPACK_IFW_VERBOSE ON) + + # Will also set CPACK_IFW_PACKAGE_START_MENU_DIRECTORY (name of default program group in Windows start menu) + set(CPACK_IFW_PACKAGE_NAME "EnergyPlusV${CPACK_PACKAGE_VERSION_MAJOR}-${CPACK_PACKAGE_VERSION_MINOR}-${CPACK_PACKAGE_VERSION_PATCH}") + + set(CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_IFW_PACKAGE_NAME}" ) + set(CPACK_IFW_TARGET_DIRECTORY "C:/${CPACK_PACKAGE_INSTALL_DIRECTORY}" ) + + # Custom installer icon. Has to be .icns on mac, .ico on windows, not supported on Unix + set(CPACK_IFW_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/release/ep.ico") + + # You need at least one "install(..." command for it to be registered as a component + install(CODE "MESSAGE(\"Registering filetypes.\")" COMPONENT RegisterFileType) + install(CODE "MESSAGE(\"Copying and Registering DLLs\")" COMPONENT CopyAndRegisterSystemDLLs) + + endif() if(UNIX) @@ -297,10 +474,13 @@ if( UNIX AND NOT APPLE ) install(PROGRAMS scripts/runreadvars DESTINATION "./") endif() +# TODO: Unused now configure_file("${CMAKE_SOURCE_DIR}/cmake/CMakeCPackOptions.cmake.in" "${CMAKE_BINARY_DIR}/CMakeCPackOptions.cmake" @ONLY) set(CPACK_PROJECT_CONFIG_FILE "${CMAKE_BINARY_DIR}/CMakeCPackOptions.cmake") +########################################################## D O C U M E N T A T I O N ############################################################# + if ( BUILD_DOCS ) install(FILES "${CMAKE_BINARY_DIR}/doc-pdf/Acknowledgments.pdf" DESTINATION "./Documentation" COMPONENT Documentation) install(FILES "${CMAKE_BINARY_DIR}/doc-pdf/AuxiliaryPrograms.pdf" DESTINATION "./Documentation" COMPONENT Documentation) @@ -318,8 +498,22 @@ if ( BUILD_DOCS ) install(FILES "${CMAKE_BINARY_DIR}/doc-pdf/UsingEnergyPlusForCompliance.pdf" DESTINATION "./Documentation" COMPONENT Documentation) endif () +########################################################## S Y S T E M L I B R A R I E S ############################################################# + +# TODO: is this unecessary now? I had forgotten to actually create a Libraries via cpack_add_component but everything seemed fined +# At worse, try not to uncomment this as is, but place it inside an if(PLATFORM) statement +#SET(CMAKE_INSTALL_UCRT_LIBRARIES TRUE) +#INCLUDE(InstallRequiredSystemLibraries) +#INSTALL(FILES ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS} DESTINATION "./" COMPONENT Libraries) + +###################################################################################################################################################### +# P A C K A G I N G & C O M P O N E N T S # +###################################################################################################################################################### + +# Careful: the position (and what you include) matters a lot! include(CPack) include(CPackIFW) +# include(CPackComponent) #cpack_add_component(EnergyPlus #DISPLAY_NAME "EnergyPlus" @@ -359,19 +553,50 @@ cpack_add_component(Symlinks DESCRIPTION "This will symlink the executable to /usr/local/bin and copy the man page" ) +# Could add any upstream library license to this +cpack_add_component(Licenses + DISPLAY_NAME "Licenses" + DESCRIPTION "License files for EnergyPlus" + REQUIRED) + +cpack_add_component(RegisterFileType + DISPLAY_NAME "Associate with EP-Launch and IDFEditor" + DESCRIPTION "Associate *.idf, *.imf, and *.epg files with EP-Launch, *.ddy and *.expidf with IDFEditor.exe" +) + +cpack_add_component(CopyAndRegisterSystemDLLs + DISPLAY_NAME "Copy and Register DLLs" + DESCRIPTION "This will copy and register system DLLs such as Fortran if they don't already exist" + REQUIRED +) + +#cpack_add_component(Libraries +# DISPLAY_NAME "Install required system libraries" +# DESCRIPTION "This is probably not required right now..." +#) + # Regular stuff, like chmod +x cpack_ifw_configure_component(Unspecified - SCRIPT cmake/install_operations.qs + SCRIPT cmake/qtifw/install_operations.qs ) cpack_ifw_configure_component(Symlinks - SCRIPT cmake/create_symlinks.qs + SCRIPT cmake/qtifw/install_mac_createsymlinks.qs REQUIRES_ADMIN_RIGHTS ) -SET(CMAKE_INSTALL_UCRT_LIBRARIES TRUE) - -INCLUDE(InstallRequiredSystemLibraries) +cpack_ifw_configure_component(RegisterFileType + SCRIPT cmake/qtifw/install_registerfiletype.qs + REQUIRES_ADMIN_RIGHTS +) -INSTALL(FILES ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS} DESTINATION "./" COMPONENT Libraries) +cpack_ifw_configure_component(CopyAndRegisterSystemDLLs + SCRIPT cmake/qtifw/install_win_copydll.qs + REQUIRES_ADMIN_RIGHTS +) +cpack_ifw_configure_component(Licenses + FORCED_INSTALLATION + LICENSES + "EnergyPlus" ${CPACK_RESOURCE_FILE_LICENSE} +) diff --git a/cmake/install_operations.qs b/cmake/install_operations.qs deleted file mode 100644 index 6f98920ffba..00000000000 --- a/cmake/install_operations.qs +++ /dev/null @@ -1,35 +0,0 @@ -// Regular install commands to be performed -function Component() -{ - Component.prototype.createOperations = function() - { - // call default implementation - component.createOperations(); - - // ... add custom operations - - var kernel = systemInfo.kernelType; - if( kernel == "darwin" ) { - - // Chmod +x for apps - component.addOperation("Execute", "chmod", "+x", "@TargetDir@/PreProcess/IDFVersionUpdater/IDFVersionUpdater.app/Contents/MacOS/IDFVersionUpdater"); - component.addOperation("Execute", "chmod", "+x", "@TargetDir@/PreProcess/EP-Launch-Lite.app/Contents/MacOS/EP-Launch-Lite"); - component.addOperation("Execute", "chmod", "+x", "@TargetDir@/PreProcess/EP-Launch-Lite.app/Contents/MacOS/python"); - component.addOperation("Execute", "chmod", "+x", "@TargetDir@/PostProcess/EP-Compare/EP-Compare.app/Contents/MacOS/EP-Compare"); - - // Not sure necessary so not doing it yet - // component.addOperation("Execute", "chmod", "-R", "a+w", "@TargetDir@"); - // component.addOperation("Execute", "chmod", "-R", "a+w", "@TargetDir@/PreProcess/IDFVersionUpdater/IDFVersionUpdater.app/Contents/MacOS/"); - // component.addOperation("Execute", "chmod", "-R", "a+w", "@TargetDir@/PreProcess/IDFVersionUpdater/"); - - } - } -} - - - - - - - - diff --git a/cmake/create_symlinks.qs b/cmake/qtifw/install_mac_createsymlinks.qs similarity index 100% rename from cmake/create_symlinks.qs rename to cmake/qtifw/install_mac_createsymlinks.qs diff --git a/cmake/qtifw/install_operations.qs b/cmake/qtifw/install_operations.qs new file mode 100644 index 00000000000..07a7aa51116 --- /dev/null +++ b/cmake/qtifw/install_operations.qs @@ -0,0 +1,88 @@ +// Regular install commands to be performed +function Component() +{ + Component.prototype.createOperations = function() + { + // call default implementation + component.createOperations(); + + // ... add custom operations + + var kernel = systemInfo.kernelType; + if( kernel == "darwin" ) { + + // Chmod +x for apps + component.addOperation("Execute", "chmod", "+x", "@TargetDir@/PreProcess/IDFVersionUpdater/IDFVersionUpdater.app/Contents/MacOS/IDFVersionUpdater"); + component.addOperation("Execute", "chmod", "+x", "@TargetDir@/PreProcess/EP-Launch-Lite.app/Contents/MacOS/EP-Launch-Lite"); + component.addOperation("Execute", "chmod", "+x", "@TargetDir@/PreProcess/EP-Launch-Lite.app/Contents/MacOS/python"); + component.addOperation("Execute", "chmod", "+x", "@TargetDir@/PostProcess/EP-Compare/EP-Compare.app/Contents/MacOS/EP-Compare"); + + // Not sure necessary so not doing it yet + // component.addOperation("Execute", "chmod", "-R", "a+w", "@TargetDir@"); + // component.addOperation("Execute", "chmod", "-R", "a+w", "@TargetDir@/PreProcess/IDFVersionUpdater/IDFVersionUpdater.app/Contents/MacOS/"); + // component.addOperation("Execute", "chmod", "-R", "a+w", "@TargetDir@/PreProcess/IDFVersionUpdater/"); + + } + + // On Windows + if( kernel == "winnt" ) { + + // Create Shortcuts in the Windows Start Menu + component.addOperation("CreateShortcut", "@TargetDir@/Documentation/index.html", "@StartMenuDir@/EnergyPlus Documentation.lnk"); + component.addOperation("CreateShortcut", "@TargetDir@/PostProcess/EP-Compare/EP-Compare.exe", "@StartMenuDir@/EP-Compare.lnk"); + component.addOperation("CreateShortcut", "@TargetDir@/PreProcess/EPDraw/EPDrawGUI.exe", "@StartMenuDir@/EPDrawGUI.lnk"); + component.addOperation("CreateShortcut", "@TargetDir@/EP-Launch.exe", "@StartMenuDir@/EP-Launch.lnk"); + component.addOperation("CreateShortcut", "@TargetDir@/ExampleFiles/ExampleFiles.html", "@StartMenuDir@/Example Files Summary.lnk"); + component.addOperation("CreateShortcut", "@TargetDir@/ExampleFiles/ExampleFiles-ObjectsLink.html", "@StartMenuDir@/ExampleFiles Link to Objects.lnk"); + component.addOperation("CreateShortcut", "@TargetDir@/PreProcess/IDFEditor/IDFEditor.exe", "@StartMenuDir@/IDFEditor.lnk"); + component.addOperation("CreateShortcut", "@TargetDir@/PreProcess/IDFVersionUpdater/IDFVersionUpdater.exe", "@StartMenuDir@/IDFVersionUpdater.lnk"); + component.addOperation("CreateShortcut", "@TargetDir@/readme.html", "@StartMenuDir@/Readme Notes.lnk"); + component.addOperation("CreateShortcut", "@TargetDir@/PreProcess/WeatherConverter/Weather.exe", "@StartMenuDir@/Weather Statistics and Conversions.lnk"); + + + // Note: Associate file types: done separately (optional) + + // Here's what stuff gets weird. We need to write stuff to the registry apparently for EP-Launch + // In the registry under KEY_CURRENT_USER\Software\VB and VBA Program Settings\EP-Launch\UpdateCheck: + // Name, Type, Data + // AutoCheck, REG_SZ, True + // CheckURL, REG_SZ, http://nrel.github.io/EnergyPlus/epupdate.htm + // LastAnchor, REG_SZ, #9.1.0-mqjdfsiojf + + // REG ADD KeyName /v ValueName, /d Data, /f = force overwrite + var reg = installer.environmentVariable("SystemRoot") + "\\System32\\reg.exe"; + + var keyName = "HKEY_CURRENT_USER\\Software\\VB and VBA Program Settings\\EP-Launch\\UpdateCheck"; + + // Note by passing arguments separately to the (reg) command in addElevatedOperation (supports up to 10 args), + // Qt will escape each argument, so do not include double quote (eg: "\"AutoCheck\"") or they'll be interpreted literally + // Mind the "/f" flag which avoids displaying a [Yes/No] prompt that you + // can't answer and making the installer freeze + var valueName = "AutoCheck"; + var data = "True"; + component.addOperation("Execute", reg, "ADD", keyName, "/v", valueName, "/d", data, "/f"); + + var valueName = "CheckURL"; + var data = "http://nrel.github.io/EnergyPlus/epupdate.htm"; + component.addOperation("Execute", reg, "ADD", keyName, "/v", valueName, "/d", data, "/f"); + + var valueName = "LastAnchor"; + var data = "#@Version@"; + component.addOperation("Execute", reg, "ADD", keyName, "/v", valueName, "/d", data, "/f"); + + // Delete the entire keyName upon uninstallation + var keyName = "HKEY_CURRENT_USER\\Software\\VB and VBA Program Settings\\EP-Launch"; + component.addOperation("Execute", "cmd", "/C", "echo Set up uninstall operation to delete EP-Launch registry keys", "UNDOEXECUTE", reg, "DELETE", keyName, "/f"); + + // And weirder still, to copy and register DLLs: done separately + } + } +} + + + + + + + + diff --git a/cmake/qtifw/install_registerfiletype.qs b/cmake/qtifw/install_registerfiletype.qs new file mode 100644 index 00000000000..d6d3a8804ee --- /dev/null +++ b/cmake/qtifw/install_registerfiletype.qs @@ -0,0 +1,58 @@ +// Associate file types + +function Component() +{ + Component.prototype.createOperations = function() + { + // call default implementation + component.createOperations(); + + // ... add custom operations + + var kernel = systemInfo.kernelType; + + // On Windows + if( kernel == "winnt" ) { + + // We also need to remove the registry entries that the previous + // installers based on NSIS were doing, since there was no clean up back + // then and they are getting in the way of our new RegisterFileType + // (icons not showing on IDF, IMF etc) + + // Note: The old stuff also installed things in "HKCR\.idf" etc, but I'm wary + // of touching these since they might have been set to something else + // manually like a text editor for eg + var reg = installer.environmentVariable("SystemRoot") + "\\System32\\reg.exe"; + + var keyNamesToDelete = [ + "EP-Launch.epg", "EP-Launch.idf", "EP-Launch.imf", + "IDFEditor.ddy", "IDFEditor.expidf" + ]; + + for (i = 0; i < keyNamesToDelete.length; i++) { + var keyName = "HKEY_CLASSES_ROOT\\" + keyNamesToDelete[i]; + // Delete the entry, silently (/f). + // We specify the return codes to ignore the error when the key didn't exist to begin with (which returns 1) + component.addOperation("Execute", "{0,1}", reg, "DELETE", keyName, "/f"); + } + + // Note JM: you normally have to quote the %1 which represents the file path, otherwise any space in the path will think there are multiple args + // That is "@TargetDir@/EP-Launch.exe \"%1\"" + // Except that EP-Launch.exe doesn't behave like most programs. + // It does its internal escaping/considers whatever is passed as a single argument. + // eg: `C:\EnergyPlusV9-2-0\EP-Launch.exe 5ZoneFPIU - Copy.idf` + // successfully loads a file named `5ZoneFPIU - Copy.idf`` + // RegisterFileType: [extension, command, description of filetype, contentType, icon] + // Note: Here you do **not** need to specify the specific iconID, since the EP-launch icon id is actually zero, which is default + // eg: var iconId = 0; icon = "@TargetDir@\\EP-Launch.exe," + iconId + // EP-Launch.exe + component.addElevatedOperation("RegisterFileType", "idf", "@TargetDir@\\EP-Launch.exe %1", "EnergyPlus Input Data File", "text/plain"); + component.addElevatedOperation("RegisterFileType", "imf", "@TargetDir@\\EP-Launch.exe %1", "EnergyPlus Input Macro File", "text/plain"); + component.addElevatedOperation("RegisterFileType", "epg", "@TargetDir@\\EP-Launch.exe %1", "EnergyPlus Group File", "text/plain"); + // IDFEditor.exe + component.addElevatedOperation("RegisterFileType", "ddy", "@TargetDir@\\PreProcess\\IDFEditor\\IDFEditor.exe %1", "EnergyPlus Location and Design Day Data", "text/plain"); + component.addElevatedOperation("RegisterFileType", "expidf", "@TargetDir@\\PreProcess\\IDFEditor\\IDFEditor.exe %1", "EnergyPlus Expand Objects Input Data File", "text/plain"); + + } // End of if winnt + } +} diff --git a/cmake/qtifw/install_win_copydll.qs b/cmake/qtifw/install_win_copydll.qs new file mode 100644 index 00000000000..1b36466a495 --- /dev/null +++ b/cmake/qtifw/install_win_copydll.qs @@ -0,0 +1,81 @@ +// Windows commands to be performed elevated: copy and register DLLs + +function Component() +{ + Component.prototype.createOperations = function() + { + // call default implementation + component.createOperations(); + + // ... add custom operations + + var kernel = systemInfo.kernelType; + // On Windows + if( kernel == "winnt" ) { + + // OCX: needs copy AND registration + // DLL and exe: just copy + // Note: the order of ocx/dll in the array matters for registering the ocx! + // To be safe and not depend on order, let's be smarter: we copy + // everything in one pass, then we register the ones that need to be in a + // second pass + var systemArray = [ + "MSCOMCTL.OCX", "ComDlg32.OCX", "Msvcrtd.dll", "Dforrt.dll", + "Gswdll32.dll", "Gsw32.exe", "Graph32.ocx", + "MSINET.OCX", "Vsflex7L.ocx", "Msflxgrd.ocx" + ]; + + var systemTargetDir = installer.environmentVariable("SystemRoot"); + // Note: all dlls in ./bin/System are 32-bits + if( systemInfo.currentCpuArchitecture == "x86_64") { + // This is where the 32-bit stuff is stored on 64-bit systems + // (despite the name...) + systemTargetDir += "\\SysWOW64\\"; + } else { + // This is 32-bit on a 32-bit system + systemTargetDir += "\\System32\\"; + } + + var regdll = systemTargetDir + "regsvr32.exe"; + + // Store ocx to be registered + var dllsToReg = []; + for (i = 0; i < systemArray.length; i++) { + var sourceFile = "@TargetDir@\\temp\\" + systemArray[i]; + var targetFile = systemTargetDir + systemArray[i]; + if (!installer.fileExists(targetFile)) { + console.log("Copying DLL: " + targetFile); + // Copy the DLL (includes reverting on uninstall) + // component.addElevatedOperation("Copy", sourceFile, targetFile); + + // Copy without deleting on uninstall (technically the "/Y" + // (=overwrite with no prompt) isn't needed since we tested target + // didn't exist already + component.addElevatedOperation("Execute", "cmd", "/C", "copy", sourceFile, targetFile, "/Y"); + // Register it: Only for "OCX" + // If it's a .ocx (case insensitive), we save it to be registered + if (systemArray[i].toLowerCase().indexOf(".ocx") !== -1) { + dllsToReg.push(targetFile); + } + } + } + + for (i = 0; i < dllsToReg.length; i++) { + targetFile = dllsToReg[i]; + // Mind the "/s" flag which avoids displaying a [Yes/No] prompt + // that you can't answer and making the installer freeze + console.log("Registering DLL: " + [regdll, "/s", targetFile].join(" ")); + component.addElevatedOperation("Execute", regdll, "/s", targetFile); + // We do not undo + // "UNDOEXECUTE", regdll, "/u", "/s", targetFile); + + } + // Delete this temp directory: use execute to avoid uninstall create + // the opposite (= Mkdir), plus it doesn't delete an empty directory anyways and we use copy (not move) above... + // component.addElevatedOperation("Rmdir", "@TargetDir@/temp"); + // /S = recursive, /Q = quiet + component.addElevatedOperation("Execute", "cmd" , "/C", "rmdir", "/S", "/Q", "@TargetDir@\\temp"); + + } + } +} diff --git a/datasets/ConvertENCOSTtoEnergyPlusLifeCycleCost.xls b/datasets/ConvertENCOSTtoEnergyPlusLifeCycleCost.xls index 94999caa34e..fa9eb9b156c 100644 Binary files a/datasets/ConvertENCOSTtoEnergyPlusLifeCycleCost.xls and b/datasets/ConvertENCOSTtoEnergyPlusLifeCycleCost.xls differ diff --git a/datasets/LCCusePriceEscalationDataSet2019.idf b/datasets/LCCusePriceEscalationDataSet2019.idf new file mode 100644 index 00000000000..40516cfe1fa --- /dev/null +++ b/datasets/LCCusePriceEscalationDataSet2019.idf @@ -0,0 +1,2606 @@ +! The source of the values for the following objects is: +! +! NISTIR 85-3273-34 +! +! ENERGY PRICE INDICES AND DISCOUNT FACTORS +! FOR LIFE-CYCLE COST ANALYSIS - 2019 +! +! Annual Supplement to NIST Handbook 135 +! +! Priya D. Lavappa +! Joshua D. Kneifel +! +! These are factors for the United States and regions of the United States. +! +! The factors are from a file available upon request from NIST called ENCOSTxx.TXT and are +! converted into EnergyPlus objects using a spreadsheet called ConvertENCOSTtoEnergyPlusLifeCycleCost.xls +! which is available upon request. + +LifeCycleCost:UsePriceEscalation, + NorthEast Residential-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0138, !- Year 1 Escalation + 1.0239, !- Year 2 Escalation + 1.0336, !- Year 3 Escalation + 1.0444, !- Year 4 Escalation + 1.0691, !- Year 5 Escalation + 1.0905, !- Year 6 Escalation + 1.1064, !- Year 7 Escalation + 1.1163, !- Year 8 Escalation + 1.1325, !- Year 9 Escalation + 1.1346, !- Year 10 Escalation + 1.1396, !- Year 11 Escalation + 1.1413, !- Year 12 Escalation + 1.1518, !- Year 13 Escalation + 1.1589, !- Year 14 Escalation + 1.1643, !- Year 15 Escalation + 1.1686, !- Year 16 Escalation + 1.1719, !- Year 17 Escalation + 1.1775, !- Year 18 Escalation + 1.1785, !- Year 19 Escalation + 1.1760, !- Year 20 Escalation + 1.1661, !- Year 21 Escalation + 1.1678, !- Year 22 Escalation + 1.1704, !- Year 23 Escalation + 1.1725, !- Year 24 Escalation + 1.1736, !- Year 25 Escalation + 1.1738, !- Year 26 Escalation + 1.1729, !- Year 27 Escalation + 1.1725, !- Year 28 Escalation + 1.1719, !- Year 29 Escalation + 1.1732; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Residential-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0251, !- Year 1 Escalation + 1.0440, !- Year 2 Escalation + 1.0577, !- Year 3 Escalation + 1.0823, !- Year 4 Escalation + 1.1259, !- Year 5 Escalation + 1.1568, !- Year 6 Escalation + 1.1770, !- Year 7 Escalation + 1.2048, !- Year 8 Escalation + 1.2193, !- Year 9 Escalation + 1.2369, !- Year 10 Escalation + 1.2488, !- Year 11 Escalation + 1.2589, !- Year 12 Escalation + 1.2717, !- Year 13 Escalation + 1.2853, !- Year 14 Escalation + 1.2919, !- Year 15 Escalation + 1.3007, !- Year 16 Escalation + 1.3153, !- Year 17 Escalation + 1.3162, !- Year 18 Escalation + 1.3210, !- Year 19 Escalation + 1.3280, !- Year 20 Escalation + 1.3355, !- Year 21 Escalation + 1.3386, !- Year 22 Escalation + 1.3448, !- Year 23 Escalation + 1.3465, !- Year 24 Escalation + 1.3439, !- Year 25 Escalation + 1.3448, !- Year 26 Escalation + 1.3413, !- Year 27 Escalation + 1.3360, !- Year 28 Escalation + 1.3364, !- Year 29 Escalation + 1.3347; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Residential-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0175, !- Year 1 Escalation + 1.0442, !- Year 2 Escalation + 1.0727, !- Year 3 Escalation + 1.1095, !- Year 4 Escalation + 1.1490, !- Year 5 Escalation + 1.1720, !- Year 6 Escalation + 1.1831, !- Year 7 Escalation + 1.1886, !- Year 8 Escalation + 1.1941, !- Year 9 Escalation + 1.1978, !- Year 10 Escalation + 1.2024, !- Year 11 Escalation + 1.2061, !- Year 12 Escalation + 1.2144, !- Year 13 Escalation + 1.2226, !- Year 14 Escalation + 1.2282, !- Year 15 Escalation + 1.2337, !- Year 16 Escalation + 1.2392, !- Year 17 Escalation + 1.2456, !- Year 18 Escalation + 1.2493, !- Year 19 Escalation + 1.2521, !- Year 20 Escalation + 1.2576, !- Year 21 Escalation + 1.2622, !- Year 22 Escalation + 1.2668, !- Year 23 Escalation + 1.2732, !- Year 24 Escalation + 1.2797, !- Year 25 Escalation + 1.2870, !- Year 26 Escalation + 1.2944, !- Year 27 Escalation + 1.3008, !- Year 28 Escalation + 1.3091, !- Year 29 Escalation + 1.3192; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Residential-LPG, !- Name + Propane, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0793, !- Year 1 Escalation + 1.1371, !- Year 2 Escalation + 1.1892, !- Year 3 Escalation + 1.2338, !- Year 4 Escalation + 1.2761, !- Year 5 Escalation + 1.3187, !- Year 6 Escalation + 1.3576, !- Year 7 Escalation + 1.3901, !- Year 8 Escalation + 1.4162, !- Year 9 Escalation + 1.4339, !- Year 10 Escalation + 1.4460, !- Year 11 Escalation + 1.4547, !- Year 12 Escalation + 1.4645, !- Year 13 Escalation + 1.4766, !- Year 14 Escalation + 1.4898, !- Year 15 Escalation + 1.5023, !- Year 16 Escalation + 1.5147, !- Year 17 Escalation + 1.5257, !- Year 18 Escalation + 1.5344, !- Year 19 Escalation + 1.5423, !- Year 20 Escalation + 1.5491, !- Year 21 Escalation + 1.5544, !- Year 22 Escalation + 1.5597, !- Year 23 Escalation + 1.5650, !- Year 24 Escalation + 1.5702, !- Year 25 Escalation + 1.5744, !- Year 26 Escalation + 1.5770, !- Year 27 Escalation + 1.5782, !- Year 28 Escalation + 1.5789, !- Year 29 Escalation + 1.5778; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Commercial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9948, !- Year 1 Escalation + 0.9903, !- Year 2 Escalation + 0.9946, !- Year 3 Escalation + 1.0002, !- Year 4 Escalation + 1.0243, !- Year 5 Escalation + 1.0436, !- Year 6 Escalation + 1.0589, !- Year 7 Escalation + 1.0681, !- Year 8 Escalation + 1.0856, !- Year 9 Escalation + 1.0878, !- Year 10 Escalation + 1.0945, !- Year 11 Escalation + 1.0997, !- Year 12 Escalation + 1.1128, !- Year 13 Escalation + 1.1222, !- Year 14 Escalation + 1.1297, !- Year 15 Escalation + 1.1366, !- Year 16 Escalation + 1.1435, !- Year 17 Escalation + 1.1510, !- Year 18 Escalation + 1.1539, !- Year 19 Escalation + 1.1529, !- Year 20 Escalation + 1.1458, !- Year 21 Escalation + 1.1505, !- Year 22 Escalation + 1.1557, !- Year 23 Escalation + 1.1646, !- Year 24 Escalation + 1.1700, !- Year 25 Escalation + 1.1722, !- Year 26 Escalation + 1.1725, !- Year 27 Escalation + 1.1727, !- Year 28 Escalation + 1.1727, !- Year 29 Escalation + 1.1747; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Commercial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9953, !- Year 1 Escalation + 0.9716, !- Year 2 Escalation + 0.9419, !- Year 3 Escalation + 0.9238, !- Year 4 Escalation + 0.9229, !- Year 5 Escalation + 0.9410, !- Year 6 Escalation + 0.9599, !- Year 7 Escalation + 0.9866, !- Year 8 Escalation + 1.0000, !- Year 9 Escalation + 1.0168, !- Year 10 Escalation + 1.0280, !- Year 11 Escalation + 1.0370, !- Year 12 Escalation + 1.0487, !- Year 13 Escalation + 1.0624, !- Year 14 Escalation + 1.0680, !- Year 15 Escalation + 1.0758, !- Year 16 Escalation + 1.0896, !- Year 17 Escalation + 1.0904, !- Year 18 Escalation + 1.0943, !- Year 19 Escalation + 1.1008, !- Year 20 Escalation + 1.1081, !- Year 21 Escalation + 1.1111, !- Year 22 Escalation + 1.1167, !- Year 23 Escalation + 1.1184, !- Year 24 Escalation + 1.1154, !- Year 25 Escalation + 1.1163, !- Year 26 Escalation + 1.1133, !- Year 27 Escalation + 1.1085, !- Year 28 Escalation + 1.1081, !- Year 29 Escalation + 1.1059; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Commercial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0198, !- Year 1 Escalation + 1.1120, !- Year 2 Escalation + 1.1831, !- Year 3 Escalation + 1.2833, !- Year 4 Escalation + 1.4124, !- Year 5 Escalation + 1.4690, !- Year 6 Escalation + 1.5138, !- Year 7 Escalation + 1.5771, !- Year 8 Escalation + 1.6126, !- Year 9 Escalation + 1.6561, !- Year 10 Escalation + 1.6785, !- Year 11 Escalation + 1.7022, !- Year 12 Escalation + 1.7312, !- Year 13 Escalation + 1.7484, !- Year 14 Escalation + 1.7642, !- Year 15 Escalation + 1.7839, !- Year 16 Escalation + 1.8116, !- Year 17 Escalation + 1.8327, !- Year 18 Escalation + 1.8432, !- Year 19 Escalation + 1.8590, !- Year 20 Escalation + 1.8762, !- Year 21 Escalation + 1.8893, !- Year 22 Escalation + 1.9144, !- Year 23 Escalation + 1.9262, !- Year 24 Escalation + 1.9275, !- Year 25 Escalation + 1.9368, !- Year 26 Escalation + 1.9420, !- Year 27 Escalation + 1.9447, !- Year 28 Escalation + 1.9486, !- Year 29 Escalation + 1.9473; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Commercial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0088, !- Year 1 Escalation + 1.0354, !- Year 2 Escalation + 1.0683, !- Year 3 Escalation + 1.1113, !- Year 4 Escalation + 1.1580, !- Year 5 Escalation + 1.1820, !- Year 6 Escalation + 1.1909, !- Year 7 Escalation + 1.1922, !- Year 8 Escalation + 1.1947, !- Year 9 Escalation + 1.1960, !- Year 10 Escalation + 1.1972, !- Year 11 Escalation + 1.1972, !- Year 12 Escalation + 1.2048, !- Year 13 Escalation + 1.2124, !- Year 14 Escalation + 1.2149, !- Year 15 Escalation + 1.2174, !- Year 16 Escalation + 1.2212, !- Year 17 Escalation + 1.2263, !- Year 18 Escalation + 1.2276, !- Year 19 Escalation + 1.2288, !- Year 20 Escalation + 1.2314, !- Year 21 Escalation + 1.2351, !- Year 22 Escalation + 1.2377, !- Year 23 Escalation + 1.2427, !- Year 24 Escalation + 1.2478, !- Year 25 Escalation + 1.2554, !- Year 26 Escalation + 1.2630, !- Year 27 Escalation + 1.2680, !- Year 28 Escalation + 1.2756, !- Year 29 Escalation + 1.2870; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Commercial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0019, !- Year 1 Escalation + 1.0039, !- Year 2 Escalation + 1.0019, !- Year 3 Escalation + 1.0039, !- Year 4 Escalation + 1.0116, !- Year 5 Escalation + 1.0174, !- Year 6 Escalation + 1.0212, !- Year 7 Escalation + 1.0251, !- Year 8 Escalation + 1.0251, !- Year 9 Escalation + 1.0251, !- Year 10 Escalation + 1.0290, !- Year 11 Escalation + 1.0328, !- Year 12 Escalation + 1.0328, !- Year 13 Escalation + 1.0309, !- Year 14 Escalation + 1.0290, !- Year 15 Escalation + 1.0309, !- Year 16 Escalation + 1.0290, !- Year 17 Escalation + 1.0309, !- Year 18 Escalation + 1.0328, !- Year 19 Escalation + 1.0328, !- Year 20 Escalation + 1.0328, !- Year 21 Escalation + 1.0309, !- Year 22 Escalation + 1.0290, !- Year 23 Escalation + 1.0270, !- Year 24 Escalation + 1.0251, !- Year 25 Escalation + 1.0251, !- Year 26 Escalation + 1.0232, !- Year 27 Escalation + 1.0232, !- Year 28 Escalation + 1.0212, !- Year 29 Escalation + 1.0212; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Industrial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9761, !- Year 1 Escalation + 0.9564, !- Year 2 Escalation + 0.9479, !- Year 3 Escalation + 0.9479, !- Year 4 Escalation + 0.9652, !- Year 5 Escalation + 0.9775, !- Year 6 Escalation + 0.9847, !- Year 7 Escalation + 0.9843, !- Year 8 Escalation + 0.9925, !- Year 9 Escalation + 0.9874, !- Year 10 Escalation + 0.9874, !- Year 11 Escalation + 0.9850, !- Year 12 Escalation + 0.9942, !- Year 13 Escalation + 1.0020, !- Year 14 Escalation + 1.0065, !- Year 15 Escalation + 1.0092, !- Year 16 Escalation + 1.0130, !- Year 17 Escalation + 1.0187, !- Year 18 Escalation + 1.0191, !- Year 19 Escalation + 1.0164, !- Year 20 Escalation + 1.0068, !- Year 21 Escalation + 1.0075, !- Year 22 Escalation + 1.0092, !- Year 23 Escalation + 1.0109, !- Year 24 Escalation + 1.0130, !- Year 25 Escalation + 1.0133, !- Year 26 Escalation + 1.0140, !- Year 27 Escalation + 1.0157, !- Year 28 Escalation + 1.0167, !- Year 29 Escalation + 1.0222; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Industrial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9969, !- Year 1 Escalation + 0.9753, !- Year 2 Escalation + 0.9484, !- Year 3 Escalation + 0.9325, !- Year 4 Escalation + 0.9352, !- Year 5 Escalation + 0.9555, !- Year 6 Escalation + 0.9757, !- Year 7 Escalation + 1.0035, !- Year 8 Escalation + 1.0181, !- Year 9 Escalation + 1.0353, !- Year 10 Escalation + 1.0476, !- Year 11 Escalation + 1.0573, !- Year 12 Escalation + 1.0701, !- Year 13 Escalation + 1.0842, !- Year 14 Escalation + 1.0904, !- Year 15 Escalation + 1.0992, !- Year 16 Escalation + 1.1138, !- Year 17 Escalation + 1.1151, !- Year 18 Escalation + 1.1195, !- Year 19 Escalation + 1.1265, !- Year 20 Escalation + 1.1345, !- Year 21 Escalation + 1.1376, !- Year 22 Escalation + 1.1433, !- Year 23 Escalation + 1.1455, !- Year 24 Escalation + 1.1424, !- Year 25 Escalation + 1.1433, !- Year 26 Escalation + 1.1402, !- Year 27 Escalation + 1.1349, !- Year 28 Escalation + 1.1349, !- Year 29 Escalation + 1.1332; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Industrial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0271, !- Year 1 Escalation + 1.1286, !- Year 2 Escalation + 1.2070, !- Year 3 Escalation + 1.3166, !- Year 4 Escalation + 1.4574, !- Year 5 Escalation + 1.5183, !- Year 6 Escalation + 1.5656, !- Year 7 Escalation + 1.6346, !- Year 8 Escalation + 1.6725, !- Year 9 Escalation + 1.7212, !- Year 10 Escalation + 1.7456, !- Year 11 Escalation + 1.7700, !- Year 12 Escalation + 1.8011, !- Year 13 Escalation + 1.8173, !- Year 14 Escalation + 1.8349, !- Year 15 Escalation + 1.8539, !- Year 16 Escalation + 1.8823, !- Year 17 Escalation + 1.9026, !- Year 18 Escalation + 1.9120, !- Year 19 Escalation + 1.9283, !- Year 20 Escalation + 1.9445, !- Year 21 Escalation + 1.9567, !- Year 22 Escalation + 1.9824, !- Year 23 Escalation + 1.9932, !- Year 24 Escalation + 1.9946, !- Year 25 Escalation + 2.0027, !- Year 26 Escalation + 2.0054, !- Year 27 Escalation + 2.0095, !- Year 28 Escalation + 2.0122, !- Year 29 Escalation + 2.0095; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Industrial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9906, !- Year 1 Escalation + 0.9679, !- Year 2 Escalation + 0.9585, !- Year 3 Escalation + 0.9717, !- Year 4 Escalation + 0.9925, !- Year 5 Escalation + 1.0226, !- Year 6 Escalation + 1.0340, !- Year 7 Escalation + 1.0358, !- Year 8 Escalation + 1.0415, !- Year 9 Escalation + 1.0434, !- Year 10 Escalation + 1.0472, !- Year 11 Escalation + 1.0472, !- Year 12 Escalation + 1.0642, !- Year 13 Escalation + 1.0792, !- Year 14 Escalation + 1.0849, !- Year 15 Escalation + 1.0906, !- Year 16 Escalation + 1.1019, !- Year 17 Escalation + 1.1113, !- Year 18 Escalation + 1.1132, !- Year 19 Escalation + 1.1151, !- Year 20 Escalation + 1.1245, !- Year 21 Escalation + 1.1302, !- Year 22 Escalation + 1.1358, !- Year 23 Escalation + 1.1453, !- Year 24 Escalation + 1.1585, !- Year 25 Escalation + 1.1736, !- Year 26 Escalation + 1.1849, !- Year 27 Escalation + 1.1981, !- Year 28 Escalation + 1.2151, !- Year 29 Escalation + 1.2358; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + NorthEast Industrial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0270, !- Year 1 Escalation + 1.0294, !- Year 2 Escalation + 1.0270, !- Year 3 Escalation + 1.0294, !- Year 4 Escalation + 1.0368, !- Year 5 Escalation + 1.0441, !- Year 6 Escalation + 1.0490, !- Year 7 Escalation + 1.0564, !- Year 8 Escalation + 1.0564, !- Year 9 Escalation + 1.0588, !- Year 10 Escalation + 1.0637, !- Year 11 Escalation + 1.0686, !- Year 12 Escalation + 1.0711, !- Year 13 Escalation + 1.0711, !- Year 14 Escalation + 1.0711, !- Year 15 Escalation + 1.0735, !- Year 16 Escalation + 1.0760, !- Year 17 Escalation + 1.0833, !- Year 18 Escalation + 1.0882, !- Year 19 Escalation + 1.0907, !- Year 20 Escalation + 1.0931, !- Year 21 Escalation + 1.0956, !- Year 22 Escalation + 1.0956, !- Year 23 Escalation + 1.0980, !- Year 24 Escalation + 1.0980, !- Year 25 Escalation + 1.0980, !- Year 26 Escalation + 1.1005, !- Year 27 Escalation + 1.1005, !- Year 28 Escalation + 1.1005, !- Year 29 Escalation + 1.1005; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Residential-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0100, !- Year 1 Escalation + 1.0187, !- Year 2 Escalation + 1.0142, !- Year 3 Escalation + 1.0071, !- Year 4 Escalation + 1.0045, !- Year 5 Escalation + 1.0045, !- Year 6 Escalation + 1.0061, !- Year 7 Escalation + 1.0055, !- Year 8 Escalation + 1.0053, !- Year 9 Escalation + 1.0050, !- Year 10 Escalation + 1.0063, !- Year 11 Escalation + 1.0071, !- Year 12 Escalation + 1.0087, !- Year 13 Escalation + 1.0100, !- Year 14 Escalation + 1.0121, !- Year 15 Escalation + 1.0105, !- Year 16 Escalation + 1.0071, !- Year 17 Escalation + 1.0063, !- Year 18 Escalation + 1.0039, !- Year 19 Escalation + 1.0003, !- Year 20 Escalation + 0.9945, !- Year 21 Escalation + 0.9926, !- Year 22 Escalation + 0.9903, !- Year 23 Escalation + 0.9866, !- Year 24 Escalation + 0.9837, !- Year 25 Escalation + 0.9831, !- Year 26 Escalation + 0.9834, !- Year 27 Escalation + 0.9826, !- Year 28 Escalation + 0.9816, !- Year 29 Escalation + 0.9795; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Residential-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9694, !- Year 1 Escalation + 0.9333, !- Year 2 Escalation + 0.8869, !- Year 3 Escalation + 0.8533, !- Year 4 Escalation + 0.8399, !- Year 5 Escalation + 0.8513, !- Year 6 Escalation + 0.8710, !- Year 7 Escalation + 0.9017, !- Year 8 Escalation + 0.9150, !- Year 9 Escalation + 0.9343, !- Year 10 Escalation + 0.9461, !- Year 11 Escalation + 0.9550, !- Year 12 Escalation + 0.9679, !- Year 13 Escalation + 0.9862, !- Year 14 Escalation + 0.9916, !- Year 15 Escalation + 0.9990, !- Year 16 Escalation + 1.0178, !- Year 17 Escalation + 1.0183, !- Year 18 Escalation + 1.0232, !- Year 19 Escalation + 1.0316, !- Year 20 Escalation + 1.0420, !- Year 21 Escalation + 1.0479, !- Year 22 Escalation + 1.0573, !- Year 23 Escalation + 1.0613, !- Year 24 Escalation + 1.0618, !- Year 25 Escalation + 1.0652, !- Year 26 Escalation + 1.0662, !- Year 27 Escalation + 1.0672, !- Year 28 Escalation + 1.0697, !- Year 29 Escalation + 1.0682; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Residential-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0346, !- Year 1 Escalation + 1.0469, !- Year 2 Escalation + 1.0580, !- Year 3 Escalation + 1.0770, !- Year 4 Escalation + 1.0993, !- Year 5 Escalation + 1.1250, !- Year 6 Escalation + 1.1429, !- Year 7 Escalation + 1.1529, !- Year 8 Escalation + 1.1629, !- Year 9 Escalation + 1.1708, !- Year 10 Escalation + 1.1775, !- Year 11 Escalation + 1.1830, !- Year 12 Escalation + 1.1931, !- Year 13 Escalation + 1.2054, !- Year 14 Escalation + 1.2143, !- Year 15 Escalation + 1.2221, !- Year 16 Escalation + 1.2299, !- Year 17 Escalation + 1.2388, !- Year 18 Escalation + 1.2433, !- Year 19 Escalation + 1.2478, !- Year 20 Escalation + 1.2545, !- Year 21 Escalation + 1.2589, !- Year 22 Escalation + 1.2656, !- Year 23 Escalation + 1.2734, !- Year 24 Escalation + 1.2824, !- Year 25 Escalation + 1.2924, !- Year 26 Escalation + 1.3013, !- Year 27 Escalation + 1.3103, !- Year 28 Escalation + 1.3214, !- Year 29 Escalation + 1.3359; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Residential-LPG, !- Name + Propane, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0793, !- Year 1 Escalation + 1.1371, !- Year 2 Escalation + 1.1892, !- Year 3 Escalation + 1.2338, !- Year 4 Escalation + 1.2761, !- Year 5 Escalation + 1.3187, !- Year 6 Escalation + 1.3576, !- Year 7 Escalation + 1.3901, !- Year 8 Escalation + 1.4162, !- Year 9 Escalation + 1.4339, !- Year 10 Escalation + 1.4460, !- Year 11 Escalation + 1.4547, !- Year 12 Escalation + 1.4645, !- Year 13 Escalation + 1.4766, !- Year 14 Escalation + 1.4898, !- Year 15 Escalation + 1.5023, !- Year 16 Escalation + 1.5147, !- Year 17 Escalation + 1.5257, !- Year 18 Escalation + 1.5344, !- Year 19 Escalation + 1.5423, !- Year 20 Escalation + 1.5491, !- Year 21 Escalation + 1.5544, !- Year 22 Escalation + 1.5597, !- Year 23 Escalation + 1.5650, !- Year 24 Escalation + 1.5702, !- Year 25 Escalation + 1.5744, !- Year 26 Escalation + 1.5770, !- Year 27 Escalation + 1.5782, !- Year 28 Escalation + 1.5789, !- Year 29 Escalation + 1.5778; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Commercial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9933, !- Year 1 Escalation + 0.9862, !- Year 2 Escalation + 0.9734, !- Year 3 Escalation + 0.9602, !- Year 4 Escalation + 0.9535, !- Year 5 Escalation + 0.9491, !- Year 6 Escalation + 0.9461, !- Year 7 Escalation + 0.9420, !- Year 8 Escalation + 0.9376, !- Year 9 Escalation + 0.9336, !- Year 10 Escalation + 0.9329, !- Year 11 Escalation + 0.9312, !- Year 12 Escalation + 0.9302, !- Year 13 Escalation + 0.9296, !- Year 14 Escalation + 0.9302, !- Year 15 Escalation + 0.9269, !- Year 16 Escalation + 0.9221, !- Year 17 Escalation + 0.9211, !- Year 18 Escalation + 0.9181, !- Year 19 Escalation + 0.9130, !- Year 20 Escalation + 0.9056, !- Year 21 Escalation + 0.9039, !- Year 22 Escalation + 0.9006, !- Year 23 Escalation + 0.8962, !- Year 24 Escalation + 0.8925, !- Year 25 Escalation + 0.8908, !- Year 26 Escalation + 0.8891, !- Year 27 Escalation + 0.8871, !- Year 28 Escalation + 0.8861, !- Year 29 Escalation + 0.8841; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Commercial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9688, !- Year 1 Escalation + 0.9246, !- Year 2 Escalation + 0.8734, !- Year 3 Escalation + 0.8343, !- Year 4 Escalation + 0.8157, !- Year 5 Escalation + 0.8306, !- Year 6 Escalation + 0.8511, !- Year 7 Escalation + 0.8804, !- Year 8 Escalation + 0.8953, !- Year 9 Escalation + 0.9139, !- Year 10 Escalation + 0.9265, !- Year 11 Escalation + 0.9367, !- Year 12 Escalation + 0.9497, !- Year 13 Escalation + 0.9651, !- Year 14 Escalation + 0.9716, !- Year 15 Escalation + 0.9805, !- Year 16 Escalation + 0.9963, !- Year 17 Escalation + 0.9972, !- Year 18 Escalation + 1.0019, !- Year 19 Escalation + 1.0093, !- Year 20 Escalation + 1.0177, !- Year 21 Escalation + 1.0214, !- Year 22 Escalation + 1.0279, !- Year 23 Escalation + 1.0302, !- Year 24 Escalation + 1.0284, !- Year 25 Escalation + 1.0293, !- Year 26 Escalation + 1.0265, !- Year 27 Escalation + 1.0223, !- Year 28 Escalation + 1.0223, !- Year 29 Escalation + 1.0205; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Commercial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0660, !- Year 1 Escalation + 1.2285, !- Year 2 Escalation + 1.3267, !- Year 3 Escalation + 1.4340, !- Year 4 Escalation + 1.5721, !- Year 5 Escalation + 1.6319, !- Year 6 Escalation + 1.6810, !- Year 7 Escalation + 1.7469, !- Year 8 Escalation + 1.7837, !- Year 9 Escalation + 1.8298, !- Year 10 Escalation + 1.8543, !- Year 11 Escalation + 1.8788, !- Year 12 Escalation + 1.9095, !- Year 13 Escalation + 1.9264, !- Year 14 Escalation + 1.9433, !- Year 15 Escalation + 1.9632, !- Year 16 Escalation + 1.9923, !- Year 17 Escalation + 2.0138, !- Year 18 Escalation + 2.0245, !- Year 19 Escalation + 2.0429, !- Year 20 Escalation + 2.0598, !- Year 21 Escalation + 2.0736, !- Year 22 Escalation + 2.0982, !- Year 23 Escalation + 2.1120, !- Year 24 Escalation + 2.1135, !- Year 25 Escalation + 2.1227, !- Year 26 Escalation + 2.1273, !- Year 27 Escalation + 2.1319, !- Year 28 Escalation + 2.1350, !- Year 29 Escalation + 2.1334; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Commercial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0264, !- Year 1 Escalation + 1.0411, !- Year 2 Escalation + 1.0616, !- Year 3 Escalation + 1.0924, !- Year 4 Escalation + 1.1261, !- Year 5 Escalation + 1.1554, !- Year 6 Escalation + 1.1701, !- Year 7 Escalation + 1.1774, !- Year 8 Escalation + 1.1848, !- Year 9 Escalation + 1.1891, !- Year 10 Escalation + 1.1950, !- Year 11 Escalation + 1.1965, !- Year 12 Escalation + 1.2053, !- Year 13 Escalation + 1.2170, !- Year 14 Escalation + 1.2243, !- Year 15 Escalation + 1.2302, !- Year 16 Escalation + 1.2375, !- Year 17 Escalation + 1.2449, !- Year 18 Escalation + 1.2478, !- Year 19 Escalation + 1.2507, !- Year 20 Escalation + 1.2551, !- Year 21 Escalation + 1.2595, !- Year 22 Escalation + 1.2654, !- Year 23 Escalation + 1.2727, !- Year 24 Escalation + 1.2815, !- Year 25 Escalation + 1.2903, !- Year 26 Escalation + 1.3006, !- Year 27 Escalation + 1.3109, !- Year 28 Escalation + 1.3226, !- Year 29 Escalation + 1.3372; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Commercial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0265, !- Year 1 Escalation + 1.0265, !- Year 2 Escalation + 1.0265, !- Year 3 Escalation + 1.0265, !- Year 4 Escalation + 1.0295, !- Year 5 Escalation + 1.0324, !- Year 6 Escalation + 1.0354, !- Year 7 Escalation + 1.0354, !- Year 8 Escalation + 1.0354, !- Year 9 Escalation + 1.0354, !- Year 10 Escalation + 1.0354, !- Year 11 Escalation + 1.0383, !- Year 12 Escalation + 1.0383, !- Year 13 Escalation + 1.0383, !- Year 14 Escalation + 1.0383, !- Year 15 Escalation + 1.0413, !- Year 16 Escalation + 1.0442, !- Year 17 Escalation + 1.0472, !- Year 18 Escalation + 1.0472, !- Year 19 Escalation + 1.0501, !- Year 20 Escalation + 1.0501, !- Year 21 Escalation + 1.0501, !- Year 22 Escalation + 1.0501, !- Year 23 Escalation + 1.0472, !- Year 24 Escalation + 1.0472, !- Year 25 Escalation + 1.0472, !- Year 26 Escalation + 1.0472, !- Year 27 Escalation + 1.0501, !- Year 28 Escalation + 1.0501, !- Year 29 Escalation + 1.0501; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Industrial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9858, !- Year 1 Escalation + 0.9677, !- Year 2 Escalation + 0.9501, !- Year 3 Escalation + 0.9383, !- Year 4 Escalation + 0.9326, !- Year 5 Escalation + 0.9302, !- Year 6 Escalation + 0.9292, !- Year 7 Escalation + 0.9259, !- Year 8 Escalation + 0.9221, !- Year 9 Escalation + 0.9183, !- Year 10 Escalation + 0.9174, !- Year 11 Escalation + 0.9150, !- Year 12 Escalation + 0.9150, !- Year 13 Escalation + 0.9150, !- Year 14 Escalation + 0.9160, !- Year 15 Escalation + 0.9131, !- Year 16 Escalation + 0.9098, !- Year 17 Escalation + 0.9103, !- Year 18 Escalation + 0.9079, !- Year 19 Escalation + 0.9036, !- Year 20 Escalation + 0.8970, !- Year 21 Escalation + 0.8951, !- Year 22 Escalation + 0.8927, !- Year 23 Escalation + 0.8898, !- Year 24 Escalation + 0.8879, !- Year 25 Escalation + 0.8875, !- Year 26 Escalation + 0.8875, !- Year 27 Escalation + 0.8865, !- Year 28 Escalation + 0.8870, !- Year 29 Escalation + 0.8879; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Industrial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9651, !- Year 1 Escalation + 0.9175, !- Year 2 Escalation + 0.8639, !- Year 3 Escalation + 0.8218, !- Year 4 Escalation + 0.7995, !- Year 5 Escalation + 0.8145, !- Year 6 Escalation + 0.8349, !- Year 7 Escalation + 0.8635, !- Year 8 Escalation + 0.8785, !- Year 9 Escalation + 0.8966, !- Year 10 Escalation + 0.9088, !- Year 11 Escalation + 0.9193, !- Year 12 Escalation + 0.9320, !- Year 13 Escalation + 0.9469, !- Year 14 Escalation + 0.9533, !- Year 15 Escalation + 0.9619, !- Year 16 Escalation + 0.9773, !- Year 17 Escalation + 0.9782, !- Year 18 Escalation + 0.9828, !- Year 19 Escalation + 0.9905, !- Year 20 Escalation + 0.9982, !- Year 21 Escalation + 1.0014, !- Year 22 Escalation + 1.0073, !- Year 23 Escalation + 1.0095, !- Year 24 Escalation + 1.0068, !- Year 25 Escalation + 1.0077, !- Year 26 Escalation + 1.0045, !- Year 27 Escalation + 0.9995, !- Year 28 Escalation + 0.9991, !- Year 29 Escalation + 0.9973; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Industrial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0829, !- Year 1 Escalation + 1.2667, !- Year 2 Escalation + 1.4195, !- Year 3 Escalation + 1.5837, !- Year 4 Escalation + 1.7935, !- Year 5 Escalation + 1.8927, !- Year 6 Escalation + 1.9431, !- Year 7 Escalation + 2.0325, !- Year 8 Escalation + 2.0618, !- Year 9 Escalation + 2.1073, !- Year 10 Escalation + 2.1398, !- Year 11 Escalation + 2.1659, !- Year 12 Escalation + 2.1967, !- Year 13 Escalation + 2.2569, !- Year 14 Escalation + 2.2699, !- Year 15 Escalation + 2.2992, !- Year 16 Escalation + 2.3496, !- Year 17 Escalation + 2.3463, !- Year 18 Escalation + 2.3593, !- Year 19 Escalation + 2.3805, !- Year 20 Escalation + 2.4163, !- Year 21 Escalation + 2.4358, !- Year 22 Escalation + 2.4650, !- Year 23 Escalation + 2.4780, !- Year 24 Escalation + 2.4829, !- Year 25 Escalation + 2.4943, !- Year 26 Escalation + 2.4992, !- Year 27 Escalation + 2.5041, !- Year 28 Escalation + 2.5089, !- Year 29 Escalation + 2.5073; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Industrial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0120, !- Year 1 Escalation + 1.0000, !- Year 2 Escalation + 0.9976, !- Year 3 Escalation + 1.0192, !- Year 4 Escalation + 1.0529, !- Year 5 Escalation + 1.1010, !- Year 6 Escalation + 1.1250, !- Year 7 Escalation + 1.1346, !- Year 8 Escalation + 1.1466, !- Year 9 Escalation + 1.1538, !- Year 10 Escalation + 1.1587, !- Year 11 Escalation + 1.1587, !- Year 12 Escalation + 1.1803, !- Year 13 Escalation + 1.1971, !- Year 14 Escalation + 1.2091, !- Year 15 Escalation + 1.2188, !- Year 16 Escalation + 1.2332, !- Year 17 Escalation + 1.2428, !- Year 18 Escalation + 1.2452, !- Year 19 Escalation + 1.2476, !- Year 20 Escalation + 1.2572, !- Year 21 Escalation + 1.2596, !- Year 22 Escalation + 1.2668, !- Year 23 Escalation + 1.2788, !- Year 24 Escalation + 1.2957, !- Year 25 Escalation + 1.3149, !- Year 26 Escalation + 1.3317, !- Year 27 Escalation + 1.3486, !- Year 28 Escalation + 1.3726, !- Year 29 Escalation + 1.3990; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + MidWest Industrial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0463, !- Year 1 Escalation + 1.0579, !- Year 2 Escalation + 1.0579, !- Year 3 Escalation + 1.0579, !- Year 4 Escalation + 1.0425, !- Year 5 Escalation + 1.0425, !- Year 6 Escalation + 1.0463, !- Year 7 Escalation + 1.0502, !- Year 8 Escalation + 1.0541, !- Year 9 Escalation + 1.0579, !- Year 10 Escalation + 1.0618, !- Year 11 Escalation + 1.0656, !- Year 12 Escalation + 1.0656, !- Year 13 Escalation + 1.0656, !- Year 14 Escalation + 1.0656, !- Year 15 Escalation + 1.0656, !- Year 16 Escalation + 1.0695, !- Year 17 Escalation + 1.0695, !- Year 18 Escalation + 1.0695, !- Year 19 Escalation + 1.0734, !- Year 20 Escalation + 1.0734, !- Year 21 Escalation + 1.0734, !- Year 22 Escalation + 1.0734, !- Year 23 Escalation + 1.0772, !- Year 24 Escalation + 1.0772, !- Year 25 Escalation + 1.0772, !- Year 26 Escalation + 1.0811, !- Year 27 Escalation + 1.0811, !- Year 28 Escalation + 1.0811, !- Year 29 Escalation + 1.0849; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Residential-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9975, !- Year 1 Escalation + 0.9975, !- Year 2 Escalation + 0.9991, !- Year 3 Escalation + 1.0013, !- Year 4 Escalation + 1.0097, !- Year 5 Escalation + 1.0220, !- Year 6 Escalation + 1.0298, !- Year 7 Escalation + 1.0336, !- Year 8 Escalation + 1.0358, !- Year 9 Escalation + 1.0364, !- Year 10 Escalation + 1.0371, !- Year 11 Escalation + 1.0377, !- Year 12 Escalation + 1.0399, !- Year 13 Escalation + 1.0424, !- Year 14 Escalation + 1.0430, !- Year 15 Escalation + 1.0427, !- Year 16 Escalation + 1.0440, !- Year 17 Escalation + 1.0452, !- Year 18 Escalation + 1.0465, !- Year 19 Escalation + 1.0462, !- Year 20 Escalation + 1.0440, !- Year 21 Escalation + 1.0456, !- Year 22 Escalation + 1.0424, !- Year 23 Escalation + 1.0405, !- Year 24 Escalation + 1.0393, !- Year 25 Escalation + 1.0390, !- Year 26 Escalation + 1.0405, !- Year 27 Escalation + 1.0440, !- Year 28 Escalation + 1.0468, !- Year 29 Escalation + 1.0474; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Residential-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0305, !- Year 1 Escalation + 1.0499, !- Year 2 Escalation + 1.0602, !- Year 3 Escalation + 1.0831, !- Year 4 Escalation + 1.1231, !- Year 5 Escalation + 1.1469, !- Year 6 Escalation + 1.1662, !- Year 7 Escalation + 1.1936, !- Year 8 Escalation + 1.2066, !- Year 9 Escalation + 1.2237, !- Year 10 Escalation + 1.2345, !- Year 11 Escalation + 1.2435, !- Year 12 Escalation + 1.2552, !- Year 13 Escalation + 1.2709, !- Year 14 Escalation + 1.2763, !- Year 15 Escalation + 1.2839, !- Year 16 Escalation + 1.2996, !- Year 17 Escalation + 1.3010, !- Year 18 Escalation + 1.3055, !- Year 19 Escalation + 1.3131, !- Year 20 Escalation + 1.3221, !- Year 21 Escalation + 1.3275, !- Year 22 Escalation + 1.3356, !- Year 23 Escalation + 1.3392, !- Year 24 Escalation + 1.3396, !- Year 25 Escalation + 1.3423, !- Year 26 Escalation + 1.3428, !- Year 27 Escalation + 1.3432, !- Year 28 Escalation + 1.3450, !- Year 29 Escalation + 1.3437; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Residential-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0184, !- Year 1 Escalation + 1.0368, !- Year 2 Escalation + 1.0552, !- Year 3 Escalation + 1.0806, !- Year 4 Escalation + 1.1087, !- Year 5 Escalation + 1.1315, !- Year 6 Escalation + 1.1446, !- Year 7 Escalation + 1.1507, !- Year 8 Escalation + 1.1578, !- Year 9 Escalation + 1.1630, !- Year 10 Escalation + 1.1674, !- Year 11 Escalation + 1.1700, !- Year 12 Escalation + 1.1788, !- Year 13 Escalation + 1.1876, !- Year 14 Escalation + 1.1937, !- Year 15 Escalation + 1.1989, !- Year 16 Escalation + 1.2051, !- Year 17 Escalation + 1.2112, !- Year 18 Escalation + 1.2138, !- Year 19 Escalation + 1.2165, !- Year 20 Escalation + 1.2217, !- Year 21 Escalation + 1.2244, !- Year 22 Escalation + 1.2296, !- Year 23 Escalation + 1.2358, !- Year 24 Escalation + 1.2410, !- Year 25 Escalation + 1.2480, !- Year 26 Escalation + 1.2550, !- Year 27 Escalation + 1.2612, !- Year 28 Escalation + 1.2699, !- Year 29 Escalation + 1.2796; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Residential-LPG, !- Name + Propane, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0791, !- Year 1 Escalation + 1.1370, !- Year 2 Escalation + 1.1892, !- Year 3 Escalation + 1.2337, !- Year 4 Escalation + 1.2761, !- Year 5 Escalation + 1.3189, !- Year 6 Escalation + 1.3581, !- Year 7 Escalation + 1.3907, !- Year 8 Escalation + 1.4164, !- Year 9 Escalation + 1.4343, !- Year 10 Escalation + 1.4470, !- Year 11 Escalation + 1.4555, !- Year 12 Escalation + 1.4653, !- Year 13 Escalation + 1.4780, !- Year 14 Escalation + 1.4910, !- Year 15 Escalation + 1.5037, !- Year 16 Escalation + 1.5163, !- Year 17 Escalation + 1.5277, !- Year 18 Escalation + 1.5367, !- Year 19 Escalation + 1.5445, !- Year 20 Escalation + 1.5518, !- Year 21 Escalation + 1.5571, !- Year 22 Escalation + 1.5624, !- Year 23 Escalation + 1.5677, !- Year 24 Escalation + 1.5734, !- Year 25 Escalation + 1.5775, !- Year 26 Escalation + 1.5803, !- Year 27 Escalation + 1.5820, !- Year 28 Escalation + 1.5828, !- Year 29 Escalation + 1.5820; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Commercial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9738, !- Year 1 Escalation + 0.9589, !- Year 2 Escalation + 0.9523, !- Year 3 Escalation + 0.9491, !- Year 4 Escalation + 0.9545, !- Year 5 Escalation + 0.9629, !- Year 6 Escalation + 0.9676, !- Year 7 Escalation + 0.9683, !- Year 8 Escalation + 0.9669, !- Year 9 Escalation + 0.9647, !- Year 10 Escalation + 0.9632, !- Year 11 Escalation + 0.9625, !- Year 12 Escalation + 0.9629, !- Year 13 Escalation + 0.9640, !- Year 14 Escalation + 0.9640, !- Year 15 Escalation + 0.9629, !- Year 16 Escalation + 0.9632, !- Year 17 Escalation + 0.9640, !- Year 18 Escalation + 0.9640, !- Year 19 Escalation + 0.9632, !- Year 20 Escalation + 0.9600, !- Year 21 Escalation + 0.9614, !- Year 22 Escalation + 0.9574, !- Year 23 Escalation + 0.9549, !- Year 24 Escalation + 0.9527, !- Year 25 Escalation + 0.9516, !- Year 26 Escalation + 0.9520, !- Year 27 Escalation + 0.9545, !- Year 28 Escalation + 0.9571, !- Year 29 Escalation + 0.9571; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Commercial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9946, !- Year 1 Escalation + 0.9705, !- Year 2 Escalation + 0.9411, !- Year 3 Escalation + 0.9230, !- Year 4 Escalation + 0.9239, !- Year 5 Escalation + 0.9434, !- Year 6 Escalation + 0.9638, !- Year 7 Escalation + 0.9923, !- Year 8 Escalation + 1.0072, !- Year 9 Escalation + 1.0263, !- Year 10 Escalation + 1.0381, !- Year 11 Escalation + 1.0480, !- Year 12 Escalation + 1.0612, !- Year 13 Escalation + 1.0748, !- Year 14 Escalation + 1.0811, !- Year 15 Escalation + 1.0902, !- Year 16 Escalation + 1.1047, !- Year 17 Escalation + 1.1065, !- Year 18 Escalation + 1.1115, !- Year 19 Escalation + 1.1192, !- Year 20 Escalation + 1.1260, !- Year 21 Escalation + 1.1296, !- Year 22 Escalation + 1.1359, !- Year 23 Escalation + 1.1386, !- Year 24 Escalation + 1.1359, !- Year 25 Escalation + 1.1368, !- Year 26 Escalation + 1.1341, !- Year 27 Escalation + 1.1296, !- Year 28 Escalation + 1.1300, !- Year 29 Escalation + 1.1282; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Commercial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0692, !- Year 1 Escalation + 1.2141, !- Year 2 Escalation + 1.3995, !- Year 3 Escalation + 1.5914, !- Year 4 Escalation + 1.7950, !- Year 5 Escalation + 1.8708, !- Year 6 Escalation + 1.9164, !- Year 7 Escalation + 1.9830, !- Year 8 Escalation + 2.0209, !- Year 9 Escalation + 2.0679, !- Year 10 Escalation + 2.0914, !- Year 11 Escalation + 2.1149, !- Year 12 Escalation + 2.1436, !- Year 13 Escalation + 2.1606, !- Year 14 Escalation + 2.1762, !- Year 15 Escalation + 2.1945, !- Year 16 Escalation + 2.2232, !- Year 17 Escalation + 2.2428, !- Year 18 Escalation + 2.2520, !- Year 19 Escalation + 2.2676, !- Year 20 Escalation + 2.2833, !- Year 21 Escalation + 2.2950, !- Year 22 Escalation + 2.3198, !- Year 23 Escalation + 2.3303, !- Year 24 Escalation + 2.3303, !- Year 25 Escalation + 2.3381, !- Year 26 Escalation + 2.3420, !- Year 27 Escalation + 2.3446, !- Year 28 Escalation + 2.3486, !- Year 29 Escalation + 2.3460; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Commercial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0162, !- Year 1 Escalation + 1.0336, !- Year 2 Escalation + 1.0535, !- Year 3 Escalation + 1.0846, !- Year 4 Escalation + 1.1182, !- Year 5 Escalation + 1.1455, !- Year 6 Escalation + 1.1580, !- Year 7 Escalation + 1.1629, !- Year 8 Escalation + 1.1692, !- Year 9 Escalation + 1.1716, !- Year 10 Escalation + 1.1754, !- Year 11 Escalation + 1.1766, !- Year 12 Escalation + 1.1841, !- Year 13 Escalation + 1.1940, !- Year 14 Escalation + 1.1990, !- Year 15 Escalation + 1.2027, !- Year 16 Escalation + 1.2090, !- Year 17 Escalation + 1.2139, !- Year 18 Escalation + 1.2152, !- Year 19 Escalation + 1.2164, !- Year 20 Escalation + 1.2214, !- Year 21 Escalation + 1.2226, !- Year 22 Escalation + 1.2264, !- Year 23 Escalation + 1.2326, !- Year 24 Escalation + 1.2388, !- Year 25 Escalation + 1.2463, !- Year 26 Escalation + 1.2537, !- Year 27 Escalation + 1.2600, !- Year 28 Escalation + 1.2699, !- Year 29 Escalation + 1.2823; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Commercial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0207, !- Year 1 Escalation + 1.0233, !- Year 2 Escalation + 1.0258, !- Year 3 Escalation + 1.0336, !- Year 4 Escalation + 1.0465, !- Year 5 Escalation + 1.0568, !- Year 6 Escalation + 1.0698, !- Year 7 Escalation + 1.0801, !- Year 8 Escalation + 1.0879, !- Year 9 Escalation + 1.0956, !- Year 10 Escalation + 1.1059, !- Year 11 Escalation + 1.1163, !- Year 12 Escalation + 1.1214, !- Year 13 Escalation + 1.1266, !- Year 14 Escalation + 1.1318, !- Year 15 Escalation + 1.1370, !- Year 16 Escalation + 1.1421, !- Year 17 Escalation + 1.1499, !- Year 18 Escalation + 1.1576, !- Year 19 Escalation + 1.1602, !- Year 20 Escalation + 1.1628, !- Year 21 Escalation + 1.1628, !- Year 22 Escalation + 1.1628, !- Year 23 Escalation + 1.1628, !- Year 24 Escalation + 1.1654, !- Year 25 Escalation + 1.1680, !- Year 26 Escalation + 1.1757, !- Year 27 Escalation + 1.1835, !- Year 28 Escalation + 1.1886, !- Year 29 Escalation + 1.1938; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Industrial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9648, !- Year 1 Escalation + 0.9431, !- Year 2 Escalation + 0.9341, !- Year 3 Escalation + 0.9323, !- Year 4 Escalation + 0.9386, !- Year 5 Escalation + 0.9517, !- Year 6 Escalation + 0.9596, !- Year 7 Escalation + 0.9613, !- Year 8 Escalation + 0.9613, !- Year 9 Escalation + 0.9608, !- Year 10 Escalation + 0.9596, !- Year 11 Escalation + 0.9585, !- Year 12 Escalation + 0.9596, !- Year 13 Escalation + 0.9613, !- Year 14 Escalation + 0.9613, !- Year 15 Escalation + 0.9613, !- Year 16 Escalation + 0.9630, !- Year 17 Escalation + 0.9636, !- Year 18 Escalation + 0.9653, !- Year 19 Escalation + 0.9665, !- Year 20 Escalation + 0.9659, !- Year 21 Escalation + 0.9676, !- Year 22 Escalation + 0.9636, !- Year 23 Escalation + 0.9636, !- Year 24 Escalation + 0.9625, !- Year 25 Escalation + 0.9630, !- Year 26 Escalation + 0.9659, !- Year 27 Escalation + 0.9716, !- Year 28 Escalation + 0.9767, !- Year 29 Escalation + 0.9795; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Industrial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0004, !- Year 1 Escalation + 0.9817, !- Year 2 Escalation + 0.9572, !- Year 3 Escalation + 0.9443, !- Year 4 Escalation + 0.9505, !- Year 5 Escalation + 0.9715, !- Year 6 Escalation + 0.9920, !- Year 7 Escalation + 1.0201, !- Year 8 Escalation + 1.0352, !- Year 9 Escalation + 1.0548, !- Year 10 Escalation + 1.0668, !- Year 11 Escalation + 1.0762, !- Year 12 Escalation + 1.0896, !- Year 13 Escalation + 1.1025, !- Year 14 Escalation + 1.1083, !- Year 15 Escalation + 1.1181, !- Year 16 Escalation + 1.1319, !- Year 17 Escalation + 1.1341, !- Year 18 Escalation + 1.1390, !- Year 19 Escalation + 1.1466, !- Year 20 Escalation + 1.1529, !- Year 21 Escalation + 1.1555, !- Year 22 Escalation + 1.1622, !- Year 23 Escalation + 1.1644, !- Year 24 Escalation + 1.1609, !- Year 25 Escalation + 1.1613, !- Year 26 Escalation + 1.1582, !- Year 27 Escalation + 1.1529, !- Year 28 Escalation + 1.1529, !- Year 29 Escalation + 1.1515; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Industrial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0896, !- Year 1 Escalation + 1.2516, !- Year 2 Escalation + 1.3913, !- Year 3 Escalation + 1.5599, !- Year 4 Escalation + 1.7589, !- Year 5 Escalation + 1.8353, !- Year 6 Escalation + 1.8814, !- Year 7 Escalation + 1.9486, !- Year 8 Escalation + 1.9855, !- Year 9 Escalation + 2.0329, !- Year 10 Escalation + 2.0580, !- Year 11 Escalation + 2.0804, !- Year 12 Escalation + 2.1107, !- Year 13 Escalation + 2.1265, !- Year 14 Escalation + 2.1436, !- Year 15 Escalation + 2.1621, !- Year 16 Escalation + 2.1897, !- Year 17 Escalation + 2.2095, !- Year 18 Escalation + 2.2187, !- Year 19 Escalation + 2.2345, !- Year 20 Escalation + 2.2503, !- Year 21 Escalation + 2.2635, !- Year 22 Escalation + 2.2872, !- Year 23 Escalation + 2.2991, !- Year 24 Escalation + 2.2991, !- Year 25 Escalation + 2.3070, !- Year 26 Escalation + 2.3109, !- Year 27 Escalation + 2.3136, !- Year 28 Escalation + 2.3162, !- Year 29 Escalation + 2.3136; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Industrial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0144, !- Year 1 Escalation + 1.0000, !- Year 2 Escalation + 0.9943, !- Year 3 Escalation + 1.0230, !- Year 4 Escalation + 1.0661, !- Year 5 Escalation + 1.1264, !- Year 6 Escalation + 1.1580, !- Year 7 Escalation + 1.1667, !- Year 8 Escalation + 1.1868, !- Year 9 Escalation + 1.1925, !- Year 10 Escalation + 1.2011, !- Year 11 Escalation + 1.2011, !- Year 12 Escalation + 1.2270, !- Year 13 Escalation + 1.2500, !- Year 14 Escalation + 1.2644, !- Year 15 Escalation + 1.2730, !- Year 16 Escalation + 1.2931, !- Year 17 Escalation + 1.3017, !- Year 18 Escalation + 1.3046, !- Year 19 Escalation + 1.3075, !- Year 20 Escalation + 1.3218, !- Year 21 Escalation + 1.3247, !- Year 22 Escalation + 1.3305, !- Year 23 Escalation + 1.3477, !- Year 24 Escalation + 1.3678, !- Year 25 Escalation + 1.3879, !- Year 26 Escalation + 1.4023, !- Year 27 Escalation + 1.4224, !- Year 28 Escalation + 1.4511, !- Year 29 Escalation + 1.4799; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + South Industrial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0213, !- Year 1 Escalation + 1.0213, !- Year 2 Escalation + 1.0237, !- Year 3 Escalation + 1.0284, !- Year 4 Escalation + 1.0355, !- Year 5 Escalation + 1.0427, !- Year 6 Escalation + 1.0498, !- Year 7 Escalation + 1.0569, !- Year 8 Escalation + 1.0616, !- Year 9 Escalation + 1.0664, !- Year 10 Escalation + 1.0735, !- Year 11 Escalation + 1.0806, !- Year 12 Escalation + 1.0853, !- Year 13 Escalation + 1.0877, !- Year 14 Escalation + 1.0924, !- Year 15 Escalation + 1.0829, !- Year 16 Escalation + 1.0829, !- Year 17 Escalation + 1.0900, !- Year 18 Escalation + 1.0948, !- Year 19 Escalation + 1.0995, !- Year 20 Escalation + 1.1019, !- Year 21 Escalation + 1.1043, !- Year 22 Escalation + 1.1090, !- Year 23 Escalation + 1.1137, !- Year 24 Escalation + 1.1161, !- Year 25 Escalation + 1.1209, !- Year 26 Escalation + 1.1256, !- Year 27 Escalation + 1.1280, !- Year 28 Escalation + 1.1327, !- Year 29 Escalation + 1.1374; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Residential-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9717, !- Year 1 Escalation + 0.9391, !- Year 2 Escalation + 0.9414, !- Year 3 Escalation + 0.9622, !- Year 4 Escalation + 0.9749, !- Year 5 Escalation + 0.9940, !- Year 6 Escalation + 1.0186, !- Year 7 Escalation + 1.0323, !- Year 8 Escalation + 1.0403, !- Year 9 Escalation + 1.0504, !- Year 10 Escalation + 1.0629, !- Year 11 Escalation + 1.0773, !- Year 12 Escalation + 1.0924, !- Year 13 Escalation + 1.1029, !- Year 14 Escalation + 1.1108, !- Year 15 Escalation + 1.1180, !- Year 16 Escalation + 1.1275, !- Year 17 Escalation + 1.1357, !- Year 18 Escalation + 1.1399, !- Year 19 Escalation + 1.1431, !- Year 20 Escalation + 1.1461, !- Year 21 Escalation + 1.1513, !- Year 22 Escalation + 1.1563, !- Year 23 Escalation + 1.1581, !- Year 24 Escalation + 1.1608, !- Year 25 Escalation + 1.1675, !- Year 26 Escalation + 1.1754, !- Year 27 Escalation + 1.1804, !- Year 28 Escalation + 1.1866, !- Year 29 Escalation + 1.1921; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Residential-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0289, !- Year 1 Escalation + 1.0456, !- Year 2 Escalation + 1.0496, !- Year 3 Escalation + 1.0672, !- Year 4 Escalation + 1.1015, !- Year 5 Escalation + 1.1227, !- Year 6 Escalation + 1.1425, !- Year 7 Escalation + 1.1691, !- Year 8 Escalation + 1.1827, !- Year 9 Escalation + 1.2075, !- Year 10 Escalation + 1.2183, !- Year 11 Escalation + 1.2269, !- Year 12 Escalation + 1.2400, !- Year 13 Escalation + 1.2521, !- Year 14 Escalation + 1.2562, !- Year 15 Escalation + 1.2643, !- Year 16 Escalation + 1.2783, !- Year 17 Escalation + 1.2806, !- Year 18 Escalation + 1.2855, !- Year 19 Escalation + 1.2932, !- Year 20 Escalation + 1.2982, !- Year 21 Escalation + 1.3018, !- Year 22 Escalation + 1.3117, !- Year 23 Escalation + 1.3162, !- Year 24 Escalation + 1.3148, !- Year 25 Escalation + 1.3166, !- Year 26 Escalation + 1.3175, !- Year 27 Escalation + 1.3175, !- Year 28 Escalation + 1.3194, !- Year 29 Escalation + 1.3180; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Residential-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0027, !- Year 1 Escalation + 0.9909, !- Year 2 Escalation + 0.9827, !- Year 3 Escalation + 0.9799, !- Year 4 Escalation + 0.9799, !- Year 5 Escalation + 0.9945, !- Year 6 Escalation + 1.0082, !- Year 7 Escalation + 1.0146, !- Year 8 Escalation + 1.0219, !- Year 9 Escalation + 1.1149, !- Year 10 Escalation + 1.1504, !- Year 11 Escalation + 1.1659, !- Year 12 Escalation + 1.1778, !- Year 13 Escalation + 1.1869, !- Year 14 Escalation + 1.1933, !- Year 15 Escalation + 1.1987, !- Year 16 Escalation + 1.2051, !- Year 17 Escalation + 1.2106, !- Year 18 Escalation + 1.2133, !- Year 19 Escalation + 1.2170, !- Year 20 Escalation + 1.2215, !- Year 21 Escalation + 1.2252, !- Year 22 Escalation + 1.2288, !- Year 23 Escalation + 1.2343, !- Year 24 Escalation + 1.2416, !- Year 25 Escalation + 1.2498, !- Year 26 Escalation + 1.2571, !- Year 27 Escalation + 1.2653, !- Year 28 Escalation + 1.2753, !- Year 29 Escalation + 1.2862; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Residential-LPG, !- Name + Propane, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0781, !- Year 1 Escalation + 1.1350, !- Year 2 Escalation + 1.1861, !- Year 3 Escalation + 1.2291, !- Year 4 Escalation + 1.2705, !- Year 5 Escalation + 1.3122, !- Year 6 Escalation + 1.3506, !- Year 7 Escalation + 1.3823, !- Year 8 Escalation + 1.4072, !- Year 9 Escalation + 1.4561, !- Year 10 Escalation + 1.4785, !- Year 11 Escalation + 1.4907, !- Year 12 Escalation + 1.5017, !- Year 13 Escalation + 1.5135, !- Year 14 Escalation + 1.5262, !- Year 15 Escalation + 1.5384, !- Year 16 Escalation + 1.5502, !- Year 17 Escalation + 1.5612, !- Year 18 Escalation + 1.5696, !- Year 19 Escalation + 1.5772, !- Year 20 Escalation + 1.5840, !- Year 21 Escalation + 1.5895, !- Year 22 Escalation + 1.5941, !- Year 23 Escalation + 1.5996, !- Year 24 Escalation + 1.6046, !- Year 25 Escalation + 1.6089, !- Year 26 Escalation + 1.6114, !- Year 27 Escalation + 1.6131, !- Year 28 Escalation + 1.6139, !- Year 29 Escalation + 1.6127; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Commercial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9597, !- Year 1 Escalation + 0.9258, !- Year 2 Escalation + 0.9364, !- Year 3 Escalation + 0.9528, !- Year 4 Escalation + 0.9572, !- Year 5 Escalation + 0.9797, !- Year 6 Escalation + 0.9978, !- Year 7 Escalation + 1.0025, !- Year 8 Escalation + 1.0011, !- Year 9 Escalation + 1.0036, !- Year 10 Escalation + 1.0103, !- Year 11 Escalation + 1.0169, !- Year 12 Escalation + 1.0245, !- Year 13 Escalation + 1.0256, !- Year 14 Escalation + 1.0247, !- Year 15 Escalation + 1.0245, !- Year 16 Escalation + 1.0281, !- Year 17 Escalation + 1.0300, !- Year 18 Escalation + 1.0275, !- Year 19 Escalation + 1.0233, !- Year 20 Escalation + 1.0183, !- Year 21 Escalation + 1.0164, !- Year 22 Escalation + 1.0142, !- Year 23 Escalation + 1.0089, !- Year 24 Escalation + 1.0042, !- Year 25 Escalation + 1.0025, !- Year 26 Escalation + 1.0019, !- Year 27 Escalation + 0.9989, !- Year 28 Escalation + 0.9969, !- Year 29 Escalation + 0.9939; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Commercial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9966, !- Year 1 Escalation + 0.9746, !- Year 2 Escalation + 0.9453, !- Year 3 Escalation + 0.9279, !- Year 4 Escalation + 0.9275, !- Year 5 Escalation + 0.9453, !- Year 6 Escalation + 0.9652, !- Year 7 Escalation + 0.9911, !- Year 8 Escalation + 1.0064, !- Year 9 Escalation + 1.0716, !- Year 10 Escalation + 1.0983, !- Year 11 Escalation + 1.1136, !- Year 12 Escalation + 1.1284, !- Year 13 Escalation + 1.1390, !- Year 14 Escalation + 1.1446, !- Year 15 Escalation + 1.1535, !- Year 16 Escalation + 1.1666, !- Year 17 Escalation + 1.1687, !- Year 18 Escalation + 1.1742, !- Year 19 Escalation + 1.1810, !- Year 20 Escalation + 1.1861, !- Year 21 Escalation + 1.1886, !- Year 22 Escalation + 1.1963, !- Year 23 Escalation + 1.1992, !- Year 24 Escalation + 1.1958, !- Year 25 Escalation + 1.1954, !- Year 26 Escalation + 1.1942, !- Year 27 Escalation + 1.1903, !- Year 28 Escalation + 1.1903, !- Year 29 Escalation + 1.1891; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Commercial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.1341, !- Year 1 Escalation + 1.1880, !- Year 2 Escalation + 1.2216, !- Year 3 Escalation + 1.2766, !- Year 4 Escalation + 1.3593, !- Year 5 Escalation + 1.4024, !- Year 6 Escalation + 1.4455, !- Year 7 Escalation + 1.5078, !- Year 8 Escalation + 1.5437, !- Year 9 Escalation + 1.5880, !- Year 10 Escalation + 1.6120, !- Year 11 Escalation + 1.6335, !- Year 12 Escalation + 1.6623, !- Year 13 Escalation + 1.6838, !- Year 14 Escalation + 1.7006, !- Year 15 Escalation + 1.7198, !- Year 16 Escalation + 1.7485, !- Year 17 Escalation + 1.7629, !- Year 18 Escalation + 1.7749, !- Year 19 Escalation + 1.7892, !- Year 20 Escalation + 1.8024, !- Year 21 Escalation + 1.8132, !- Year 22 Escalation + 1.8407, !- Year 23 Escalation + 1.8503, !- Year 24 Escalation + 1.8443, !- Year 25 Escalation + 1.8443, !- Year 26 Escalation + 1.8455, !- Year 27 Escalation + 1.8467, !- Year 28 Escalation + 1.8491, !- Year 29 Escalation + 1.8467; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Commercial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0134, !- Year 1 Escalation + 1.0195, !- Year 2 Escalation + 1.0280, !- Year 3 Escalation + 1.0451, !- Year 4 Escalation + 1.0646, !- Year 5 Escalation + 1.0877, !- Year 6 Escalation + 1.1035, !- Year 7 Escalation + 1.1096, !- Year 8 Escalation + 1.1169, !- Year 9 Escalation + 1.2290, !- Year 10 Escalation + 1.2704, !- Year 11 Escalation + 1.2875, !- Year 12 Escalation + 1.3021, !- Year 13 Escalation + 1.3130, !- Year 14 Escalation + 1.3203, !- Year 15 Escalation + 1.3276, !- Year 16 Escalation + 1.3350, !- Year 17 Escalation + 1.3423, !- Year 18 Escalation + 1.3471, !- Year 19 Escalation + 1.3520, !- Year 20 Escalation + 1.3581, !- Year 21 Escalation + 1.3630, !- Year 22 Escalation + 1.3691, !- Year 23 Escalation + 1.3764, !- Year 24 Escalation + 1.3861, !- Year 25 Escalation + 1.3983, !- Year 26 Escalation + 1.4080, !- Year 27 Escalation + 1.4190, !- Year 28 Escalation + 1.4336, !- Year 29 Escalation + 1.4482; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Commercial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9972, !- Year 1 Escalation + 0.9917, !- Year 2 Escalation + 0.9889, !- Year 3 Escalation + 0.9847, !- Year 4 Escalation + 0.9819, !- Year 5 Escalation + 0.9819, !- Year 6 Escalation + 0.9805, !- Year 7 Escalation + 0.9791, !- Year 8 Escalation + 0.9777, !- Year 9 Escalation + 0.9764, !- Year 10 Escalation + 0.9777, !- Year 11 Escalation + 0.9777, !- Year 12 Escalation + 0.9750, !- Year 13 Escalation + 0.9736, !- Year 14 Escalation + 0.9722, !- Year 15 Escalation + 0.9708, !- Year 16 Escalation + 0.9708, !- Year 17 Escalation + 0.9694, !- Year 18 Escalation + 0.9680, !- Year 19 Escalation + 0.9666, !- Year 20 Escalation + 0.9652, !- Year 21 Escalation + 0.9652, !- Year 22 Escalation + 0.9638, !- Year 23 Escalation + 0.9624, !- Year 24 Escalation + 0.9597, !- Year 25 Escalation + 0.9597, !- Year 26 Escalation + 0.9583, !- Year 27 Escalation + 0.9555, !- Year 28 Escalation + 0.9541, !- Year 29 Escalation + 0.9527; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Industrial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9259, !- Year 1 Escalation + 0.8819, !- Year 2 Escalation + 0.8988, !- Year 3 Escalation + 0.9119, !- Year 4 Escalation + 0.9152, !- Year 5 Escalation + 0.9449, !- Year 6 Escalation + 0.9621, !- Year 7 Escalation + 0.9634, !- Year 8 Escalation + 0.9646, !- Year 9 Escalation + 0.9683, !- Year 10 Escalation + 0.9770, !- Year 11 Escalation + 0.9860, !- Year 12 Escalation + 0.9951, !- Year 13 Escalation + 0.9971, !- Year 14 Escalation + 0.9984, !- Year 15 Escalation + 0.9996, !- Year 16 Escalation + 1.0066, !- Year 17 Escalation + 1.0099, !- Year 18 Escalation + 1.0086, !- Year 19 Escalation + 1.0062, !- Year 20 Escalation + 1.0033, !- Year 21 Escalation + 1.0033, !- Year 22 Escalation + 1.0021, !- Year 23 Escalation + 0.9996, !- Year 24 Escalation + 0.9979, !- Year 25 Escalation + 0.9984, !- Year 26 Escalation + 0.9996, !- Year 27 Escalation + 0.9988, !- Year 28 Escalation + 0.9992, !- Year 29 Escalation + 0.9988; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Industrial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0004, !- Year 1 Escalation + 0.9824, !- Year 2 Escalation + 0.9582, !- Year 3 Escalation + 0.9453, !- Year 4 Escalation + 0.9505, !- Year 5 Escalation + 0.9707, !- Year 6 Escalation + 0.9914, !- Year 7 Escalation + 1.0172, !- Year 8 Escalation + 1.0331, !- Year 9 Escalation + 1.0538, !- Year 10 Escalation + 1.0654, !- Year 11 Escalation + 1.0745, !- Year 12 Escalation + 1.0874, !- Year 13 Escalation + 1.0981, !- Year 14 Escalation + 1.1037, !- Year 15 Escalation + 1.1128, !- Year 16 Escalation + 1.1261, !- Year 17 Escalation + 1.1283, !- Year 18 Escalation + 1.1339, !- Year 19 Escalation + 1.1408, !- Year 20 Escalation + 1.1459, !- Year 21 Escalation + 1.1481, !- Year 22 Escalation + 1.1558, !- Year 23 Escalation + 1.1584, !- Year 24 Escalation + 1.1545, !- Year 25 Escalation + 1.1537, !- Year 26 Escalation + 1.1520, !- Year 27 Escalation + 1.1472, !- Year 28 Escalation + 1.1472, !- Year 29 Escalation + 1.1459; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Industrial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9565, !- Year 1 Escalation + 0.9830, !- Year 2 Escalation + 0.9924, !- Year 3 Escalation + 1.0246, !- Year 4 Escalation + 1.0776, !- Year 5 Escalation + 1.1079, !- Year 6 Escalation + 1.1410, !- Year 7 Escalation + 1.1892, !- Year 8 Escalation + 1.2157, !- Year 9 Escalation + 1.2498, !- Year 10 Escalation + 1.2677, !- Year 11 Escalation + 1.2838, !- Year 12 Escalation + 1.3056, !- Year 13 Escalation + 1.3217, !- Year 14 Escalation + 1.3321, !- Year 15 Escalation + 1.3472, !- Year 16 Escalation + 1.3709, !- Year 17 Escalation + 1.3869, !- Year 18 Escalation + 1.3945, !- Year 19 Escalation + 1.4059, !- Year 20 Escalation + 1.4153, !- Year 21 Escalation + 1.4248, !- Year 22 Escalation + 1.4494, !- Year 23 Escalation + 1.4570, !- Year 24 Escalation + 1.4503, !- Year 25 Escalation + 1.4484, !- Year 26 Escalation + 1.4494, !- Year 27 Escalation + 1.4513, !- Year 28 Escalation + 1.4532, !- Year 29 Escalation + 1.4522; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Industrial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0266, !- Year 1 Escalation + 1.0200, !- Year 2 Escalation + 1.0177, !- Year 3 Escalation + 1.0377, !- Year 4 Escalation + 1.0665, !- Year 5 Escalation + 1.1131, !- Year 6 Escalation + 1.1441, !- Year 7 Escalation + 1.1508, !- Year 8 Escalation + 1.1641, !- Year 9 Escalation + 1.1619, !- Year 10 Escalation + 1.1641, !- Year 11 Escalation + 1.1641, !- Year 12 Escalation + 1.1840, !- Year 13 Escalation + 1.2040, !- Year 14 Escalation + 1.2173, !- Year 15 Escalation + 1.2306, !- Year 16 Escalation + 1.2417, !- Year 17 Escalation + 1.2528, !- Year 18 Escalation + 1.2594, !- Year 19 Escalation + 1.2639, !- Year 20 Escalation + 1.2772, !- Year 21 Escalation + 1.2816, !- Year 22 Escalation + 1.2882, !- Year 23 Escalation + 1.3016, !- Year 24 Escalation + 1.3215, !- Year 25 Escalation + 1.3437, !- Year 26 Escalation + 1.3636, !- Year 27 Escalation + 1.3836, !- Year 28 Escalation + 1.4146, !- Year 29 Escalation + 1.4435; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + West Industrial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0028, !- Year 1 Escalation + 1.0000, !- Year 2 Escalation + 1.0000, !- Year 3 Escalation + 1.0000, !- Year 4 Escalation + 1.0000, !- Year 5 Escalation + 1.0000, !- Year 6 Escalation + 1.0028, !- Year 7 Escalation + 1.0028, !- Year 8 Escalation + 1.0057, !- Year 9 Escalation + 1.0057, !- Year 10 Escalation + 1.0085, !- Year 11 Escalation + 1.0114, !- Year 12 Escalation + 1.0114, !- Year 13 Escalation + 1.0114, !- Year 14 Escalation + 1.0114, !- Year 15 Escalation + 1.0114, !- Year 16 Escalation + 1.0114, !- Year 17 Escalation + 1.0085, !- Year 18 Escalation + 1.0085, !- Year 19 Escalation + 1.0085, !- Year 20 Escalation + 1.0085, !- Year 21 Escalation + 1.0085, !- Year 22 Escalation + 1.0085, !- Year 23 Escalation + 1.0085, !- Year 24 Escalation + 1.0085, !- Year 25 Escalation + 1.0085, !- Year 26 Escalation + 1.0114, !- Year 27 Escalation + 1.0114, !- Year 28 Escalation + 1.0142, !- Year 29 Escalation + 1.0171; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Residential-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9975, !- Year 1 Escalation + 0.9945, !- Year 2 Escalation + 0.9956, !- Year 3 Escalation + 1.0003, !- Year 4 Escalation + 1.0094, !- Year 5 Escalation + 1.0215, !- Year 6 Escalation + 1.0319, !- Year 7 Escalation + 1.0371, !- Year 8 Escalation + 1.0415, !- Year 9 Escalation + 1.0437, !- Year 10 Escalation + 1.0468, !- Year 11 Escalation + 1.0498, !- Year 12 Escalation + 1.0550, !- Year 13 Escalation + 1.0589, !- Year 14 Escalation + 1.0613, !- Year 15 Escalation + 1.0624, !- Year 16 Escalation + 1.0638, !- Year 17 Escalation + 1.0663, !- Year 18 Escalation + 1.0669, !- Year 19 Escalation + 1.0657, !- Year 20 Escalation + 1.0622, !- Year 21 Escalation + 1.0633, !- Year 22 Escalation + 1.0622, !- Year 23 Escalation + 1.0608, !- Year 24 Escalation + 1.0597, !- Year 25 Escalation + 1.0600, !- Year 26 Escalation + 1.0616, !- Year 27 Escalation + 1.0635, !- Year 28 Escalation + 1.0652, !- Year 29 Escalation + 1.0657; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Residential-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0222, !- Year 1 Escalation + 1.0377, !- Year 2 Escalation + 1.0475, !- Year 3 Escalation + 1.0684, !- Year 4 Escalation + 1.1075, !- Year 5 Escalation + 1.1363, !- Year 6 Escalation + 1.1563, !- Year 7 Escalation + 1.1838, !- Year 8 Escalation + 1.1985, !- Year 9 Escalation + 1.2163, !- Year 10 Escalation + 1.2282, !- Year 11 Escalation + 1.2380, !- Year 12 Escalation + 1.2504, !- Year 13 Escalation + 1.2647, !- Year 14 Escalation + 1.2709, !- Year 15 Escalation + 1.2793, !- Year 16 Escalation + 1.2944, !- Year 17 Escalation + 1.2953, !- Year 18 Escalation + 1.3002, !- Year 19 Escalation + 1.3073, !- Year 20 Escalation + 1.3148, !- Year 21 Escalation + 1.3184, !- Year 22 Escalation + 1.3246, !- Year 23 Escalation + 1.3268, !- Year 24 Escalation + 1.3246, !- Year 25 Escalation + 1.3255, !- Year 26 Escalation + 1.3228, !- Year 27 Escalation + 1.3188, !- Year 28 Escalation + 1.3193, !- Year 29 Escalation + 1.3175; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Residential-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0194, !- Year 1 Escalation + 1.0320, !- Year 2 Escalation + 1.0446, !- Year 3 Escalation + 1.0649, !- Year 4 Escalation + 1.0882, !- Year 5 Escalation + 1.1105, !- Year 6 Escalation + 1.1240, !- Year 7 Escalation + 1.1318, !- Year 8 Escalation + 1.1395, !- Year 9 Escalation + 1.1667, !- Year 10 Escalation + 1.1793, !- Year 11 Escalation + 1.1860, !- Year 12 Escalation + 1.1957, !- Year 13 Escalation + 1.2064, !- Year 14 Escalation + 1.2132, !- Year 15 Escalation + 1.2200, !- Year 16 Escalation + 1.2267, !- Year 17 Escalation + 1.2335, !- Year 18 Escalation + 1.2374, !- Year 19 Escalation + 1.2422, !- Year 20 Escalation + 1.2471, !- Year 21 Escalation + 1.2519, !- Year 22 Escalation + 1.2568, !- Year 23 Escalation + 1.2645, !- Year 24 Escalation + 1.2713, !- Year 25 Escalation + 1.2800, !- Year 26 Escalation + 1.2888, !- Year 27 Escalation + 1.2965, !- Year 28 Escalation + 1.3062, !- Year 29 Escalation + 1.3178; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Residential-LPG, !- Name + Propane, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0784, !- Year 1 Escalation + 1.1353, !- Year 2 Escalation + 1.1865, !- Year 3 Escalation + 1.2307, !- Year 4 Escalation + 1.2723, !- Year 5 Escalation + 1.3148, !- Year 6 Escalation + 1.3533, !- Year 7 Escalation + 1.3857, !- Year 8 Escalation + 1.4111, !- Year 9 Escalation + 1.4339, !- Year 10 Escalation + 1.4475, !- Year 11 Escalation + 1.4567, !- Year 12 Escalation + 1.4667, !- Year 13 Escalation + 1.4790, !- Year 14 Escalation + 1.4921, !- Year 15 Escalation + 1.5044, !- Year 16 Escalation + 1.5171, !- Year 17 Escalation + 1.5280, !- Year 18 Escalation + 1.5372, !- Year 19 Escalation + 1.5451, !- Year 20 Escalation + 1.5521, !- Year 21 Escalation + 1.5578, !- Year 22 Escalation + 1.5630, !- Year 23 Escalation + 1.5687, !- Year 24 Escalation + 1.5744, !- Year 25 Escalation + 1.5788, !- Year 26 Escalation + 1.5819, !- Year 27 Escalation + 1.5836, !- Year 28 Escalation + 1.5845, !- Year 29 Escalation + 1.5841; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9778, !- Year 1 Escalation + 0.9613, !- Year 2 Escalation + 0.9582, !- Year 3 Escalation + 0.9582, !- Year 4 Escalation + 0.9636, !- Year 5 Escalation + 0.9740, !- Year 6 Escalation + 0.9816, !- Year 7 Escalation + 0.9832, !- Year 8 Escalation + 0.9842, !- Year 9 Escalation + 0.9826, !- Year 10 Escalation + 0.9842, !- Year 11 Escalation + 0.9851, !- Year 12 Escalation + 0.9883, !- Year 13 Escalation + 0.9899, !- Year 14 Escalation + 0.9905, !- Year 15 Escalation + 0.9899, !- Year 16 Escalation + 0.9905, !- Year 17 Escalation + 0.9914, !- Year 18 Escalation + 0.9902, !- Year 19 Escalation + 0.9873, !- Year 20 Escalation + 0.9819, !- Year 21 Escalation + 0.9819, !- Year 22 Escalation + 0.9794, !- Year 23 Escalation + 0.9772, !- Year 24 Escalation + 0.9750, !- Year 25 Escalation + 0.9734, !- Year 26 Escalation + 0.9728, !- Year 27 Escalation + 0.9724, !- Year 28 Escalation + 0.9724, !- Year 29 Escalation + 0.9715; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9903, !- Year 1 Escalation + 0.9628, !- Year 2 Escalation + 0.9292, !- Year 3 Escalation + 0.9071, !- Year 4 Escalation + 0.9036, !- Year 5 Escalation + 0.9213, !- Year 6 Escalation + 0.9407, !- Year 7 Escalation + 0.9682, !- Year 8 Escalation + 0.9828, !- Year 9 Escalation + 1.0102, !- Year 10 Escalation + 1.0248, !- Year 11 Escalation + 1.0354, !- Year 12 Escalation + 1.0487, !- Year 13 Escalation + 1.0619, !- Year 14 Escalation + 1.0677, !- Year 15 Escalation + 1.0761, !- Year 16 Escalation + 1.0907, !- Year 17 Escalation + 1.0920, !- Year 18 Escalation + 1.0964, !- Year 19 Escalation + 1.1035, !- Year 20 Escalation + 1.1106, !- Year 21 Escalation + 1.1132, !- Year 22 Escalation + 1.1199, !- Year 23 Escalation + 1.1225, !- Year 24 Escalation + 1.1194, !- Year 25 Escalation + 1.1203, !- Year 26 Escalation + 1.1176, !- Year 27 Escalation + 1.1132, !- Year 28 Escalation + 1.1132, !- Year 29 Escalation + 1.1115; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0251, !- Year 1 Escalation + 1.1204, !- Year 2 Escalation + 1.1905, !- Year 3 Escalation + 1.2910, !- Year 4 Escalation + 1.4206, !- Year 5 Escalation + 1.4775, !- Year 6 Escalation + 1.5238, !- Year 7 Escalation + 1.5873, !- Year 8 Escalation + 1.6243, !- Year 9 Escalation + 1.6706, !- Year 10 Escalation + 1.6944, !- Year 11 Escalation + 1.7196, !- Year 12 Escalation + 1.7500, !- Year 13 Escalation + 1.7672, !- Year 14 Escalation + 1.7844, !- Year 15 Escalation + 1.8029, !- Year 16 Escalation + 1.8320, !- Year 17 Escalation + 1.8532, !- Year 18 Escalation + 1.8624, !- Year 19 Escalation + 1.8796, !- Year 20 Escalation + 1.8955, !- Year 21 Escalation + 1.9087, !- Year 22 Escalation + 1.9339, !- Year 23 Escalation + 1.9458, !- Year 24 Escalation + 1.9471, !- Year 25 Escalation + 1.9550, !- Year 26 Escalation + 1.9590, !- Year 27 Escalation + 1.9630, !- Year 28 Escalation + 1.9656, !- Year 29 Escalation + 1.9630; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0170, !- Year 1 Escalation + 1.0339, !- Year 2 Escalation + 1.0548, !- Year 3 Escalation + 1.0862, !- Year 4 Escalation + 1.1201, !- Year 5 Escalation + 1.1462, !- Year 6 Escalation + 1.1606, !- Year 7 Escalation + 1.1658, !- Year 8 Escalation + 1.1710, !- Year 9 Escalation + 1.1971, !- Year 10 Escalation + 1.2089, !- Year 11 Escalation + 1.2128, !- Year 12 Escalation + 1.2219, !- Year 13 Escalation + 1.2324, !- Year 14 Escalation + 1.2389, !- Year 15 Escalation + 1.2441, !- Year 16 Escalation + 1.2507, !- Year 17 Escalation + 1.2572, !- Year 18 Escalation + 1.2598, !- Year 19 Escalation + 1.2624, !- Year 20 Escalation + 1.2676, !- Year 21 Escalation + 1.2702, !- Year 22 Escalation + 1.2755, !- Year 23 Escalation + 1.2833, !- Year 24 Escalation + 1.2898, !- Year 25 Escalation + 1.3003, !- Year 26 Escalation + 1.3081, !- Year 27 Escalation + 1.3172, !- Year 28 Escalation + 1.3277, !- Year 29 Escalation + 1.3420; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0128, !- Year 1 Escalation + 1.0107, !- Year 2 Escalation + 1.0085, !- Year 3 Escalation + 1.0085, !- Year 4 Escalation + 1.0107, !- Year 5 Escalation + 1.0128, !- Year 6 Escalation + 1.0149, !- Year 7 Escalation + 1.0171, !- Year 8 Escalation + 1.0192, !- Year 9 Escalation + 1.0192, !- Year 10 Escalation + 1.0213, !- Year 11 Escalation + 1.0235, !- Year 12 Escalation + 1.0235, !- Year 13 Escalation + 1.0235, !- Year 14 Escalation + 1.0235, !- Year 15 Escalation + 1.0235, !- Year 16 Escalation + 1.0256, !- Year 17 Escalation + 1.0277, !- Year 18 Escalation + 1.0299, !- Year 19 Escalation + 1.0299, !- Year 20 Escalation + 1.0299, !- Year 21 Escalation + 1.0299, !- Year 22 Escalation + 1.0277, !- Year 23 Escalation + 1.0277, !- Year 24 Escalation + 1.0256, !- Year 25 Escalation + 1.0256, !- Year 26 Escalation + 1.0277, !- Year 27 Escalation + 1.0277, !- Year 28 Escalation + 1.0277, !- Year 29 Escalation + 1.0277; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Industrial-Electricity, !- Name + Electricity, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9636, !- Year 1 Escalation + 0.9377, !- Year 2 Escalation + 0.9310, !- Year 3 Escalation + 0.9301, !- Year 4 Escalation + 0.9334, !- Year 5 Escalation + 0.9454, !- Year 6 Escalation + 0.9526, !- Year 7 Escalation + 0.9526, !- Year 8 Escalation + 0.9526, !- Year 9 Escalation + 0.9511, !- Year 10 Escalation + 0.9521, !- Year 11 Escalation + 0.9526, !- Year 12 Escalation + 0.9559, !- Year 13 Escalation + 0.9579, !- Year 14 Escalation + 0.9588, !- Year 15 Escalation + 0.9588, !- Year 16 Escalation + 0.9602, !- Year 17 Escalation + 0.9622, !- Year 18 Escalation + 0.9617, !- Year 19 Escalation + 0.9602, !- Year 20 Escalation + 0.9564, !- Year 21 Escalation + 0.9569, !- Year 22 Escalation + 0.9550, !- Year 23 Escalation + 0.9535, !- Year 24 Escalation + 0.9526, !- Year 25 Escalation + 0.9531, !- Year 26 Escalation + 0.9545, !- Year 27 Escalation + 0.9564, !- Year 28 Escalation + 0.9593, !- Year 29 Escalation + 0.9612; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Industrial-Distillate Oil, !- Name + FuelOil#1, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 0.9898, !- Year 1 Escalation + 0.9627, !- Year 2 Escalation + 0.9298, !- Year 3 Escalation + 0.9085, !- Year 4 Escalation + 0.9059, !- Year 5 Escalation + 0.9250, !- Year 6 Escalation + 0.9458, !- Year 7 Escalation + 0.9734, !- Year 8 Escalation + 0.9889, !- Year 9 Escalation + 1.0080, !- Year 10 Escalation + 1.0200, !- Year 11 Escalation + 1.0302, !- Year 12 Escalation + 1.0431, !- Year 13 Escalation + 1.0560, !- Year 14 Escalation + 1.0622, !- Year 15 Escalation + 1.0715, !- Year 16 Escalation + 1.0857, !- Year 17 Escalation + 1.0875, !- Year 18 Escalation + 1.0928, !- Year 19 Escalation + 1.0999, !- Year 20 Escalation + 1.1066, !- Year 21 Escalation + 1.1097, !- Year 22 Escalation + 1.1163, !- Year 23 Escalation + 1.1186, !- Year 24 Escalation + 1.1155, !- Year 25 Escalation + 1.1159, !- Year 26 Escalation + 1.1132, !- Year 27 Escalation + 1.1083, !- Year 28 Escalation + 1.1083, !- Year 29 Escalation + 1.1066; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Industrial-Residual Oil, !- Name + FuelOil#2, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0691, !- Year 1 Escalation + 1.2181, !- Year 2 Escalation + 1.3444, !- Year 3 Escalation + 1.4987, !- Year 4 Escalation + 1.6848, !- Year 5 Escalation + 1.7580, !- Year 6 Escalation + 1.8045, !- Year 7 Escalation + 1.8737, !- Year 8 Escalation + 1.9096, !- Year 9 Escalation + 1.9548, !- Year 10 Escalation + 1.9801, !- Year 11 Escalation + 2.0027, !- Year 12 Escalation + 2.0319, !- Year 13 Escalation + 2.0532, !- Year 14 Escalation + 2.0691, !- Year 15 Escalation + 2.0878, !- Year 16 Escalation + 2.1184, !- Year 17 Escalation + 2.1343, !- Year 18 Escalation + 2.1436, !- Year 19 Escalation + 2.1596, !- Year 20 Escalation + 2.1769, !- Year 21 Escalation + 2.1902, !- Year 22 Escalation + 2.2141, !- Year 23 Escalation + 2.2247, !- Year 24 Escalation + 2.2247, !- Year 25 Escalation + 2.2327, !- Year 26 Escalation + 2.2354, !- Year 27 Escalation + 2.2380, !- Year 28 Escalation + 2.2407, !- Year 29 Escalation + 2.2380; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Industrial-Natural Gas, !- Name + NaturalGas, !- Resource !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0153, !- Year 1 Escalation + 1.0000, !- Year 2 Escalation + 0.9974, !- Year 3 Escalation + 1.0204, !- Year 4 Escalation + 1.0561, !- Year 5 Escalation + 1.1071, !- Year 6 Escalation + 1.1352, !- Year 7 Escalation + 1.1429, !- Year 8 Escalation + 1.1582, !- Year 9 Escalation + 1.1633, !- Year 10 Escalation + 1.1684, !- Year 11 Escalation + 1.1684, !- Year 12 Escalation + 1.1913, !- Year 13 Escalation + 1.2117, !- Year 14 Escalation + 1.2245, !- Year 15 Escalation + 1.2347, !- Year 16 Escalation + 1.2500, !- Year 17 Escalation + 1.2602, !- Year 18 Escalation + 1.2628, !- Year 19 Escalation + 1.2679, !- Year 20 Escalation + 1.2806, !- Year 21 Escalation + 1.2832, !- Year 22 Escalation + 1.2908, !- Year 23 Escalation + 1.3036, !- Year 24 Escalation + 1.3240, !- Year 25 Escalation + 1.3444, !- Year 26 Escalation + 1.3597, !- Year 27 Escalation + 1.3801, !- Year 28 Escalation + 1.4082, !- Year 29 Escalation + 1.4362; !- Year 30 Escalation + + +LifeCycleCost:UsePriceEscalation, + U.S. Avg Industrial-Coal, !- Name + Coal, !- Resource + 2020, !- Escalation Start Year + January, !- Escalation Start Month + 1.0333, !- Year 1 Escalation + 1.0394, !- Year 2 Escalation + 1.0394, !- Year 3 Escalation + 1.0424, !- Year 4 Escalation + 1.0394, !- Year 5 Escalation + 1.0424, !- Year 6 Escalation + 1.0485, !- Year 7 Escalation + 1.0545, !- Year 8 Escalation + 1.0545, !- Year 9 Escalation + 1.0576, !- Year 10 Escalation + 1.0636, !- Year 11 Escalation + 1.0667, !- Year 12 Escalation + 1.0697, !- Year 13 Escalation + 1.0697, !- Year 14 Escalation + 1.0697, !- Year 15 Escalation + 1.0636, !- Year 16 Escalation + 1.0667, !- Year 17 Escalation + 1.0667, !- Year 18 Escalation + 1.0697, !- Year 19 Escalation + 1.0727, !- Year 20 Escalation + 1.0758, !- Year 21 Escalation + 1.0758, !- Year 22 Escalation + 1.0788, !- Year 23 Escalation + 1.0788, !- Year 24 Escalation + 1.0818, !- Year 25 Escalation + 1.0848, !- Year 26 Escalation + 1.0879, !- Year 27 Escalation + 1.0879, !- Year 28 Escalation + 1.0909, !- Year 29 Escalation + 1.0939; !- Year 30 Escalation \ No newline at end of file diff --git a/design/FY2018/NFP-Table-Refactor.md b/design/FY2018/NFP-Table-Refactor.md new file mode 100644 index 00000000000..16dfb87dd3a --- /dev/null +++ b/design/FY2018/NFP-Table-Refactor.md @@ -0,0 +1,823 @@ +# Refactoring of Performance Tables + +## Justification for New Feature + +The input of performance tables into EnergyPlus is a crucial part of most building energy modeling efforts, particularly in the representation of the performance of HVAC equipment. Recent feedback indicates that the current facility is increasingly becoming a pain point for users. Among the challenges users face are: + +- The EnergyPlus documentation does not always match the implemented capabilities; +- Incomplete inputs are not fully vetted before computations are made, and +- Some tables are untested. + +ASHRAE Standard 205, which seeks to facilitate sharing of equipment characteristics for performance simulation, is nearing completion, so better support for the upcoming standard is a highly desirable feature and provides an opportunity to address some of the current table-related issues in EnergyPlus. In support of ASHRAE Standard 205 integration into EnergyPlus, a new N-dimensional linear interpolation routine for gridded data is required. This is a critical capability for any tool utilizing ASHRAE 205 equipment data and the improved functionality will remove a noted deficiency. + +## Overview + +This work will be accomplished through several tasks: + +1. Develop an N-dimensional interpolation method for gridded data. Where appropriate, utilization of existing open source routines and/or libraries is permitted provided that prior approval has been explicitly obtained from NREL prior to implementation. The interpolation method is not required to fill in any missing input data, but must recognize missing input data. +2. Refactor existing EnergyPlus table procedures to utilize the new methods or initiate the deprecation process for capabilities that are not currently fully functional. +3. Clean up EnergyPlus table input objects to have full, as-advertised, functionality. Where possible, warning and/or error messages should be added to advise the user of incomplete inputs. + +This New Feature Proposal focuses largely on tasks #2 and #3. The interpolation method will be further defined in the design document. + +The general proposal is to collapse the existing three table objects: + +- *Table:OneIndependentVariable*, +- *Table:TwoIndependentVariables*, and +- *Table:MultiVariableLookup* + +into a single new object: *Table:Lookup*. + +## Discussion + +### Abandoning curve-fitting capability + +The current capability to fit curves to tables is limited to only some two-dimensional curve types. This feature allowed curve coefficients to be generated and used for tables (when using the "EvaluateCurveToLimits" extrapolation method). As manufacturers are already uneasy about the use of curve fits to represent their equipment, and the limited implementation of this feature, we are proposing dropping this feature from the new *Table:Lookup* objects. This also means that tables can be used anywhere where the dimensionality of the curve input matches that of the table. + +### Using CSV imports for independent variables + +When performance data is provided in tabular form, often times it accompanies the values of independent variables used to generate the data. Although this data is often repetitive (as it repeats each value for all possible combinations of the other independent variables), it may be convenient to include a way to read these values from the same file. This will be supported in the design of this feature, though the extent of error checking will be limited (e.g., correct order and cycling of independent values will not be validated). + +## Input Output Reference Documentation + +### Group Performance Tables + +This group of objects consists of tabular data which are used to characterize the performance of HVAC equipment. The use of performance tables eliminate the need to perform a regression analysis to calculate the performance curve equation coefficients. + + + +### Table:Lookup + +Input for tables representing data with one or more independent variables. + +#### Inputs + +##### Field: Name + +A unique user-assigned name for an instance of a lookup table. When a table is used, it is referenced by this name. The name of this table object may be used anywhere a valid performance curve object is allowed. + +##### Field: Independent Variable List Name + +The name of a Table:IndependentVariableList object that defines the independent variables that comprise the dimensions of the tabular data. + +##### Field: Normalize Output + +Determines whether or not this output will be automatically normalized to 1.0 at the normalized reference conditions defined by each independent variable in the associated independent variable list. Normalization applies to the Output Value fields as well as the Minimum and Maximum Output fields Choices are: *Yes* or *No*. + +##### Field: Minimum Output + +The minimum allowable value of the evaluated table after interpolation and extrapolation. Values less than the minimum will be replaced by the minimum. If this field is left blank, no limit is imposed. + +##### Field: Maximum Output + +The maximum allowable value of the evaluated table after interpolation and extrapolation. Values greater than the maximum will be replaced by the maximum. If this field is left blank, no limit is imposed. + +##### Field: Output Unit Type + +This field is used to indicate the kind of units that may be associated with the output values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Output and Maximum Output. If none of these options are appropriate, select *Dimensionless* which will have no unit conversion. Options are: + +- *Dimensionless* +- *Capacity* +- *Power* + +##### Field: External File Name + +The name of an external CSV file that represents the tabular data. This file should be formatted such that the data for this particular output is ordered according to the order of the corresponding independent variables. For example, for three independent variables (`iv1`, `iv2`, `iv3`) with 3, 2, and 4 values respectively. The output values (`out[iv1][iv2][iv3]`) should be ordered as: + + +`iv1` | `iv2` | `iv3` | `output` +--- | --- | --- | --- +`iv1[1]` | `iv2[1]` | `iv3[1]` | `out[1][1][1]` +`iv1[1]` | `iv2[1]` | `iv3[2]` | `out[1][1][2]` +`iv1[1]` | `iv2[1]` | `iv3[3]` | `out[1][1][3]` +`iv1[1]` | `iv2[1]` | `iv3[4]` | `out[1][1][4]` +`iv1[1]` | `iv2[2]` | `iv3[1]` | `out[1][2][1]` +`iv1[1]` | `iv2[2]` | `iv3[2]` | `out[1][2][2]` +`iv1[1]` | `iv2[2]` | `iv3[3]` | `out[1][2][3]` +`iv1[1]` | `iv2[2]` | `iv3[4]` | `out[1][2][4]` +`iv1[2]` | `iv2[1]` | `iv3[1]` | `out[2][1][1]` +`iv1[2]` | `iv2[1]` | `iv3[2]` | `out[2][1][2]` +`iv1[2]` | `iv2[1]` | `iv3[3]` | `out[2][1][3]` +`iv1[2]` | `iv2[1]` | `iv3[4]` | `out[2][1][4]` +`iv1[2]` | `iv2[2]` | `iv3[1]` | `out[2][2][1]` +`iv1[2]` | `iv2[2]` | `iv3[2]` | `out[2][2][2]` +`iv1[2]` | `iv2[2]` | `iv3[3]` | `out[2][2][3]` +`iv1[2]` | `iv2[2]` | `iv3[4]` | `out[2][2][4]` +`iv1[3]` | `iv2[1]` | `iv3[1]` | `out[3][1][1]` +`iv1[3]` | `iv2[1]` | `iv3[2]` | `out[3][1][2]` +`iv1[3]` | `iv2[1]` | `iv3[3]` | `out[3][1][3]` +`iv1[3]` | `iv2[1]` | `iv3[4]` | `out[3][1][4]` +`iv1[3]` | `iv2[2]` | `iv3[1]` | `out[3][2][1]` +`iv1[3]` | `iv2[2]` | `iv3[2]` | `out[3][2][2]` +`iv1[3]` | `iv2[2]` | `iv3[3]` | `out[3][2][3]` +`iv1[3]` | `iv2[2]` | `iv3[4]` | `out[3][2][4]` + +Alternatively, the output may be defined using the *Output Value \* fields below. + +##### Field: External File Column Number + +The column number (starting at 1) in the CSV file corresponding to this output. + +##### Field: External File Starting Row Number + +The row number (starting at 1) in the CSV file where the data for this output begins. If there are not enough rows of data to fill out the full grid of data an error will be presented to the user. + +##### Output Value \ + +If not reading from an external file, this field is repeated to capture the full set of output data in the table (if not otherwise defined in an external file). The data for this particular output is ordered according to the order of the corresponding independent variables. For example, for three independent variables (`iv1`, `iv2`, `iv3`) with 3, 2, and 4 values respectively. The output values (`out[iv1][iv2][iv3]`) should be ordered as: + + +`iv1` | `iv2` | `iv3` | `output` +--- | --- | --- | --- +`iv1[1]` | `iv2[1]` | `iv3[1]` | `out[1][1][1]` +`iv1[1]` | `iv2[1]` | `iv3[2]` | `out[1][1][2]` +`iv1[1]` | `iv2[1]` | `iv3[3]` | `out[1][1][3]` +`iv1[1]` | `iv2[1]` | `iv3[4]` | `out[1][1][4]` +`iv1[1]` | `iv2[2]` | `iv3[1]` | `out[1][2][1]` +`iv1[1]` | `iv2[2]` | `iv3[2]` | `out[1][2][2]` +`iv1[1]` | `iv2[2]` | `iv3[3]` | `out[1][2][3]` +`iv1[1]` | `iv2[2]` | `iv3[4]` | `out[1][2][4]` +`iv1[2]` | `iv2[1]` | `iv3[1]` | `out[2][1][1]` +`iv1[2]` | `iv2[1]` | `iv3[2]` | `out[2][1][2]` +`iv1[2]` | `iv2[1]` | `iv3[3]` | `out[2][1][3]` +`iv1[2]` | `iv2[1]` | `iv3[4]` | `out[2][1][4]` +`iv1[2]` | `iv2[2]` | `iv3[1]` | `out[2][2][1]` +`iv1[2]` | `iv2[2]` | `iv3[2]` | `out[2][2][2]` +`iv1[2]` | `iv2[2]` | `iv3[3]` | `out[2][2][3]` +`iv1[2]` | `iv2[2]` | `iv3[4]` | `out[2][2][4]` +`iv1[3]` | `iv2[1]` | `iv3[1]` | `out[3][1][1]` +`iv1[3]` | `iv2[1]` | `iv3[2]` | `out[3][1][2]` +`iv1[3]` | `iv2[1]` | `iv3[3]` | `out[3][1][3]` +`iv1[3]` | `iv2[1]` | `iv3[4]` | `out[3][1][4]` +`iv1[3]` | `iv2[2]` | `iv3[1]` | `out[3][2][1]` +`iv1[3]` | `iv2[2]` | `iv3[2]` | `out[3][2][2]` +`iv1[3]` | `iv2[2]` | `iv3[3]` | `out[3][2][3]` +`iv1[3]` | `iv2[2]` | `iv3[4]` | `out[3][2][4]` + +#### Example IDF + +``` +Table:Lookup, + !- Name + !- Interpolation Method + !- Extrapolation Method + !- Curve Type + !- Independent Variable List Name + !- Normalize Output + !- Minimum Output + !- Maximum Output + !- Output Unit Type + !- External File Name + !- External File Column Number + !- External File Starting Row Number + !- Output Value 1 + !- ... + !- Output Value N +``` + +#### Outputs + +##### Performance Curve Output Value [] + +The current value of the performance table. Performance curves and tables use the same output variable. This value is averaged over the time step being reported. Inactive or unused performance curves will show a value of -999 (e.g., equipment is off, a specific performance curve is not required for this aspect of the equipment model at this time step, etc.). This value means that the performance curve was not called during the simulation and, therefore, not evaluated. This inactive state value is only set at the beginning of each environment. When averaging over long periods of time, this inactive state value may skew results. In this case, use a detailed reporting frequency (ref. Output:Variable object) to view results at each HVAC time step. + +##### Performance Curve Input Variable \ Value [] + +### Table:IndependentVariableList + +A list of Table:IndependentVariable references that define the size and dimensions of the data for one or more Table:Lookup objects. The order of this list defines the order that the tabular data must be defined. The output values in the Table:Lookup associated with this list will list the output in an order cycling through the last item in the list first, and then the second to last, and so on with the the first item cycling last. For example, for three independent variables (`iv1`, `iv2`, `iv3`) with 3, 2, and 4 values respectively. The output values (`out[iv1][iv2][iv3]`) should be ordered as: + + +`iv1` | `iv2` | `iv3` | `output` +--- | --- | --- | --- +`iv1[1]` | `iv2[1]` | `iv3[1]` | `out[1][1][1]` +`iv1[1]` | `iv2[1]` | `iv3[2]` | `out[1][1][2]` +`iv1[1]` | `iv2[1]` | `iv3[3]` | `out[1][1][3]` +`iv1[1]` | `iv2[1]` | `iv3[4]` | `out[1][1][4]` +`iv1[1]` | `iv2[2]` | `iv3[1]` | `out[1][2][1]` +`iv1[1]` | `iv2[2]` | `iv3[2]` | `out[1][2][2]` +`iv1[1]` | `iv2[2]` | `iv3[3]` | `out[1][2][3]` +`iv1[1]` | `iv2[2]` | `iv3[4]` | `out[1][2][4]` +`iv1[2]` | `iv2[1]` | `iv3[1]` | `out[2][1][1]` +`iv1[2]` | `iv2[1]` | `iv3[2]` | `out[2][1][2]` +`iv1[2]` | `iv2[1]` | `iv3[3]` | `out[2][1][3]` +`iv1[2]` | `iv2[1]` | `iv3[4]` | `out[2][1][4]` +`iv1[2]` | `iv2[2]` | `iv3[1]` | `out[2][2][1]` +`iv1[2]` | `iv2[2]` | `iv3[2]` | `out[2][2][2]` +`iv1[2]` | `iv2[2]` | `iv3[3]` | `out[2][2][3]` +`iv1[2]` | `iv2[2]` | `iv3[4]` | `out[2][2][4]` +`iv1[3]` | `iv2[1]` | `iv3[1]` | `out[3][1][1]` +`iv1[3]` | `iv2[1]` | `iv3[2]` | `out[3][1][2]` +`iv1[3]` | `iv2[1]` | `iv3[3]` | `out[3][1][3]` +`iv1[3]` | `iv2[1]` | `iv3[4]` | `out[3][1][4]` +`iv1[3]` | `iv2[2]` | `iv3[1]` | `out[3][2][1]` +`iv1[3]` | `iv2[2]` | `iv3[2]` | `out[3][2][2]` +`iv1[3]` | `iv2[2]` | `iv3[3]` | `out[3][2][3]` +`iv1[3]` | `iv2[2]` | `iv3[4]` | `out[3][2][4]` + +#### Inputs + +##### Field: Name + +A unique user-assigned name for a list of independent variables. This name is referenced by Table:Lookup objects. The name of this list object may be referenced by any number of Table:Lookup objects. + +##### Field: Independent Variable \ Name + +This field is repeated for the number of independent variables that define the dimensions of any corresponding Table:Lookup objects that refer to this list. Each instance provides the name of a Table:IndependentVariable object that defines the values and properties of an independent variable. + +#### Example IDF + +``` +Table:IndependentVariableList, + !- Name + !- Independent Variable 1 Name + !- ... + !- Independent Variable N Name +``` + +### Table:IndependentVariable + +Independent variables are used to define the size and dimensions of a Table:Lookup object. + +#### Inputs + +##### Field: Name + +A unique user-assigned name for an independent variables. This name is referenced by Table:IndependentVariableList objects. The name of this object may be referenced by any number of Table:IndependentVariableList objects. + +##### Field: Interpolation Method + +Method used to determine the value of the table within the bounds of its independent variables. The choices are: + +- *Linear* +- *Cubic* + +##### Field: Extrapolation Method + +Method used to determine the value of the table beyond the bounds of its independent variables. The choices are: + +- *Constant*: Value is the same as the interpolated value at the closest point along the table's boundary. +- *Linear*: Value is linearly extrapolated in all dimensions from the interpolated value at the closest point along the table's boundary. +- *Unavailable*: The object using this curve is assumed to be not operable outside of the provided range of values. This will override any corresponding availability schedules of applicable equipment. + + +##### Field: Minimum Value + +The minimum allowable value. Table:Lookup output for values between this value and the lowest value provided for this independent variable will be extrapolated according to the extrapolation method. Below this value, extrapolation is held constant and a warning will be issued. If extrapolation method is "Unavailable", the corresponding equipment will be disabled for all values less than the lowest independent variable value, regardless of the minimum value set here. + +##### Field: Maximum Value + +The maximum allowable value. Table:Lookup output for values between this value and the highest value provided for this independent variable will be extrapolated according to the extrapolation method. Above this value, extrapolation is held constant and a warning will be issued. If extrapolation method is "Unavailable", the corresponding equipment will be disabled for all values greater than the highest independent variable value, regardless of the maximum value set here. + +##### Field: Unit Type + +This field is used to indicate the kind of units that may be associated with this independent variable. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Value and Maximum Value. The available options are shown below. If none of these options are appropriate, select *Dimensionless* which will have no unit conversion. + +- Dimensionless +- Temperature +- VolumetricFlow +- MassFlow +- Distance +- Power + +##### Field: Normalization Value + +The value of this independent variable where nominal or rated output is defined. This will be used to normalize the data so that the outputs of any Table:Lookup at this value (and the corresponding Normalization Values of the other independent variables described in the same Table:IndependentVariableList object) are equal to 1.0. + +##### Field: External File Name + +The name of an external CSV file that represents the tabular data. This file should be formatted such that the data for any output is ordered according to the order of the corresponding independent variables. For example, for three independent variables (`iv1`, `iv2`, `iv3`) with 3, 2, and 4 values respectively. The output values (`out[iv1][iv2][iv3]`) should be ordered as: + + +`iv1` | `iv2` | `iv3` | `output` +--- | --- | --- | --- +`iv1[1]` | `iv2[1]` | `iv3[1]` | `out[1][1][1]` +`iv1[1]` | `iv2[1]` | `iv3[2]` | `out[1][1][2]` +`iv1[1]` | `iv2[1]` | `iv3[3]` | `out[1][1][3]` +`iv1[1]` | `iv2[1]` | `iv3[4]` | `out[1][1][4]` +`iv1[1]` | `iv2[2]` | `iv3[1]` | `out[1][2][1]` +`iv1[1]` | `iv2[2]` | `iv3[2]` | `out[1][2][2]` +`iv1[1]` | `iv2[2]` | `iv3[3]` | `out[1][2][3]` +`iv1[1]` | `iv2[2]` | `iv3[4]` | `out[1][2][4]` +`iv1[2]` | `iv2[1]` | `iv3[1]` | `out[2][1][1]` +`iv1[2]` | `iv2[1]` | `iv3[2]` | `out[2][1][2]` +`iv1[2]` | `iv2[1]` | `iv3[3]` | `out[2][1][3]` +`iv1[2]` | `iv2[1]` | `iv3[4]` | `out[2][1][4]` +`iv1[2]` | `iv2[2]` | `iv3[1]` | `out[2][2][1]` +`iv1[2]` | `iv2[2]` | `iv3[2]` | `out[2][2][2]` +`iv1[2]` | `iv2[2]` | `iv3[3]` | `out[2][2][3]` +`iv1[2]` | `iv2[2]` | `iv3[4]` | `out[2][2][4]` +`iv1[3]` | `iv2[1]` | `iv3[1]` | `out[3][1][1]` +`iv1[3]` | `iv2[1]` | `iv3[2]` | `out[3][1][2]` +`iv1[3]` | `iv2[1]` | `iv3[3]` | `out[3][1][3]` +`iv1[3]` | `iv2[1]` | `iv3[4]` | `out[3][1][4]` +`iv1[3]` | `iv2[2]` | `iv3[1]` | `out[3][2][1]` +`iv1[3]` | `iv2[2]` | `iv3[2]` | `out[3][2][2]` +`iv1[3]` | `iv2[2]` | `iv3[3]` | `out[3][2][3]` +`iv1[3]` | `iv2[2]` | `iv3[4]` | `out[3][2][4]` + +Independent variable values must appear in **ascending** order (an error will be issued if this is not the case). + +Alternatively, the independent variables may be defined using the *Value \* fields below. + +##### Field: External File Column Number + +The column number (starting at 1) in the CSV file corresponding to this independent variable. As the values of the independent variables each repeat over a defined cycle, EnergyPlus will only read unique values from this column. EnergyPlus does not validate that the cycles are repeating correctly. In fact, the same data can be read by only defining each value once as it is first encountered: + +`iv1` | `iv2` | `iv3` | `output` +--- | --- | --- | --- +`iv1[1]` | `iv2[1]` | `iv3[1]` | `out[1][1][1]` +| | | `iv3[2]` | `out[1][1][2]` +| | | `iv3[3]` | `out[1][1][3]` +| | | `iv3[4]` | `out[1][1][4]` +| | `iv2[2]` | | `out[1][2][1]` +| | | | `out[1][2][2]` +| | | | `out[1][2][3]` +| | | | `out[1][2][4]` +`iv1[2]` | | | `out[2][1][1]` +| | | | `out[2][1][2]` +| | | | `out[2][1][3]` +| | | | `out[2][1][4]` +| | | | `out[2][2][1]` +| | | | `out[2][2][2]` +| | | | `out[2][2][3]` +| | | | `out[2][2][4]` +`iv1[3]` | | | `out[3][1][1]` +| | | | `out[3][1][2]` +| | | | `out[3][1][3]` +| | | | `out[3][1][4]` +| | | | `out[3][2][1]` +| | | | `out[3][2][2]` +| | | | `out[3][2][3]` +| | | | `out[3][2][4]` + +##### Field: External File Starting Row Number + +The row number (starting at 1) in the CSV file where the data for this independent variable begins. Any values in the same column below this row are considered part of the range. + +##### Field: Value \ + +If not reading from an external file, this field is repeated to capture the full set of values for this independent variable. These values must be defined in **ascending** order (an error will be issued if this is not the case). + +#### Example IDF + +``` +Table:IndependentVariable, + !- Name + !- Minimum Value + !- Maximum Value + !- Unit Type + !- Normalization Value + !- Value 1 + !- ... + !- Value N +``` + +## Engineering Reference: Performance Tables + +### Lookup Tables + +Lookup tables provide a method to evaluate a group of data that may or may not conform to a fundamental equation. Only tabular data which conform to existing performance curve equations are currently allowed (i.e., that lookup table name is entered where any valid performance curve is allowed therefore the table data must conform to the model's fundamental equation for that specific curve). Efforts to include this lookup table in the energy management system would allow custom use of lookup tables, however, calling lookup tables from the EMS system is not currently possible. Lookup tables can interpolate the actual data using a linear interpolation or piecewise cubic spline. As with other table or curve objects, the lookup table can be used anywhere a valid curve object name is allowed. Care must be taken to ensure the table data format is consistent with the associate model that is using the performance curve (e.g., DX cooling coil capacity as a function of temperature where independent variable X1 = indoor wet-bulb temperature and independent variable X2 = outdoor dry-bulb temperature). + +An interpolative lookup can be specified to be either linear or cubic independently for each dimension (input variable). For performance points outside the defined grid space, an extrapolation method--constant or linear--can be set independently for each dimension. Finally, each axis can have specified boundaries beyond which extrapolation is not permitted. + +#### Linear Interpolation + +For linear interpolation in 1 dimension, given known values of $f$ at $x_0$ and $x_1$, and a point $x$ between $x_0$ and $x_1$, the value at $x$ is estimated by: + +$$f\left(x\right) = \left(1-\mu\right) \cdot f\left(x_0\right) + \mu \cdot f\left(x_1\right)$$ + +where $\mu$ is the location of $x$ expressed as a fraction of the distance between $x_0$ and $x_1$: + +$$\mu = \left(x-x_0\right) / \left(x_1 - x_0\right)$$ + + +#### Cubic Spline Interpolation + +The general formula for a 1-dimensional piecewise cubic spline (for $x$ between known values $f\left(x_0\right)$ and $f\left(x_1\right)$) is: + +$$\begin{array}{rll} +f\left(x\right) &= \left(2\mu^3 - 3\mu^2 + 1\right) \cdot f\left(x_0\right) +&+ \left(-2\mu^3 + 3\mu^2\right) \cdot f\left(x_1\right) \\ +&+ \left(\mu^3 - 2\mu^2 + \mu\right) \cdot f^\prime \left(x_0\right) +&+ \left(\mu^3 - \mu^2\right) \cdot f^\prime \left(x_1\right) +\end{array}$$ + +The Catmull-Rom cubic spline interpolation defines the derivatives $f^\prime \left(x_0\right)$ and $f^\prime\left(x_1\right)$ as the slope between the previous and following grid points on the axis: + +$$\begin{array}{rl} +f^\prime(x_0) &= ( f(x_1) - f(x_{-1}) ) / ( x_1 - x_{-1}) \\ +f^\prime(x_1) &= ( f(x_2) - f(x_0) ) / ( x_2 - x_0) +\end{array}$$ + +When the hypercube is at the edge of the grid, Catmull-Rom simply extends the slope of the final segment for defining the slope terms: i.e., if there is no $x_{-1}$, we substitute $x_0$ into the $f^\prime(x_0)$ formula. + +If a mix of interpolation methods are specified among the included dimensions, the library will perform that mix as requested. + +If the lookup point is beyond the grid edge on any axis, the library will perform the requested extrapolation method (linear or constant) on that dimension while proceeding with interpolation along any in-bounds dimension. If a "do-not-extrapolate-beyond" boundary is specified, the library will perform a constant extrapolation from that boundary outward (in that dimension), and it will return the resulting numerical answer along with a warning that the request was outside the boundaries. + + +## Source Code Design + +The main component of the source code design is the addition of a new tabular data interpolation library (currently called "Btwxt" [betwixt]). The purpose of this library is to isolate the interpolation computation and data structures from the rest of EnergyPlus in a fashion that is easily unit tested and can be easily ported to other C++ programs. + +The other component is the integration of Btwxt in EnergyPlus. This will involve a modest refactoring of how EnergyPlus handles table data structures. + +### Btwxt + +Btwxt is a general-purpose N-dimensional interpolation library for gridded data. After reviewing existing open-source libraries, we believe it is sensible to write a new library. + +The library will accept: +* a collection of N vectors representing the input variables, +* attributes of each of the input vectors describing preferred interpolation and extrapolation methods, and +* an array of (or collection of arrays of) values that map onto the grid defined by the input vectors. + +Together, the input vectors and array(s) of output values will define a performance space. The library will allow querying of a defined performance space for a well-defined point within the grid. + +* A point fully inside the grid boundaries will receive an interpolated value. + * The library will support (a) linear and (b) cubic interpolation. + * The library structure will allow for alternative interpolation methods to be added later. +* A point outside the grid boundaries will receive an extrapolated value. + * The library will support (a) linear and (b) constant extrapolation + * The library will allow each input dimension to define its extrapolation method and an extrapolation limit. + * Each input dimension will have the option of specifying outer boundaries beyond which the library will not interpolate. + * Each input dimension will have the option of disallowing any extrapolation. + +#### Glossary + +* *GridAxis* - The collection of values that define points along a single grid dimension (often thought of as an independent variable) +* *GridSpace* - The collection of multiple GridAxis objects that fully define the performance space. +* *ValueTables* - A collection of result/output values that all map to the same GridSpace. +* *GriddedData* - A unification of a GridSpace with its associated ValueTables. +* *GridPoint* - A coordinate set (one value along each axis) that defines a single point within a GridSpace. +* *ValuePoint* - the set of result/output values at a single coordinate location. For example, the output values for a GridPoint. +* *Floor* - along one GridAxis, the index of the grid-defined point less-than-or-equal-to a specified GridPoint. For example, for `GridAxis = {5, 10, 15, 20}`, `Floor(12, GridAxis) = 1`. (1 being the index of the value "10" in the array.) +* *Weight* - the fraction defined by how far between the floor and the next point on a GridAxis a GridPoint falls. Referenced from the floor. For example, for `GridAxis = {5, 10, 15, 20}`, `Weight(12, GridAxis) = 0.4`. + + +#### Approach + +The GriddedData constructor is being designed to work smoothly with the PerformanceData FlatBuffer file format being defined for ASHRAE Section 205. It will also be easy to instantiate a GriddedData object from a well-defined set of input vectors and value arrays. + +##### Summaries of important classes: +**GridAxis** + +```c++ +class GridAxis{ + GridAxis(std::vector grid_vector); + + // attributes + std::vector grid; + int interpolation_method; + int extrapolation_method; + std::pair extrapolation_limits; + // bool is_regular; (to add later) + + // methods + std::size_t get_length(); + void set_interp_method(); + void set_extrap_method(); + void set_extrap_limits(); +} +``` +The `GridAxis` constructor ensures that the `grid_vector` is sorted strictly ascending. + +Each axis (input vector) is able to specify its own preferred: +* interpolation method +* extrapolation method +* extrapolation limit, outside of which Btwxt will return a warning. + +The idea behind a future `is_regular` attribute is that there are steps in the interpolation math that become much quicker if a grid axis is regularly spaced. + +**GridSpace** +```c++ +class GridSpace{ +public: + GridSpace(std::vector grid_axes); + + std::vector axes; +}; +``` +The `GridSpace` is a container for the set of N GridAxis objects that delineate the performance space. + + +**GriddedData** +```c++ +class GriddedData{ + GriddedData( + std::vector< std::vector > grid, + std::vector< std::vector > values + ); + + // attributes + GridSpace grid_axes; + Eigen::ArrayXXd value_tables; + std::size_t num_values; + std::vector dimension_lengths; + + // methods + void check_inputs(); + std::vector get_grid_vector(const std::size_t& grid_index); + std::vector get_values(std::vector coords); + Eigen::ArrayXd get_column(const std::vector& coords); +} +``` +`GriddedData` holds both a `GridSpace` object and an array of the provided gridded values. The constructor ensures the size of the value array matches with the dimensions of the input grid. + +The `value_tables` array comprises a single long row for each output. That is, if this `GriddedData` object has N output variables, the `value_tables` array will be NxM where M is the number of points defined by the grid. + +The `GriddedData.get_column()` method returns an Mx1 column array of the output values for a provided grid index (i.e., by index, not by value). `GriddedData.get_values()` returns the same output values in a std::vector rather than an Eigen Array. + + +**GridPoint** +```c++ +class GridPoint{ + GridPoint(std::vector &target_vector); + + // attributes + std::vector target; +} +``` + +A `GridPoint` describes the coordinates (by value on each GridAxis) of a performance point we are about to interpolate about. + + + +**WhereInTheGridIsThisPoint** +```c++ +class WhereInTheGridIsThisPoint{ +public: + WhereInTheGridIsThisPoint(GridPoint&, GriddedData&); + + // attributes + std::vector point_floor; + std::vector weights; + std::vector is_inbounds; + + // methods + std::vector get_floor(); + std::vector get_weights(); + std::vector get_is_inbounds(); + void find_floor(GridPoint&, GriddedData&); + void calculate_weights(GridPoint&, GriddedData&); +}; +``` +This elegantly named class is the locator that describes how a specific `GridPoint` fits into the `GriddedData` performance space. +* `point_floor` is the defined grid point less than or equal to `GridPoint` in each dimension. +* `weights` define the where GridPoint falls between two GridAxis elements, for each dimension. +* `is_inbounds` is used to decide interpolation or extrapolation for each GridAxis. + + +**RegularGridInterpolator** +```c++ +class RegularGridInterpolator{ +public: + RegularGridInterpolator(GriddedData &the_blob); + RegularGridInterpolator( + std::vector< std::vector > grid, + std::vector< std::vector > values + ); + + double calculate_value_at_target(std::vector target, std::size_t table_index); + double operator()(std::vector target, std::size_t table_index) + { + return calculate_value_at_target(target, table_index); + } + + double calculate_value_at_target(std::size_t table_index); + double operator()(std::size_t table_index) + { + return calculate_value_at_target(table_index); + } + + std::vector calculate_all_values_at_target(std::vector target); + std::vector operator()(std::vector target) + { + return calculate_all_values_at_target(target); + } + + std::vector calculate_all_values_at_target(); + std::vector operator()() + { + return calculate_all_values_at_target(); + } + + void set_new_grid_point(std::vector target); + std::vector get_current_grid_point(); + void clear_current_grid_point(); + std::size_t get_ndims(); + +private: + GriddedData the_blob; + GridPoint current_grid_point; + + void check_target_dimensions(std::vector target); + std::vector the_calculator(); + +``` + + +Note that the "()" operator is overloaded, allowing a function-like shortcut to interpolation. `my_interpolator.calculate_all_values_at_target(target)` can be shortened to `my_interpolator(target)`. + +The library will store a `current_grid_point`, meaning that `my_interpolator()` implies interpolating to that saved `GridPoint`. The floors and weights are saved as attributes of `current_grid_point`, so reusing a point will save those search and algebraic steps. + +Accordingly, the `RegularGridInterpolator` API has methods to set, get, and clear `current_grid_point`. If the developer attempts to interpolate to `current_grid_point` before one has been specified, the library will return a warning. + +the private `the_calculator` method is wrapped by the various public `calculate...` methods and houses the interpolation algorithm itself. The algorithm will deal with the possible interpolation and extrapolation methods on the fly, for each axis. + + +#### Algorithmic Overview + +The interpolation algorithm is designed around the N-dimensional grid cell containing the target point. Btwxt refers to that grid cell as the hypercube and bases the interpolation math around the hypercube's values. + +**Linear Interpolation:** + +Linear interpolation in 1 dimension: Given known values of f at x0 and x1, and a point x between x0 and x1, the value at x is estimated by f(x) = (1-μ) × f(x0) + μ × f(x1) where μ is the location of x expressed as a fraction of the distance between x0 and x1: μ = (x-x0)/(x1-x0). + +Generalizing to N-dimensions: For each dimension d of the hypercube containing a target GridPoint, let μd be the fraction of the distance along that hypercube edge where the GridPoint lies. The vertex on low side on that edge gets a weight of (1-μd) and the high side gets a μd multiplier. + +So for a 2-D linear interpolation, for a hypercube of (x0,y0), (x0,y1), (x1,y0), (x1,y1), and a GridPoint of (x0x, y0y): + +f(x0x, y0y) = f(x0, y0) (1-μx) (1-μy)
+  + f(x0, y1) (1-μx) μy
+  + f(x1, y0) μx (1-μy)
+  + f(x1, y1) μx μy + +This extends to arbitrary dimensions. For N dimensions, a linear interpolation will have 2N terms, each with N multiplicative factors. + + +**Cubic Interpolation:** + +The general formula for a 1-dimensional piecewise cubic spline (for x between known values x0 and x1) is: + +f(x) = (2μ3 - 3μ2 + 1) f(x0) + (-2μ3 + 3μ2) f(x1)
+  + (μ3 - 2μ2 + μ) f’(x0) ++ (μ3 - μ2) f’(x1) + +We need to define what we will use as the derivative at x0 and x1. Btwxt implements a Catmull-Rom cubic spline, which defines the slope at x as the slope between the point before and the point after x: + +f’(x0) = ( f(x1) - f(x-1) ) / ( x1 - x-1)
+f’(x1) = ( f(x2) - f(x0) ) / ( x2 - x0) + +When the hypercube is at the edge of the grid, Catmull-Rom simply extends the slope of the final segment. + +As with the linear interpolation, the cubic can be rewritten as a sum of weights on each vertex. Because of the slope calculations, there are four points involved on each cubic axis. For one dimension, reorganized, the formula looks like this: + +f(x) = f(x0) (2μ3 - 3μ2 + 1)
+  + f(x1) (-2μ3 + 3μ2)
+  + f(x1) (μ3 - 2μ2 + μ) / ( x1 - x-1)
+  − f(x-1) (μ3 - 2μ2 + μ) / ( x1 - x-1)
+  + f(x2) (μ3 - μ2) / ( x2 - x0)
+  − f(x0) (μ3 - μ2) / ( x2 - x0) + + +The cubic formula extends to multiple dimensions. More points are involved (4N for N dimensions, rather than 2N for linear), but the formula remains a sum of products of independent weights on each point in the hypercube. The algorithm can also mix and match interpolation methods from one axis to another. The cubic interpolation, being a more complex calculation, takes substantially longer than linear, especially as the number of cubic axes increases. + +#### Performance Benchmarking + +The Btwxt library will include a CPU/memory performance benchmark mechanism. +Six-variable function, ten grid steps on each axis. +Select 1000 GridPoints in the defined region. Interpolate and time. + +### EnergyPlus Refactor + +Of the structures and methods/functions existing in EnergyPlus, only two will be used for the refactor: + +1. `PerfCurve`: The global array (of `PerfomanceCurveData`) of "curve" data. + + - The `PerfomanceCurveData` will be modified to point to new RectangularGridInterpolator class object. + +2. `CurveValue`: The global method to evaluate "curves". + + - This will be modified to call methods on the RectangularGridInterpolator in order to return the necessary value. + +Many of the other structures and methods/functions will be kept only for legacy use of old table objects (until the completion of the deprecation policy): + + - `TableData`: The global array (of `TableDataStruct`) of table data for 1 and 2 dimensional table objects. + - `PerfCurveTableData`: A slightly modified version of the former. + - `TableLookup`: The global array (of `TableDataStruct`) of table data for the multi-dimensional table object. + - `ReadTableData`: Method to read old IDF/CSV format. + - `InterpolateLagrange` and `DLAG`: Old Lagrangian interpolation routines. + - `PerformanceTableObject`: Method called by `CurveValue` to evaluate 1 and 2 dimensional table objects. + - `TableLookupObject`: Method called by `CurveValue` to evaluate multi-dimensional table objects. + - `SolveRegression`: Current curve fitting method. Only works for 1 and 2 dimensional table objects and a subset of curve types. + +## IDD + + +``` +Table:Lookup, + \memo Lookup tables are used in place of curves and can represent any number + \memo of independent variables (defined as Table:IndependentVariable objects + \memo in a Table:IndependentVariableList). Output values are interpolated + \memo within the bounds defined by each independent variable and extrapolated + \memo beyond the bounds according to the interpolation/extrapolation methods + \memo defined by each independent variable. + \extensible:1 + A1, \field Name + \required-field + \reference AllCurves + \reference UniVariateTables + \reference BiVariateTables + \reference MultiVariateTables + \type alpha + A2, \field Independent Variable List Name + \required-field + \type object-list + \object-list IndependentVariableListName + A3, \field Normalize Output + \type choice + \key Yes + \key No + \default No + N1, \field Minimum Output + \type real + \unitsBasedOnField A4 + N2, \field Maximum Output + \type real + \unitsBasedOnField A4 + A4, \field Output Unit Type + \type choice + \key Dimensionless + \key Capacity + \key Power + \default Dimensionless + A5, \field External File Name + \type alpha + \retaincase + N3, \field External File Column Number + \type integer + \minimum 1 + N4, \field External File Starting Row Number + \type integer + \minimum 1 + N5; \field Output Value 1 + \type real + \unitsBasedOnField A4 + \begin-extensible + +Table:IndependentVariableList, + \memo A sorted list of independent variables used by one or more Table:Lookup + \memo objects. + \extensible:1 + A1, \field Name + \required-field + \reference IndependentVariableListName + \type alpha + A2; \field Independent Variable 1 Name + \required-field + \type object-list + \object-list IndependentVariableName + \begin-extensible + +Table:IndependentVariable, + \memo An independent variable representing a single dimension of a Table:Lookup + \memo object. + \extensible:1 + A1, \field Name + \required-field + \reference IndependentVariableName + \type alpha + A2, \field Interpolation Method + \type choice + \key Linear + \key Cubic + \default Linear + A3, \field Extrapolation Method + \type choice + \key Constant + \key Linear + \key Unavailable + \default Constant + N1, \field Minimum Value + \type real + \unitsBasedOnField A4 + N2, \field Maximum Value + \type real + \unitsBasedOnField A4 + N3, \field Normalization Value + \type real + \unitsBasedOnField A4 + A4, \field Unit Type + \type choice + \key Dimensionless + \key Temperature + \key VolumetricFlow + \key MassFlow + \key Power + \key Distance + \key Angle + \default Dimensionless + A5, \field External File Name + \type alpha + \retaincase + N4, \field External File Column Number + \type integer + \minimum 1 + N5, \field External File Starting Row Number + \type integer + \minimum 1 + N6; \field Value 1 + \type real + \begin-extensible +``` diff --git a/design/FY2019/Add global options for run time performance over precision tradeoffs.md b/design/FY2019/Add global options for run time performance over precision tradeoffs.md new file mode 100644 index 00000000000..811f836d98d --- /dev/null +++ b/design/FY2019/Add global options for run time performance over precision tradeoffs.md @@ -0,0 +1,62 @@ +# Add Global Options for Run Time Performance over Precision Tradeoffs + +Xuan Luo, Tianzhen Hong + +Lawrence Berkeley National Laboratory + +July 1, 2019 + +## Justification for Feature Update + +We propose a new global object “PerformancePrecisionTradeoffs” as one of the objects for EnergyPlus global setting controls. This object enables users to choose certain options that speed up EnergyPlus simulations, but may lead to small decreases in the accuracy of results. + +## Overview + +The object is design to provide users with options for performance over precision tradeoffs for existing or future EnergyPlus features. Some techniques and algorithms used in EnergyPlus that help achieve run time performance gain may trigger some small differences in the reported results. The options may include using the caching techniques for some utility functions, and using simplified algorithms for some calculation routines. Table 1 summarizes the performance/precision tradeoffs of two psychrometric functions that currently use the caching technique to save run time. The summary is based the regression test results with 623 EnergyPlus test files. The max diff in annual energy report indicates the maximum error in the annual energy reports in the summary table, out of the total 623 tests. The math diffs indicate the differences in the reported variables and meters by hour or by time step. The tables diffs indicate the differences in the final report tables. + +**Table 1. Performance/precision tradeoffs of two psychrometric functions** + +Cache flag | Run time performance gain of caching | Max diff in annual energy reports | Number of tests have large math diffs | Number of tests have small math diffs | Number of tests have large table diffs | Number of tests have small table diffs +---------- | ------------------------------------ | --------------------------------- | ------------------------------------- | ------------------------------------ | ---------------------------- | --------------------------------------- +EP_cache_PsyTwbFnTdbWPb | 2.33% | 0.14% | 39 | 381 | 95 | 572 +EP_cache_PsyPsatFnTemp | 2.20% | 0.19% | 40 | 487 | 87 | 577 + +The global object, PerformancePrecisionTradeoffs, provides flags to turn performance tricks like these on during regular simulation runs that do not have strict precisions requirement. + + +## IDD Object (New): + +We propose to add a new object to the IDD for global simulation control: + + PerformancePrecisionTradeoffs, + \unique-object + \memo This object enables users to choose certain options that speed up EnergyPlus simulation, + \memo but may lead to small decreases in accuracy of results. + A1; \field Use Coil Direct Solutions + \note If Yes, an analytical or empirical solution will be used to replace iterations in + \note the coil performance calculations. + \type choice + \key Yes + \key No + \default No + + +## IDD Object(s) (Revised): + +N/A + +## Proposed additions to Meters: + +N/A + +## Proposed Report Variables: + +N/A + +## IO Ref (draft): + +To be developed. + +## EngRef (draft): + +To be developed. diff --git a/design/FY2019/AddCoilandWaterheaterChoicesforDesuperheater.md b/design/FY2019/AddCoilandWaterheaterChoicesforDesuperheater.md new file mode 100644 index 00000000000..03ac85b482b --- /dev/null +++ b/design/FY2019/AddCoilandWaterheaterChoicesforDesuperheater.md @@ -0,0 +1,112 @@ +# Add More Coil/WaterHeater Choices for Coil:WaterHeating:Desuperheater + + +**Yueyue Zhou** + +**National Renewable Energy Laboratory** + +**April 2, 2019** + + +## Justification for New Feature ## + +Desuperheater is a widely used new technology making use of waste heat from HVAC system to heat domestic hot water. Desuperheater is available in E+ only supporting +a very limited amount of HVAC systems and water heater tanks, while the most widely used occasion for desuperheater: ground source heat pump system is not yet available. + Given only 8 valid choices of cooling and refrigeration components and only 1 tank option, it constrained the variations people modeling their hybrid systems and impeded + the promotions of using this new energy efficiency techonology. Users and interface developers are requesting EnergyPlus broaden its capability of modeling desuperheater + with more coils and tanks options.Some other energy modeling software tools like Rem/Rate, Ekotrope, Wrightsoft are already capable to model this hybrid GSHP system with + simple assumptions and methods. Since EnergyPlus already supports some systems, it would be more straight-forward to add more enumarations to EnergyPlus. + + +## Overview ## + +EnergyPlus would be modified to add more enumarations in Coil:WaterHeating:Desuperheater object's heating source object type and tank object type fields. + +## Approach ## + +EnergyPlus already handles HVAC/water heating hybrid systems for several coil types. The workflow is straight-forward to add the same structure as those systems. The steps to new enumarations are given below. + + +1. IDD file modification: **Coil:WaterHeating:Desuperheater** A7 add **WaterHeater:Stratified** ; A9 add **Coil:Cooling:WaterToAirHeatPump:EquationFit**, +**Coil:Cooling:WaterToAirHeatPump:ParameterEstimation**, **Coil:Cooling:DX:MultiSpeed** , etc. + +2. Available reclaimed heat data passing: The available waste heat, heat source name and type data is spread across three namespaces (DataHeatBalance, WaterThermalTank, and the corresponding +HVAC coil namespace). Arrays and structures added to pass data. The same method that the quantity of available heat is delivered from HVAC loop while doesn't impact compressor performance by limiting its +reclaiming efficiency factor (would be discussed if the assumption is acceptable). +======= +1. IDD file modification: See below the entire list of **Coil:WaterHeating:Desuperheater** modified field: + +``` +Coil:WaterHeating:Desuperheater, + A7 , \field Tank Object Type + \type choice + \key WaterHeater:Mixed + [Add]\key WaterHeater:Stratified + \default WaterHeater:Mixed + \note Specify the type of water heater tank used by this desuperheater water heating coil. + + A9 , \field Heating Source Object Type + \required-field + \type choice + \key Coil:Cooling:DX:SingleSpeed + \key Coil:Cooling:DX:TwoSpeed + \key Coil:Cooling:DX:TwoStageWithHumidityControlMode + \key Coil:Cooling:DX:VariableSpeed + [Add]\key Coil:Cooling:WaterToAirHeatPump:EquationFit + [Add]\key Coil:Cooling:WaterToAirHeatPump:ParameterEstimation + [Add]\key Coil:Cooling:DX:MultiSpeed + [Add]\key ...... + \key Refrigeration:CompressorRack + \key Refrigeration:Condenser:AirCooled + \key Refrigeration:Condenser:EvaporativeCooled + \key Refrigeration:Condenser:WaterCooled + \note The type of DX system that is providing waste heat for reclaim. +``` + + +2. Available reclaimed heat data passing: The available waste heat, heat source name and type data is spread across three namespaces (DataHeatBalance, WaterThermalTank, and the corresponding +HVAC coil namespace). Arrays and structures added to pass data. The heat relcaim from water cooled HVAC system would +cause decreasing of the heat transferred to the condenser plant loop thus impact the HVAC performance. Therefore, the +reclaimed heat would be passed back to HVAC water coil namespace and be substracted from the total source heat in the loop to reflect the impact. + + +3. Reclaimed heat calculation: The calculation of reclaimed heat is coded in WaterThermalTank namespace, the same approach as other available systems for mixed water heater tank. + + +## Testing/Validation/Data Sources ## + +Existing EnergyPlus test files would be modified to produce models that utilizes ground source heat pump systems, stratified tanks, and other types of coils that are widely used in industry. + +## Input Output Reference Documentation ## + +The documentation of **Coil:WaterHeating:Desuperheater** inputs will be modified to reflect the new enumarations. + +## Input Description ## + +**Field: Heating Source Object Type** + +Would add valid enumarations for water-to-air cooling coils etc. + +**Field: Tank Object Type** + +Would add stratified water heater tank. + +## Outputs Description ## + +No need to add more outputs + +## Engineering Reference ## + +Engineering reference would be checked to make sure it documents all the options + +## Example File and Transition Changes ## + +New enumarations would be enabled in object **Coil:WaterHeating:Desuperheater** + +## References ## + +Unmet hour unsolved question link: +https://unmethours.com/question/19819/modeling-water-to-air-heat-pump-with-desuperheater-for-dhw/ + + + diff --git a/design/FY2019/AirLoopDOAS1.jpg b/design/FY2019/AirLoopDOAS1.jpg new file mode 100644 index 00000000000..e617a9cd102 Binary files /dev/null and b/design/FY2019/AirLoopDOAS1.jpg differ diff --git a/design/FY2019/AirLoopDOAS2.jpg b/design/FY2019/AirLoopDOAS2.jpg new file mode 100644 index 00000000000..e06b2b4005e Binary files /dev/null and b/design/FY2019/AirLoopDOAS2.jpg differ diff --git a/design/FY2019/Airwall-Fig1-OpenPlanOffice.jpg b/design/FY2019/Airwall-Fig1-OpenPlanOffice.jpg new file mode 100644 index 00000000000..516f94b5921 Binary files /dev/null and b/design/FY2019/Airwall-Fig1-OpenPlanOffice.jpg differ diff --git a/design/FY2019/ChangeoverBypassVAV-ReturnPlenumOrMixer.PNG b/design/FY2019/ChangeoverBypassVAV-ReturnPlenumOrMixer.PNG new file mode 100644 index 00000000000..b5b73e667f2 Binary files /dev/null and b/design/FY2019/ChangeoverBypassVAV-ReturnPlenumOrMixer.PNG differ diff --git a/design/FY2019/DOAS_AHUs_ReviewComment.png b/design/FY2019/DOAS_AHUs_ReviewComment.png new file mode 100644 index 00000000000..7a036b0a992 Binary files /dev/null and b/design/FY2019/DOAS_AHUs_ReviewComment.png differ diff --git a/design/FY2019/Interzone Air Wall NFP and Design.md b/design/FY2019/Interzone Air Wall NFP and Design.md new file mode 100644 index 00000000000..92ec16905ec --- /dev/null +++ b/design/FY2019/Interzone Air Wall NFP and Design.md @@ -0,0 +1,444 @@ +Air Thermal Boundary - aka Interzone Air Wall +================ + +**Michael J. Witte, GARD Analytics, Inc.** + + - Original May 8, 2019 + - Revision June 4, 2019 + - Drop "AirWall" as a surface type. + - Add "Construction:AirBoundary" with input fields to control attributes such as air mixing and grouping + - Drop the term "superzone", speak of grouping zones for calculations + - Add discussion of internal view factors + - Add discussion of interior solar distribution + - Add options to discuss for simple airflow + - Final NFP Revision June 10, 2019 + - Change *MRTSurface* to *IRTSurface* for Radiant Exchange Method + - Add more discussion of output variables + - Draft Final Design June 12, 2019 + + +## Table of Contents ## + +[Justification for New Feature](#justification-for-new-feature) + +[E-mail and Conference Call Conclusions](#e-mail-and-conference-call-conclusions) + +[Approach](#approach) + +[Testing/Validation/Data Sources](#testingvalidationdata-sources) + +[Input Output Reference Documentation](#input-output-reference-documentation) + +[Engineering Reference](#engineering-reference) + +[Example File and Transition Changes](#example-file-and-transition-changes) + +[References](#references) + +[Design](#design) + +## Justification for New Feature ## + +Open boundaries between thermal zones occur frequently in buildings. Examples include: + - Open plan offices with core and perimeter zones. + - Open doorway from one space to another, e.g. hallway opening into a larger space. + - Service opening, e.g. serving window between kitchen and dining area. + - High spaces where the occupied zone is conditioned differently from the rest, e.g. atrium or auditorium + +Open thermal boundaries allow the following heat transfer to occur: + - Solar gains and daylighting to pass through as if there is no boundary + - Radiant exhange between building surfaces as if there is no boundary. + - Distribute radiant internal gains as if there is no boundary. + - Allow airflow and/or mixing to occur between the adjacent zones + +This type of boundary occurs frequently in energy models, and is often called an "air wall." +EnergyPlus has no direct way to model such a boundary. Common workarounds include some +combination of the following: + - Near-perfect interzone window + - Surface using `Material:InfraredTransparent` + - Surface using a very thin highly conductive material + - `ZoneMixing` and `ZoneCrossMixing` + - AirflowNetwork openings + +All of these options have serious limitations, especially the lack of solar/daylight penetration and +no direct radiant exchange across the boundary. + +## E-mail and Conference Call Conclusions ## + +### Questions and Comments Received through June 1 ## + - Discussion whether superzone should be explicitly described in input + - Can you have AirWalls with no adjacent surface? + - Can it be self-adjacent? + - What about zone multipliers? + - Can you have subsurfaces on an AirWall? + - Zone mixing or airflow network in addition to the airwall? + - Should you be using airwalls if you don't have fully enclosed geometry? + - Might consider an input value for Air Changes Per Hour for the opening. I usually recommend 1 ACH based on + the volume of the smaller zone as a basis for determining input for an airflow rate in zone mixing objects. + This might be automated to make it easier for the user with an ACH input to scale, such as higher for horizontal orientation. + - I guess this would lead to an air wall construction object that gets referenced. There might be other inputs that might go into + a Construction:AirWall object. + - OpenStudio has an airwall material, but Construction:AirWall would also work + - I'm not a fan of automating the "simple mixing models" or attaching it to the material. Construction, maybe, but shouldn't the air transfer be based on physics? + - The nonconvex issue seems to be one that would make the superzone approach not work well. + - I'm just imagining two simple rectangular zones next to each other. Between them, half is a regular wall and half is an airwall. + Something as simple as the radiant distribution of heat from equipment or a person in one of the zones is no longer as easy since + you can't assume all the radiant heat just gets fully distributed in that zone. The position of the equipment or person is now relevant + to determine how much of the radiant heat goes to the other zone. Maybe it is just as much of an assumption as it ever was but it seems + unintuitive to me. I kept expecting some additional inputs in your NFP that describe the assumptions of how heat, light, and air is + being flung around. + - Seems funny to call it AirWall in the fenestration object. Use "AirWindow" instead? + - Not sure why air exchange should be more complicated, since there's an easy solution - just disallow exchange and lump everything + together. That should be fine as long as the zone conditions aren't super different, and that's something we can warn about if it happens. + For AirflowNetwork it could easily be optional to treat the zones separately or lumped together (provided that there's something to attach + a node to). + - Since we seem to have ramped up end-user-usage of the airflow network, special emphasis should be given there to ensure this works well with that. + - The internal view factor algorithm is definitely going to have trouble with the geometries that will result here. View3D should not, but it + would make sense to add a script or two to simplify that calculation. + - For very large openings with airflownetwork - Using the superzone approach is the way to go, or at least make it an option. It's going to + come down to which representation is best, and with large openings there's a higher probability of two-way flows. I don't think this is + something that a new element is going to fix. + - The air wall helps on grouping (geometry side) multiple rooms or open spaces into a zone or larger room. + - Air walls are heat transparent - they don't receive solar radiation or internal radiant heat or participate in the long-wave radiation exchange. + - One tricky thing is to model the free-form air flow across the air wall. It would be good to provide some guidance (on using zone mixer to model the air exchange). + - There are places to skip the air walls, e.g., calculation of surface view factors need to skip the air walls. + - what the implications of "air walls" are for interior solar distribution. + +### Responses/Clarifications through June 1 ### + - The AirWall must have an adjacent surface. + - The AirWall cannot be self-adjacent. I suppose it could be allowed but that wouldn't accomplish anything - it would have zero impact on the simulation. + The whole idea is to have an opening that lets two zones transmit solar and radiant between them. + - The intent is that the grouped zones (formerly superzones) would be determined simply by looking at the airwall surfaces which must all be an interzone surface. + The zone which holds the airwall and the zone which holds it's adjacent surface would be grouped together. + - Zone multipliers? Good question. The only way this could work would be if all of the zones grouped together had the same multiplier. + - The airwall as proposed wouldn't do any mixing itself, so yes, zone mixing and/or airflow network are required to move air between the zones. + - No subsurfaces on an AirWall. + - Perhaps an AirWall subsurface should be handled differently than an AirWall base surface to prevent the entire building from being connected into a single grouped zone. + - Maybe the new choice for fenestration objects (subsurfaces) should be "Opening" and it would behave as an interzone window with perfect transmittance. Something to consider. + +### Conference Call Conclusions June 5 ### + - For Radiant Exchange Method, replace *MRTSurface* with *IRTSurface* using a similar method as `Material:InfraredTransparent` for long-wave radiant energy. + - For surface outputs, only create relevant output variables for the air boundary surfaces. + - New outputs at the grouped zone level may be necessary to allow energy balances to be shown. + +## Approach ## + +The proposed approach is to remove the air boundary surface entirely from most of the heat transfer calculations +and group zone surfaces together for solar, daylighting, and radiant exchange calculations. For air exchange, +specify mixing flows or group the zone air masses together for airflow network calculations. See Figure 1 for +an example application. + +![Diagram](Airwall-Fig1-OpenPlanOffice.jpg) + +**Figure 1. Example Application - Open Plan Office** + + +### Radiant Exchange ### +For surface-to-surface radiant exchange, two options are proposed: + + **GroupedZones** - All surfaces in the zones connected by air boundaries will be grouped together + for the radiant exchange calculations. Radiant gains from lights, people, HVAC equipment, etc. will +be distributed to all surfaces in the group. Referring to the example in Figure 1, the four walls bounding the open +office area and the four walls bounding the center core would all be grouped together as in a single zone for the radiant +exchange balance. The same approximate view factor rules that are used within a single zone would be used here for the group. + + **InteriorWindow** - The air boundary will be modeled as a perfectly transmitting interior window. The inside face surface temperature + will be set equal to the mean radiant temperature (MRT) of the zone to approximate radiant exchange across the boundary. + The inside face temperature will be set equal to the MRT of the adjacent zone. + +#### Pitfalls #### + - Radiant exchange calculations become very slow for zones with a large number of surfaces. This approach + will exaggerate that problem. + - Within the grouped zones it is likely that many surfaces will not have a direct view to all of the surfaces + in the combined zone. Presently there is no algorithm to exclude certain views. View factors could be determined + external to EnergyPlus and imported using `ZoneProperty:UserViewFactors:bySurfaceName` which may require some + changes to allow view factors to be specified for surface pairs that are in different zones. + - Input processing will need to allow view factors (for radiant HVAC equipment) to cross zone boundaries. + - Re-simulation for radiant HVAC equipment will involve all surfaces in the group, causing extra computation time. + - Reporting for zone-level radiant gains may be confusing. For example, radiant gains which have a source in Zone A + may be distributed to other zones as well as Zone A. Even though the source of the gain is Zone A, the other zones + should be reporting their share of the distributed gain. + +### Solar Gains and Daylighting ### +For solar distribution and daylighting calculations, two options are proposed: + +**GroupedZones** - The zones connected by air boundaries will be grouped into a +single zone. Referring to the example in Figure 1, the entire open plan office area would be grouped into a single +zone for solar and daylighting calculations. This allows sunlight entering a window on the south wall, for example, to +penetrate into the other zones in the open office group. + + **InteriorWindow** - The air boundary will be modeled as a perfectly transmitting interior window. + +#### Pitfalls #### + - For `FullInteriorAndExterior` solar distribution options, the convex zone limitation will likely be tripped + by the combined zones. The ultimate goal would be to crack this nut once and for all for any situation (airwalls or not). + - One fallback option is to figure out a way to trap excess solar that has made it past an interior obstruction and + remove it - if possible. + - Another fallback option is to allow the grouped zones to revert to FullExterior (direct solar goes to the floor) while + allowing other non-grouped zones to use FullInteriorAndExterior. + - Reporting for solar gains may be confusing. For example, window heat gain calculations will need to + account for transmitted solar which passes through to another zone (and the reverse). + +### Air Exchange ### +For simple air exchange (not AirflowNetwork) three options are proposed: + +1. Add `ZoneMixing` or `ZoneCrossMixing` objects, otherwise there is no exchange. +2. Add inputs fields to Construction:AirBoundary to control air exchange - with defaults. +3. Lump the air volumes together (essentially full mixing of the connected zones). + +For simulations using AirflowNetwork, the air boundary may be handled differently depending on the size of the opening: + +1. For smaller openings, such as open doorways, the current `AirflowNetwork:MultiZone:Component:DetailedOpening`, +`AirflowNetwork:MultiZone:Component:SimpleOpening` and `AirflowNetwork:MultiZone:Component:HorizontalOpening` +objects should be adequate. +2. For very large openings (horizontal and vertical) another approach will be required. One +possibility is to use a lumped zone for the AirflowNetwork calculations. +3. Or perhaps a new opening type could be developed to approximate the connection. + +#### Pitfalls #### + - It's unclear what the values should be for the simple mixing models across an open boundary. + - AirflowNetwork reporting may be confusing if a lumped zone approach is used. + +## Testing/Validation/Data Sources ## + +Energy balances and comparisons with simlations using detailed zoning and combined zones will be used to confirm +that the results are reasonable. Various levels of reporing including design component loads will all need to +be consistent with each other. + +## Input Output Reference Documentation ## + +The proposed input mechanism is to modify the `BuildingSurface:Detailed` and `FenestrationSurface:Detailed` objects to allow a new +choice of *AirWall* for Surface Type. When this is selected, the Construction input is left blank (or ignored with a warning). + Also, the only allowed choices for Outside Boundary Condition will be *Surface* and *Zone*. + +## Input Description ## + +### *New object* - Construction:AirBoundary ### + +Construction:AirBoundary indicates an open boundary between two zones. It may be used for base surfaces and fenestration surfaces. +When this construction type is used, the Outside Boundary Condition of the surface (or the base surface of a fenestration surface) +must be either *Surface* or *Zone*. A base surface with Construction:AirBoundary cannot hold any fenestration surfaces. + +*Field: Name* +The name of the construction. + +*Field: Solar and Daylighting Method* +This field controls how the surface is modeled for solar distribution and daylighting calculations. There are two +choices: + + **GroupedZones** - The two zones separated by this air boundary will be grouped together into a combined zone. If a given zone has + and air boundary with more than one zone, then all of the connected zones will be grouped together. For example, if there is an air + boundary between zones A and B, and another air boundary between zones B and C, all three zones A, B, and C will be grouped into a + single zone for solar distribution and daylighting. + + **InteriorWindow** - The air boundary will be modeled as a perfectly transmitting interior window. As with other interior windows, + all direct solar passing through the interior window will be diffuse in the adjacent zone. + +*Field: Radiant Exchange Method* +This field controls how the surface is modeled for radiant exchange calculations. There are two +choices: + + **GroupedZones** - The two zones separated by this air boundary will be grouped together into a combined zone. If a given zone has + and air boundary with more than one zone, then all of the connected zones will be grouped together. For example, if there is an air + boundary between zones A and B, and another air boundary between zones B and C, all three zones A, B, and C will be grouped into a + single zone for radiant exchange. Normal default simplified view factors will apply unless detailed view factors are specified using + ZoneProperty:UserViewFactors:bySurfaceName. + + **IRTSurface** - The air boundary will be modeled as blackbody surface between the adjacent zones (similar, but not exactly the same + as `Material:InfraredTransparent`. The surface participates in + the radiant exchange within each zone and receives long-wave radiant energy from internal sources. The surface does not absorb any + visible or solar radiation, has no thermal resistance, and has zero convective heat transfer coefficients on both sides. + +*Field: Air Exchange Method* + + **GroupedZones** - The zone air temperature and humidity will be a volume-weighted average of the connected zones. + + **None** - There will be no air exchange modeled across this surface. Other objects, such as ZoneMixing + and ZoneCrossMixing or AirflowNetwork openings may be specified if desired. + + **SimpleMixing** - For each pair of zones connected by Construction:AirBoundary, a pair of ZoneMixing objects will created automatically. + These mixing objects may be automatically adjusted to balance HVAC system flows using the ZoneAirMassFlowConservation object. + +*Field: Simple Mixing Air Changes per Hour* +If the Air Exchange Method is *SimpleMixing* then this field specifies the air change rate [1/hr] using the volume of the smaller zone +as the basis. The default is 0.5. If an AirflowNetwork simulation is active this field is ignored. + +*Field: Simple Mixing Schedule Name* +If the Air Exchange Method is *SimpleMixing* then this field specifies the schedule name for the air mixing across this boundary. If this field +is blank, then the schedule defaults to always 1.0. If an AirflowNetwork simulation is active this field is ignored. + +### *Modified object* - ZoneProperty:UserViewFactors:bySurfaceName ### + +The method of entering user view factors is to enter each surface name and its view factor value to other +surfaces in a zone or group of zones connected by air boundaries (see Construction:AirBoundary). + +*Field: ~Zone~ Enclosure Name* + +An enclosure may be a single zone, or a group of zones connected by one or more air boundaries. +Enter the applicable surface pairs with non-zero view factors. Any omitted surface pair is assumed to have a zero view factor. + +*Field: From Surface 1* + +This field specifies the name of the "from surface". All other surfaces in this object must be within the +same enclosure at this surface. If the zone for this surface has no air boundaries (Construction:AirBoundary) with +Radiant Exchange Method = GroupedZones, then all other surfaces must be within the same zone. If there are one or more + GroupedZone air boundaries, then all other surfaces must be within the connected group of zones. + +## Outputs Description ## + +Various output descriptions may need notes to explain what happens when energy crosses an airwall boundary. +For surface outputs, only relevant output variables will be instantiated for the air boundary surfaces. This will vary +depending on the options selected for Solar and Daylighting Method and Radiant Exchange Method. If *GroupedZone* is +selected for both of these methods, then no surface output variables will be instantiated. + + - For Solar and Daylighting Method = InteriorWindow the relevant window output variables will be instantiated, the same + as for a normal interior window. + - For Raidant Exchange Method = IRTSurface, the relevant opaque surface output variables will be instantiated, the same + as for a normal interzone surface (i.e. no outside face surface temperature will be instantiated). + +New outputs at the grouped zone level may be necessary to allow energy balances to be shown, because it will be impossible +to track solar and radiant energy which travels from one zone to another across an air boundary. + +## Engineering Reference ## + +TBD + +## Example File and Transition Changes ## + +One or more example files will be developed which use air boundaries in various ways. + +## References ## + +None. + +## Design ## +The overall plan is to tackle radiant exchange first, then solar/daylighting, then air exchange. + +### New object Construction:AirBoundary ### +In `HeatBalanceManager::GetConstructData` add code to process Construction:AirBoundary objects in a new +function `CreateAirBoundaryConstructions`. + +In `DataHeatBalance` add new fields to struct `ConstructionData`: + + bool TypeIsAirBoundarySolar(false) // true for Construction:AirBoundary with grouped zones for solar and daylighting + bool TypeIsAirBoundaryInteriorWindow(false) // true for Construction:AirBoundary with InteriorWindow for solar and daylighting + bool TypeIsAirBoundaryRadiant(false) // true for Construction:AirBoundary with grouped zones for radiant + bool TypeIsAirBoundaryIRTSurface(false) // true for Construction:AirBoundary with IRTSurface for radiant + bool TypeIsAirBoundaryLumpedAirMass(false) // true for Construction:AirBoundary with grouped zones for air exchange + bool TypeIsAirBoundaryMixing(false) // true for Construction:AirBoundary with SimpleMixing for air exchange + +For the *IRTSurface* option, use existing `TypeIsIRT` as a guide, but there will be some differences for `TypeIsAirBoundaryIRTSurface`. +For the *InteriorWindow* option, will likely use existing `TypeIsWindow` in combination with `TypeIsAirBoundaryInteriorWindow`. + +*I must say I'm not sure I want to add to the long list of `TypeIs...` variables in `ConstructionData`, but they get the job done. +Several are used only for error checking, some are used only for inits, others are used in the simulation loops (primarily to skip a surface with `continue`. +In fact, the entire `ConstructionData` struct is full of stuff that's only used for one type of construction or another. There's some common stuff, +but lots of extra baggage. I'm open to suggestions.* + +### IRTSurface for Radiant Exchange ### +When *IRTSurface* is specified, then the surface will be modeled the same way that the existing `Material:InfraredTransparent` is used, but the convection +coefficients will automatically be set to zero rather than expecting user inputs for that. + +### InteriorWindow for Solar Distribution and Daylighting ### +When *InteriorWindow* is specified, then the surface will be set up like any other interior window, except it will have perfect transmittance and will +not participate in any other heat exchange. It will likely need a flag variable that can be checked to skip it for certain calculations. For example, +any window optical calculations can be skipped and simply transmit all of the incident solar. + +### Simple Mixing for Air Exchange ### +When *SimpleMixing* is specified for a surface, a pair of ZoneMixing objects will be created between the two zones, using the specified +air change rate based on the smaller of the two zone volumes. Checks will be required to prevent duplicate sets of mixing objects between the same +zone pair. These will likely be set up in `HeatBalanceAirManager::GetSimpleAirModelInputs` along with the user-specified ZoneMixing objects by looping +through all of the surfaces. + +### Grouped Zones for Radiant Exchange ### + +In [PR #7267](https://github.com/NREL/EnergyPlus/pull/7267/files) "Streamline ManageSurfaceHeatBalance - Part 1," +new lists of surfaces have been added to streamline loops in `HeatBalanceSurfaceManager::CalcHeatBalanceInsideSurf`: + + DataSurfaces::AllHTSurfaceList // List of all heat transfer surface + DataSurfaces::AllIZSurfaceList + DataHeatBalance::Zone(ZoneToResimulate).ZoneHTSurfaceList // List of HT surfaces related to this zone (includes adjacent interzone surfaces) + DataHeatBalance::Zone(ZoneToResimulate).ZoneIZSurfaceList // List of interzone surfaces in this zone + +For radiant exchange, similar surface lists and related data already exist in `DataViewFactorInformation.hh struct ZoneViewFactorInformation`: + + std::string Name; // Zone name + int NumOfSurfaces; // Number of surfaces in the zone + Array2D F; // View Factors + Array2D ScriptF; // Hottel's Script F //Tuned Transposed + Array1D Area; // Surface area + Array1D Emissivity; // Surface emissivity + Array1D Azimuth; // Azimuth angle of the surface (in degrees) + Array1D Tilt; // Tilt angle of the surface (in degrees) + Array1D_int SurfacePtr; // Surface ALLOCATABLE (to Surface derived type) + Array1D_string Class; // Class of surface (Wall, Roof, etc.) + +`DataViewFactorInformation::ZoneInfo(ZoneNum).SurfacePtr` is a 1d array analagous to `DataHeatBalance::Zone(ZoneToResimulate).ZoneHTSurfaceList`. +`ZoneInfo` is populated in `HeatBalanceIntRadExchange::InitInteriorRadExchange` for the heat transfer surfaces in a given zone. `ZoneInfo.F` is +also used for interior solar diffuse distribution in `SolarShading::CalcWinTransDifSolInitialDistribution` and `CalcInteriorWinTransDifSolInitialDistribution.` + +Initial thoughts are to change `ZoneInfo` to `RadiantEnclosure` and add `SolarEnclosure`. `RadiantEnclosure` would be used exactly the same way +that `ZoneInfo` is used, except the included surfaces would differ depending on the presence of Construction:AirBoundary surfaces with *GroupedZone* radiant +exchange. In that case, all of the surfaces within the connected grouped zones would be in the same `RadiantEnclosure` list. In this case, the number of +radiant enclosures would be less than the number of zones. + +When `HeatBalanceIntRadExchange::CalcInteriorRadExchange` is called without the optional `ZoneToResimulate` +argument, then it will simply loop through the members of `RadiantEnclosure` to cover all zones or groups. When `ZoneToResimulate` is used, then a new variable in the `Zone` struct will +point to the `RadiantEnclosure` associated with that zone. `ZoneToResimulate` is used when there is radiant heating/coooling equipment in a zone. If there is +radiant equipment in more than one zone within the same enclosure, this will result in the entire enclosure being solved multiple times as each zone's +radiant system updates. The calls to resimulate will be examined to see if this duplication can be avoided. + +### Distribution of Internal Radiant Gains with Grouped Zones ### +`HeatBalanceSurfaceManager::ComputeIntThermalAbsorpFactors` "computes the fractions of long-wave radiation from lights, equipment and people +that is absorbed by each zone surface". Visible gains from lights are tracked separately. + +Pertinent variables (*inferring units from usage - not documented - grrr*): + + `DataHeatBalance::TMULT` [1/m2?] - Zone multiplier - essentially 1/Sum(Area*ThermalAbsorptance) in the zone + `DataHeatBalance::QL` [W?] - Total thermal radiation added to a zone + `DataHeatBalance::QS` [W?] - Zone short-wave flux density + `DataHeatBalance::QSLights` [W?] - Like QS, but Lights short-wave only. + `DataHeatBalance::QSDifSol` [W?] - Like QS, but diffuse solar short-wave only. + + +Pertinent functions: + + `HeatBalanceSurfaceManager::InitIntSolarDistribution` + `HeatBalanceSurfaceManager::ComputeIntThermalAbsorpFactors` + `HeatBalanceSurfaceManager::GatherComponentLoadsSurfAbsFact` + `InternalHeatGains::InitInternalHeatGains` + +Initial thought is to keep `QL` and `TMULT` as-is per zone and add new `QLEnclosure` and `TMULTEnclosure` which are for the grouped zone enclosures. +Similar for `QS`. + +### Grouped Zones for Solar Distribution and Daylighting ### + +For diffuse interior solar distribution, `SolarShading::CalcWinTransDifSolInitialDistribution` and `CalcInteriorWinTransDifSolInitialDistribution.` +will use the new `DataViewFactorInformation::SolarEnclosure` surface lists instead of the current `ZoneInfo` lists. + +For direct solar, searching the code for `FullnteriorExterior` points to the following functions that will need modifications to use the new +`SolarEnclosure` surface lists and to skip air boundary surfaces: + + * `SolarShading::ComputeIntSolarAbsorpFactors` - When not using FullInterior solar distribution, this function calculates the factors to distribute +direct solar entering a zone; to the floor(s) if present, otherwise distribute evenly. + * `SolarShading::DetermineShadowingCombinations` - This function calculates possible shadow combinations. It has a different path for FullInterior. + Once these combinations are set here, then the rest of the solar shading calculations should flow directly without any other changes, because + the shadow combinations will already include or exclude the appropriate combinations within the solar enclosures. + * `SolarShading::CalcInteriorSolarDistributionWCESimple` - Calculates various zone solar output variables such as "Zone Exterior Windows Total Transmitted Beam Solar Radiation Rate". + Some of these outputs will be fine as-is even for grouped zones, because the source surfaces are still associated with their respective zones. Others may + require modifications to allocate the solar energy correctly among the grouped zones. + +For daylighting, pretty much every function will need to be converted to use the `SolarEnclosure` surface lists instead of the current +approach of `for (ISurf = Zone(ZoneNum).SurfaceFirst; ISurf <= Zone(ZoneNum).SurfaceLast; ++ISurf) {`. + +### Grouped Zones for Air Exchange ### +It's not clear how go about this conceptually. There are so many calculations that depend on the zone air temperature - inside surface heat balances, +infiltration and mixing, HVAC system operation. It won't be correct to simply average the zone air masses together at the end of a time step, for example. +Using a single air mass for the entire group would require that any HVAC controls in the group of zones are all working towards the same setpoint which +defeats the whole purpose of the separate zones in the first place. So, punting this one until the end. It may ultimately be removed as an option. + +### Reporting ### +Various zone and surface outputs will be reviewed to determine their relevance and the proper accounting of +solar and radiant gains. Irrelevant output variables will be suppressed for air boundary surfaces (dependent on the options specified +for radiant, solar, and air exchange) and grouped zones. Reporting at the grouped zone level has been considered, but if at all +possible, it would be preferable to keep reporting at the original zone level only. diff --git a/design/FY2019/NFP-DOAS_MultiAHUs.md b/design/FY2019/NFP-DOAS_MultiAHUs.md new file mode 100644 index 00000000000..74b4f9c9594 --- /dev/null +++ b/design/FY2019/NFP-DOAS_MultiAHUs.md @@ -0,0 +1,958 @@ +# **Model DOAS Supplying Air to Inlets of Multiple AHUs** + +## Lixing Gu +## Floirda Solar Energy Center + +### Third revision 4/10/19 + +Revise NFP and Design Document based on discussion in a conference call on 4/10/19 + +### Second revision 4/5/19 + +Revise NFP based on communications from Edwin and Tianzhen and Add Design Document + +### First revision 3/29/19 + +Revised based on E-mail communications and a conference call on 3/27/19. + +### First draft: 3/11/19 + +### **Justification for Feature Update:** + +This new feature will allow EnergyPlus to model an outside air system supplying ventilation air to multiple air handlers. + +Currently a DOAS (dedicated outdoor air system) in EnergyPlus is a normal AirLoopHVAC (aka air loop) object with the recirculated air flow set to zero. In EnergyPlus the air loops are independent of each other: one air loop can not provide air to another. Outside air is provided to each air system by the AirLoopHVAC:OutdoorAirSystem object. Each outdoor air system can supply only one air loop. All this means that EnergyPlus can't simulate a common HVAC layout: a single multi-floor DOAS serving, through an air shaft, multiple single floor air handling units. + +FSEC will implement the new feature based on request shown below: + +#### Modal DOAS to Multiple Air Handling Units + +o This feature develops the modeling and simulation approach for a dedicated outdoor air system (DOAS) connected to multiple air handling units (AHUs). Many buildings have a separate DOAS system that feeds outdoor air directly to individual AHUs on each building floor. Currently EnergyPlus can only model a DOAS delivering outdoor air directly to zones or to the inlet or outlet of zone equipment acting as terminal units. This feature will allow a single DOAS to supply air to the outdoor air inlet of multiple air systems. + +o Ability to attach one DOAS to multiple AirLoopHVAC objects would be helpful to model: DOAS connected to multiple rooftop units (or) multiple SZVAV/SZCV units + +o This feature will develop the modeling and simulation approach for a dedicated outdoor air system (DOAS) connected to multiple air handling units (AHUs). Many buildings have a separate DOAS system that feeds outdoor air directly to individual AHUs on each building floor. Currently EnergyPlus can only model a DOAS delivering outdoor air directly to zones or to the inlet or outlet of some zone equipment acting as terminal units. This feature will allow a single DOAS to supply air to the outdoor air inlet of multiple air systems. + + +### **Conference Call Conclusions** + +####Rich provide comments on 3/18/19 from GitHun pull request + +Zone equipment already allow DOAS connected to inlets. It would be better for GUIs if the same object was used to connect to air loop equipment. The object is AirTerminal:SingleDuct:Mixer/Splitter. There are existing functions that calculate the mixing and other functions used for component sizing. The functions are in SingleDuct.cc and at the bottom of ReportSizingManager. The existing functions in SingleDuct.cc could be used by all equipment models. Also, we already have AirloopHVAC that can act as DOAS and don't need another dedicated object. + +####My reply on 3/19/19 + +@rraustad Thanks for your comment with quick feedback. The proposed new feature will have a central DOAS to serve multiple AirLoops. The name of AirTerminal:* may not be appropriated. I think any names with AirLoop are better. That is what is proposed. In addition, the proposed feature is a high level management to provide enough inputs to map required configurations. The detailed calculations will use existing functions. For example, any OA calculations will call existing OA controllers. + +The proposed object is similar with the AirLoop object with two main differences. The first difference is that the proposed object requires two nodes: inlet and outlet only, while the AirLoopHVAC object requires two pairs of node based supply and demand sides. In addition, the proposed object requires more inputs, such as setpoint manager, AirLoopHVAC:DedicatedOutdoorAirSystem:Mixer, and AirLoopHVAC:DedicatedOutdoorAirSystem:Splitter. + +The second difference is that AirLoopHVAC is used to serve multiple zones, while the proposed object is used to serve multiple AirLoops. Since difference purposes are specified, it should use different names to specify how to use these objects properly. In addition, we have issues with zone mass balance in an AirLoopHVAC. The proposed object deals with multiple AirLoops only and there is no potential mass balance issue. That is why I propose a new object name for a central DOAS system. + +####E-mail communications between Jason and Lixing between 3/22/19 and 3/25/19 + +Jason: + +Thanks for your feedback. I understand your concern that we should have flexibility to allow different zone configurations. + +The proposed new feature has a central DOAS system to take a sum of outdoor air flow rates from served AirLoops as its own flow rate, and does not deal with zones directly. If an AirLoop allows this type configuration, it will accept as is, as long as an OA mixer has a balance flow between an OA inlet node and a relief node. + +If the outdoor airflow rate is greater than the relief flow rate, as long the a sum of all incoming flow rates is equal to a sum of all outgoing flow rates, the central DOAS will use the sum of outdoor airflow rates for this loop. + +Thanks. + +Gu + +-----Original Message----- +From: Jason Glazer [mailto:jglazer@gard.com] +Sent: Friday, March 22, 2019 10:13 AM +To: Lixing Gu +Cc: Mike Witte +Subject: Re: [energyplusdevteam] Model DOAS Supplying Air to Inlets of Multiple AHUs + +Gu + +It is great that you are working on this important missing feature. A lot of people will use this feature. + +I am no expert but did not see anything wrong with your proposed approach. + +If I am understanding correctly, the list of zones that exhaust to the DOAS can be different than the list of zones that it supplies? That is important. + +Jason + +####E-mail communications between Brent and Lixing between 3/22/19 and 3/27/19 + +Brent: + +Here are my replies under your responses. + +Thanks. + +Gu + +From: Brent Griffith [mailto:Brent.Griffith@EnergyArchmage.com] +Sent: Wednesday, March 27, 2019 10:26 AM +To: 'Lixing Gu' +Cc: 'Lawrence Scheier' ; 'Michael J Witte' ; 'Richard Raustad' ; 'Edwin Lee' ; 'Spielbauer, Jim' ; 'Chidambaram, Nagappan' +Subject: RE: Sizing, etc. call Wed / Agenda item DOAS-to-Mult-AHU's + +HI gu + +I have added some responses below + +From: Lixing Gu [mailto:gu@fsec.ucf.edu] +Sent: Wednesday, March 27, 2019 10:12 AM +To: 'Brent Griffith' +Cc: 'Lawrence Scheier' ; 'Michael J Witte' ; 'Richard Raustad' ; 'Edwin Lee' ; 'Spielbauer, Jim' ; 'Chidambaram, Nagappan' +Subject: RE: Sizing, etc. call Wed / Agenda item DOAS-to-Mult-AHU's + +Brent: + +Thanks for your comments. Here are my thoughts under your comments. + +Gu +From: Brent Griffith [mailto:Brent.Griffith@EnergyArchmage.com] +Sent: Wednesday, March 27, 2019 9:46 AM +To: 'Lixing Gu' +Cc: 'Lawrence Scheier' ; 'Michael J Witte' ; 'Richard Raustad' ; 'Edwin Lee' ; 'Spielbauer, Jim' ; 'Chidambaram, Nagappan' +Subject: RE: Sizing, etc. call Wed / Agenda item DOAS-to-Mult-AHU's + +Hi Gu, + +It will be great to have this feature! Here are some comments from reviewing the proposal. + +AirLoopHVAC:DedicatedOutdoorAirSystem:Mixer and AirLoopHVAC:DedicatedOutdoorAirSystem:Splitter could just name OutdoorAir:Mixer, or AirLoopHVAC, objects instead of nodes. And the mixer object should be able to include a list of exhaust fans (or exhaust fan outlet nodes) not just relief from OutdoorAir:Mixer. + +A: What I need is to have a list of AirLoops to be served, If the list is provided in the AirLoopHVAC:OutdoorAirSystem. The assumption is that each AirLoop has an OutdoorAir:Mixer only. The current structure does not restrict user to input multiple OA mixers. Is my understand correct? In addition, in order to make connection between central DOAS (proposed new object) and served AirLoops, I need Mixer and Splitter to map required configurations. If I don’t have proposed Mixer and Splitter, how can I map these connections? + +BG: OF course you need a list in new Mixer and Splitter objects, I am just saying instead of nodes, you could name the OutdoorAir:Mixer objects and then use GetMyOAInletNode() and GetMyReliefOutletNode() functions from the OutdoorAir:Mixer. It takes some burden off the user to get repeated node names to match. + +Gu: Thanks for clarification. I will modify input fields of AirLoopHVAC:DedicatedOutdoorAirSystem:Mixer and AirLoopHVAC:DedicatedOutdoorAirSystem:Splitter to list object names of OutdoorAir:Mixer. However, how do I define outlet of Mixer and inlet of Splitter? + +AirLoopHVAC:DedicatedOutdoorAirSystem does not seem to add much to AirLoopHVAC:OutdoorAirSystem and its equipment list. Fred's final old proposal was to add splitter and mixer references to the end of AirLoopHVAC:OutdoorAirSystem rather than create another new object. There is a lot of code in MixedAir.cc and it needs to be reused as much as possible to be practical. I am not sure adding another code module on top of MixedAir makes sense. + +A: The proposed object of AirLoopHVAC:DedicatedOutdoorAirSystem has some input requirement AirLoopHVAC:OutdoorAirSystem does not have. For example, the proposed object requires inputs of inlet node and outlet node. If the relief node mass is less than the outdoor air inlet mass, I can add make up at the inlet node to make mass flow conservative. + +BG: But the AirLoopHVAC:OutdoorAirSystem will have an AirLoopHVAC:OutdoorAirSystem:EquipmentList in there will be an OutdoorAir:Mixer. The inlet and outlet nodes you mention can come from that OutdoorAir:Mixer. Otherwise are the nodes names just repeated? + +Gu: See my concern to define outlet of Mixer and inlet of Splitter. + +There is also the notion of individual AirLoopHVAC units economizing directly, not drawing excess OA all the way thru the DOAS. For that it seems there needs to be an additional OA node added to OutdoorAir:Mixer and changes to support direct OA economizing. This doesn’t show on your line diagram. + +A: The above answer may cover a partial answer. My understanding is that the proposed new object collects all OA inlet node mass as its own mass flow rate. If a sum of relief node mass flow rate is less than the collected mass flow rate, I will add makeup mass flow at the inlet node. That is one of reason I proposed a new object as AirLoopHVAC:DedicatedOutdoorAirSystem. + +BG: DOAS system is for ventilation. Airside economizing is for energy efficiency when OA is cool enough and involves larger quantities of OA than are required for ventilation. They don’t make DOAS system so huge as to provide sufficient air flow for economizing and the pressure drop would defeat. So the idea is that the DOAS serving multiple AHUs is sometimes bypassed and direct economizing air is introduced into individual AHUs. The DOAS system doesn’t provide all the air for economizing, so an additional path for OA to enter the individual AHUs is needed, hence an new node in the OutdoorAir:Mixer. + +Gu: I may ask you a simple question. Is there a flag to define an economizer works as economizing mode? If yes, should I assign the OA rate for this AirLoop as zero? + +Brent + +From: Lawrence Scheier [mailto:lscheier@sei-associates.com] +Sent: Monday, March 25, 2019 11:40 AM +To: Brent Griffith ; 'Michael J Witte' ; 'Richard Raustad' ; 'Edwin Lee' ; 'Spielbauer, Jim' ; 'Chidambaram, Nagappan' ; 'Lixing Gu' ; 'Tianzhen Hong' ; 'Roth, Amir' ; 'Jason Turner' ; 'jason.degraw' ; Lawrence Scheier +Subject: Sizing, etc. call Wed / Agenda item DOAS-to-Mult-AHU's + +Team: just a heads up that one of the agenda items will be Gu's DOAS-to-MulipleAHU's NFP per his email below. + +Lawrence Scheier +SEI Associates + +On Monday, March 25, 2019, 9:23:03 AM MDT, Lixing Gu wrote: + +Larry: + +As you may know, I will implement a new feature to Model DOAS Supplying Air to Inlets of Multiple AHUs. The NFP was uploaded in https://github.com/NREL/EnergyPlus/blob/Model-DOAS-to-Multiple-Air-Handling-Units/design/FY2019/NFP-DOAS_MultiAHUs.md. The approach I proposed is a slight modification Fred proposed before. My guess (not sure) is that the Fred’s proposal was discussed in the sizing meeting before. I also know you are interested in this topic. Is it possible to discuss the NFP in the sizing meeting as an agenda item this Wed.? + +Thanks. + +Gu + +On Monday, March 25, 2019, 6:53:49 AM MDT, Lawrence Scheier wrote: + + +Team: Just a reminder that we will have the "Sizing, etc." call this Wed at the usual time. + +To join the online meeting. +http://www.joingotomeeting.com/ +Meeting ID: 777-359-649 +or: +https://www3.gotomeeting.com/join/777359649 + +Use your microphone and speakers (VoIP) - a headset is recommended. +Or, call in using your telephone. +Dial +1 (786) 358-5413 +Access Code: 777-359-649 +Audio PIN: Shown after joining the meeting +Meeting ID: 777-359-649 + +Enclosed is figure from Brent to clarify two point for his comments: add additional inputs for AirLoopHVAC:Mixer to catch unbalance flows from exhaust fans, and add an additional inlet node for OutdoorAir:Mixer to catch direct economizer operation. + +![Figure 2](DOAS_AHUs_ReviewComment.png) + +####A conference call on 3/27/19 + +The conference call was held in a regular sizing meeting. + +Attendees: Brent Griffith; Michael J Witte; Richard Raustad; Lixing Gu; Lawrence Scheier; Kristin Filed-Macumber + +The conference call discussed the NFP by continuing E-mail communications between Brent and Gu. Here is a consensus: + +##### Rename two proposed new objects + +The new object names of AirLoopHVAC:DedicatedOutdoorAirSystem:Mixer and AirLoopHVAC:DedicatedOutdoorAirSystem:Splitter will be renamed as AirLoopHVAC:Mixer and AirLoopHVAC:Splitter. They are simpler and may be used for other purposes. + +##### Remove proposed new fields in AirLoopHVAC:OutdoorAirSystem + +Additional new fields were proposed to revise AirLoopHVAC:OutdoorAirSystem: The number of AirLoops and a list of AirLoop Names to be served by AirLoopHVAC:DedicatedOutdoorAirSystem. These fields will be added in the AirLoopHVAC:DedicatedOutdoorAirSystem object, so that input mapping is much clear from a single object. There is no need to revise the AirLoopHVAC:OutdoorAirSystem object. + +##### Remove 3 fields in the proposed new object AirLoopHVAC:DedicatedOutdoorAirSystem + +1 Remove a field of SetpoinManager:OutdoorAirPreTreat + +Since AirLoopHVAC:OutdoorAirSystem allows to use setpoint managers to control each individual coil, there is no need to repeat the same process to pre-treat outdoor air. It is better to use existing capability. + +2 Remove inlet node and outlet nodes + +The AirLoopHVAC:OutdoorAirSystem inputs have its own inlet and outlet nodes, defined in the AirLoopHVAC:OutdoorAirSystem:EquipmentList object implicitly. These nodes can be found based on component object type and name. The inlet node in the first component will be assigned to the outlet node of AirLoopHVAC:Mixer. The outlet node in the last component will be assigned to the inlet node of AirLoopHVAC:Splitter. + +Therefore, removing these inputs will reduce user's input effort. + +#####Sizing + +In order to calculate sizing correctly, the mass flow rate should be provided. The current structure may not have a clear pathway to find required mass flow rate. More effort will be needed to finalize the sizing mass flow rate. For the time being, the decision is to implement code first with hard sizes for each pre-treated OA coils, listed in the AirLoopHVAC:OutdoorAirSystem:EquipmentList object. + +Note: It is proposed to use ventilation requirements as autosize. Economizer free operation may not need to turn on coils listed in AirLoopHVAC:OutdoorAirSystem. + +##### Additional inlet node of OutdoorAir:Mixer for economizer operation + +Although the current code (Function CalcOAController in MixedAir) calculates outdoor airflow rate from both ventilation requirement and economizer operation to provide free cooling (through Function CalcOAEconomizer in MixedAir), the OA rate is finalized in the same function with given logic, and is assigned to the same outdoor air inlet node in an OutdoorAir:Mixer. It will be better to add a new OA inlet node for economizer use only. Therefore, the OA flow from ventilation requirement will be assigned to existing outdoor air inlet node, and the OA flow from economizer operation will be assigned to the new additional OA node. The final OA rate will be maximum values from both OA flows. + +Note: This effort is beyond the current scope. If time and budget allow, I will try to implement this new addition. + +####Additional thought + +#####Option 1 + +1. Block an OutdoorAir:Mixer in the inputs of AirLoopHVAC:OutdoorAirSystem + +An OutdoorAir:Mixer, available in the AirLoopHVAC:OutdoorAirSystem object, will not be used, since the OA flow rate is provided by AirLoops served by the AirLoopHVAC:DedicatedOutdoorAirSystem object. + +2. Add an additional OA inlet node in AirLoopHVAC:Mixer + +It is possible to have unbalanced flow rate between OA inlet node and relief node for each OutdoorAir:Mixer. Therefore, the sum of flow rates from each OutdoorAir:Mixer OA inlet node may be different from the sum of flow rates from each OA mixer relief node. The additional OA inlet will provide makeup OA rate to ensure the mass is balanced in the AirLoopHVAC:DedicatedOutdoorAirSystem loop. This addition address one of Brent's concern: add additional inputs for AirLoopHVAC:Mixer to catch unbalance flows from exhaust fans + +#####Option 2 + +Removed. + +Note: Option 2 is removed and the AirLoopDOAS loop will be kept for possible additional capability, which will be investigated during implementation of this new feature in order to allow a central relief or a central exhaust system for a central heat recovery. A careful mapping is needed. If a heat recovery is used in an AirLoop, the relief air can not be used twice. Therefore, the central relief will be carefully configured to catch all unused relief air. + +########## Need more addition + +#### Github communications with Edwin on 4/1/19 + +This section provide communications between Edwin and Gu. +#####Edwin comments + +I was reviewing this offline while flying, so my apologies that these notes are not more integrated with the changes themselves. I can refine if needed: + +I like the current state of objects and connections +My biggest concern when tying together systems that are not currently "coupled" is the flow imbalance, and it looks like that has been rigored over by Rich and Brent, and the design looks satisfactory +"Hope no iteration is needed" seems optimistic - it would be nice to have some commentary about possible solutions if it starts to be problematic +AirLoopHVAC:Mixer and Splitter objects - extensible comment with (Change numbering, please) is not quite right - remember users cannot modify the IDD and have it make an impact now. + +##### Gu's reply + +@Myoldmopar Here are my answers to your concerns. + +"Hope no iteration is needed" seems optimistic +As mentioned in the NFP, a possible call will be at the end of SolveAirLoopControllers in the SimAirServingZones module after AirLoopHVAC is looped to get OA flows from all OutdoorAir:Mixers. After OA is pre-treated from the proposed new feature, I expect to iterate 2 - 3 times among all served AirLoopHVAC and the proposed new feature until air properties of the inlet nodes from all OutdoorAir:Mixers are the same as ones after pre-treated air from the proposed new feature. +If successful, I will try to eliminate iteration to see what happens. If working, hope no iteration (this is what I mean). If not, use iteration approach already implemented in the beginning. + +Extensible fields +I am not aware of no change of IDD. Thanks for letting me know this restriction in the beginning. Do we allow extensible fields? If Yes, could you let me know how to do it. If not, I will use 500 node name, similar configuration of AirLoopHVAC:ZoneMixer. Please advise. + +#### E-mail communications with Tianzhen on 4/2/19 + +Thanks for the further clarification. + +Tianzhen + +On Wed, Apr 3, 2019 at 10:29 AM Lixing Gu wrote: +Tianzhen: + +Thanks for quick feedback. Here are my answers. + +3. DOAS OA flow rate +The DOAS will provide the OA flow rate as a sum of all OA flow rates from served AirLoops, no matter what mode operation for each AirLoop, either economizer or ventilation requirements, in order to keep mass conservation. That is a consensus from a conference call on 3/27/19. + +4. Supply air property reset. + +The flow rate is determined by OA flow rates from served AirLoops as passive operation. The supply air properties, such as temperature and humidity, can be pre-treated by setpoint managers, such as schedule or constant, using existing functionality. + +Hoe my answers address your concerns. + +Thanks. + +Gu + + +From: Tianzhen Hong [mailto:thong@lbl.gov] +Sent: Wednesday, April 03, 2019 11:51 AM +To: Lixing Gu +Cc: Mike Witte ; Xuan Luo +Subject: Re: [energyplusdevteam] Model DOAS Supplying Air to Inlets of Multiple AHUs + +Lixing, + +On 3 and 4, can you clarify further? + +3. Would the DOAS provide the needed OA rate for all serving AHUs operating in the economizer mode (which can be up to 100% of supply air)? Or the DOAS only provides the ventilation rate needed by the serving AHUs and assuming they can get remaining OA rate from separate air duct? This relates to how the duct system is designed and air flow control. + +4. I meant the supply air temperature and humidity from the DOAS. Are they constant or can be reset? + +These questions are what I discussed with Fred a while back. + +Thanks, +Tianzhen + + +On Wed, Apr 3, 2019 at 7:04 AM Lixing Gu wrote: +Tianzhen: + +Thanks for your comments. I know this new feature was due a long time ago. Thanks for giving us a chance to start. Here are my answers to your questions and comments. + +1. Central heat recovery +Yes. You are correct. The central heat recovery will not be accomplished unless we have central relief or central exhaust. A careful mapping is required. For example, an AirLoop has its own heat recovery. The amount of relief air can not be used in the central recovery. A central relief should catch all unused relief air. It seems the capability is beyond the current scope. I will think of it during new feature implementation and propose a realistic approach to accomplish it. +2. Central OA distribution +Mass conservation in the AirLoop DOAS has number 1 priority. I don’t expect this will happen. If this happens, I will write a warning message and distribute OA rate proportionally as you suggest. +3. Economizer +An economizer is allowed for each served AHU as existing capability. However, the coils used to pre-treat OA in the AirLoop DOAS will be sized for ventilation requirement only. The main purpose to use an economizer is to provide free cooling. At this point, the pre-treated OA is not needed. +4. DOAS supply air provides its own flow rate +No. The current scope is to let the proposed AirLoop DOAS provide OA rate determined by all served AHUs. It will not have any distribution issues. If the AirLoop DOAS provides its own flow rate, it will required distribution fraction for each served AHU. This will be a good new feature for future. + +Hope I address your questions and comments. Please let me know what you think. + +Thanks. + +Gu + +From: Tianzhen Hong [mailto:thong@lbl.gov] +Sent: Tuesday, April 02, 2019 4:31 PM +To: Lixing Gu +Cc: Mike Witte ; Xuan Luo +Subject: Re: [energyplusdevteam] Model DOAS Supplying Air to Inlets of Multiple AHUs + +Lixing, + +This will be an exciting feature (Fred has been hoping to get this done before his retirement :). + +Couple questions/comments: + +1. The proposed AirLoopHVAC:DedicatedOutdoorAirSystem would not allow heat recovery from exhaust/relief air of the serving multiple AHUs/Air loops as there is no central exhaust or relief air. Am I correct? +2. The air flow of the AirLoopHVAC:DedicatedOutdoorAirSystem is calculated as the sum of the OA flow rates needed by the serving multiple AHUs/Air loops, which can be a constant or varying with time. In an ideal control, the DOAS provides exactly the OA needed by those AHUs. What happens if DOAS provides more or less OA? Would each AHU get proportional OA from the DOAS? +3. What happens if some or all the serving AHUs have air economizers? Would the DOAS be sized to meet that requirement? Or this type of DOAS configuration rules out air economizer for the serving AHUs? +4. Would the DOAS supply air conditions (e.g., temperature) be constant/fixed or can be reset? + +Best, +Tianzhen + +On Mon, Mar 18, 2019 at 10:07 PM Tianzhen Hong wrote: +Lixing, + +Great to know you are doing this. I will review and provide feedback. + +Tianzhen + +On Mon, Mar 18, 2019 at 8:38 AM Lixing Gu wrote: +Team: + +An NFP to Model DOAS Supplying Air to Inlets of Multiple AHUs. + +https://github.com/NREL/EnergyPlus/blob/Model-DOAS-to-Multiple-Air-Handling-Units/design/FY2019/NFP-DOAS_MultiAHUs.md. + +Comments are welcome via e-mail or github. Please let me know if you wish to be a reviewer for this task. + +Thanks. + +Gu + +####A conference call on 4/10/19 + +Attendees: Brent Griffith; Michael J Witte; Richard Raustad; Lixing Gu; Lawrence Scheier; Edwin Lee; Kristin Filed-Macumber; Jim Spielbauer; Napappan Chidambaram; Jason DeGraw + +The second revision of NFP and Design Document were discussed in a regular sizing meeting on 4/10/19. Here are issues discussed and addressed. + +#####Extensible fields + +The current structure does not allow users to change IDD directly. However, it is possible to make fields extensible. The fixed number will be used first. I will get help to implement extensible fields later. + +#####Sizing + +A new sizing function will be created to handle all sizing requirements. + +#####Airflow mismatch between supply fan listed in AIrLoopDOAS and OA required flow rate from all OA mixers + +If a supply fan flow rate defined in the AirLoopHVAC:DedicatedOutdoorAirSystem object is below (or not equal to) the OA flow rate requested from a sum of OA mixers, a possible mismatch occurs. Two possible actions may be taken: 1) Stop simulation with a fatal error; and 2) Increase the fan flow rate to match OA requirements and provide a warning message, so that simulation can continue. + +#####Remove an argument in SimAirLoopHAVCDOAS + +An argument of AirLoopHAVCDOASNum will be removed, in order to make function arguments consistent with other modules. + +#####AirLoopHVAC:Mixer Configuration + +AirLoopHVAC:Mixer will collect not only all air flows of OA Mixer relief nodes from served AirLoops, but also air flows of all zone exhaust fans served by each AirLoop defined in the AirLoopHVAC:DedicatedOutdoorAirSystem object. The outlet node will not be connected to the inlet node in the AirLoopHVAC:DedicatedOutdoorAirSystem object. Instead, the outlet node is either connected to outdoor air to relief or connected to a heat exchanger listed in the AirLoopHVAC:OutdoorAirSystem object as a component to pre-treat outdoor air. + +### **Overview** + +We propose 3 new objects to accomplish the goal. + +####New objects + +The proposed new objects are AirLoopHVAC:DedicatedOutdoorAirSystem, AirLoopHVAC:Mixer, and AirLoopHVAC:Splitter. + +#####AirLoopHVAC:DedicatedOutdoorAirSystem + +The first new object is AirLoopHVAC:DedicatedOutdoorAirSystem. It will take a sum of outdoor air from multiple AirLoopHAVC outdoor units as mass flow rate, pre-treat it through cooling and heating coils, and deliver pre-treated air to outdoor air inlets of each OutdoorAir:Mixer, served by the object. The object has following components: + + Object Name + Modified AirLoopHVAC:OutdoorAirSystem Object Name + AvalaibilityManager name + AirLoopHVAC:DedicatedOutdoorAirSystem:Mixer name + AirLoopHVAC:DedicatedOutdoorAirSystem:Splitter Name + Number of AirLoopHVAC served by AirLoopHVAC:DedicatedOutdoorAirSystem + AirLoopHVAC 1 name + AirLoopHVAC 2 name + .... + +The structure of the new object does not require inputs of nodes, because the object inlet and outlet nodes can be found at an associated AirLoopHVAC:OutdoorAirSystem:EquipmentList. The object has input configuration to map served AirLoops. + +#####AirLoopHVAC:Mixer + +The object has a single outlet node and multiple inlet nodes. The outlet node is a stand-alone node and will not be connected to the inlet node in the AirLoopHVAC:DedicatedOutdoorAirSystem object. Instead, the outlet node is either connected to outdoor air to relief or connected to a heat exchanger listed in the AirLoopHVAC:OutdoorAirSystem object. The multiple inlet nodes are the relief nodes from Multiple AirLoopHAVC OutdoorAir:Mixer. In addition, the Mixer will collect exhaust airflows in all zoned served by AirLoops defined in the AirLoopHVAC:DedicatedOutdoorAirSystem object internally. The air properties at the outlet node will be calculated based on air properties of all inlet nodes weighted by incoming flow rates. + +#####AirLoopHVAC:Splitter + +The object has a single inlet node and multiple outlet nodes. The inlet node is the outlet node of the last component of the AirLoopHVAC:DedicatedOutdoorAirSystem object. The multiple outlet nodes are the OA inlet nodes from Multiple AirLoopHAVC OutdoorAir:Mixer. + +####Possible calculation procedure + +Here is a possible calculation procedure: + +1. Loop AirLoopHVAC to calculate mass flow rate at each OutdoorAir:Mixers served by AirLoopHVAC:DedicatedOutdoorAirSystem +2. Assign a sum of OA mass flow rate into AirLoopHVAC:DedicatedOutdoorAirSystem as the object mass flow rate +3. Calculate outlet node conditions based on setpoint manager assigned to each individual coil required in the AirLoopHVAC:OutdoorAirSystem object to pre-treat outdoor air. +4. Assign outlet node conditions into OA inlet conditions of each AirLoop OutdoorAir:Mixer via AirLoopHVAC:Splitter +5. Loop AirLoopHVAC again using air properties at each OA inlet node from Step 4 +6. Check air property differences at the outlet node from AirLoopHVAC:DedicatedOutdoorAirSystem and OA inlet nodes of all AirLoop OutdoorAir:Mixer. +7. If converged, continue. Otherwise, go to Step 3. + +Note: Since the AirLoopHVAC:OutdoorAirSystem object is listed as a component of AirLoopHVAC:DedicatedOutdoorAirSystem, the object will allow an economizer to setup the mass flow rate, then distribute airflow into served OutdoorAir:Mixers, in addition to a sum of OA systems of multiple AirLoopHVAC. Due to the limited time and budget, this feature is not implemented and will be developed later. + +![Figure 1](AirLoopDOAS1.jpg) + +### **Approach** + +A new module will be created as SimAirLoopDOAS to handle 3 new objects: AirLoopHVAC:DedicatedOutdoorAirSystem, AirLoopHVAC:Mixer, and AirLoopHVAC:Splitter. + +At the same time, other modules will be modified to make proposed new feature work successfully. + +####SimAirLoopDOAS + +It contains following common functions: + +#####SimAirLoopDOAS + +A driver for this module with external connection + +#####GetInput + +Read input file and assign inputs to variables and structs + +#####Init + +Initialize values without changes at the current iteration before calculation. At the same time, + +#####CalcAirLoopDOAS + +Calculate outputs by calling SimOAComponent function in the MixedAir module. + +#####Sizing + +Calculate sizes based on outdoor air conditions and setpoint manager using existing equipment listed in validOASysEquipmentNames. + +#####Other support functions + +The other functions will be added to meet iteration requirements. + +The code format will be similar with the UnitarySystem module or other module. + +In addition, the AirLoopHVAC:OutdoorAirSystem will handle OA rate based on needs from AirLoopHVAC objects and may not have economizer functions for the time being. + +####Other revisions + +#####OutdoorAir:Mixer + +The MixedAir module will be modified to allow OutdoorAir:Mixer OA inlet nodes to accept pre-treated air conditions distributed by AirLoopHVAC:Splitter. + +####Calling + +SimAirLoopDOAS will be looped at the end of SolveAirLoopControllers (preferred) or SimAirLoops in the SimAirServingZones module. A additional convergence check will be performed to ensure each OAcontroller gets proper OA flow rates and inlet conditions after calling SimAirLoopDOAS. Then, I will test if iteration is needed or not. + +## Testing/Validation/Data Sources ## + +A test file with multiple AirLoops and a single AirLoopHVAC:DedicatedOutdoorAirSystem will be created to ensure DOAS Supplying Air to Inlets of Multiple AHUs will work properly. + +## Input Output Reference Documentation ## + +###New objects +AirLoopHVAC:DedicatedOutdoorAirSystem + +AirLoopHVAC:Mixer + +AirLoopHVAC:Splitter + +###Revised object +OutdoorAir:Mixer + +## Input Description ## + +###New objects +AirLoopHVAC:DedicatedOutdoorAirSystem + + AirLoopHVAC:DedicatedOutdoorAirSystem, + \min-fields 7 + \memo Defines a central forced air system to provide dedicated outdoor air to multiple + \memo AirLoopHVACs. + A1, \field Name + \required-field + \type alpha + \reference DOASAirLoops + A2, \field AirLoopHVAC:OutdoorAirSystem Name + \note Enter the name of an AirLoopHVAC:OutdoorAirSystem object. + \type object-list + \object-list validBranchEquipmentNames + A3, \field Availability Manager List Name + \note Enter the name of an AvailabilityManagerAssignmentList object. + \type object-list + \object-list SystemAvailabilityManagerLists + A4, \field AirLoopHVAC:Mixer Name + \note Name of AirLoopHVAC:Mixer. + \object-list AirLoopHVACMixerNames + \required-field + A5; \field AirLoopHVAC:Splitter Name + \note Name of AirLoopHVAC:Splitter. + \object-list AirLoopHVACSplitterNames + \required-field + N1, \field Number of AirLoopHVAC + \type integer + \note Enter the number of the AirLoopHAVC served by AirLoopHVAC:DedicatedOutdoorAirSystem + A6, \field AirLoopHVAC 1 Name + \note The rest of fields are extensible. It requires AirLoopHVAC names served by + \note an AirLoopHVAC:DedicatedOutdoorAirSystem. + \begin-extensible + \type AirLoopHVAC name + A7, \field AirLoopHVAC 2 Name + \type AirLoopHVAC name + A8, \field AirLoopHVAC 3 Name + \type AirLoopHVAC name + A9, \field AirLoopHVAC 4 Name + \type AirLoopHVAC name + A10, \field AirLoopHVAC 5 Name + \type AirLoopHVAC name + A11, \field AirLoopHVAC 6 Name + \type AirLoopHVAC name + ...... + +Note: If extensible is not available, the fixed number of 20 will be used to define the maximum number of AirLoopHVACs served by the proposed object. + +AirLoopHVAC:Mixer + + AirLoopHVAC:Mixer, + \extensible:1 Just duplicate last field and comments (changing numbering, please) + \memo Mix N inlet air streams from Relief Air Stream Node in OutdoorAir:Mixer objects + \memo served by AirLoopHVAC objects listed in AirLoopHVAC:DedicatedOutdoorAirSystem into one + \memo (currently 10 as default, but extensible). Node names cannot + \memo be duplicated within a single mixer list. + A1, \field Name + \required-field + \reference AirLoopHVACMixerNames + A2, \field Outlet Node Name + \required-field + \type node + A3, \field Inlet 1 Node Name + \begin-extensible + \required-field + \type node + A4, \field Inlet 2 Node Name + \type node + A5, \field Inlet 3 Node Name + \type node + A6, \field Inlet 4 Node Name + \type node + A7, \field Inlet 5 Node Name + \type node + A8, \field Inlet 6 Node Name + \type node + A9, \field Inlet 7 Node Name + \type node + A10, \field Inlet 8 Node Name + \type node + A11, \field Inlet 9 Node Name + \type node + A12; \field Inlet 10 Node Name + \type node + +Note: If extensible is not available, the fixed number of 50 will be used to define the maximum number of inlet nodes. + +AirLoopHVAC:Splitter + + AirLoopHVAC:Splitter, + \extensible:1 Just duplicate last field and comments (changing numbering, please) + \memo Split one air stream from AirLoopHVAC:DedicatedOutdoorAirSystem outlet node into N \memo outlet streams (currently 10 as default, but extensible). Node names + \memo should be Outdoor Air Stream Node Name in OutdoorAir:Mixer objects served by + \memo AirLoopHVAC objects listed in AirLoopHVAC:DedicatedOutdoorAirSystem. + A1, \field Name + \required-field + \reference AirLoopHVACSplitterNames + A2, \field Inlet Node Name + \required-field + \type node + A3, \field Outlet 1 Node Name + \begin-extensible + \required-field + \type node + A4, \field Outlet 2 Node Name + \type node + A5, \field Outlet 3 Node Name + \type node + A6, \field Outlet 4 Node Name + \type node + A7, \field Outlet 5 Node Name + \type node + A8, \field Outlet 6 Node Name + \type node + A9, \field Outlet 7 Node Name + \type node + A10, \field Outlet 8 Node Name + \type node + A11, \field Outlet 9 Node Name + \type node + A12, \field Outlet 10 Node Name + \type node + +Note: If extensible is not available, the fixed number of 200 will be used to define the maximum number of outlet nodes. + +###Revised objects + + OutdoorAir:Mixer, + \memo Outdoor air mixer. Node names cannot be duplicated within a single OutdoorAir:Mixer + \memo object or across all outdoor air mixers. + A1, \field Name + \required-field + \type alpha + \reference OutdoorAirMixers + \reference-class-name validOASysEquipmentTypes + \reference validOASysEquipmentNames + A2, \field Mixed Air Node Name + \note Name of Mixed Air Node + \required-field + \type node + A3, \field Outdoor Air Stream Node Name + \note Name of Outdoor Air Stream Node + \required-field + \type node + \note If this object is served by AirLoopHVAC:DedicatedOutdoorAirSystem, the mass flow rate + \note will remain as is. The node conditions will be revised as pre-treated air conditions. + A4, \field Relief Air Stream Node Name + \note Name of Relief Air Stream Node + \required-field + \type node + A5; \field Return Air Stream Node Name + \note Name of Return Air Stream Node + \required-field + \type node + + +## Outputs Description ## + +insert text + +## Engineering Reference ## + +insert text + +## Example File and Transition Changes ## + +An example file will be created to have all proposed new objects. + +Since there is no modification of existing objects, no transition is expected. + +## References ## + +Reference: DesDoc_OASysToMultAirHandlers2.md by Fred. + +## Design Document + +The design document addresses a new module of AirLoopHAVCDOAS and changes of two modules mainly: MixedAir and SimAirServingZones. + +###AirLoopHAVCDOAS + +This new module has several functions and 3 main structs to cover 3 new proposed objects. + +#### Constructor and Destructor + + public: + AirLoopHAVCDOAS(); // constructor + + ~AirLoopHAVCDOAS() // destructor + { + } + + struct AirLoopDOAS + { + } + + struct AirLoopMixer + { + } + + struct AirLoopSplitter + { + } + +####SimAirLoopHVACDOAS + +A driver for this module with external connection. It contains following common functions for calls: + + + void SimAirLoopHVACDOAS + (std::string const &CompName, // Name of the unitary engine driven heat pump system + bool const FirstHVACIteration, // TRUE if 1st HVAC simulation of system time step + int &CompIndex // Index to AirLoopHAVCDOAS + ) + + +#####GetAirLoopDOASInput + +Read an input file and assign inputs of 3 new proposed objects to variables and structs. + + static void getAirLoopDOASInput(); + +#####InitAirLoopDOAS + +Initialize values without changes at each time step before calculation. At the same time, this function will process some data only once, when some information is not available during input process by calling GetAirLoopDOASInput. + + static void initAirLoopDOAS(); + +#####CalcAirLoopDOAS + +Calculate outputs by calling SimOAComponent function in the MixedAir module. + + void CalcAirLoopDOAS( + int const AirLoopDOASNum, // + bool const FirstHVACIteration, + ); + + +#####UpdateAirLoopDOAS + + void UpdateAirLoopDOAS( + int const AirLoopDOASNum, // + ); + +#####ReportAirLoopDOAS + + void ReportAirLoopDOAS( + int const AirLoopDOASNum, // + ); + +#####Sizing + +Calculate sizes based on outdoor air conditions and setpoint manager using existing equipment listed in validOASysEquipmentNames. + +The outdoor air flow rates are available after calling OAControllerProps::SizeOAController. A possible way is to collect outdoor air flow rate after calling SizeOAController, so that sizing of each coil can be accomplished. The coil sizing calculation will be based on ventilation requirements, while fan sizing may be based on the maximum value of both economizer operation and ventilation requirements. The detailed logic will be determined during implementation. + + static void SizingAirLoopDOAS( + int const AirLoopDOASNum, // + ); + +#####Other possible functions will be determined during implementation + + static void initAirLoopMixers(); + static void initAirLoopSplitters(); + static void CalcAirLoopMixers(); + static void CalcAirLoopSplitters(); + + +###SimAirServingZones + +The SolveAirLoopControllers function will be revised by adding a loop after existing AirLoop loop: + +Existing loop + for (int AirLoopControlNum = 1; AirLoopControlNum <= PrimaryAirSystem(AirLoopNum).NumControllers; ++AirLoopControlNum) { + } +The above loop calls SimAirLoopComponents(...->SimOAController in the MixedAir module) to get all required outdoor air flow rate. Here is a proposed loop following the existing loop: + + for (int AirLoopDOASNum = 1; AirLoopDOASNum <= NumberOfAirLoopDOAS; ++AirLoopDOASNum) { + Assing air properties at outlet node, and to all OA nodes at each served AirLoop via an AirLoopHVAC:Splitter + } + +Then an additional AirLoop loop will be called to ensure the inlet OA air properties are the same as AirLoopDOAS outlet + + for (int AirLoopControlNum = 1; AirLoopControlNum <= PrimaryAirSystem(AirLoopNum).NumControllers; ++AirLoopControlNum) { + Check differences of air properties + } + If not converged, iteration will be needed to iterate both loops of AirLoop and AirLoopDOAS. + +###MixedAir + +Air properties of OA mixer inlet nodes are determined by System Nodes from a section code in the InitOAMixer (extracted): + + OAMixer(OAMixerNum).OATemp = Node(InletNode).Temp; + OAMixer(OAMixerNum).OAHumRat = Node(InletNode).HumRat; + OAMixer(OAMixerNum).OAEnthalpy = Node(InletNode).Enthalpy; + OAMixer(OAMixerNum).OAPressure = Node(InletNode).Press; + OAMixer(OAMixerNum).OAMassFlowRate = Node(InletNode).MassFlowRate; + +If OA inlet node values are assigned by the AirLoopDOAS loop correctly, it may not need to revise MixedAir module. The modification will be determined during implementation. + +The AirLoopHVAC:OutdoorAirSystem object requires the OutdoorAir:Mixer object as the last OA component. Since the proposed feature will not need the OutdoorAir:Mixer, the restriction will be removed. In other words, the AirLoopHVAC:OutdoorAirSystem object will work without OutdoorAir:Mixer under this new feature only. + +# **Reference: DesDoc_OASysToMultAirHandlers2.md** + +# **Dedicated OA System Serving Multiple Air Handlers** +## **Fred Buhl LBNL 1/20/2016** +### **Justification for Feature Update:** +This new feature will allow EnergyPlus to model an outside air system supplying ventilation air to multiple air handlers. + +Currently a DOAS (dedicated outdoor air system) in EnergyPlus is a normal AirLoopHVAC (aka air loop) object with the recirculated air flow set to zero. In EnergyPlus the air loops are independent of each other: one air loop can not provide air to another. Outside air is provided to each air system by the AirLoopHVAC:OutdoorAirSystem object. Each outdoor air system can supply only one air loop. All this means that EnergyPlus can't simulate a common HVAC layout: a single multi-floor DOAS serving, through an air shaft, multiple single floor air handling units. + +### **Conference Call Conclusions** +#### **Jan 06, 2016** +* Should the DOAS serving multiple air handlers be modeled on the AirLoopHVAC object or the AirLoopHVAC:OutdoorAirSystem? Consensus seemed to be on the AirLoopHVAC:OutdoorAirSystem. +* The DOAS will be supplying ventilation air. To allow economizer action, each AirLoopHVAC:OutdoorAirSystem it connects to will need 2 outside air inlets. One for the DOAS connection and one for direct access to outside air for economizer action. +* Should the DOAS have branches or just in/out nodes like OutdoorAirSystem? I favor directly replicating OutdoorAirSystem. +#### **June 25, 2016** +* Contacted Fred W. Porter at NORESCO. Here are his comments + * The DOAS AHU mostly needs to control discharge air temps, preheat, dehumidify, possibly w/reheat, and these days utilize energy recovery. The OA flow to each AHU may vary based on DCV and AHU scheduling and so the OA through the DOAS needs to vary at the same time. The exhaust to the DOAS will almost always include toilet exhaust and may include some relief air. EA back to the DOAS will usually be 20% less than the OA so this has a very significant effect on performance. These units are sometimes the same as the unit supplying OA to zonal fan coils, etc, or directly to a few zones, so the solution should really be a flexible extension of that DOAS representation I think. DOAS units for AHUs typically won’t try to achieve “neutral” DAT however, so usually won’t have reheat coils, wraparound heat pipes, or passive dehumidification wheels. (As soon as I say typically or usually, I get some design with the exact opposite within a week.) They almost always deliver the air to the “inlet,” i.e. the mixed air plenum of the recirc AHU. +* Larry Scheier confirmed that TRACE allows economizers on the AHU's in DOAS to AHU configurations. This means we will definitely need to add another outside air node (the economizer node) to the OutdoorAir:Mixer. Brent Griffith suggested that we add it at the end of the input fields, allowing existing input files to work as is. +* From Fred W. Porter's comments, it is clear that many DOA systems feed zones and zone equipment directly as well as air handling units. Brent suggested handling this by defining a separate air loop (AirLoopHVAC plus zone demand side) to handle this. This seems like a good solution to me. + +### **Overview** +#### Configurations + +Given the feedback in the comments section, we will be attempting to simulate a dierct outside air system (DOAS), typically on the building's roof, serving multiple air handling units (AHUs), typically on separate floors. The DOAS can also serve some zones directly. Each AHU will be able to operate in economizer mode by using an additional outside air node for the economizer air (equivalent to an outside air damper that can fully close. + +#### EnergyPlus description +We will use the existing EnergyPlus object AirLoopHVAC:OutdoorAirSystem to describe the DOAS serving multiple air handlers. Let's call this use of AirLoopHVAC:OutdoorAirSystem an Outdoor Air System to Multiple Air Handlers (OAStoMAH) vs Outdoor Air System in Single Air Loop (OASinSAL). Just as AirLoopHVAC:OutdoorAirSystem can currently supply treated outdoor air to a single AirLoopHVAC the new use of AirLoopHVAC:OutdoorAirSystem will supply treated outdoor air to multiple AirLoopHVAC's. This would correspond in the real world to a DOAS supplying multiple air handlers. In the EnergyPlus model each AirLoopHVAC will still need an AirLoopHVAC:OutdoorAirSystem. But additionally an AirLoopHVAC:OutdoorAirSystem can connect to each AirLoopHVAC through the outdoor air inlet of the OutdoorAir:Mixer contained in its AirLoopHVAC:OutdoorAirSystem. + +Since the OAStoMAH will supply multiple AirLoopHVAC's, we need a splitter to divide its output among the AirLoopHVAC's. Similarly we will need to use a mixer to combine the relief air coming from the AirLoopHVAC's and send it to the OAStoMAH. We will borrow from AirLoopHVAC:ZoneSplitter and AirLoopHVAC:ZoneMixer but will define new objects AirLoopHVAC:OutdoorAirSystem:Mixer and AirLoopHVAC:OutdoorAirSystem:Splitter. As noted above, we will add an additional outside air node to Outdoor:AirMixer to allow for economizer action. + +### **Approach** +The demand side (the AirLoopHVAC's) will set the ventilation air flow rate for the OAStoMAH. The OAStoMAH can't be simulated without knowing how much ventilation air the AirLoopHVAC's need. On the other hand the AirLoopHVAC's can't be simulated without knowing the temperature and humidity ratio of the ventilation air being supplied to them. This appears to be a situation that requires iteration between the OAStoMAH and the AirLoopHVAC's that it is supplying, with an accompanying impact on solution complexity and run time. + +*For simple ventilation air calculations*, including basic demand control ventilation, it is possible to separate the ventilation air flow demand calculation from the AirLoopHVAC simulation. This calculation currently resides in the subroutine *CalcOAController* in the module *MixedAir*. The calculation takes place when the *AirLoopHVAC:OutdoorAirSystem* is simulated during the simulation of the air loop. We propose to separate this calculation out of CalcOAController and place it in a separate module. The plan is then to: + +1. calculate the ventilation demand from all the zones served by the air loops that are served by each OAStoMAH; +2. Simulate the OAStoMAH; +3. simulate the AirLoopHVAC's pretty much as is done currently; + +Note that the calculation of the zone exhaust air flow rate will need to be "moved up" in the simulation sequence since the zone exhaust can set a hard lower limit on the ventilation air flow rate for an air loop. This provides an opportunity to move the zone exhaust air into the function *CalcAirFlowSimple* (invoked from *ManageHVAC* and elsewhere). The zone exhaust air flow could then be balanced against infiltration and simple ventilation air flow for all the zones in an air loop. If the zone exhaust exceeds the total of zone infiltration, simple zone ventilation, and air loop ventilation air flow induced infiltration could be apportioned to the zones in the air loop *before* the actual HVAC simulation takes place. This would eliminate the nagging problem of unbalanced zone exhaust flow. **Note:** *isn't this already being done or partially done?* + +*For more complex ventilation demand calculations*, such as the system-based ventilation rate procedure, the ventilation demand depends on knowing the system supply air flow rate, which requires simulating the air loop and zone equipment. There are several ways to proceed: + +1. use the last HVAC time step values in the ventilation rate procedure calculation; +2. use the last time step values for the air loop ventilation air inlet conditions, simulate the air loops, simulate the OutdoorAirSystemHVAC, then simulate the air loops again; +3. create some general iterative procedure. + +Here we will start seeing some impact on run time. Our proposal is to use method 1 to start with + +*In summary* there will need to be considerable rearranging of the current high-level HVAC simulation code, but with considerable benefit in increased capability and modest increase on run time or solution complexity. We hope to be able to reuse much of the code currently used for simulating AirLoopHVAC:OutdoorAirSystem's. + +*Sizing:* we propose to use the existing *Sizing:System* object for OAStoMAHs. The OAStoMAHs will be sized to the sum of its air loop design minimum ventilation air flow rates. +### **Implementation** +#### High Level Scheme +* Simulate AirLoopHVAC:OutdoorAirSystem:Mixer's. Call the data array OASysMixer. + 1. Loop over the AirLoopHVAC:OutdoorAirSystem:Mixer's + * Loop over the inlet nodes (air loop OA mixer relief nodes). Combine the inlet flows, temperatures, humidity ratios etc. and put the results on the outlet node (an OAStoMAH return node. +* Loop over AirLoopHVAC:OutdoorAirSystem's. If it is a OAStoMAH, simulate it. If it is a OASinSAL, skip. + 1. Loop over PrimaryAirSystem's served by each OAStoMAH. + * Call SimOAController(). + 2. Sum the AirLoopFlow().MinOutAir flows and place on the inlet node of the OAStoMAH. + 3. Simulate the OAStoMAH. Place the outlet node results on the corresponding inlet node of the AirLoopHVAC:OutdoorAirSystem:Splitter or the outside air node of a DOAS air loop. + 4. Simulate the AirLoopHVAC:OutdoorAirSystem:Splitter. + * Pass the conditions ( temperature, humidity ratio, etc.) on to the outlet nodes. Split the flow according to the AirLoopFlow().MinOutAir flows already calculated. + +We're done! Now we move on to the existing calculation. + +Except there are some issues. + +1. As noted before, we're going to have to precalculate exhaust air. The AirLoopHVAC:OutdoorAirSystem:Splitter will be able to accept air flow from exhaust fans. And SimOAController() needs to know the exhaust flow. +2. The current AirLoopHVAC:OutdoorAirSystem simulation doesn't simulate Controller:WaterCoil's. Instead it "moves them up" to to the encompassing air loop's controller list. It puts them first in the list so they are simulated first, so all is well. Obviously this won't work for OAStoMAH's, although we can retain it for OASinSAL's. We will need to call the Controller:WaterCoil iteration scheme in order to control the water coils. This adds some complexity to the use of AirLoopHVAC:OutdoorAirSystem's, but should not be too difficult. +#### Schematic Input + + OutdoorAirSysHVAC + Name + Controller List Name + Equipment List Name + Availability Manager List Name + Splitter Name + Mixer Name + + OutdoorAirSysHVAC:Mixer + Name + List of Air Loops + + OutdoorAirSysHVAC:Splitter + List of Air Loops + +*Question*: Do we need "List of Air Loops" twice? Aren't the the same? Then it could go at the end of OutdoorAirSysHVAC and we could automatically generate the splitter and mixer. This would mess up auto-drawing the configuration? Notice we are already auto-generating all node connections. Nodes would not occur as input in this scheme. They would be extracted from the components and the air loops. This means that every component that could occur in a DOAS would need a *GetMyOutletAirNode* function. Is this the route that we are going? Otherwise we will need some node name inputs. Note that AirLoopHVAC:ZoneSplitter etc. have node inputs. Should we just copy them for consistency? Connector:Splitter and Connector:Mixer use branches, which OutdoorAirSysHVAC doesn't have. + +*Answer* The lists in the Mixer and Splitter might not be the same. For instance, we might want to add exhaust fan flow to the mixer. Then it would be a list of air loops and exhaust fans. It was agreed that use of node names in the input should be deprecated. + + + +*Question*: What about DOAS direct to zone? You've only mentioned air loops. + +*Answer* These will zones need to be lumped into a "do nothing" air loop by the user. I suspect component Duct will come in handy. + +#### Schematic Input: 2nd try +Instead of defining a new OutAirSysHVAC object, I've decided to reuse AirLoopHVAC:OutdoorAirSystem. We will add 2 optional fields on the end for the splitter and mixer. We will distinguish the 2 types (serving 1 air loop or serving multiple air loops) in a type field in the data structure. Our input will now look like: + + AirLoopHVAC:OutdoorAirSystem + Name + Controller List Name + Equipment List Name + Availability Manager List Name + Splitter Name + Mixer Name + + AirLoopHVAC:OutdoorAirSystem:Splitter + Name + List of Air Loops + + AirLoopHVAC:OutdoorAirSystem:Mixer + Name + List of Air loops and exhaust fan outlet nodes + + + +### **Testing/Validation Source(s):** +Creating an example / test file for this new capability will be a major task in itself. We will most likely start with RefBldgMediumOfficeNew2004_Chicago. Once we have this file, we will use it to compare a "do nothing" OutdoorAirSystemHVAC with the case where there is no OutdoorAirSystemHVAC. We can also compare cases where the ventilation air conditioning is done within the air loop versus where it is done by an OutdoorAirSystemHVAC. + +### **IO Ref (draft)** + +We propose a new object which will be similar to AirLoopHVAC:OutdoorAirSystem. Also new objects OutdoorAirSystemHVAC:Mixer and OutdoorAirSystemHVAC:Splitter. + +#### **Proposed Repart Variable Names:** + +#### **Proposed additions to meters:** + +### **EngRef (draft)** +We aren't far enough along yet to do this. The *Air Loop* and *Air Loop Simulation* sections will need extensive revising. + +### **Example file and Transition changes:** + +### **Other documents:** + + diff --git a/design/FY2019/VAV_ChangeoverBypass_Enhancement.md b/design/FY2019/VAV_ChangeoverBypass_Enhancement.md new file mode 100644 index 00000000000..3fe724b037d --- /dev/null +++ b/design/FY2019/VAV_ChangeoverBypass_Enhancement.md @@ -0,0 +1,122 @@ +Enhancement: VAV Changeover Bypass +================================================================= + +**Richard Raustad, FSEC** + + - 29 March 2019 - NFP - Initial Draft + - 18 April 2019 - NFP - Final Draft + +## Justification for New Feature ## + +The existing AirloopHVAC:UnitaryHeatCool:VAVChangeoverBypass model, a constant volume flow system, uses a bypass duct to short-circuit excess supply air back to the inlet of the unit. The following figure from the Engineering Reference illustrates the use and location of the bypass duct. + +Figure 1: ![Figure 1](https://github.com/NREL/EnergyPlus/blob/New-Feature-CBVAV-Mods/doc/engineering-reference/media/image5053.png) + Schematic of Changeover Bypass VAV Unitary System with Blow Through Fan + +With this configuration the treated supply air that bypasses the zones mixes with the return air prior to entering the outdoor air mixer. At the higher bypass fractions this can lead to unreasonably low or high air temperatures entering the OA mixing box. When the AirloopHVAC:OutdoorAirSystem is used external to this model (upstream of the Air Inlet Node in the previous figure), mixing the bypass air in this fashion (i.e., after the external OA Mixer) leads to unexpected economizer operation since the true mixed air temperature entering the external OA Mixer would be different had the bypass air been mixed prior to the external OA Mixer. + +Tiejun Wu at Carrier was the first to notice this problem and last year offered corrective suggestions: + + 5/30/2018 - 1. Air side economizer. Thermodynamically this configuration is different from a + real configuration where the bypass mixer is upstream of the OA mixer. When bypass + flow ratio is low, the difference is small, but when bypass flow ratio is high, the + difference is significant. This may trigger economizer to start operation at a + higher outdoor temperature than it normally would. + 2. “LoadPriority” control option. Currently there are “CoolingPriority”, “HeatingPriority” + and “ZonePriority” control options. With these options, the system could easily + get stuck in a mode or frequently cycling between cooling and heating mode. + In the attached Carrier VVT control sequence, the mode of operation is determined + by comparing the total zone cooling demand and heating demand (page 24). + System changeover is based on both a mode change request and minimum elapsed time in a mode. + 3. Model ceiling plenum bypass and return. In field application, many VVT system use + a ceiling return plenum configuration. With this configuration, the bypass air will get + discharged into the ceiling plenum and then mix with zone return air before flow back to + the unit. The current unitary system object assumes adiabatic ducted bypass which may + underestimate the system load when used to model a ceiling plenum return configuration. + Attached please find a Carrier VVT bypass system layout diagram (Figure 42 and 43 on page 35). + + Suggestions: 1. Model an air side economizer properly. + 2. Add a priority control mode “LoadPriority” with minimum run time setting in a mode. + 3. Allow modeling of ceiling plenum bypass and return. + +The solution to the above mentioned problem is to move the internal bypass duct away from the model and mix the bypass air using an AirloopHVAC:ReturnPlenum or AirloopHVAC:ZoneMixer (if a plenum is not used). Figure 2 represents the proposed enhancement to the Changeover Bypass model. The bypass duct leaves the system at the Bypass Duct Splitter Node and connects to existing air loop mixing objects. + +Figure 2: ![Figure 2](https://github.com/NREL/EnergyPlus/blob/New-Feature-CBVAV-Mods/doc/engineering-reference/media/ChangeoverBypassVAV-ReturnPlenumOrMixer.PNG) + Proposed changes to Changeover Bypass VAV Unitary System Model + + +###Proposed Enhancement Summary: + + 1. Allow AirloopHVAC:UnitaryHeatCool:VAVChangeoverBypass object to be connected to a return plenum or zone mixer. + 2. Expand priority control type options to include LoadPriority and minimum time limit. + + + +## E-mail and Conference Call Conclusions ## + +3/28/2019 - Provide initial schematic of proposed changes to select individuals for review. + +3/28/2019 - Initial response from Tiejun agrees that these changes would address the underlying issue. + +3/29/2019 - provide Initial draft NFP + +4/1/2019 - Edwin commented: + + 1 - Like the DOAS to multiple AHU, I feel concerned about extra iteration required to handle this situation where you are coupling nodes together + 2 - Presumably in figure 2 you don't need a zonemixer because the return plenum collects the zone return nodes + 3 - in figure 2 it mentions the internal OA mixer will have flow set to zero when using an AirLoopHVAC:OASys -- is there already a precedent for this? Does the solution algorithm rely on there being an OA mixer internal there? Seems like it could be a chance to remove some calculations that aren't necessary. + +4/2/2019 - Answers to Edwin's questions: + + 1 - Well, it seems adding another node to the mixer or plenum is no different than adding another zone. I am not sure if additional iterations would be needed since if the flow to the zones converges then so does the bypass flow. + 2 - Figure 2 is missing the notation of the mixer (forgot to update the figure in the media folder). So the Changeover Bypass VAV model (CBVAV) can connect to either a mixer (when no plenum is used) or a plenum (when no mixer is needed). + 3 - In CBVAV the internal mixer is required because this is where the bypass was mixed and making the internal OA mixer optional would have made things harder [I think]). Setting internal OA mixer flow = 0 is more of a suggestion since sizing won't be able to handle both OA streams. Using both would also introduce excess outdoor air. User could specify both OA flow's if desired, it's just not how a unit in the field would be configured. Not sure yet how many, if any, calculations could be skipped. + + +## Overview and Approach ## + +When a user connects the HVAC system's bypass duct to a return plenum or mixing box, the internal calculation of the mixed air stream conditions will no longer be required. The model will check to determine if the splitter node is used as an inlet node in the return plenum or zone mixer object. If so, inlet air conditions will be passed directly to the mixed air node. If not, and as the model currently does now, a mixing problem is used to determine the mixed air node conditions. + +*Pros* - Backward compatibility with previous model configuration, enhanced economizer operation and more realistic configuration with real world applications. + +*Cons* - May increase simulation time to correctly model mixed conditions at air loop inlet. + +## Code Design and Programming ## + +EnergyPlus currently assumes the air flow at the outlet node of an air loop is the same as the inlet node. This enhancement will allow a bypass duct to divert air from the Changeover Bypass system before the outlet node such that the outlet node air flow rate will differ from the inlet node. The bypass duct will connect to either an AirloopHVAC:Mixer or AirloopHVAC:ReturnPlenum. The bypass duct flow rate will be included in the comparison of MassFlowRate versus MassFlowRateSetPoint at the outlet node of the air loop. Specifically in ResolveAirLoopFlowLimits. AirLoopFlow.BypassMassFlow is 0 for all other equipment models. + +``` +if ((Node(SupplyNode).MassFlowRateSetPoint - Node(SupplyNode).MassFlowRate - AirLoopFlow(AirLoopIndex).BypassMassFlow) < -HVACFlowRateToler * 0.01) { +``` + +The use of a bypass duct may increase the number of iterations required to converge on a solution. This is because the inlet node of the air loop, or inlet (return) node of the AirloopHVAC:OutsideAirSystem does not get updated until the zone equipment (AirloopHVAC:ZoneSplitter, AirloopHVAC:ZoneMixer, and zone equipment) is simulated. However, this is also the case with other existing HVAC models. Attempts to envision a design where bypass duct conditions are passed to the air loop inlet automatically are elusive given that the zone equipment must be simulated to get mixed air information correct. + +Code changes will employ the same methodology used in the existing HVACUnitaryBypassVAV.cc module. + +## Testing/Validation/Data Sources ## + +Build example files and check results. + +## Input Output Reference Documentation ## + +Doc changes will include description of new control option. + +## Engineering Reference ## + +Doc changes will include description of new control option and new configuration example figure. + +## Example File and Transition Changes ## + +Proposed example file: + + - Create a copy of the `ChangeoverBypassVAV.idf` example file to include an example for the connection to the AirloopHVAC:ZoneMixer. + +Transition will not be required. + + +## References ## + + + + + diff --git a/doc/engineering-reference/media/ChangeoverBypassVAV-ReturnPlenumOrMixer.PNG b/doc/engineering-reference/media/ChangeoverBypassVAV-ReturnPlenumOrMixer.PNG new file mode 100644 index 00000000000..b5b73e667f2 Binary files /dev/null and b/doc/engineering-reference/media/ChangeoverBypassVAV-ReturnPlenumOrMixer.PNG differ diff --git a/doc/engineering-reference/media/ChangeoverBypassVAV_Schematic.docx b/doc/engineering-reference/media/ChangeoverBypassVAV_Schematic.docx new file mode 100644 index 00000000000..32037f664be Binary files /dev/null and b/doc/engineering-reference/media/ChangeoverBypassVAV_Schematic.docx differ diff --git a/doc/engineering-reference/src/performance-curves-and-lookup-tables/performance-tables.tex b/doc/engineering-reference/src/performance-curves-and-lookup-tables/performance-tables.tex index 6e181f429dc..a1d5bd3970f 100644 --- a/doc/engineering-reference/src/performance-curves-and-lookup-tables/performance-tables.tex +++ b/doc/engineering-reference/src/performance-curves-and-lookup-tables/performance-tables.tex @@ -1,283 +1,74 @@ -\section{Performance Tables}\label{performance-tables} +\section{Lookup Tables}\label{lookup-tables} + +\subsection{Table:Lookup}\label{table-lookup} + +Lookup tables provide a method to evaluate a group of data that may or +may not conform to a fundamental equation. Lookup tables can interpolate +the actual data using a linear interpolation or piecewise cubic spline +using the Btwxt library (https://github.com/bigladder/btwxt). +As with curve objects, the lookup table can be used anywhere a valid +curve object name is allowed so long as they share the same number of +independent variables. Care must be taken to ensure the table data +format is consistent with the associate model that is using the +performance curve (e.g., DX cooling coil capacity as a function of +temperature where independent variable X1 = indoor wet-bulb temperature +and independent variable X2 = outdoor dry-bulb temperature). + +A lookup table can be specified to use either linear or cubic interpolation +independently for each dimension (input variable). For performance +points outside the defined grid space, an extrapolation method--constant +or linear--can be set independently for each dimension. Finally, each +axis can have specified boundaries beyond which extrapolation is not +permitted. + +\subsubsection{Linear Interpolation}\label{linear-interpolation} + +For linear interpolation in 1 dimension, given known values of \(f\) at +\(x_0\) and \(x_1\), and a point \(x\) between \(x_0\) and \(x_1\), the +value at \(x\) is estimated by: + +\[f\left(x\right) = \left(1-\mu\right) \cdot f\left(x_0\right) + \mu \cdot f\left(x_1\right)\] + +where \(\mu\) is the location of \(x\) expressed as a fraction of the +distance between \(x_0\) and \(x_1\): + +\[\mu = \left(x-x_0\right) / \left(x_1 - x_0\right)\] + +\subsubsection{Cubic Spline +Interpolation}\label{cubic-spline-interpolation} + +The general formula for a 1-dimensional piecewise cubic spline (for +\(x\) between known values \(f\left(x_0\right)\) and +\(f\left(x_1\right)\)) is: + +\[\begin{array}{rll} + f\left(x\right) &= \left(2\mu^3 - 3\mu^2 + 1\right) \cdot f\left(x_0\right) + &+ \left(-2\mu^3 + 3\mu^2\right) \cdot f\left(x_1\right) \\ + &+ \left(\mu^3 - 2\mu^2 + \mu\right) \cdot f^\prime \left(x_0\right) + &+ \left(\mu^3 - \mu^2\right) \cdot f^\prime \left(x_1\right) +\end{array}\] + +The Catmull-Rom cubic spline interpolation defines the derivatives +\(f^\prime \left(x_0\right)\) and \(f^\prime\left(x_1\right)\) as the +slope between the previous and following grid points on the axis: + +\[\begin{array}{rl} + f^\prime(x_0) &= ( f(x_1) - f(x_{-1}) ) / ( x_1 - x_{-1}) \\ + f^\prime(x_1) &= ( f(x_2) - f(x_0) ) / ( x_2 - x_0) +\end{array}\] + +When the hypercube is at the edge of the grid, Catmull-Rom simply +extends the slope of the final segment for defining the slope terms: +i.e., if there is no \(x_{-1}\), we substitute \(x_0\) into the +\(f^\prime(x_0)\) formula. + +If a mix of interpolation methods are specified among the included +dimensions, the interpolator will perform that mix as requested. +If the lookup point is beyond the grid edge on any axis, the interpolator +will perform the requested extrapolation method (linear or constant) on +that dimension while proceeding with interpolation along any in-bounds +dimension. If a ``do-not-extrapolate-beyond'' boundary is specified, the +interpolator will perform a constant extrapolation from that boundary outward +(in that dimension), and it will return the resulting numerical answer +along with a warning that the request was outside the boundaries. -Performance tables provide a method to enter specific performance data in tabular form. Tabular data represent equipment performance in a manner similar to performance curves, however, the necessity to formulate the equation coefficient is not required. Tabular data may be used to directly interpolate the actual data within the tables independent variable limits or a regression analysis may be performed to calculate the equation coefficients and use these coefficients for the associated engineering calculations. When direct interpolation is selected, the tabular data is interpolated linearly between the first independent variable and then, if used, the second independent variable. The name of a table object may be used interchangeably in any valid field where a performance curve name is required. - -\subsection{Tables based on a single independent variable}\label{tables-based-on-a-single-independent-variable} - -The tabular data entered for polynomials with a single independent variable represent x and outupt data pairs as described in the previous section for performance curves.~ The x in each of the previous equations represent the independent variable (model input) and the output represents the dependent variable. The data pairs are organized as the data point for the independent variable followed by the data point for the dependent variable. The data pairs form a one-dimensional array that may either be linearly interpolated, interpolated based on a polynomial equation, or this data may be used to calculate the equation coefficients (a-e) as described in the previous section. - -The equation form is user selected as either linear, quadratic, cubic, quartic, or exponent. This choice determines: 1) where this table object may be used (i.e., certain objects may required a specific form of the equation), and 2) the degree or order used to calculate the regression coefficients. The following example describes the methodology used when tabular input data is used in place of common performance curve objects. Although Energyplus does not use a performance curve in the manner described in this example, this example is ideally suited for teaching the basics of tabular data entry. - -Given a generic manufacturer's fan data for a fan having a maximum flow rate of 5 m\(^3\)/s and power of 125 W, the power is shown in Table~\ref{table:generic-manufacturers-fan-data} below to be proportional to the cube of flow rate. Since, in this example, the flow rate is not a valid input for calculating fan power, the flow rate will be converted to flow fraction (or PLR). The power data is entered as the actual fan power and will be normalized by the program according to the maximum power of 125 W. Also shown here are the performance curve outputs using the regression coefficients calculated by the program. The performance curve outputs represent the fan power ratio as a function of flow fraction. Additional significant digits are included to show the impact a given data set may have on the resulting coefficients (i.e., not quite 0 at the zero crossing, rounding causes slight errors in the actual coefficient values, etc). - -\begin{longtable}[c]{p{1.5in}p{1.5in}p{1.2in}p{1.8in}} -\caption{Generic Manufacturer's Fan Data \label{table:generic-manufacturers-fan-data}} \tabularnewline -\toprule -Air Flow (m\(^3\)/s) & Flow Fraction~ or Fan PLR & Power (W) & Power Ratio Curve Output \tabularnewline -\midrule -\endfirsthead - -\toprule -Air Flow (m\(^3\)/s) & Flow Fraction~ or Fan PLR & Power (W) & Power Ratio Curve Output \tabularnewline -\midrule -\endhead - -0 & 0 & 0 & -1.1102230246E-16 \tabularnewline -0.5 & 0.1 & 0.125 & 0.00100000000000018 \tabularnewline -1 & 0.2 & 1 & 0.00800000000000004 \tabularnewline -3 & 0.6 & 27 & 0.215999999999995 \tabularnewline -4 & 0.8 & 64 & 0.51199999999999 \tabularnewline -\bottomrule -\end{longtable} - -The tabular data can be entered directly into a table object. The data for flow fraction (or fan part-load ratio) and power are entered as data pairs. As this example describes how the fan power changes with changes in air flow, the curve type selected is Cubic and, therefore, the minimum number of data pairs equals 4 (i.e., number of coefficients in a cubic equation) although 5 are used in this example. In addition, since calculating regression coefficients for this data set would yield more accurate results than linearly interpolating this data set, the selection is made to evaluate the curve to the limits specified. In this example, the fan in question is capable of operating up to 5 m\(^3\)/s at 125 Watts (which is purposely not provided in this set of tabular data). We need this information because we want to create a fan power ratio equation with an input of 0-1 for fan part-load ratio and a table output of 0-1 for fan power ratio. Therefore, the tabular data need to be normalized at a part-load ratio of 1 (i.e., normalized to the power at full flow). The following Table object describes the input necessary for this particular data set. - -\begin{lstlisting} - -Table:OneIndependentVariable, - MyFanPower, !- Name [Fit from catalog performance data] - Cubic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Type - 0, !- Minimum Value of X1, - 1, !- Maximum Value of X1, - 0, !- Minimum Table Output - 64, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Output Unit Type - 125, !- Normalization Point - 0.8,64, !- X Value #1, Output Value #1 - 0,0.0, !- X Value #2, Output Value #2 - 0.2,1, !- X Value #3, Output Value #3 - 0.1,0.125, !- X Value #4, Output Value #4 - 0.6,27; !- X Value #5, Output Value #5 -\end{lstlisting} - -Notice in this example that: - -\begin{enumerate} -\item The data pairs do not need to be entered in ascending order, this data set will automatically be re-ordered in ascending order by the program. -\item The minimum and maximum table output entered by the user uses the same units as the output values and are subsequently normalized in the same manner as the dependent variable in the data pairs. -\item For the resulting curve object (see below), the minimum (maximum) limits are based on the lesser (greater) of the user entered value and the lower (upper) limit of the tabular data. When linearly interpolating tabular data, the limits of the data set are used unless the user entered maximum is more restrictive (e.g., 64 W in this example is not more restrictive than the data set). -\item For the resulting curve object, the calculated coefficients may not perfectly represent the data set (i.e., in this example coefficient 1, 2, and 3 should have been 0). Duplicating the 0,0 data pair four additional times (to weight the 0 crossing) yields constant coefficients of 0. This could also be changed manually in the curve object created by the program. -\item Referring to Figure~\ref{fig:fan-power-ratio-example}, a selection of LinearInterpolationOfTable would interpolate the tabular data within the limits of the data set (blue circles) resulting in a maximum X and Curve value of 0.8 and 0.512 (i.e., 64/125), respectively. Selecting EvaluateCurveToLimits allows extrapolation of the data set up to a power ratio of 1 had 125 W been entered as the maximum table output in this example. -\item In the graph below, the linearly interpolated tabular data (blue line) represent a less accurate fan power ratio curve than the performance curve itself (red line). In this specific example, it is more accurate to rely on the performance curve results (i.e., Interpolation Type = EvaluateCurveToLimits in table object). In addition, the performance curve is able to extrapolate outside the limits of the data set since the regression analysis provides a smooth continuous curve through 1. Selecting the LagrangeInterpolationLinearExtrapolation interpolation method with a cubic curve type is similar to the performance curve results. -\item Including additional data in the table object (e.g., data points for flow fractions = 0.4 and 1) would allow direct linear interpolation of the tabular data without significant loss of accuracy compared to the performance curve or lagrange methods. -\end{enumerate} - -Curve output in eio file (when using Output:Diagnostics, DisplayAdvancedReportVariables): - -\begin{lstlisting} -!...GENERATING NEW CURVE OBJECT -! Input as Table:OneIndependentVariable "MYFANPOWER" -! RSquared = 1.0000000000 -! Standard Error = 7.3549798168E-016 -! Degrees of Freedom = 5 -Curve:Cubic, - MYFANPOWER, !- Name - -1.1102230246E-016, !- Coefficient1 Constant - 5.0571599639E-015, !- Coefficient2 x - -2.1582431250E-014, !- Coefficient3 x**2 - 1.0000000000, !- Coefficient3 x**3 - 0.0000000000, !- Minimum Value of x - 1.0000000000, !- Maximum Value of x - 0.0000000000, !- Minimum Curve Output - 1.0000000000; !- Maximum Curve Output -!...END GENERATING NEW CURVE OBJECT -\end{lstlisting} - -\begin{figure}[htbp] -\centering -\includegraphics{media/image7870.png} -\caption{Fan Power Ratio Example \protect \label{fig:fan-power-ratio-example}} -\end{figure} - -\subsection{Tables based on two independent variables}\label{tables-based-on-two-independent-variables} - -The tabular data entered for polynomials with two independent variables represent x, y and output data pairs as described in the previous section for performance curves.~ The x and y in each of the previous equations represent the independent variables (model inputs) and the output represents the dependent variable. The data pairs are organized as the data points for the independent variables followed by the data point for the dependent variable. The order of the data is significant in that the x and y data are entered in the same order as shown in the model's fundamental equation. The data pairs form a two-dimensional array that may either be linearly interpolated, interpolated using a second order polynomial, or this data may be used to calculate the equation coefficients (a-f) as described in the previous section. - -The equation order or degree is user selected as biquadratic or quadraticlinear. This choice determines: 1) where this table object may be used (i.e., certain objects may required a specific form of the equation), and 2) the fundamental equation used to calculate the regression coefficients. The following example describes the methodology used when tabular input data is used in place of common performance curve objects. - -Given a generic manufacturer's air conditioner data for an AC system having a rated total cooling capacity of 7735.1 W, the change in capacity is shown in the table to be a function of both cooling coil entering air wet-bulb temperature and condenser entering air dry-bulb temperature. The tabular data is entered as the actual cooling capacity and will be normalized by the program according to the rated capacity of 7735.1 W. The cooling coil EIR curve could be developed in a similar fashion, except that EIR (Power/TotCap) must first be calculated from the tabular data below BEFORE entering this data into a table object. In this example shown in Figure~\ref{fig:generic-manufacturers-normalized-capacity-example}, only data highlighted in yellow will be used. - -\begin{figure}[htbp] -\centering -\includegraphics{media/image7871.png} -\caption{Generic Manufacturer's Normalized Capacity Example \protect \label{fig:generic-manufacturers-normalized-capacity-example}} -\end{figure} - -The tabular data can be entered directly into a table object. As an example, for an air-cooled DX cooling coil object in EnergyPlus, the capacity as a function of temperature has the following fundamental equation (Ref. Single-Speed Electric DX Air Cooling Coil): - -\begin{equation} -TotCapTempModFac = a + b\left( {{T_{wb,i}}} \right) + c{\left( {{T_{wb,i}}} \right)^2} + d\left( {{T_{c,i}}} \right) + e{\left( {{T_{c,i}}} \right)^2} + f\left( {{T_{wb,i}}} \right)\left( {{T_{c,i}}} \right) -\end{equation} - -where: - -\(T_{wb,i}\) is the wet-bulb temperature of the air entering the cooling coil (\(^{\circ}\)C) - -\(T_{c,i}\) is the dry-bulb temperature of the air entering an air-cooled condenser (\(^{\circ}\)C). - -Given this form of the fundamental equation, the data pairs for the cooling coil are entered as entering air wet-bulb temperature, condenser entering dry-bulb temperature, and total cooling capacity. These 3 values, in this precise order, make up each data pair. As this example describes how the DX coil cooling capacity changes with changes in indoor and outdoor temperature, the curve type selected is BiQuadratic and, therefore, the minimum number of data pairs equals 6 (i.e., number of coefficients in the equation above). Evaluating this tabular data based on regression coefficients may be less desirable to the user since the data in the lower right corner of the table is somewhat flat due to controls or other hardware constraints. For the sake of this example, the regression analysis is chosen. In this example, the DX cooling coil total cooling capacity at the ARI rating point is used to normalize the capacity data (e.g., 7735.1 W at 19.4\(^{\circ}\)C EWB and 35\(^{\circ}\)C outdoor dry-bulb temperature). In addition, the minimum and maximum limits are chosen such that extrapolation of the performance curve is allowed. Notice in the example below that: - -\begin{enumerate} -\item The data pairs do not need to be entered in ascending order, this data set will automatically be re-ordered in ascending order by the program. -\item As shown in the table object below, only three of the five entries for entering air wet-bulb temperature were entered in the table object and therefore used for the regression analysis. This data entry technique may save time when entering a large data set, however, it may have unforeseen consequences on the resulting regression coefficients (i.e., the coefficients may provide less accuracy than desired). Note in the figure below the difference between the manufacturers data at 19.4\(^{\circ}\)C entering air wet-bulb temperature vs the prediction made by the regression coefficients. Since this data set (i.e., the 4 data points at 19.4\(^{\circ}\)C entering air wet-bulb temperature from the table above) was left out of the regression analysis, the predicted capacity at this condition is slightly under-estimated. -\item The minimum and maximum table output entered by the user uses the same units as the output values and are subsequently normalized in the same manner as the dependent variable in the data pairs. -\item For the resulting curve object, the minimum (maximum) limits are based on the lesser (greater) of the user entered value and the lower (upper) limit of the tabular data. When linearly interpolating tabular data, only the limits of the data set are used. -\item For the resulting curve object, the calculated coefficients may not perfectly represent the entire data set since all data was not used (i.e., in this example the regressed data do not line up exactly with all the manufacturers data, however, do line up well with the data included in the table object). -\item Selecting LinearInterpolationOfTable would interpolate the tabular data within the limits of the data set (characters) resulting in a maximum X1, X2 and Curve value of 22.2, 40.8 and 1.25 (i.e., 9206.0/7375.1), respectively. Note how these maximum values compare to the maximum values in the generated curve object below which chose the EvaluateCurveToLimits option instead (i.e., the user min/max inputs were used to generate these fields when creating the curve object). The minimum values would be affected in a similar manner. Selecting Lagrange or EvaluateCurveToLimits allows extrapolation of the data set to values specified by the user. -\item In the graph below, the linearly interpolated tabular data (character data set representing manufacturers data) may better represent the capacity ratio than the performance curve (lines representing the regressed data) given the non-linear relationship between capacity and temperature shown in the table and/or graph. However, extrapolation of the data set is performed linearly and the second order affects of temperature would be lost when extrapolating. Either the data set would be expanded to include other relevant data (e.g., data at colder outdoor temperatures where cooling may be required) which could then be interpolated or additional existing data could be added to the table object to allow more accurate regression coefficients to be used to predict data outside the table data limits. -\end{enumerate} - -\begin{lstlisting} - -Table:TwoIndependentVariables, - CCoolCapFT, !- Name [Fit from catalog performance data] - BiQuadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Type - 1, !- Minimum Value of x, - 30, !- Maximum Value of x, - 5, !- Minimum Value of y, - 50, !- Maximum Value of y, - 4500, !- Minimum Table Output - 15000, !- Maximum Table Output - Temperature, !- Input Unit Type for x - Temperature, !- Input Unit Type for y - Dimensionless, !- Output Unit Type - 7735.1, !- Normalization Point - 17.2,29.4,7462.6, !- X, Y, and Output data pair #1 - 17.2,23.9,7735.1, !- X, Y, and Output data pair #2 - 13.9,29.4,7283.9, !- X, Y, and Output data pair #3 - 13.9,23.9,7474.4, !- X, Y, and Output data pair #4 - 13.9,35,7067.1, !- X, Y, and Output data pair #5 - 13.9,40.8,6818.0, !- X, Y, and Output data pair #6 - 17.2,35,7157.9, !- X, Y, and Output data pair #7 - 17.2,40.8,6818.0, !- X, Y, and Output data pair #8 - 22.2,35,8552.6, !- X, Y, and Output data pair #9 - 22.2,29.4,8898.3, !- X, Y, and Output data pair #10 - 22.2,23.9,9206.0, !- X, Y, and Output data pair #11 - 22.2,40.8,8165.8; !- X, Y, and Output data pair #12 -\end{lstlisting} - -Curve output in eio file (when using Output:Diagnostics, DisplayAdvancedReportVariables): - -\begin{lstlisting} -CREATING NEW CURVE OBJECT -! Input as Table:TwoIndependentVariables "CCOOLCAPFT" -! RSquared = 0.9993993101 -! Standard Error = 3.4649248573E-003 -! Sample Size = 12 -Curve:BiQuadratic, -FromTable_CCOOLCAPFT, !- Name - 1.7214120578, !- Coefficient1 Constant - -0.1011737262, !- Coefficient2 x - 3.7738833967E-003, !- Coefficient3 x**2 - 2.8686934910E-003, !- Coefficient4 y - -5.3785351258E-005, !- Coefficient5 y**2 - -3.4086036156E-004, !- Coefficient6 x*y - 1.0000000000, !- Minimum Value of x - 30.0000000000, !- Maximum Value of x - 5.0000000000, !- Minimum Value of y - 50.0000000000, !- Maximum Value of y - 0.5817636488, !- Minimum Curve Output - 1.9392121627; !- Maximum Curve Output -END CREATING NEW CURVE OBJECT -\end{lstlisting} - -\begin{figure}[htbp] -\centering -\includegraphics{media/image7873.png} -\caption{Normalized Capacity at Various Indoor Air Wet-Bulb Temperatures} -\end{figure} - -\subsection{Lookup Tables}\label{lookup-tables} - -Lookup tables provide a method to evaluate a group of data that may or may not conform to a fundamental equation. Only tabular data which conform to existing performance curve equations are currently allowed (i.e., that lookup table name is entered where any valid performance curve is allowed therefore the table data must conform to the models fundamental equation for that specific curve). Efforts to include this lookup table in the energy management system would allow custom use of lookup tables, however, calling lookup tables from the EMS system is not currenly possible. Lookup tables can interpolate the actual data using a non-linear polynomial equation (order higher than 1). As with other table or curve objects, the lookup table can be used anywhere a valid curve object name is allowed. Care must be taken to ensure the table data format is consistent with the associate model that is using the performance curve (e.g., DX cooling coil capacity as a function of temperature where independent variable X1 = indoor wet-bulb temperature and independent variable X2 = outdoor dry-bulb temperature). - -The lookup tables are evaluated using the Lagrange form of the interpolation polynomial or the previously described interpolation methods of LinearInterpolationOfTable and EvaluateCurveToLimits. When using the Lagrange method, the number of points used in the interpolation is equal to 1 plus the polynomial order (e.g., a second order interpolation would use 3 points). - -\begin{equation} -{p_n}\left( x \right) = \sum\limits_{i = 0}^n {{y_i}{l_i}\left( x \right)} -\end{equation} - -\begin{equation} -{l_i}\left( x \right) = \mathop \Pi \limits_{j \ne i} \left( {\frac{{x - {x_j}}}{{{x_i} - {x_j}}}} \right)\,\,\,\,\,\,i = 0,1,...,n -\end{equation} - -First-order Lagrange interpolation polynomial: - -\begin{equation} -{p_1}\left( x \right) = \frac{{\left( {x - {x_1}} \right)}}{{\left( {{x_0} - {x_1}} \right)}}{y_0} + \frac{{\left( {x - {x_0}} \right)}}{{\left( {{x_1} - {x_0}} \right)}}{y_1} -\end{equation} - -Second-order Lagrange interpolation polynomial: - -\begin{equation} -{p_2}\left( x \right) = \frac{{\left( {x - {x_1}} \right)\left( {x - {x_2}} \right)}}{{\left( {{x_0} - {x_1}} \right)\left( {{x_0} - {x_2}} \right)}}{y_0} + \frac{{\left( {x - {x_0}} \right)\left( {x - {x_2}} \right)}}{{\left( {{x_1} - {x_0}} \right)\left( {{x_1} - {x_2}} \right)}}{y_1} + \frac{{\left( {x - {x_0}} \right)\left( {x - {x_1}} \right)}}{{\left( {{x_2} - {x_0}} \right)\left( {{x_2} - {x_1}} \right)}}{y_2} -\end{equation} - -Third-order Lagrange interpolation polynomial: - -\begin{equation} -\begin{array}{ccc} - p_3\PB{x} &= \frac{\PB{x-x_{1}}\PB{x-x_{2}}\PB{x-x_{3}}} {\PB{x_{0}-x_{1}}\PB{x_{0}-x_{2}}\PB{x_{0}-x_{3}}} y_0 - &+ \frac{\PB{x-x_{0}}\PB{x-x_{2}}\PB{x-x_{3}}} {\PB{x_{1}-x_{0}}\PB{x_{1}-x_{2}}\PB{x_{1}-x_{3}}} y_1 \\ - &+ \frac{\PB{x-x_{0}}\PB{x-x_{1}}\PB{x-x_{3}}} {\PB{x_{2}-x_{0}}\PB{x_{2}-x_{1}}\PB{x_{2}-x_{3}}} y_2 - &+ \frac{\PB{x-x_{0}}\PB{x-x_{1}}\PB{x-x_{2}}} {\PB{x_{3}-x_{0}}\PB{x_{3}-x_{1}}\PB{x_{3}-x_{2}}} y_3 -\end{array} -\end{equation} - -where: - -x is the interpolation point - -x\(_{n}\) is the x value of tabular data - -y\(_{n}\) is the y value of tabular data - -p\(_{i}\)(n) is the polynomial (table) output. - -The lookup table is interpolated using the interpolation polynomial shown above. If the table input value (interpolation point) is near the bottom edge or exceeds the table boundaries, a linear extrapolation is used (2-point extrapolation). The interpolation order is determined by the user entered number of interpolation points. - -A regression analysis may be performed on any lookup table having one or two independent variables. As with performance tables, the resulting performance curve coefficients are calculated and used in the simulation only when the interpolation method is selected as EvaluateCurveToLimits. In addition, the performance curve is only written to the eio file when the output diagnostics flag is set to DisplayAdvancedReportVariables (ref. Output:Diagnostics, DisplayAdvancedReportVariables). - -Using the example provided in the section above for Tables based on two independent variables, the lookup table object would be defined as follows: - -\begin{lstlisting} - -Table:MultiVariableLookup, - CCoolCapFT, - EvaluateCurveToLimits, - 3, - BiQuadratic, - SingleLineIndependentVariableWithMatrix, - , - ASCENDING, - ASCENDING, - 7735.1, !- Normalization reference - 1, !- Minimum Value of X1 - 30, !- Maximum Value of X1 - 5, !- Minimum Value of X2 - 50, !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - 4500, !- Minimum Table Output - 15000, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - Dimensionless, !- Output Unit Type - 2, 3, 4, - 13.9, 17.2, 22.2, - 23.9, 29.4, 35.0, 40.8, - 7474.4, 7735.1, 9206.0, - 7283.9, 7462.6, 8898.3, - 7067.1, 7157.9, 8552.6, - 6818.0, 6818.0, 8165.8; -\end{lstlisting} diff --git a/doc/engineering-reference/src/simulation-models-encyclopedic-reference-001/coils.tex b/doc/engineering-reference/src/simulation-models-encyclopedic-reference-001/coils.tex index 01c5e37848f..1f4b6c49341 100644 --- a/doc/engineering-reference/src/simulation-models-encyclopedic-reference-001/coils.tex +++ b/doc/engineering-reference/src/simulation-models-encyclopedic-reference-001/coils.tex @@ -4992,7 +4992,7 @@ \subsection{Desuperheater-Recovery-Based Water Heating Coil}\label{desuperheater \subsubsection{Overview}\label{overview-10} -The input object Coil:WaterHeating:Desuperheater provides a model that simulates the thermal performance of a refrigerant-to-water heating coil and the electric consumption of its water circulation pump, control valves, and other auxiliary devices. The model assumes that the heating energy provided by this coil is reclaimed from the superheated refrigerant gas leaving a compressor and does not impact the performance of the compressor. The objects from which this coil can obtain its heating energy are: +The input object Coil:WaterHeating:Desuperheater provides a model that simulates the thermal performance of a refrigerant-to-water heating coil and the electric consumption of its water circulation pump, control valves, and other auxiliary devices. The model assumes that the heating energy provided by this coil is reclaimed from the superheated refrigerant gas leaving a compressor and does not impact the performance of the compressor. For water cooled systems, the impact of the desuperheater is reflected by reducing the heat transfer to the condensing plant loop. The objects from which this coil can obtain its heating energy are: Coil:Cooling:DX:SingleSpeed @@ -5000,6 +5000,8 @@ \subsubsection{Overview}\label{overview-10} Coil:Cooling:DX:TwoStageWithHumidityControlMode +Coil:Cooling:WaterToAirHeatPump:EquationFit + Refrigeration:CompressorRack Refrigeration:Condenser* (multiple objects) @@ -5010,11 +5012,11 @@ \subsubsection{Overview}\label{overview-10} To model a desuperheater water heating coil, the input data file must include the following objects: -·~~~~~~~~Coil:WaterHeating:Desuperheater - -·~~~~~~~~WaterHeater:Mixed - -·~~~~~~~~Coil:Cooling:DX:* or Refrigeration:CompressorRack, or Refrigeration:Condenser:* +\begin{itemize} +\item Coil:WaterHeating:Desuperheater +\item WaterHeater:Mixed or WaterHeater:Stratified +\item Coil:Cooling:DX:* or Refrigeration:CompressorRack or Refrigeration:Condenser:* or Coil:Cooling:WaterToAirHeatPump:EquationFit +\end{itemize} A schematic diagram showing the desuperheater water heating coil with its water heater and DX system condenser is shown below. diff --git a/doc/engineering-reference/src/simulation-models-encyclopedic-reference-002/variable-refrigerant-flow-heat-pumps.tex b/doc/engineering-reference/src/simulation-models-encyclopedic-reference-002/variable-refrigerant-flow-heat-pumps.tex index 7407449a29c..47ed15a0389 100644 --- a/doc/engineering-reference/src/simulation-models-encyclopedic-reference-002/variable-refrigerant-flow-heat-pumps.tex +++ b/doc/engineering-reference/src/simulation-models-encyclopedic-reference-002/variable-refrigerant-flow-heat-pumps.tex @@ -137,7 +137,7 @@ \subsubsection{Cooling Capacity Ratio Modifier Function of Low Temperature}\labe \subsubsection{Using multiple curves to define Cooling Capacity Ratio Modifier}\label{using-multiple-curves-to-define-cooling-capacity-ratio-modifier} -The cooling capacity ratio modifier determines the change in total (sensible + latent) capacity with respect to the heat pump rated cooling capacity. This modifier corrects for off-design performance and provides the operating total (sensible + latent) cooling capacity for the heat pump condenser. The performance data for VRF AC systems may be specified using a single curve object, however, if the performance data does not reflect a smooth change in performance as outdoor conditions vary, the overall performance of the system may be described using two cooling capacity ratio modifier curves (i.e., a separate curve at low and high outdoor temperatures) and a boundary curve (i.e., the curve defining the separation at specific outdoor temperatures). If the \textit{Condenser Type} is WaterCooled, the cooling capacity and EIR modifier curves may be represented using the low temperature curve input field only. +The cooling capacity ratio modifier determines the change in total (sensible + latent) capacity with respect to the heat pump rated cooling capacity. This modifier corrects for off-design performance and provides the operating total (sensible + latent) cooling capacity for the heat pump condenser. The performance data for VRF AC systems may be specified using a single curve object, however, if the performance data does not reflect a smooth change in performance as outdoor conditions vary, the overall performance of the system may be described using two cooling capacity ratio modifier curves (i.e., a separate curve at low and high outdoor temperatures) and a boundary curve (i.e., the curve defining the separation at specific outdoor temperatures). If the \textit{Condenser Type} is WaterCooled, the cooling capacity and EIR modifier curves may be represented using the low temperature curve input field only. \subsubsection{Application of Dual Performance Curves}\label{application-of-dual-performance-curves} @@ -177,7 +177,7 @@ \subsubsection{Application of Dual Performance Curves}\label{application-of-dual \caption{Non-Linear Performance of VRF Heat Pump in Cooling Mode \label{fig:non-linear-performance-of-vrf-heat-pump-in-cooling-mode}} \end{figure} -A regression is then performed on the data to the left of the boundary curve to calculate the low temperature cooling performance curve coefficients. A regression is also performed on the data to the right of the boundary curve to create the high temperature cooling performance curve coefficients. The model then uses the boundary curve to determine which performance curve (low or high) to use during the simulation. For example, given a particular average indoor wet-bulb temperature, if the boundary curve object calculates an outdoor dry-bulb temperature that is above the actual outdoor dry-bulb temperature then the cooling capacity ratio function of low temperature performance curve is used to determine AC system performance for that specific simulation time step. When creating the boundary curve, be careful to make sure the low and high performance curves meet, as closely as possible, at the boundary curve points (i.e., that discontinuities do not exist or are minimized to the extent possible). Tabular data (ref: Table:TwoIndependentVariables) may also be used to specify performance and will usually eliminate the need for dual performance curves. +A regression is then performed on the data to the left of the boundary curve to calculate the low temperature cooling performance curve coefficients. A regression is also performed on the data to the right of the boundary curve to create the high temperature cooling performance curve coefficients. The model then uses the boundary curve to determine which performance curve (low or high) to use during the simulation. For example, given a particular average indoor wet-bulb temperature, if the boundary curve object calculates an outdoor dry-bulb temperature that is above the actual outdoor dry-bulb temperature then the cooling capacity ratio function of low temperature performance curve is used to determine AC system performance for that specific simulation time step. When creating the boundary curve, be careful to make sure the low and high performance curves meet, as closely as possible, at the boundary curve points (i.e., that discontinuities do not exist or are minimized to the extent possible). Tabular data may also be used to specify performance and will usually eliminate the need for dual performance curves. \subsubsection{Determining Cooling Coil Sensible Capacity}\label{determining-cooling-coil-sensible-capacity} @@ -474,7 +474,7 @@ \subsubsection{Cooling Energy Input Ratio Modifier Function of Part-Load Ratio}\ \begin{equation} Power_{HR} = k_{EIR,\,cool} \left( CoolingPower_{HR} \right) + \left( 1 - k_{EIR,\,cool} \right) \left( CoolingPower_{HR} \right) \left( 1 - e^{\left( -t / \tau_{c,\,EIR,\,cool} \right)} \right) \end{equation} - + where: \(k_{EIR,cool}\) is the fraction of steady-state cooling electric consumption rate at beginning of heat recovery mode @@ -866,9 +866,9 @@ \subsection{Physics based VRF Heat Pump Model (VRF-FluidTCtrl-HP)}\label{VRF-Flu \subsubsection{Overview}\label{VRF-FluidTCtrl-HP-overview} -This section describes the Physics based VRF Model (VRF-FluidTCtrl) to simulate the energy performance of Variable Refrigerant Flow (VRF) systems in the heat pump (HP) operation mode, i.e., either cooling or heating is provided but not simultaneously. +This section describes the Physics based VRF Model (VRF-FluidTCtrl) to simulate the energy performance of Variable Refrigerant Flow (VRF) systems in the heat pump (HP) operation mode, i.e., either cooling or heating is provided but not simultaneously. -Compared with the empirical system curves based VRF-SysCurve model, the VRF-FluidTCtrl model adheres to a physics-based development providing the ability to simulate the refrigerant loop performance and consider the dynamics of more operational parameters. This is essential for the representation of many enhanced control logics, e.g., the adjustment of superheating degrees during low load operations. Furthermore, this model implements component-level curves rather than the system-level curves, and thus requires much fewer curves as model inputs. The definition of VRF performance data for simulation as part of ASHRAE Standard 205 will ensure VRF manufacturers provide adequate data to create the required performance curves. +Compared with the empirical system curves based VRF-SysCurve model, the VRF-FluidTCtrl model adheres to a physics-based development providing the ability to simulate the refrigerant loop performance and consider the dynamics of more operational parameters. This is essential for the representation of many enhanced control logics, e.g., the adjustment of superheating degrees during low load operations. Furthermore, this model implements component-level curves rather than the system-level curves, and thus requires much fewer curves as model inputs. The definition of VRF performance data for simulation as part of ASHRAE Standard 205 will ensure VRF manufacturers provide adequate data to create the required performance curves. The main features of the VRF-FluidTCtrl model include: @@ -893,7 +893,7 @@ \subsubsection{Overview}\label{VRF-FluidTCtrl-HP-overview} \caption{Multi-stage control strategy to adjust the system capacity during low load conditions \label{fig:multi-stage-control-strategy-to-adjust-the-system-capacity-during-low-load-conditions}} \end{figure} -Note that a number of calculation steps are coupled together in the VRF-FluidTCtrl model, for instance, the piping loss calculation and the system performance calculation. More specifically, the piping loss changes the operating conditions of the system, which may lead to a different control strategy and thus in reverse affect the amount of piping loss. This makes it difficult to obtain an analytical solution for a number of operational parameters (e.g., enthalpy of refrigerant entering the indoor unit), and therefore numerical iterations are employed to address this problem (refer to Figure VRF-FluidTCtrl-3 for more details). Therefore, the VRF-FluidTCtrl model can have a longer execution time to perform the simulation than the VRF-SysCurve model. +Note that a number of calculation steps are coupled together in the VRF-FluidTCtrl model, for instance, the piping loss calculation and the system performance calculation. More specifically, the piping loss changes the operating conditions of the system, which may lead to a different control strategy and thus in reverse affect the amount of piping loss. This makes it difficult to obtain an analytical solution for a number of operational parameters (e.g., enthalpy of refrigerant entering the indoor unit), and therefore numerical iterations are employed to address this problem (refer to Figure VRF-FluidTCtrl-3 for more details). Therefore, the VRF-FluidTCtrl model can have a longer execution time to perform the simulation than the VRF-SysCurve model. The object connections for VRF-FluidTCtrl model is similar to those for VRF-SysCurve model. The difference lies in the object used to describe a specific components. For example, VRF-SysCurve model uses \emph{AirConditioner:VariableRefrigerantFlow} object to describe the VRF outdoor unit performance, while in VRF-FluidTCtrl model the \emph{AirConditioner:VariableRefrigerantFlow:FluidTemperatureControl} object is used. @@ -937,7 +937,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \textbf{Step 1.1: Obtaining zonal load/condition information} -Obtain the following information for each zone from the zone modules within EnergyPlus: +Obtain the following information for each zone from the zone modules within EnergyPlus: \begin{itemize} \item @@ -954,7 +954,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \textbf{Step 1.2: Calculate I/U required evaporator/condenser temperature} -Evaluate the required coil surface air temperature $T_{fs}$ and the required evaporator/condenser refrigerant temperature $T_{e,req}/{T_{c,req}}$ for each indoor unit. +Evaluate the required coil surface air temperature $T_{fs}$ and the required evaporator/condenser refrigerant temperature $T_{e,req}/{T_{c,req}}$ for each indoor unit. Assuming the coil air flow rate is at the maximum ($G_{a,rate}$), the entering air temperature after the indoor coil fan can be calculated for each indoor unit: @@ -990,7 +990,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} where: -$BF$ is the bypass factor (different values for cooling mode and heating mode) +$BF$ is the bypass factor (different values for cooling mode and heating mode) $T_{fs}$ is the indoor unit coil surface air temperature (\(^{\circ}\)C). @@ -999,12 +999,12 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \begin{equation} Te_{req}=T_{fs}-[A_c\cdot SH^2+B_c\cdot SH+C_c] \end{equation} - + Where $A_c$, $B_c$, $C_c$ are coefficients -$SH$ is the superheating degrees for the indoor unit (\(^{\circ}\)C) +$SH$ is the superheating degrees for the indoor unit (\(^{\circ}\)C) $SH_{ref}$ is the reference superheating degrees for the indoor unit (e.g., 3) (\(^{\circ}\)C) @@ -1015,12 +1015,12 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \begin{equation} Tc_{req}=T_{fs}+[A_h\cdot SC^2+B_h\cdot SC+C_h] \end{equation} - + where: $A_h$, $B_h$, $C_h$ are coefficients -$SC$ is the subcooling degrees for the indoor unit (\(^{\circ}\)C) +$SC$ is the subcooling degrees for the indoor unit (\(^{\circ}\)C) $SC_{ref}$ is the reference subcooling degrees for the indoor unit (e.g., 5) (\(^{\circ}\)C) @@ -1043,7 +1043,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \begin{equation} Te = min \{ max [ min(Te_{req,i}), Te_{min}], Te_{max}\} \end{equation} - + where: $Te_{req,i}$ is the required evaporating temperature for the ith indoor unit (\(^{\circ}\)C) @@ -1057,7 +1057,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \begin{equation} Tc = min \{ max[min(Tc_{req,i}),Tc_{min}],Tc_{max} \} \end{equation} - + where: $Tc_{req,i}$ is the required condensing temperature for the ith indoor unit (\(^{\circ}\)C) @@ -1068,7 +1068,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \paragraph{Modeling of the outdoor unit (O/U) - Cooling Mode}\label{modeling-of-the-outdoor-unit-ou-cooling-mode} -\textbf{Step 2c.1: Piping loss calculation in the cooling mode} +\textbf{Step 2c.1: Piping loss calculation in the cooling mode} Piping loss occurs when the refrigerant flows through the main pipe connecting the indoor and outdoor units. It includes both the refrigerant pressure drop and heat loss. It affects the VRF system operation in several ways. First, the heat loss creates an extra load to the system and leads to higher energy consumptions. Second, the pressure drop and heat loss changes the operational conditions of the compressor (i.e., compressor suction pressure and compressor suction temperature) and thus affects its operational performance. Therefore, the piping loss calculation is critical for the analysis of the whole system. @@ -1082,9 +1082,9 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} where: -$G_i$ is the refrigerant flow rate for the i\(^{th}\) indoor unit (kg/s) +$G_i$ is the refrigerant flow rate for the i\(^{th}\) indoor unit (kg/s) -$Q_i$ is the total cooling load of the i\(^{th}\) zone (W) +$Q_i$ is the total cooling load of the i\(^{th}\) zone (W) $h_{Hexin}$ is the enthalpy of the refrigerant entering the indoor unit (kJ/kg) @@ -1104,7 +1104,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} where: -$G_{tot}$ is the refrigerant flow rate in the main loop (kg/s) +$G_{tot}$ is the refrigerant flow rate in the main loop (kg/s) $h_{Hexout}$ is the enthalpy of the main loop refrigerant leaving indoor units (kJ/kg). @@ -1134,7 +1134,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} $\mu$ is the viscosity of the refrigerant within the pipe (Pa-s) -$k_{v,i}$ is the coefficients to calculate the refrigerant viscosity +$k_{v,i}$ is the coefficients to calculate the refrigerant viscosity $T_{Hexout}$ is the temperature of main loop refrigerant leaving indoor units, $f_{g\_t}(P_e,h_{Hexout})$ (\(^{\circ}\)C) @@ -1160,21 +1160,21 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} where: -$P_e$ is the evaporating pressure (Pa) +$P_e$ is the evaporating pressure (Pa) -$Re$ is the Reynolds number +$Re$ is the Reynolds number -$Pr$ is the Prandtl number +$Pr$ is the Prandtl number -$Nu$ is the Nusselt number +$Nu$ is the Nusselt number -$St$ is the Stanton number +$St$ is the Stanton number $\mu$ is the viscosity of the refrigerant within the pipe (Pa-s) -$f_{s\_p}$ are functions calculating the pressure of saturated refrigerant +$f_{s\_p}$ are functions calculating the pressure of saturated refrigerant -$f_{g\_Cp}$ are functions calculating the specific heat of superheating refrigerant +$f_{g\_Cp}$ are functions calculating the specific heat of superheating refrigerant $f_{g\_\lambda}$ are functions calculating the conductivity of superheating refrigerant. @@ -1192,13 +1192,13 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} $f_{g\_\rho}$ are functions calculating the density of superheating refrigerant -$D$ is the main pipe diameter (m) +$D$ is the main pipe diameter (m) $H$ is the height difference between the outdoor unit node and indoor unit node of the main pipe (m) -$L$ is the main pipe length (outdoor unit to the first branch joint) (m) +$L$ is the main pipe length (outdoor unit to the first branch joint) (m) -$P_s$ is the compressor suction pressure (Pa) +$P_s$ is the compressor suction pressure (Pa) $\Delta{P_{pipe}}$ is the pressure drop in the pipe (Pa) @@ -1230,25 +1230,25 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} where: -$f_{g\_\lambda}$ are functions calculating the conductivity of superheating refrigerant +$f_{g\_\lambda}$ are functions calculating the conductivity of superheating refrigerant $Q_{pipe}$ is the heat loss through the pipe (W) $T_a$ is the average of outdoor air temperature and indoor temperature (\(^{\circ}\)C) -$T_{Hexout}$ is the temperature of main pipe refrigerant leaving indoor units (\(^{\circ}\)C) +$T_{Hexout}$ is the temperature of main pipe refrigerant leaving indoor units (\(^{\circ}\)C) -$w_i$ is the pipe insulation thickness (m) +$w_i$ is the pipe insulation thickness (m) $k_i$ are coefficients for the piping loss calculation. Note that $Q_{pipe}$ is calculated using an assumed $h_{Hexin}$. Its value affects the compressor operation calculations as shown in Steps 2c.2 - 2c.6 and may change the value of condensing temperature $T_c$. This leads to an updated $h_{Hexin}=f(P_c,T_c-SC)$. If the difference between the calculated $h_{Hexin}$ and the assumed $h_{Hexin}$ is higher than the assigned tolerance (5\%), a new round of iteration is performed using the calculated $h_{Hexin}$. -\textbf{Step 2c.2: Initialize O/U operation conditions} +\textbf{Step 2c.2: Initialize O/U operation conditions} The compressor operation is coupled with a number operational parameters, which makes it difficult to obtain an analytical solution. In the algorithm, an iterative approach is designed to obtain the energy consumption of the compressor (Step 2c.2 – 2c.6). -For the first iteration, +For the first iteration, \begin{itemize} \item @@ -1276,7 +1276,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} The heat rate released from the outdoor unit can be calculated by: -\begin{equation}Q_{out}=\sum_iQ_{in,total,i}+N_{comp}+Q_{pipe}\end{equation} +\begin{equation}Q_{out}=\sum_iQ_{in,total,i}+N_{comp}+Q_{pipe}\end{equation} where: @@ -1284,14 +1284,14 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} $Q_{pipe}$ is the heat loss through the pipe (W). -\textbf{Step 2c.3: Calculate O/U effective condensing temperature} +\textbf{Step 2c.3: Calculate O/U effective condensing temperature} (1) Calculate the required coil surface air temperature ${T_{fs}}'$ for the outdoor unit. The temperature of the air leaving the outdoor unit ${T_{out}}'$ can be calculated by: - + \begin{equation}{T_{out}}'={T_{in}}'+Q_{out}/({G_{a,rate}}'\times{c_p}\times{{\rho_{in}}'})\end{equation} - + where: ${G_{a,rate}}'$ is the volumetric flow rate of the air through the outdoor unit, at the rating conditions (m\(^3\)/s) @@ -1303,13 +1303,13 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} ${\rho_{in}}'$ is the air density at outdoor conditions, $f_{\rho}({T_{in}}',{W_{in}}')$ (kg/m\(^3\)). The condenser surface temperature ${T_{fs}}'$ can be calculated by: - + \begin{equation}{T_{fs}}'={T_{in}}'+({T_{out}}'-{T_{in}}')/(1-{BF_c}')\end{equation} - + where ${BF_c}'$ is the bypass factor for the outdoor unit. (2) Calculate required condensing temperature for the outdoor unit $Tc_{req}$ and then the effective condensing temperature $Tc$ (between 42-46\(^{\circ}\)C) - + \begin{equation} Tc_{req}={T_{fs}}'+[A_h\cdot SC^2+B_h\cdot SC+C_h] \end{equation} @@ -1318,7 +1318,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} Tc=Tc_{req} \end{equation} -where: +where: $A_h$, $B_h$, $C_h$ are coefficients @@ -1332,9 +1332,9 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \textbf{Step 2c.4: Calculate required Loading Index} -Loading Index is used to describe the operational mode of the compressor system. The first index represents minimal capacity operation, while the last index represents full capacity operation. +Loading Index is used to describe the operational mode of the compressor system. The first index represents minimal capacity operation, while the last index represents full capacity operation. -The required Loading Index can be calculated by the following procedures. +The required Loading Index can be calculated by the following procedures. \begin{enumerate} \def\labelenumi{\alph{enumi}.} @@ -1352,11 +1352,11 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} where: -$C_{cap,system}$ is the evaporative capacity correction factor, describing the possible system configuration difference between test bed and real system (a constant value obtained from manufacturer data) +$C_{cap,system}$ is the evaporative capacity correction factor, describing the possible system configuration difference between test bed and real system (a constant value obtained from manufacturer data) -$r_1$, \ldots, $r_6$ are the empirical coefficients corresponding to $rps$ +$r_1$, \ldots, $r_6$ are the empirical coefficients corresponding to $rps$ -$rps$ is the compressor speed (r/s) +$rps$ is the compressor speed (r/s) ${T_e}'$ is the suction saturated temperature at the compressor inlet (\(^{\circ}\)C) @@ -1364,7 +1364,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} $M_{cap}$ is the multiplier for the evaporative capacity calculation (--) -$Q_{rps}$ is the evaporative capacity corresponding to $rps$ (W) +$Q_{rps}$ is the evaporative capacity corresponding to $rps$ (W) $Q_{ref}$ is the rated evaporative capacity (W). @@ -1372,13 +1372,13 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \begin{longtable}[c]{>{\raggedright}p{1.5in}>{\raggedright}p{1.5in}>{\raggedright}p{1.5in}>{\raggedright}p{1.5in}} \caption{Evaporative capacity at different Loading Index \label{table:evaporative-capacity-at-different-loading-index}} \tabularnewline -\toprule +\toprule Loading Index ($rps$) & Evaporative Capacity (kW), $T_c$=36\(^{\circ}\)C, ${T_e}'$=9\(^{\circ}\)C & Loading Index ($rps$) & Evaporative Capacity (kW), $T_c$=36\(^{\circ}\)C, ${T_e}'$=9\(^{\circ}\)C \tabularnewline \midrule \endfirsthead \caption[]{Evaporative capacity at different Loading Index} \tabularnewline -\toprule +\toprule Loading Index ($rps$) & Evaporative Capacity (kW), $T_c$=36\(^{\circ}\)C, ${T_e}'$=9\(^{\circ}\)C & Loading Index ($rps$) & Evaporative Capacity (kW), $T_c$=36\(^{\circ}\)C, ${T_e}'$=9\(^{\circ}\)C \tabularnewline \midrule \endhead @@ -1452,7 +1452,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} If the calculated \(rps\) is lower than the minimum \(rps\) (e.g.~18~\(rps\) ), go to Step 2c.5, otherwise skip Step 2c.5 and directly go to Step 2c.6. \end{enumerate} -\textbf{Step 2c.5: Modify evaporating temperature to further reduce outdoor unit capacity} +\textbf{Step 2c.5: Modify evaporating temperature to further reduce outdoor unit capacity} If the calculated \(rps\) is lower than the minimum \(rps\) (e.g.~18~\(rps\) ), it means that the zone cooling load is even lower than the system evaporative capacity corresponding to the minimum compressor speed. In this situation, the evaporating temperature \(T_e\) as well as the superheating degree \(SH\) is modified to further reduce the outdoor unit capacity. More specifically: @@ -1468,13 +1468,13 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \(SH\) can be updated based on the updated \(T_e\), using the equations shown in Step 1.2. \end{enumerate} -\textbf{Step 2c.6: Calculate the compressor power} +\textbf{Step 2c.6: Calculate the compressor power} \begin{enumerate} \def\labelenumi{(\arabic{enumi})} \tightlist \item - Calculate the compressor power by the following procedures. + Calculate the compressor power by the following procedures. \end{enumerate} \begin{enumerate} @@ -1508,13 +1508,13 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \begin{longtable}[c]{ll} \caption{Outdoor unit compressor power at different Loading Index \label{table:outdoor-unit-compressor-power-at-different-loading-index-20160504}} \tabularnewline -\toprule +\toprule Loading Index (\(rps\)) & Evaporative Capacity (kW), \(T_c\)=36\(^{\circ}\)C, \({T_e}'\)=9\(^{\circ}\)C \tabularnewline \midrule \endfirsthead \caption[]{Outdoor unit compressor power at different Loading Index} \tabularnewline -\toprule +\toprule Loading Index ($rps$) & Evaporative Capacity (kW), $T_c$=36\(^{\circ}\)C, ${T_e}'$=9\(^{\circ}\)C \tabularnewline \midrule \endhead @@ -1536,7 +1536,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \setcounter{enumi}{1} \tightlist \item - According to the \(rps\) range determined, calculate the compressor power \(N_{comp}\) by interpolation. In the above example, the compressor power is 1.155 kW. + According to the \(rps\) range determined, calculate the compressor power \(N_{comp}\) by interpolation. In the above example, the compressor power is 1.155 kW. \end{enumerate} \begin{enumerate} @@ -1572,7 +1572,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description} \subsubsection{\emph{Modeling of the outdoor unit (O/U) - Heating Mode}}\label{modeling-of-the-outdoor-unit-ou---heating-mode} -\textbf{Step 2h.1: Piping loss calculation in the heating mode} +\textbf{Step 2h.1: Piping loss calculation in the heating mode} Similarly to that in the cooling mode, the piping loss analysis in the heating mode needs to address the coupling effect between the piping loss and system operations. However, due to the control strategy difference between the two modes, the piping loss algorithm in the heating mode requires different calculation steps and more numerical iterations, as shown below. @@ -1834,7 +1834,7 @@ \subsubsection{\emph{Modeling of the outdoor unit (O/U) - Heating Mode}}\label{m \(Q_{pipe}\) is the heat loss through the pipe (W). -\textbf{Step 2h.3: Calculate O/U effective evaporating temperature} +\textbf{Step 2h.3: Calculate O/U effective evaporating temperature} \begin{enumerate} \def\labelenumi{(\arabic{enumi})} @@ -2015,7 +2015,7 @@ \subsubsection{\emph{Modeling of the outdoor unit (O/U) - Heating Mode}}\label{m \def\labelenumi{(\arabic{enumi})} \tightlist \item - Calculate the compressor power by the following procedures. + Calculate the compressor power by the following procedures. \end{enumerate} \begin{enumerate} @@ -2058,7 +2058,7 @@ \subsubsection{\emph{Modeling of the outdoor unit (O/U) - Heating Mode}}\label{m \setcounter{enumi}{1} \tightlist \item - According to the \(rps\) range determined, calculate the compressor power \(N_{comp}\) by interpolation. In the above example, the compressor power is 1.155 kW. + According to the \(rps\) range determined, calculate the compressor power \(N_{comp}\) by interpolation. In the above example, the compressor power is 1.155 kW. \end{enumerate} \begin{enumerate} @@ -2180,7 +2180,7 @@ \subsubsection{\emph{Modeling of the indoor unit (I/U) - Part II - Cooling Mode} \subsubsection{\emph{Modeling of the indoor unit (I/U) - Part II - Heating Mode}}\label{modeling-of-the-indoor-unit-iu---part-ii---heating-mode} -\textbf{Step 3h.1: Update air flow rate for each indoor unit.} +\textbf{Step 3h.1: Update air flow rate for each indoor unit.} \begin{enumerate} \def\labelenumi{\arabic{enumi})} @@ -2250,7 +2250,7 @@ \subsubsection{\emph{Modeling of the indoor unit (I/U) - Part II - Heating Mode} If \(SC\) \textgreater{} 20\(^{\circ}\)C, Set \(SC\) as 20\(^{\circ}\)C. On/Off control strategy may be implemented when needed. \end{itemize} -\textbf{Step 3h.3: Total power consumption of the indoor unit} +\textbf{Step 3h.3: Total power consumption of the indoor unit} Calculate electric power consumption by the indoor unit using the existing VAV fan model in EnergyPlus. Please refer to the current EnergyPlus Engineering Reference for more details. @@ -2264,7 +2264,7 @@ \subsubsection{Overview}\label{VRF-FluidTCtrl-HR-overview} \paragraph{Introduction of VRF-HR Systems}\label{Introduction-of-VRF-HR-Systems} -This section introduces the model to simulate the energy performance of Variable Refrigerant Flow (VRF) systems with heat recovery (HR) configurations, which is capable of achieving heat recovery from cooling zones to heating zones and providing simultaneous zone cooling and heating operations. The model is developed for the 3-pipe VRF-HR systems, which are the dominant system configuration in the current VRF-HR market. +This section introduces the model to simulate the energy performance of Variable Refrigerant Flow (VRF) systems with heat recovery (HR) configurations, which is capable of achieving heat recovery from cooling zones to heating zones and providing simultaneous zone cooling and heating operations. The model is developed for the 3-pipe VRF-HR systems, which are the dominant system configuration in the current VRF-HR market. Compared with the VRF-HP system, VRF-HR is more complicated in terms of system configuration and operational controls. Figure~\ref{fig:VRF-HR-Chart-Schematic} shows the schematic chart of a typical 3-pipe VRF-HR system. As can be seen in the figure, it has dedicated refrigerant pipes for suction gas, liquid and discharge gas. To enable simultaneous cooling and heating, complex refrigerant management loop and more system components are implemented, including one additional heat exchanger in the outdoor unit (OU) and multiple Branch Selector (BS) Units. The two heat exchangers in the outdoor unit can work at different evaporator/condenser combinations to enable specific operational modes to handle diverse and changing indoor heating/cooling load requirements. The Four-Way Directional Valves (FWV) and BS units enable the system to provide separate refrigerant piping connections for different operational modes. This leads to varying refrigerant flow directions and different control logics for various operational modes, and therefore specific algorithm is needed for different major operational modes. @@ -2307,7 +2307,7 @@ \subsubsection{Overview}\label{VRF-FluidTCtrl-HR-overview} With the help of FWV and BS units, every operational mode has its own refrigerant piping connections to achieve different refrigerant flow directions, as shown in Figure~\ref{fig:VRF-HR-Chart-Piping}. This leads to different refrigerant operations and piping loss situations, as shown in the Pressure-Enthalpy Diagrams in Figure~\ref{fig:VRF-HR-Chart-EnthalpyPressure}. -Take Mode 3 for instance, the system utilizes one OU heat exchanger as an evaporator and the other as a condenser. The superheated refrigerant coming out of the compressor is divided into two parts. One part passes through the OU condenser within which the refrigerant is condensed and subcooled (segment 2-4’), while the other part passes through the IU condenser to satisfy the indoor heating requirements (segment 3-4). Note that before entering the IU condenser, the second part of the refrigerant flow passes through the main discharge gas pipe connecting the indoor and outdoor units, where the refrigerant pressure drop and heat loss occurs. This leads to extra heating load and a lower condensing temperature level at IU condenser than that at OU condenser. The two parts of refrigerant leaving condensers are then expanded through expansion valves following segment 4”-5/5’ and pass through the IU evaporator (segment 5-6) and OU evaporator (segment 5’-1’). Similarly to the refrigerant passing through the main discharge gas pipe, the refrigerant leaving IU evaporators passes through the main suction gas pipe where the refrigerant pressure drop and heat loss occurs (segment 6-1”). This leads to extra cooling load and a higher evaporating temperature level at IU evaporator than that at OU evaporator. Finally, the refrigerant flow leaving the OU evaporator and that leaving the main discharge gas pipe are combined (segment 1’/1”-1) and enter the compressors for the next cycle. In this regard, the system provides simultaneous heating and cooling to the indoor environment. +Take Mode 3 for instance, the system utilizes one OU heat exchanger as an evaporator and the other as a condenser. The superheated refrigerant coming out of the compressor is divided into two parts. One part passes through the OU condenser within which the refrigerant is condensed and subcooled (segment 2-4’), while the other part passes through the IU condenser to satisfy the indoor heating requirements (segment 3-4). Note that before entering the IU condenser, the second part of the refrigerant flow passes through the main discharge gas pipe connecting the indoor and outdoor units, where the refrigerant pressure drop and heat loss occurs. This leads to extra heating load and a lower condensing temperature level at IU condenser than that at OU condenser. The two parts of refrigerant leaving condensers are then expanded through expansion valves following segment 4”-5/5’ and pass through the IU evaporator (segment 5-6) and OU evaporator (segment 5’-1’). Similarly to the refrigerant passing through the main discharge gas pipe, the refrigerant leaving IU evaporators passes through the main suction gas pipe where the refrigerant pressure drop and heat loss occurs (segment 6-1”). This leads to extra cooling load and a higher evaporating temperature level at IU evaporator than that at OU evaporator. Finally, the refrigerant flow leaving the OU evaporator and that leaving the main discharge gas pipe are combined (segment 1’/1”-1) and enter the compressors for the next cycle. In this regard, the system provides simultaneous heating and cooling to the indoor environment. A number of operational parameters are controlled to ensure system heat balance and stable and reliable system operation, including evaporating temperature levels, condensing temperature levels, superheating and sub-cooling degrees, and the refrigerant flow rates at various components. The operational control logics for various modes are different and therefore particular algorithm needs to be designed for different operational modes in the new VRF-HR model. @@ -2337,7 +2337,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description-2016-07- \textbf{Step 1: Obtaining zonal load/condition information} -The following information for each zone from the zone modules within EnergyPlus are obtained: +The following information for each zone from the zone modules within EnergyPlus are obtained: \begin{itemize} \item @@ -2378,7 +2378,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description-2016-07- \textbf{Step 5: IU evaporator side piping loss calculations} -This section calculates the IU evaporator side piping loss, which occurs at Suction Gas Pipe where the refrigerant flowing from the IU evaporators to the OU compressor inlets. Similarly to the IU condenser side piping loss, it includes both the refrigerant pressure drop $\Delta{P_{pipe}}$ and heat loss $Q_{pipe}$. +This section calculates the IU evaporator side piping loss, which occurs at Suction Gas Pipe where the refrigerant flowing from the IU evaporators to the OU compressor inlets. Similarly to the IU condenser side piping loss, it includes both the refrigerant pressure drop $\Delta{P_{pipe}}$ and heat loss $Q_{pipe}$. At this step, the compressor suction saturated temperature $T'_e$ (i.e., saturated vapor temperature corresponding to compressor suction pressure) can be obtained using the calculated refrigerant pressure drop $\Delta{P_{pipe}}$. @@ -2409,7 +2409,7 @@ \subsubsection{Model Description}\label{vrf-heat-pump-model-description-2016-07- c. If $LI_1$ $\leq$ $LI_2$, the system operates at Mode 5 -d. If $LI_1$ $>$ $LI_2$ and $Te'$ $<$ $T_o$ - $T_{diff}$, the system operates at Mode 2 +d. If $LI_1$ $>$ $LI_2$ and $Te'$ $<$ $T_o$ - $T_{diff}$, the system operates at Mode 2 ($T_o$: outdoor air dry-bulb temperature; $T_{diff}$: a constant value representing the difference between OU evaporating temperature and outdoor air temperature during simultaneous heating and cooling) e. If $LI_1$ $>$ $LI_2$ and $Te'$ $\geq$ $T_o$ - $T_{diff}$, the system operates at Mode 3 or 4 (these two modes can be handled by one set of algorithms) diff --git a/doc/engineering-reference/src/simulation-models-encyclopedic-reference-005/water-thermal-tanks-includes-water-heaters.tex b/doc/engineering-reference/src/simulation-models-encyclopedic-reference-005/water-thermal-tanks-includes-water-heaters.tex index 3f7a246a675..83d71b3638f 100644 --- a/doc/engineering-reference/src/simulation-models-encyclopedic-reference-005/water-thermal-tanks-includes-water-heaters.tex +++ b/doc/engineering-reference/src/simulation-models-encyclopedic-reference-005/water-thermal-tanks-includes-water-heaters.tex @@ -783,6 +783,7 @@ \subsubsection{Numerical Solution}\label{numerical-solution} \item Thermostatic controls for heater 1 and heater 2 are evaluated to determine if the heater elements should turn on or off \item Node 1 temperature is compared against the maximum limit to determine if venting is necessary \item Adjoining node temperatures are compared to determine if there are any temperature inversions for which the inversion mixing rate should be used. +\item Source inlet temperatures for the desuperheater are recalculated and applied to the inlet nodes using the heat rate calculated in the system time step loop \end{enumerate} The solution continues looping through all substeps until the system time step is completed. diff --git a/doc/engineering-reference/src/simulation-models-encyclopedic-reference-005/zone-equipment-and-zone-forced-air-units.tex b/doc/engineering-reference/src/simulation-models-encyclopedic-reference-005/zone-equipment-and-zone-forced-air-units.tex index e83513b94f8..b8626d8020e 100644 --- a/doc/engineering-reference/src/simulation-models-encyclopedic-reference-005/zone-equipment-and-zone-forced-air-units.tex +++ b/doc/engineering-reference/src/simulation-models-encyclopedic-reference-005/zone-equipment-and-zone-forced-air-units.tex @@ -71,7 +71,7 @@ \subsubsection{Calculation}\label{calculation-1-000} \emph{W} is the humidity ratio (kg of water/kg of dry air). -For a mixer unit connected to the inlet side of a ZoneHVAC equipment, the outlet air mass flow rate has been set by the zone HVAC equipment. The air mass flow rate of one of the inlets - the primary air from the central system - is also known. So the air mass balance equation is used to obtain the secondary air mass flow rate. +For a mixer unit connected to the inlet side of a ZoneHVAC equipment, the outlet air mass flow rate has been set by the zone HVAC equipment. The air mass flow rate of one of the inlets - the primary air from the central system - is also known. So the air mass balance equation is used to obtain the secondary air mass flow rate. The inlet conditions - specific enthalpy and humidity ratio - for both inlet air streams are known. Now that both inlet air streams' mass flow rate is known, the enthalpy and water mass balance equations are used to get the outlet conditions. @@ -367,7 +367,7 @@ \subsubsection{Simulation and Control}\label{simulation-and-control-3-000} \begin{lstlisting} Section 6.4.3.10 (“Single Zone Variable-Air-Volume Controls”) of ASHRAE Standard 90.1-2010. HVAC systems shall have variable airflow controls as follows: -(a) Air-handling and fan-coil units with chilled-water cooling coils and supply fans with motors +(a) Air-handling and fan-coil units with chilled-water cooling coils and supply fans with motors greater than or equal to 5 hp shall have their supply fans controlled by two-speed motors or variable-speed drives. At cooling demands less than or equal to 50%, the supply fan controls shall be able to reduce the airflow to no greater than the larger of the following: @@ -569,7 +569,7 @@ \subsubsection{Heating Operation}\label{heating-operation-001} \subsubsection{Single Zone VAV load based control:}\label{single-zone-vav-load-based-control} -The packaged terminal air conditioner can also be used to simulate a system capable of maintaining a low fan speed through a range of low to moderate loads. This control scheme is similar to single zone variable-air-volume (VAV) control where the fan speed is maintained at a minimum level and the coil is modulated to a point where the system outlet air temperature reaches a user specified limit. As the outlet air temperature limit is reached and loads increase, the fan speed increases to maintain thermostat control. When the fan speed reaches the maximum flow limit, the system outlet air temperature may exceed the user specified limit, if the coil is capable of providing more capacity, to meet increased load. This model is active only for constant fan operating mode. Cycling fan operating may be used, however, during time of cycling fan operating mode, the model reverts to control specified above for cooling or heating operation. Additionally, only specific coil types are allowed for the Single Zone VAV capacity control method. +The packaged terminal air conditioner can also be used to simulate a system capable of maintaining a low fan speed through a range of low to moderate loads. This control scheme is similar to single zone variable-air-volume (VAV) control where the fan speed is maintained at a minimum level and the coil is modulated to a point where the system outlet air temperature reaches a user specified limit. As the outlet air temperature limit is reached and loads increase, the fan speed increases to maintain thermostat control. When the fan speed reaches the maximum flow limit, the system outlet air temperature may exceed the user specified limit, if the coil is capable of providing more capacity, to meet increased load. This model is active only for constant fan operating mode. Cycling fan operating may be used, however, during time of cycling fan operating mode, the model reverts to control specified above for cooling or heating operation. Additionally, only specific coil types are allowed for the Single Zone VAV capacity control method. Allowed coil types are: @@ -806,7 +806,7 @@ \subsubsection{Heating Operation}\label{heating-operation-1-000} \subsubsection{Single Zone VAV Load Based Control}\label{single-zone-vav-load-based-control-2} -The packaged terminal heat pump can also be used to simulate a system capable of maintaining a low fan speed +The packaged terminal heat pump can also be used to simulate a system capable of maintaining a low fan speed through a range of low to moderate loads. This control scheme is similar to single zone variable-air-volume (VAV) control where the fan speed is maintained at a minimum level and the coil is modulated to a point where the system outlet air temperature reaches a user specified limit. This model is active only for constant fan operating mode. Cycling fan operating may be used, however, during time of cycling fan operating mode, the model reverts to control specified above for cooling or heating operation. See the description for Packaged Terminal Air Conditioner. \subsubsection{Average Air Flow Calculations}\label{average-air-flow-calculations-1} @@ -1442,7 +1442,7 @@ \subsubsection{Controls}\label{controls-000} If zone air temperature is within the throttling range, $\PB{T_{set}-0.5\Delta T_{throttle}} < T_{zone} < \PB{T_{set}+0.5\Delta T_{throttle}}$, then continue to operate the cooler if it was running during the previous timestep and do not operate the cooler if it was not running during the previous timestep. -Whenever the unit is operating, it runs at the full design air mass flow rate regardless if the fan is constant or variable speed. +Whenever the unit is operating, it runs at the full design air mass flow rate regardless if the fan is constant or variable speed but the unit cycles to meet the current cooling load. \textbf{ZoneCoolingLoadOnOffCycling.} This control method operates the cooler similar to how a thermostat would behave, but instead of using temperatures it uses the predicted zone load to cooling setpoint.~ The control uses input for the threshold value for a load that is considered a significant, \({\dot Q_{thresh}}\), and the result from the Predictor for the zone's load to cooling setpoint, \({\dot Q_{CoolLoad}}\). The following algorithm is used to determine if the unit will operate. @@ -1450,7 +1450,7 @@ \subsubsection{Controls}\label{controls-000} If \(\left[ {{{\dot Q}_{CoolLoad}} > {{\dot Q}_{thresh}}} \right]\) is true, then operate the cooler unit (at full speed). -Whenever the unit is operating, it runs at the full design air mass flow rate regardless if the fan is constant or variable speed. +Whenever the unit is operating, it runs at the full design air mass flow rate regardless if the fan is constant or variable speed but the unit cycles to meet the current cooling load. \textbf{ZoneCoolingLoadVariableSpeedFan.} This control method also operates the cooler using the predicted zone load to cooling setpoint but instead of on/off cycling, it modulates the fan speed to meet the cooling load.~ This control method is only applicable to cooler units with variable speed supply fans. The control uses input for the threshold value for a load that is considered a significant, \({\dot Q_{thresh}}\), and the result from the Predictor for the zone's cooling load to setpoint, \({\dot Q_{CoolLoad}}\). The following algorithm is used to determine if the unit will operate. @@ -1465,18 +1465,18 @@ \subsection{Hybrid Unitary HVAC Equipment} \subsubsection{Overview} The input object ZoneHVAC:HybridUnitaryHVAC provides a model for hybrid unitary HVAC systems – packaged forced air equipment with multiple discrete operating modes. Equipment in this category may utilize a wide variety technologies including, but not limited to: indirect evaporative cooling, desiccant dehumidification, heat recovery, vapor compression, adsorption, or ventilation cooling. Each hybrid system packages multiple technologies into a single integrated system. There are a multitude of unique hybrid system architectures, and each unique system may have numerous unique operating modes. -ZoneHVAC:HybridUnitaryHVAC is a black-box model designed to allow empirical representation of a wide variety of hybrid unitary systems. The model does not require information about internal system architecture, however it requires extensive data to describe the performance of a product in every operating mode. The model is intended for forced air equipment and can represent unitary systems that consume electricity, water, and up to two additional fuel types. +ZoneHVAC:HybridUnitaryHVAC is a black-box model designed to allow empirical representation of a wide variety of hybrid unitary systems. The model does not require information about internal system architecture, however it requires extensive data to describe the performance of a product in every operating mode. The model is intended for forced air equipment and can represent unitary systems that consume electricity, water, and up to two additional fuel types. \subsubsection{Model} ZoneHVAC:HybridUnitaryHVAC will operate to provide cooling, heating, ventilation, humidification, or dehumidification for a zone. A ZoneHVAC:HybridUnitaryHVAC object is assigned to a zone using ZoneHVAC:EquipmentList and ZoneHVAC:EquipmentConnections. The object must be assigned a supply air node (which must be a zone inlet node), a return air node (which must be a zone outlet node), and an outdoor air node. In the case when the hybrid system modeled does not utilize either return air or outdoor air, a return air node and an outdoor air node must still be assigned. The resulting mass flow rate on those nodes will be zero. The zone sensible cooling or heating load is determined in each time step according to temperature set points specified in a ZoneControl:Thermostat object. The zone humidification or dehumidifaction load is determined in each time step according to relative humidity set points specified in a ZoneControl:Humidistat object (Ref: Zone Controls). The intended zone ventilation rate is specified in a DesignSpecification:OutdoorAir object (Ref: Design Outdoor Air Calculation). -The performance of a hybrid system is not directly given as a result of the loads and the environmental conditions. A hybrid system may have numerous discrete operating modes, within which other variables may be adjusted in fine intervals. There may be many settings in which a hybrid system could feasibly operate at a given time. Therefore, ZoneHVAC:HybridUnitaryHVAC is structured as a constrained optimization problem that is solved in each time step. The feasible settings are the unique combinations of operating mode, outdoor air fraction, and supply air mass flow rate that satisfy constraints. In each time step the hybrid model will choose to operate at one or more settings so as to best satisfy the sensible load, latent load, and scheduled ventilation rate while minimizing resource consumption. +The performance of a hybrid system is not directly given as a result of the loads and the environmental conditions. A hybrid system may have numerous discrete operating modes, within which other variables may be adjusted in fine intervals. There may be many settings in which a hybrid system could feasibly operate at a given time. Therefore, ZoneHVAC:HybridUnitaryHVAC is structured as a constrained optimization problem that is solved in each time step. The feasible settings are the unique combinations of operating mode, outdoor air fraction, and supply air mass flow rate that satisfy constraints. In each time step the hybrid model will choose to operate at one or more settings so as to best satisfy the sensible load, latent load, and scheduled ventilation rate while minimizing resource consumption. -Inequality constraints for the optimization include the ranges of indoor and outdoor psychrometric conditions within which each mode is allowed to operate, and the allowable ranges for supply air temperature and absolute humidity generated by the system. These inequality constraints are specified directly as inputs to each ZoneHVAC:HybridUnitaryHVAC object. The scheduled ventilation rate, the zone sensible load, and the zone latent load act as soft inequality constraints. +Inequality constraints for the optimization include the ranges of indoor and outdoor psychrometric conditions within which each mode is allowed to operate, and the allowable ranges for supply air temperature and absolute humidity generated by the system. These inequality constraints are specified directly as inputs to each ZoneHVAC:HybridUnitaryHVAC object. The scheduled ventilation rate, the zone sensible load, and the zone latent load act as soft inequality constraints. -EnergyPlus simulations occur on user defined time steps, accordingly, the hybrid system may operate in multiple settings within each time step. The portion of each time step spent in a setting is described as the part runtime fraction for that setting. If no combination of settings and part runtime fractions will satisfy all of the soft constraints the system will choose the combination of settings and part runtime fractions that most nearly satisfies all soft constraints. +EnergyPlus simulations occur on user defined time steps, accordingly, the hybrid system may operate in multiple settings within each time step. The portion of each time step spent in a setting is described as the part runtime fraction for that setting. If no combination of settings and part runtime fractions will satisfy all of the soft constraints the system will choose the combination of settings and part runtime fractions that most nearly satisfies all soft constraints. During any time step that the combination of settings can satisfy all of the soft constraints with part runtime fractions that sum to less than one, the system will operate in a standby mode (Mode 0) for the remainder of the timestep. If the indoor and outdoor psychrometric conditions are beyond the constraints that limit each operating mode, or if no setting will satisfy the constraints on supply air temperature and absolute humidity, the system will operate in standby mode (Mode 0). @@ -1504,7 +1504,7 @@ \subsubsection{Inputs and Data} \item y8 = external static pressure (Pa) = PESP \end{itemize} -The relationship between the independent variables and each dependent variable must be specified as lookup tables using Table:MultiVariable Lookup objects. A table must be created for each relevant dependent variable in each operating mode. Every operating mode must have a table for supply air temperature and a table for supply air humidity ratio. If tables are omitted for other dependent variables the model will assume that they are not relevant for the associated operating mode. The model can accommodate up to 26 discrete operating modes, including a standby mode. +The relationship between the independent variables and each dependent variable must be specified as lookup tables using \hyperref[table-lookup]{Table:Lookup} objects. A table must be created for each relevant dependent variable in each operating mode. Every operating mode must have a table for supply air temperature and a table for supply air humidity ratio. If tables are omitted for other dependent variables the model will assume that they are not relevant for the associated operating mode. The model can accommodate up to 26 discrete operating modes, including a standby mode. To permit scaling of performance data, all extensive dependent variables are normalized by the system maximum supply air mass flow rate. To rescale performance data, extensive parameters are multiplied by a desired maximum supply air flow rate, which is specified as an input to each ZoneHVAC:HybridUnitaryHVAC object. @@ -1532,7 +1532,7 @@ \subsubsection{Calculation} T_{SA}^{min}(t) & \leq T_{SA}(\check{t}) \leq T_{SA}^{max}(t) \\ \omega_{SA}^{min}(t) & \leq \omega_{SA}(\check{t}) \leq \omega_{SA}^{max}(t) \end{align} - + limits for each operating mode $j$: \begin{align} T_{OSA}^{min,j} & \leq T_{OSA}(t) \leq T_{OSA}^{max,j} \\ @@ -2066,13 +2066,13 @@ \subsection{Earthtube}\label{earthtube} {\scriptsize \begin{longtable}[c]{>{\raggedright}p{0.55in}>{\raggedright}p{0.55in}>{\raggedright}p{0.55in}>{\raggedright}p{0.55in}>{\raggedright}p{0.55in}>{\raggedright}p{0.55in}>{\raggedright}p{0.55in}>{\raggedright}p{0.55in}>{\raggedright}p{0.55in}>{\raggedright}p{0.55in}} -\toprule +\toprule & Moisture Content & 5\% & 5\% & 10\% & 10\% & 15\% & 15\% & 20\% & 20\% \tabularnewline Soil Type & Dry Density [kg/m\(^3\)] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] \tabularnewline \midrule \endfirsthead -\toprule +\toprule & Moisture Content & 5\% & 5\% & 10\% & 10\% & 15\% & 15\% & 20\% & 20\% \tabularnewline Soil Type & Dry Density [kg/m\(^3\)] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] \tabularnewline \midrule @@ -2091,12 +2091,12 @@ \subsection{Earthtube}\label{earthtube} The following information is also available for reference from Table 3.3, pg. 34.6 of the ASHRAE Applications Handbook, 2015. \begin{longtable}[c]{>{\raggedright}p{1.2in}>{\raggedright}p{1.2in}>{\raggedright}p{1.2in}>{\raggedright}p{1.2in}>{\raggedright}p{1.2in}} -\toprule +\toprule Soils & Moisture Content & Density [kg/m3] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] \tabularnewline \midrule \endfirsthead -\toprule +\toprule Soils & Moisture Content & Density [kg/m3] & k [W/m-K] & \({\alpha}\) [m\(^2\)/s] \tabularnewline \midrule \endhead @@ -2154,7 +2154,7 @@ \subsection{Earthtube}\label{earthtube} \begin{equation} \begin{array}{rl} - \frac{h_r T_{va} - \beta S_v e^{i \phi_I}}{h_e + \delta k_s} + \frac{h_r T_{va} - \beta S_v e^{i \phi_I}}{h_e + \delta k_s} =& \frac{ \PB{h_e + \frac{k_s}{D}} \PB{ h_r T_{va} - \beta S_v \cos \phi_I} + \frac{k_s}{D} \PB{-\beta S_v \sin \phi_I}}{\PB{h_e + \frac{k_s}{D}}^2 + \PB{\frac{k_s}{D}}^2} \\ &+ i\frac{ \PB{h_e + \frac{k_s}{D}} \PB{-\beta S_v \sin \phi_I} - \frac{k_s}{D} \PB{h_r T_{va} - \beta S_v \cos \phi_I}}{\PB{h_e + \frac{k_s}{D}}^2 + \PB{\frac{k_s}{D}}^2} \end{array} @@ -2258,13 +2258,13 @@ \subsection{Earthtube}\label{earthtube} % table 87 \begin{longtable}[c]{p{1.5in}p{3.0in}p{1.5in}} \caption{Nomenclature for Earthtube Model \label{table:nomenclature-for-earthtube-model}} \tabularnewline -\toprule +\toprule Variable & Description & Units \tabularnewline \midrule \endfirsthead \caption[]{Nomenclature for Earthtube Model} \tabularnewline -\toprule +\toprule Variable & Description & Units \tabularnewline \midrule \endhead @@ -2426,13 +2426,13 @@ \subsection{Thermal Chimney Model}\label{thermal-chimney-model} % table 88 \begin{longtable}[l]{p{1.5in}p{4.5in}} \caption{Nomenclature of Thermal Chimney Model \label{table:nomenclature-of-thermal-chimney-model}} \tabularnewline -\toprule +\toprule Model Nomenclature \tabularnewline \midrule \endfirsthead \caption[]{Nomenclature of Thermal Chimney Model} \tabularnewline -\toprule +\toprule Model Nomenclature \tabularnewline \midrule \endhead diff --git a/doc/engineering-reference/src/surface-heat-balance-manager-processes/infrared-radiation-transfer-material.tex b/doc/engineering-reference/src/surface-heat-balance-manager-processes/infrared-radiation-transfer-material.tex index b3ef58ef62d..e7eb4d29af0 100644 --- a/doc/engineering-reference/src/surface-heat-balance-manager-processes/infrared-radiation-transfer-material.tex +++ b/doc/engineering-reference/src/surface-heat-balance-manager-processes/infrared-radiation-transfer-material.tex @@ -73,6 +73,8 @@ \subsubsection{Specifying an Infrared Transparent (IRT) surface}\label{specifyin The Infrared Transparent surface should not participate in a convective/conductive exchange between the zones it separates. In order to minimize this effect, the SurfaceProperty:ConvectionCoefficients object must be used. Outside and Inside values for the surface's convection coefficients should be on the order of .1.~ Further examples are given in the Input Output Reference document. +Infrared transparent surfaces may also be specified using Construction:AirBoundary with the \textit{IRTSurface} option for radiant exchange. This method automatically generates an internal material layer with IRT properties and sets the inside convection coefficient to the Minimum Surface Convection Heat Transfer Coefficient Value specified in the HeatBalanceAlgorithm object which defaults to 0.1 [W/m2-K]. + \subsection{Behavior Checks}\label{behavior-checks} The behavior of multi zones separated with infrared transparent surfaces can be checked with a simple comparison. Begin with a single zone model as shown below. This model has a south-facing window, and four walls exposed to wind and sun, and a roof exposed to wind and sun. diff --git a/doc/engineering-reference/src/surface-heat-balance-manager-processes/inside-heat-balance.tex b/doc/engineering-reference/src/surface-heat-balance-manager-processes/inside-heat-balance.tex index 14d7a6c1bce..8e67cd02cbb 100644 --- a/doc/engineering-reference/src/surface-heat-balance-manager-processes/inside-heat-balance.tex +++ b/doc/engineering-reference/src/surface-heat-balance-manager-processes/inside-heat-balance.tex @@ -11,11 +11,11 @@ \section{Inside Heat Balance}\label{inside-heat-balance} where: -\({q''_{LWX}}\) = Net longwave radiant exchange flux between zone surfaces. +\({q''_{LWX}}\) = Net longwave radiant exchange flux between surfaces in a zone or group of zones (enclosure). \({q''_{SW}}\) ~ = Net short wave radiation flux to surface from lights. -\({q''_{LWS}}\) = Longwave radiation flux from equipment in zone. +\({q''_{LWS}}\) = Longwave radiation flux from equipment in a zone or group of zones (enclosure). \({q''_{ki}}\) ~ = Conduction flux through the wall. @@ -33,6 +33,8 @@ \section{Inside Heat Balance}\label{inside-heat-balance} \subsection{Internal Long-Wave Radiation Exchange}\label{internal-long-wave-radiation-exchange} +Long-wave radiation exchange is balanced within an enclosure which may be a single zone or a group of zones connected by air boundaries (see Construction:AirBoundary) using the \textit{GroupedZone} radiant exchange method. Throughout this section, "Zone" refers to either type of enclosure. + \subsubsection{LW Radiation Exchange Among Zone Surfaces}\label{lw-radiation-exchange-among-zone-surfaces} There are two limiting cases for internal LW radiation exchange that are easily modeled: diff --git a/doc/input-output-reference/CMakeLists.txt b/doc/input-output-reference/CMakeLists.txt index e1ef0ace7f0..ee919dcfc21 100644 --- a/doc/input-output-reference/CMakeLists.txt +++ b/doc/input-output-reference/CMakeLists.txt @@ -118,6 +118,7 @@ SET( INCLUDED_IMAGES ${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/ACBussDiagram.png ${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/ACStorageBussDiagram.png ${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/AirLoopComponentMatrix.png + ${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/ChangeoverBypassVAV-ReturnPlenumOrMixer.png ${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/DCInverterBussDiagram.png ${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/DCInverterWithACStorageBussDiagram.png ${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/DCInverterWithDCStorageBussDiagram.png diff --git a/doc/input-output-reference/media/ChangeoverBypassVAV-ReturnPlenumOrMixer.png b/doc/input-output-reference/media/ChangeoverBypassVAV-ReturnPlenumOrMixer.png new file mode 100644 index 00000000000..7249b497989 Binary files /dev/null and b/doc/input-output-reference/media/ChangeoverBypassVAV-ReturnPlenumOrMixer.png differ diff --git a/doc/input-output-reference/src/overview/group-advanced-surface-concepts.tex b/doc/input-output-reference/src/overview/group-advanced-surface-concepts.tex index c47264611e9..1281e1ebda8 100644 --- a/doc/input-output-reference/src/overview/group-advanced-surface-concepts.tex +++ b/doc/input-output-reference/src/overview/group-advanced-surface-concepts.tex @@ -215,7 +215,7 @@ \subsection{SurfaceControl:MovableInsulation}\label{surfacecontrolmovableinsulat Exterior and interior movable insulation have undergone some testing and appears to producing expected results. The underlying principle has been implemented in EnergyPlus for both interior and exterior movable insulation with the possibility for exterior movable insulation to be transparent (transparent insulation material or TIM). -TIM exterior layers can be used with the ConductionFiniteDifference (CondFD) solution algorithm. With this addition, TIM layers can be used in conjunction with wall layers that have phase change materials (PCM) included, or any other advanced capability of the CondFD algorithm such as variable conductivity. The input requirements are exactly the same as when used with the CTF algorithm. The Solution Algorithm needs to be changed to CondFD, and as with CTF, the ``SurfaceControl:MovableInsulation'' object must be completed to specify the insulated surface and the ``\hyperref[windowmaterialglazing]{WindowMaterial:Glazing}'' object is needed to provide the TIM layer properties. +TIM exterior layers can be used with the ConductionFiniteDifference (CondFD) solution algorithm. With this addition, TIM layers can be used in conjunction with wall layers that have phase change materials (PCM) included, or any other advanced capability of the CondFD algorithm such as variable conductivity. The input requirements are exactly the same as when used with the CTF algorithm. The Solution Algorithm needs to be changed to CondFD, and as with CTF, the ``SurfaceControl:MovableInsulation'' object must be completed to specify the insulated surface and the ``\hyperref[windowmaterialglazing]{WindowMaterial:Glazing}'' or ``\hyperref[windowmaterialglazingequivalentlayer]{WindowMaterial:Glazing:EquivalentLayer}'' object is needed to provide the TIM layer properties. Basically, the addition of movable insulation allows the user to schedule an extra amount of insulation on either the inside or outside surface of a wall (or both). The insulation must be a simple, homogenous material layer (linked to a material definition within the input data file). Note that EnergyPlus allows the exterior movable insulation layer to be transparent to short wavelength radiation (solar). In this case, incident solar is split between the plane between the movable insulation and the surface and the plane between the movable insulation and the surrounding air. This calculation is fairly basic and based on the solar transmittance of the insulation layer (material properties). Using transparent layers for exterior movable insulation allows solar energy to penetrate deeper into a construction where it can be stored for later use in the building (similar in concept to a Trombe Wall). @@ -229,7 +229,7 @@ \subsubsection{Field: Surface Name}\label{field-surface-name-1} \subsubsection{Field: Material Name}\label{field-material-name} -This field refers to a material layer (e.g., \hyperref[material]{Material}, \hyperref[materialnomass]{Material:NoMass}, or \hyperref[windowmaterialglazing]{WindowMaterial:Glazing}; transparent layers are only valid for outside movable insulation) via its user assigned name. This provides the program with a full complement of material properties so that the effect of the insulation (R-value and solar transmittance) can be correctly taken into account by EnergyPlus. Note that for non-glazing materials the solar absorptivity of the layer will be used directly in the calculations. For glazing material layers, the solar absorptivity will be calculated by subtracting both the transmissivity and the front side reflectivity from unity for the material. +This field refers to a material layer (e.g., \hyperref[material]{Material}, \hyperref[materialnomass]{Material:NoMass}, \hyperref[windowmaterialglazing]{WindowMaterial:Glazing}, or \hyperref[windowmaterialglazingequivalentlayer]{WindowMaterial:Glazing:EquivalentLayer}; transparent layers are only valid for outside movable insulation) via its user assigned name. This provides the program with a full complement of material properties so that the effect of the insulation (R-value and solar transmittance) can be correctly taken into account by EnergyPlus. Note that for non-glazing materials the solar absorptivity of the layer will be used directly in the calculations. For glazing material layers, the solar absorptivity will be calculated by subtracting both the transmissivity and the front side reflectivity from unity for the material. \subsubsection{Field: Schedule Name}\label{field-schedule-name} @@ -662,6 +662,7 @@ \subsubsection{Example IDF}\label{example-idf} Foundation:Kiva, Slab Details, !- Name + , !- Initial Indoor Air Temperature XPS, !- Interior Horizontal Insulation Material Name 0.2, !- Interior Horizontal Insulation Depth 0.6, !- Interior Horizontal Insulation Width @@ -710,6 +711,11 @@ \subsubsection{Inputs} The unique identifier of the Foundation:Kiva object. Referenced by a the ``Outside Boundary Condition Object'' field in a surface object. +\paragraph{Field: Initial Indoor Air Temperature} + +Indoor air temperature used for Kiva initialization (prior to warmup period). +If left blank, indoor air temperature during initialization will be estimated based on zone setpoints. + \paragraph{Field: Interior Horizontal Insulation Material Name} @@ -2689,13 +2695,16 @@ \subsubsection{User Input View Factors}\label{user-input-view-factors} \subsection{ZoneProperty:UserViewFactors:bySurfaceName}\label{zonepropertyuserviewfactorsbysurfacename} -The method of entering user view factors is to entere each surface name and its view factor value to other surfaces in the zone +The method of entering user view factors is to enter each surface name and its view factor value to other +surfaces in a zone or group of zones connected by air boundaries (see ``\hyperref[constructionairboundary]{Construction:AirBoundary}''). \subsubsection{Inputs}\label{inputs-17} -\paragraph{Field: Zone Name}\label{zonepropertyuserviewfactorsbysurfacename-field-zone-name} +\paragraph{Field: Zone or ZoneList Name}\label{zonepropertyuserviewfactorsbysurfacename-field-zone-name} + +An enclosure for radiant exchange may be a single zone, or a group of zones connected by one or more air boundaries (see ``\hyperref[constructionairboundary]{Construction:AirBoundary}''). If a ZoneList name is specified, the referenced ``\hyperref[zonelist]{ZoneList}'') must match a group of zones connected with Construction:AirBoundary using the \textit{GroupedZones} option for Radiant Exchange Method. -This field is the zone name for the view factors. +Enter the applicable surface pairs with non-zero view factors. Any omitted surface pair is assumed to have a zero view factor. \paragraph{Field: From Surface 1}\label{field-from-surface-1} diff --git a/doc/input-output-reference/src/overview/group-air-distribution-equipment.tex b/doc/input-output-reference/src/overview/group-air-distribution-equipment.tex index f7f3b0f979c..fe8bad57185 100644 --- a/doc/input-output-reference/src/overview/group-air-distribution-equipment.tex +++ b/doc/input-output-reference/src/overview/group-air-distribution-equipment.tex @@ -932,7 +932,7 @@ \subsubsection{Inputs}\label{inputs-7-000} \paragraph{Field: Zone Mixer Name}\label{field-zone-mixer-name} -The name of an zone mixer component (object: \hyperref[airloophvaczonemixer]{AirLoopHVAC:ZoneMixer}) which composes part of the unit. Note that some of the input for the mixer will duplicate input fields of the powered induction unit. One of the zone mixer inlet nodes should be the same as the supply air inlet node of the PIU; the other inlet node of the zone mixer should be the same as the secondary air inlet node of the PIU. The outlet node of the zone mixer should be the same as the inlet node of the PIU fan. +The name of a zone mixer component (object: \hyperref[airloophvaczonemixer]{AirLoopHVAC:ZoneMixer}) which composes part of the unit. Note that some of the input for the mixer will duplicate input fields of the powered induction unit. One of the zone mixer inlet nodes should be the same as the supply air inlet node of the PIU; the other inlet node of the zone mixer should be the same as the secondary air inlet node of the PIU. The outlet node of the zone mixer should be the same as the inlet node of the PIU fan. \paragraph{Field: Fan Name}\label{field-fan-name-1} @@ -1495,73 +1495,6 @@ \subsubsection{Inputs}\label{inputs-10-000} CapModFuncOfWaterFlow; !- Beam Heating Capacity Hot Water Flow Modification Factor Curve or Table Name \end{lstlisting} -\begin{lstlisting} - Curve:Linear, ! y = x - CapModFuncOfTempDiff, !-Name - 0, !_ Coef Const - 1, !- Coef x - 0, !- min x - 1.5, !- max x - 0.0 , !- min y - 1.5; ! max y -\end{lstlisting} - -\begin{lstlisting} - Table:OneIndependentVariable, - CoolCapModFuncOfSAFlow, !- Name - quadratic,!- Curve Type - EvaluateCurveToLimits,!- Interpolation Method - 0.714,!- min x - 1.2857,!- max x - 0.8234,!- min y - 1.1256,!- max y - dimensionless, !- - dimensionless, !- - , !- normalization ref - 0.714286, 0.823403, - 1.0, 1.0, - 1.2857, 1.1256; -\end{lstlisting} - -\begin{lstlisting} - Table:OneIndependentVariable, - CapModFuncOfWaterFlow, !- Name - quadratic,!- Curve Type - EvaluateCurveToLimits,!- Interpolation Method - 0.0,!- min x - 1.333333,!- max x - 0.0,!- min y - 1.04,!- max y - dimensionless, !- - dimensionless, !- - , !- normalization ref - 0.0, 0.0, - 0.05, 0.001, - 0.33333, 0.71, - 0.5, 0.85, - 0.666667, 0.92, - 0.833333, 0.97, - 1.0, 1.0, - 1.333333, 1.04; -\end{lstlisting} - -\begin{lstlisting} - Table:OneIndependentVariable, - HeatCapModFuncOfSAFlow, !- Name - quadratic,!- Curve Type - EvaluateCurveToLimits,!- Interpolation Method - 0.714,!- min x - 1.2857,!- max x - 0.8554,!- min y - 1.0778,!- max y - dimensionless, !- - dimensionless, !- - , !- normalization ref - 0.714286, 0.8554, - 1.0, 1.0, - 1.2857, 1.0778; -\end{lstlisting} - \subsubsection{Outputs}\label{outputs-10} \paragraph{Zone Air Terminal Beam Sensible Cooling Rate {[}W{]}}\label{zone-air-terminal-beam-sensible-cooling-rate-w} diff --git a/doc/input-output-reference/src/overview/group-air-distribution.tex b/doc/input-output-reference/src/overview/group-air-distribution.tex index 9c3e82aff09..64ccf74f334 100644 --- a/doc/input-output-reference/src/overview/group-air-distribution.tex +++ b/doc/input-output-reference/src/overview/group-air-distribution.tex @@ -634,6 +634,8 @@ \subsection{AirLoopHVAC:OutdoorAirSystem}\label{airloophvacoutdoorairsystem} The equipment inlet/outlet must be sequential with no loops - the simulation can only handle a straight-through air path, both on the primary air side and on the secondary air side, if any. Heat exchanger secondary air inlets need to be independent of the primary air stream -- usually relief air is used. +The Outside Air System (object AirLoopHVAC:OutdoorAirSystem) can also be defined as a subsystem of an \hyperref[airloophvacdedicatedoutdoorairsystem]{AirLoopHVAC:DedicatedOutdoorAirSystem}. When this subsystem is referred in AirLoopHVAC:DedicatedOutdoorAirSystem, the \hyperref[controlleroutdoorair]{Controller:OutdoorAir} can not be listed in the \hyperref[airloophvaccontrollerlist]{AirLoopHVAC:ControllerList}, because the outdoor air flow rate will not be determined by Controller:OutdoorAir. Instead, the outdoor air flow rate will be specified by \hyperref[airloophvacdedicatedoutdoorairsystem]{AirLoopHVAC:DedicatedOutdoorAirSystem}. In addition, the \hyperref[outdoorairmixer]{OutdoorAir:Mixer} will not be allowed in the \hyperref[airloophvacoutdoorairsystemequipmentlist]{AirLoopHVAC:OutdoorAirSystem:EquipmentList} as a component, because no mix is needed due to 100\% outdoor incoming airflow determined by AirLoopHVAC:DedicatedOutdoorAirSystem. + \subsubsection{Inputs}\label{inputs-3-001} \paragraph{Field: Name}\label{field-name-3-001} @@ -644,10 +646,14 @@ \subsubsection{Inputs}\label{inputs-3-001} This field is the name of a \hyperref[airloophvaccontrollerlist]{AirLoopHVAC:ControllerList} object. A \hyperref[airloophvaccontrollerlist]{AirLoopHVAC:ControllerList} is simply a list of controllers giving both controller name and type. This Controller List specifies all the controllers that will act on this outside air system. The order of the controllers in the list is significant: controllers are simulated sequentially in the order given in the Controller List. Typically the Controller List would contain a \hyperref[controlleroutdoorair]{Controller:OutdoorAir}. If there are chilled water or hot water coils in the outdoor air system, each such coil will need a \hyperref[controllerwatercoil]{Controller:WaterCoil}. +When this object is referred in \hyperref[airloophvacdedicatedoutdoorairsystem]{AirLoopHVAC:DedicatedOutdoorAirSystem}, the \hyperref[controlleroutdoorair]{Controller:OutdoorAir} will not be allowed in the list, becauseAirLoopHVAC:DedicatedOutdoorAirSystem does not need Controller:OutdoorAir to determine the amount of outdoor air flow rate. + \paragraph{Field: Outdoor Air Equipment List Name}\label{field-outdoor-air-equipment-list-name} This field is the name of an \hyperref[airloophvacoutdoorairsystemequipmentlist]{AirLoopHVAC:OutdoorAirSystem:EquipmentList} object. An \hyperref[airloophvacoutdoorairsystemequipmentlist]{AirLoopHVAC:OutdoorAirSystem:EquipmentList} is simply a list of components giving both component name and type. This Outdoor Air Equipment List specifies all the components that will be simulated in this outside air system. The order of the components in the list is significant: components are simulated sequentially in the order given in the Outdoor Air Equipment List. Typically the equipment list would contain at least an \hyperref[outdoorairmixer]{OutdoorAir:Mixer}. If there is more than one component, the components must be listed in order from the outside air to the \hyperref[outdoorairmixer]{OutdoorAir:Mixer} (the \hyperref[outdoorairmixer]{OutdoorAir:Mixer} is last). +When this object is referred in \hyperref[airloophvacdedicatedoutdoorairsystem]{AirLoopHVAC:DedicatedOutdoorAirSystem}, the \hyperref[outdoorairmixer]{OutdoorAir:Mixer} will not be allowed as a component, because all the incoming airflow is from outdoor, and no mixing is needed. + \paragraph{Field: Availability Manager List Name}\label{field-availability-manager-list-name-1} This field is the name of a \hyperref[availabilitymanagerassignmentlist]{AvailabilityManagerAssignmentList} object. An Availability Manager List is a list of Availability Managers giving both Availability Manager Object Type and Name. \textbf{Use of this input is optional.} This field may be omitted; it is not currently used by the program. diff --git a/doc/input-output-reference/src/overview/group-air-path.tex b/doc/input-output-reference/src/overview/group-air-path.tex index 9be9ef49b64..9526c1bec33 100644 --- a/doc/input-output-reference/src/overview/group-air-path.tex +++ b/doc/input-output-reference/src/overview/group-air-path.tex @@ -277,4 +277,140 @@ \subsubsection{Inputs}\label{inputs-5-002} Zone 1 Outlet Node, ! Inlet 1 Node Name Zone 2 Outlet Node, ! Inlet 2 Node Name Zone 3 Outlet Node; ! Inlet 3 Node Name -\end{lstlisting} \ No newline at end of file +\end{lstlisting} + +\subsection{AirLoopHVAC:DedicatedOutdoorAirSystem}\label{airloophvacdedicatedoutdoorairsystem} + +The AirLoopHVAC:DedicatedOutdoorAirSystem is a central dedicated outdoor air system (DOAS) and deliveres outdoor air to multiple \hyperref[airloophvac]{AirLoopHVAC} systems. The amount of delivered outdoor air is based on a sum of outdoor air flow rates from outdoor air stream nodes defined in the \hyperref[outdoorairmixe]{OutdoorAir:Mixer}. These OutdoorAir:Mixer objects are a component of served multiple AirLoopHVAC systems. The central DOAS system also pretreates outdoor air before outdoor air distribution into multiple AirLoopHVAC, with given precool and preheat air conditions. + +After the object name, the object has four fields to provide the name of AirLoopHVAC:OutdoorAirSystem, system availability, and names of AirLoopHVAC:Mixer and AirLoopHVAC:Splitter. The AirLoopHVAC:OutdoorAirSystem lists a controller to perform controls, and coils and fans to pretreat outdoor air before delivery to served AirLoopHVAC. The Availability Schedule determines times when a system is operationa or shutdownl. The AirLoopHVAC:Mixer and AirLoopHVAC:Splitter provide connection into distribution and relief nodes, respectively. + +The next four fields requires inputs for pretreat air conditions, including precooling and preheating. + +The last section lists the number of AirLoopHVAC to be served and names of served AirLoopHVAC objects. + +\subsubsection{Inputs}\label{inputs-002} + +\paragraph{Field: Name}\label{field-name-002} + +This field is a unique, user assigned name for a single instance of an AirLoopHVAC:DedicatedOutdoorAirSystem object. Any other object referencing this AirLoopHVAC:DedicatedOutdoorAirSystem will use this name. + +\paragraph{Field: AirLoopHVAC:OutdoorAirSystem Name}\label{field-airLoophvac-outdoorairsystem-name} + +This field is the name of a AirLoopHVAC:OutdoorAirSystem object. It handles outdoor air based on its own controller. + +\paragraph{Availability Schedule Name}\label{availability-schedule-name} + +The name of a schedule that specifies when the system is available. + +\paragraph{Field: Preheat Design Temperature}\label{field-preheat-design-temperature} + +The design air temperature exiting the preheat coil (if any) in degrees Celsius. + +\paragraph{Field: Preheat Design Humidity Ratio}\label{field-preheat-design-humidity-ratio} + +The design humidity ratio exiting the preheat coil (if any) in kilograms of water per kilogram of dry air. (kgWater/kgDryAir) + +\paragraph{Field: Precool Design Temperature}\label{field-precool-design-temperature} + +The design air temperature exiting the precooling coil (if any) in degrees Celsius. + +\paragraph{Field: Precool Design Humidity Ratio}\label{field-precool-design-humidity-ratio} + +The design humidity ratio exiting the precooling coil (if any) in kilograms of water per kilogram of dry air. (kgWater/kgDryAir) + +\paragraph{Field: Number of AirLoopHVAC}\label{field-number-of-airloophvac} + +The number of AirLoopHVAC, which will be served by this central DOAS. + +\paragraph{Field: AirLoopHVAC \textless{}\#\textgreater{} Name}\label{field-airloophvac-name} + +The name of an AirLoopHVAC. There is no limit to the number of AirLoopHVACs, and there may be no duplicate AirLoopHVAC names. (Note that some EnergyPlus editing tools may allow only 20 AirLoopHVAC names, but this may be increased by extending the object in the Energy+.idd file.) + +An example of this statement in an IDF is: + +\begin{lstlisting} + + AirLoopHVAC:DedicatedOutdoorAirSystem, + AirLoopHVAC DOAS, !- Name + AirLoopDOAS OA system, !- AirLoopHVAC:OutdoorAirSystem Name + ALWAYS_ON, !- Availability Schedule Name + AirLoopDOASMixer, !- AirLoopHVAC:Mixer Name + AirLoopDOASSplitter, !- AirLoopHVAC:Splitter Name + 4.5, !- Preheat Design Temperature {C} + 0.004, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 17.5, !- Precool Design Temperature {C} + 0.012, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 5, !- Number of AirLoopHVAC + PSZ-AC:1, !- AirLoopHVAC 1 Name + PSZ-AC:2, !- AirLoopHVAC 2 Name + PSZ-AC:3, !- AirLoopHVAC 3 Name + PSZ-AC:4, !- AirLoopHVAC 4 Name + PSZ-AC:5; !- AirLoopHVAC 5 Name +\end{lstlisting} + +\subsection{AirLoopHVAC:Mixer}\label{airloophvacmixer} + +The AirLoopHVAC:Mixer takes the air from multiple inlets and mixes the streams together to be sent out of a single outlet node. This is a simple process of summing flows and averaging the air properties. This component must be referenced in an \hyperref[airloophvacdedicatedoutdoorairsystem]{AirLoopHVAC:DedicatedOutdoorAirSystem} object. The multiple inlet nodes are relief nodes of \hyperref[outdoorairmixe]{OutdoorAir:Mixer}, whihc is a component of AirLoopHVAC, served by the AirLoopHVAC:DedicatedOutdoorAirSystem object. The single outlet node is connected into either outdoor or a heat exchanger. The heat exchanger must be lisdted as a compoenent in AirLoopHVAC:OutdoorAirSystem, referenced in the AirLoopHVAC:DedicatedOutdoorAirSystem object. + +\subsubsection{Inputs}\label{inputs-5-002} + +\paragraph{Field: Name}\label{field-name-5-002} + +Unique name for this mixer. + +\paragraph{Field: Outlet Node Name}\label{field-outlet-node-name-3} + +The name of the single outlet node leaving the mixer. + +\paragraph{Field: Inlet \textless{}\#\textgreater{} Node Name}\label{field-inlet-node-name-3} + +The name of a mixer inlet node. There is no limit to the number of inlet nodes, and there may be no duplicate inlet node names. (Note that some EnergyPlus editing tools may allow only 50 inlet node names, but this may be increased by extending the object in the Energy+.idd file.) + +An input example is shown below. + +\begin{lstlisting} + + AirLoopHVAC:Mixer, + AirLoopDOASMixer, !- Name + AirLoopDOASMixerOutlet, !- Outlet Node Name + PSZ-AC:1_OARelief Node, !- Inlet 1 Node Name + PSZ-AC:2_OARelief Node, !- Inlet 2 Node Name + PSZ-AC:3_OARelief Node, !- Inlet 3 Node Name + PSZ-AC:4_OARelief Node, !- Inlet 4 Node Name + PSZ-AC:5_OARelief Node; !- Inlet 5 Node Name +\end{lstlisting} + +\subsection{AirLoopHVAC:Splitter}\label{airloophvacsplitter} + +The AirLoopHVAC:Splitter is a component that splits airflow from a single inlet to multiple outlets. This component must be referenced in an \hyperref[airloophvacdedicatedoutdoorairsystem]{AirLoopHVAC:DedicatedOutdoorAirSystem} object. The input contains only node connection information. The multiple outlet nodes must be outdoor air stream nodes of \hyperref[outdoorairmixe]{OutdoorAir:Mixer}, whihc is a component of AirLoopHVAC, served by the AirLoopHVAC:DedicatedOutdoorAirSystem object. + +\subsubsection{Inputs}\label{inputs-4-002} + +\paragraph{Field: Name}\label{field-name-4-002} + +Unique name for this splitter. + +\paragraph{Field: Inlet Node Name}\label{field-inlet-node-name-2} + +The name of the single inlet node going into the splitter. + +\paragraph{Field: Outlet \textless{}\#\textgreater{} Node Name}\label{field-outlet-node-name-2} + +The name of a splitter outlet node. There is no limit to the number of outlet nodes, and there may be no duplicate outlet node names. (Note that some EnergyPlus editing tools may allow only 50 outlet node names, but this may be increased by extending the object in the Energy+.idd file.) + +An input example is shown below. + +\begin{lstlisting} + + AirLoopHVAC:Splitter, + AirLoopDOASSplitter, !- Name + AirLoopDOASSplitterInlet, !- Inlet Node Name + PSZ-AC:1_OAInlet Node, !- Outlet 1 Node Name + PSZ-AC:2_OAInlet Node, !- Outlet 2 Node Name + PSZ-AC:3_OAInlet Node, !- Outlet 3 Node Name + PSZ-AC:4_OAInlet Node, !- Outlet 4 Node Name + PSZ-AC:5_OAInlet Node; !- Outlet 5 Node Name +\end{lstlisting} + + diff --git a/doc/input-output-reference/src/overview/group-energy-management-system-ems.tex b/doc/input-output-reference/src/overview/group-energy-management-system-ems.tex index 4e2b9351bff..d3f19d69066 100644 --- a/doc/input-output-reference/src/overview/group-energy-management-system-ems.tex +++ b/doc/input-output-reference/src/overview/group-energy-management-system-ems.tex @@ -574,7 +574,7 @@ \subsubsection{Inputs}\label{inputs-8-006} \subsection{EnergyManagementSystem:CurveOrTableIndexVariable}\label{energymanagementsystemcurveortableindexvariable} -The EMS provides a method for reusing curve and table input objects from elsewhere in the model. Input objects, such as \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvebiquadratic]{Curve:Biquadratic}, or Table:TwoIndependetVariables, are used by various component models to describe performance relationships in a generic way. By using an EnergyManagementSystem:CurveOrTableIndexVariable input object, these curves and tables can be used in your own Erl programs. This object sets up an Erl variable that contains an index that points to specific curve or table. This index variable is then used as the first argument in a call to the built-in function called @CurveValue so that the correct curve or table is evaluated. +The EMS provides a method for reusing curve and table input objects from elsewhere in the model. Input objects, such as \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvebiquadratic]{Curve:Biquadratic}, or \hyperref[tablelookup]{Table:Lookup}, are used by various component models to describe performance relationships in a generic way. By using an EnergyManagementSystem:CurveOrTableIndexVariable input object, these curves and tables can be used in your own Erl programs. This object sets up an Erl variable that contains an index that points to specific curve or table. This index variable is then used as the first argument in a call to the built-in function called @CurveValue so that the correct curve or table is evaluated. \subsubsection{Inputs}\label{inputs-9-005} diff --git a/doc/input-output-reference/src/overview/group-evaporative-coolers.tex b/doc/input-output-reference/src/overview/group-evaporative-coolers.tex index c1a65825dc6..f41d1bd69b0 100644 --- a/doc/input-output-reference/src/overview/group-evaporative-coolers.tex +++ b/doc/input-output-reference/src/overview/group-evaporative-coolers.tex @@ -155,7 +155,7 @@ \subsubsection{Inputs}\label{inputs-1-014} \paragraph{Field: Effectiveness Flow Ratio Modifier Curve Name}\label{field-effectiveness-flow-ratio-modifier-curve-name} -This curve modifies the effectiveness design value specified the previous field by multiplying the value by the result of this curve. The modifying curve is a function of flow fraction, which is the ratio of the current primary air flow rates divided by the design primary air flow rates. If this input field is left blank, the effectiveness is assumed to be constant. Any curve or table with one independent variable can be used. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. +This curve modifies the effectiveness design value specified the previous field by multiplying the value by the result of this curve. The modifying curve is a function of flow fraction, which is the ratio of the current primary air flow rates divided by the design primary air flow rates. If this input field is left blank, the effectiveness is assumed to be constant. Any curve or table with one independent variable can be used. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. \paragraph{Field: Primary Design Air Flow Rate}\label{field-primary-design-air-flow-rate} @@ -176,7 +176,7 @@ \subsubsection{Inputs}\label{inputs-1-014} \paragraph{Field: Water Pump Power Modifier Curve Name}\label{field-water-pump-power-modifier-curve-name} -This alpha input field is the name of a dimensionless normalized pump power modifying curve. This curve modifies the pump electric power in the previous field by multiplying the design power by the result of this curve. The normalized curve is a function of the primary air flow fraction as independent variable. The curve shall yield a value of 1.0 at a flow fraction of 1.0. The flow fraction is the ratio of the primary air during current operation divided by primary air Design Air Flow Rate. If this input field is left blank, the pump power is assumed to lineary vary with the load. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. +This alpha input field is the name of a dimensionless normalized pump power modifying curve. This curve modifies the pump electric power in the previous field by multiplying the design power by the result of this curve. The normalized curve is a function of the primary air flow fraction as independent variable. The curve shall yield a value of 1.0 at a flow fraction of 1.0. The flow fraction is the ratio of the primary air during current operation divided by primary air Design Air Flow Rate. If this input field is left blank, the pump power is assumed to lineary vary with the load. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. \paragraph{Field: Air Inlet Node Name}\label{field-air-inlet-node-name-1-001} @@ -615,7 +615,7 @@ \subsubsection{Inputs}\label{inputs-4-011} \paragraph{Field: Wet Bulb Effectiveness Flow Ratio Modifier Curve Name}\label{field-wet-bulb-effectiveness-flow-ratio-modifier-curve-name} -This curve modifies the wet bulb effectiveness design value specified the previous field by multiplying the value by the result of this curve. The modifying curve is a function of flow fraction, which is the ratio of the sum of the primary and secondary flow rates divided by the sum of the design flow rates. If this input field is left blank, the effectiveness is assumed to be constant. The wet bulb effectiveness modifier curve is required for proper operation of secondary air flow modulation in wet cooling operating mode, and is used with the three input fields \textit{Evaporative Operation Minimum Limit Secondary Air Drybulb Temperature}, \textit{Evaporative Operation Maximum Limit Outdoor Wetbulb Temperature}, and \textit{Operation Maximum Limit Outdoor Drybulb Temperature}. Any curve or table with one independent variable can be used. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. +This curve modifies the wet bulb effectiveness design value specified the previous field by multiplying the value by the result of this curve. The modifying curve is a function of flow fraction, which is the ratio of the sum of the primary and secondary flow rates divided by the sum of the design flow rates. If this input field is left blank, the effectiveness is assumed to be constant. The wet bulb effectiveness modifier curve is required for proper operation of secondary air flow modulation in wet cooling operating mode, and is used with the three input fields \textit{Evaporative Operation Minimum Limit Secondary Air Drybulb Temperature}, \textit{Evaporative Operation Maximum Limit Outdoor Wetbulb Temperature}, and \textit{Operation Maximum Limit Outdoor Drybulb Temperature}. Any curve or table with one independent variable can be used. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. \paragraph{Field: Cooler Drybulb Design Effectiveness}\label{field-cooler-drybulb-design-effectiveness} @@ -623,7 +623,7 @@ \subsubsection{Inputs}\label{inputs-4-011} \paragraph{Field Drybulb Effectiveness Flow Ratio Modifier Curve Name}\label{field-drybulb-effectiveness-flow-ratio-modifier-curve-name} -This this curve modifies the drybulb effectiveness in the previous field (eff\_db\_design) by multiplying the design effectiveness value by the result of this curve. The curve is evaluated flow fraction as independent variable. The flow fraction is the ratio of sum of the primary and secondary flow rates divided by the sum of the design flow rates. If this input field is left blank, the effectiveness is assumed to be constant. The dry bulb effectiveness modifier curve is required for proper operation of secondary air flow modulation in dry cooling operating mode, and is used with the three input fields \textit{Evaporative Operation Minimum Limit Secondary Air Drybulb Temperature}, \textit{Evaporative Operation Maximum Limit Outdoor Wetbulb Temperature}, and \textit{Operation Maximum Limit Outdoor Drybulb Temperature}. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. +This this curve modifies the drybulb effectiveness in the previous field (eff\_db\_design) by multiplying the design effectiveness value by the result of this curve. The curve is evaluated flow fraction as independent variable. The flow fraction is the ratio of sum of the primary and secondary flow rates divided by the sum of the design flow rates. If this input field is left blank, the effectiveness is assumed to be constant. The dry bulb effectiveness modifier curve is required for proper operation of secondary air flow modulation in dry cooling operating mode, and is used with the three input fields \textit{Evaporative Operation Minimum Limit Secondary Air Drybulb Temperature}, \textit{Evaporative Operation Maximum Limit Outdoor Wetbulb Temperature}, and \textit{Operation Maximum Limit Outdoor Drybulb Temperature}. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. \paragraph{Field: Recirculating Water Pump Design Power}\label{field-recirculating-water-pump-design-power} @@ -635,7 +635,7 @@ \subsubsection{Inputs}\label{inputs-4-011} \paragraph{Field: Water Pump Power Modifier Curve Name}\label{field-water-pump-power-modifier-curve-name-1} -This alpha input field is the name of a dimensionless normalized pump power modifying curve. This curve modifies the pump electric power in the previous field by multiplying the design power by the result of this curve. The normalized curve is a function of the secondary side flow fraction as independent variable. The curve shall yield a value of 1.0 at a flow fraction of 1.0. The flow fraction is the secondary air flow rate during operation divided by Secondary Design Air Flow Rate. If this input field is left blank, the pump power is assumed to vary linearly with the load. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. +This alpha input field is the name of a dimensionless normalized pump power modifying curve. This curve modifies the pump electric power in the previous field by multiplying the design power by the result of this curve. The normalized curve is a function of the secondary side flow fraction as independent variable. The curve shall yield a value of 1.0 at a flow fraction of 1.0. The flow fraction is the secondary air flow rate during operation divided by Secondary Design Air Flow Rate. If this input field is left blank, the pump power is assumed to vary linearly with the load. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. \paragraph{Field: Secondary Air Design Flow Rate}\label{field-secondary-air-design-flow-rate} @@ -655,7 +655,7 @@ \subsubsection{Inputs}\label{inputs-4-011} \paragraph{Field: Secondary Air Fan Power Modifier Curve Name}\label{field-secondary-air-fan-power-modifier-curve-name} -This input field is the name of a dimensionless normalized curve. The normalized curve modifies the design secondary air fan power in the previous field by multiplying the value by the result of this curve. The normalized curve is a function of the secondary side flow fraction as independent variable. The curve shall yield a value of 1.0 at a flow fraction of 1.0. The flow fraction is the secondary air flow rate during operation divided by Secondary Design Air Flow Rate. If this input field is left blank, the fan power is assumed to be constant. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. +This input field is the name of a dimensionless normalized curve. The normalized curve modifies the design secondary air fan power in the previous field by multiplying the value by the result of this curve. The normalized curve is a function of the secondary side flow fraction as independent variable. The curve shall yield a value of 1.0 at a flow fraction of 1.0. The flow fraction is the secondary air flow rate during operation divided by Secondary Design Air Flow Rate. If this input field is left blank, the fan power is assumed to be constant. Any curve or table with one independent variable can be used: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. \paragraph{Field: Primary Air Inlet Node Name}\label{field-primary-air-inlet-node-name-2} diff --git a/doc/input-output-reference/src/overview/group-heating-and-cooling-coils.tex b/doc/input-output-reference/src/overview/group-heating-and-cooling-coils.tex index 6b1ca3ba0ea..294d216dee3 100644 --- a/doc/input-output-reference/src/overview/group-heating-and-cooling-coils.tex +++ b/doc/input-output-reference/src/overview/group-heating-and-cooling-coils.tex @@ -4617,6 +4617,8 @@ \subsection{Coil:WaterHeating:Desuperheater}\label{coilwaterheatingdesuperheater calculates the amount of heat delivered to the water tank \item calculates the electricity consumption of the integral water pump and on/off-cycle parasitic loads +\item + reflects the reduction of heat transfer in the HVAC condenser plant loop if the source coil is water-cooled \end{itemize} The input fields for this object are described below in detail: @@ -4671,11 +4673,17 @@ \subsubsection{Inputs}\label{inputs-22-000} \paragraph{Field: Tank Object Type}\label{field-tank-object-type} -This alpha (choice) field contains the type of water heater tank used by this desuperheater heating coil. Currently, the only valid choice is \hyperref[waterheatermixed]{WaterHeater:Mixed}. +This alpha (choice) field contains the types of water heater tank used by this desuperheater heating coil. The valid choices are: +\begin{itemize} +\item + \hyperref[waterheatermixed]{WaterHeater:Mixed} +\item + \hyperref[waterheaterstratified]{WaterHeater:Stratified} +\end{itemize} \paragraph{Field: Tank Name}\label{field-tank-name} -This alpha field contains the name of the specific water heater tank (\hyperref[waterheatermixed]{WaterHeater:Mixed} object) used by this desuperheater heating coil. +This alpha field contains the name of the specific water heater tank (\hyperref[waterheatermixed]{WaterHeater:Mixed} or \hyperref[waterheaterstratified]{WaterHeater:Stratified} object) used by this desuperheater heating coil. \paragraph{Field: Heating Source Object Type}\label{field-heating-source-object-type-1} @@ -4690,6 +4698,8 @@ \subsubsection{Inputs}\label{inputs-22-000} \hyperref[coilcoolingdxtwostagewithhumiditycontrolmode]{Coil:Cooling:DX:TwoStageWithHumidityControlMode} \item \hyperref[coilcoolingdxvariablespeed]{Coil:Cooling:DX:VariableSpeed} +\item + \hyperref[coilcoolingwatertoairheatpumpequationfit]{Coil:Cooling:WaterToAirHeatPump:EquationFit} \item \hyperref[refrigerationcompressorrack]{Refrigeration:CompressorRack} \item @@ -5215,7 +5225,7 @@ \subsubsection{Inputs}\label{inputs-ASIHP} \paragraph{Field: SCWH Mode Coil Name}\label{Field-SCWH-Mode-Coil-Name-ASIHP} -This alpha field defines the combined space cooling and water heating with full condensing (SCWH) in an ASIHP, which must be given. The SCWH mode refers to the name of a Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed object, which contains all the performance curves and rated values to describe the water heating operation with an indoor air source. The SCWH mode is connected to the same WaterHeater:HeatPump:PumpedCondenser as the DWH mode, and the same air side node connections as the SC mode. +This alpha field defines the combined space cooling and water heating with full condensing (SCWH) in an ASIHP, which must be given. The SCWH mode refers to the name of a Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed object, which contains all the performance curves and rated values to describe the water heating operation with an indoor air source. The SCWH mode is connected to the same WaterHeater:HeatPump:PumpedCondenser as the DWH mode, and the same air side node connections as the SC mode. \paragraph{Field: SCDWH Mode Cooling Coil Name}\label{Field-SCDWH-Mode-Cooling-Coil-Name-ASIHP} @@ -5535,7 +5545,7 @@ \subsubsection{Outputs}\label{outputs-22} \subsection{Coil:WaterHeating:AirToWaterHeatPump:Pumped}\label{coilwaterheatingairtowaterheatpumppumped} -EnergyPlus can model a heat pump water heater (HPWH) consisting of a water heater tank (e.g., \hyperref[waterheatermixed]{\lstinline!WaterHeater:Mixed!}), a direct expansion (DX) coil (i.e., an air-to-water DX compression system which includes a water heating coil, air coil, compressor, and water pump), and a fan to provide air flow across the air coil associated with the DX compression system. These objects work together to model a system which heats water using zone air, outdoor air, or a combination of zone and outdoor air as the primary heat source. +EnergyPlus can model a heat pump water heater (HPWH) consisting of a water heater tank (e.g., \lstinline!WaterHeater:Mixed!), a direct expansion (DX) coil (i.e., an air-to-water DX compression system which includes a water heating coil, air coil, compressor, and water pump), and a fan to provide air flow across the air coil associated with the DX compression system. These objects work together to model a system which heats water using zone air, outdoor air, or a combination of zone and outdoor air as the primary heat source. From the air-side heat transfer perspective, the water-heater receives heating energy from air. Thus it is considered as a cooling coil, and the output variable names are using "Cooling Coil". The \hyperref[waterheaterheatpumppumpedcondenser]{\lstinline!WaterHeater:HeatPump:PumpedCondenser!} compound object, water heater tank object (e.g., \hyperref[waterheatermixed]{\lstinline!WaterHeater:Mixed!}), and fan object (e.g., \hyperref[fanonoff]{\lstinline!Fan:OnOff!}) are defined elsewhere in this reference document. \lstinline!Coil:WaterHeating:AirToWaterHeatPump:Pumped! object described here models an air-to-water DX compression system to determine its air-side and water-side performance. This DX coil object calculates the air-side sensible and latent cooling capacity at the specific operating conditions for each simulation timestep, as well as the condenser's water-side temperature difference at a given condenser water flow rate. @@ -5725,88 +5735,65 @@ \subsubsection{Outputs}\label{outputs-23} \begin{itemize} \item - HVAC,Average,Cooling Coil Total Cooling Rate {[}W{]} -\item - HVAC,Sum,Cooling Coil Total Cooling Energy {[}J{]} -\item - HVAC,Average,Cooling Coil Sensible Cooling Rate {[}W{]} + HVAC,Average,Heating Coil Total Heating Rate {[}W{]} \item - HVAC,Sum,Cooling Coil Sensible Cooling Energy {[}J{]} -\item - HVAC,Average,Cooling Coil Latent Cooling Rate {[}W{]} + HVAC,Sum,Heating Coil Total Heating Energy {[}J{]} \item - HVAC,Sum,Cooling Coil Latent Cooling Energy {[}J{]} -\item - HVAC,Average, Cooling Coil Runtime Fraction {[]} + HVAC,Average,Heating Coil Runtime Fraction {[]} \item - HVAC,Average,DX Cooling Coil Crankcase Heater Electric Power {[}W{]} + HVAC,Average,Heating Coil Crankcase Heater Electric Power {[}W{]} \item - HVAC,Sum, Cooling Coil Crankcase Heater Electric Energy {[}J{]} + HVAC,Sum,Heating Coil Crankcase Heater Electric Energy {[}J{]} \item - HVAC,Average,Cooling Coil Total Water Heating Rate {[}W{]} + HVAC,Average,Heating Coil Total Water Heating Rate {[}W{]} \item - HVAC,Sum,Cooling Coil Total Water Heating Energy {[}J{]} + HVAC,Sum,Heating Coil Total Water Heating Energy {[}J{]} \item - HVAC,Average,Cooling Coil Water Heating Electric Power{[}W{]} + HVAC,Average,Heating Coil Water Heating Electric Power{[}W{]} \item - HVAC,Sum,Cooling Coil Water Heating Electric Energy {[}J{]} + HVAC,Sum,Heating Coil Water Heating Electric Energy {[}J{]} \end{itemize} -\paragraph{Cooling Coil Total Cooling Rate {[}W{]}}\label{cooling-coil-total-cooling-rate-w-6} - -This output field is the average total (sensible and latent) cooling rate output of the DX coil in Watts for the timestep being reported. This is determined by the coil inlet and outlet air conditions and the air mass flow rate through the coil. - -\paragraph{Cooling Coil Total Cooling Energy {[}J{]}}\label{cooling-coil-total-cooling-energy-j-6} - -This output field is the total (sensible plus latent) cooling output of the DX coil in Joules for the timestep being reported. This is determined by the coil inlet and outlet air conditions and the air mass flow rate through the coil. - -\paragraph{Cooling Coil Sensible Cooling Rate {[}W{]}}\label{cooling-coil-sensible-cooling-rate-w-6} - -This output field is the average moist air sensible cooling rate output of the DX coil in Watts for the timestep being reported. This is determined by the inlet and outlet air conditions and the air mass flow rate through the coil. - -\paragraph{Cooling Coil Sensible Cooling Energy {[}J{]}}\label{cooling-coil-sensible-cooling-energy-j-6} - -This output field is the moist air sensible cooling output of the DX coil in Joules for the timestep being reported. This is determined by the inlet and outlet air conditions and the air mass flow rate through the coil. +\paragraph{Heating Coil Total Heating Rate {[}W{]}}\label{heating-coil-total-heating-rate-w-6} -\paragraph{DX Coil Latent Cooling Rate {[}W{]}}\label{dx-coil-latent-cooling-rate-w} +This output field is the average total heating rate output of the DX coil in Watts for the timestep being reported. This is determined by the coil inlet and outlet air conditions and the air mass flow rate through the coil. -This output field is the average latent cooling rate output of the DX coil in Watts for the timestep being reported. This is determined by the inlet and outlet air conditions and the air mass flow rate through the coil. +\paragraph{Heating Coil Total Heating Energy {[}J{]}}\label{heating-coil-total-heating-energy-j-6} -\paragraph{Cooling Coil Latent Cooling Energy {[}J{]}}\label{cooling-coil-latent-cooling-energy-j-4} +This output field is the total heating output of the DX coil in Joules for the timestep being reported. This is determined by the coil inlet and outlet air conditions and the air mass flow rate through the coil. -This output field is the latent cooling output of the DX coil in Joules for the timestep being reported. This is determined by the inlet and outlet air conditions and the air mass flow rate through the coil. - -\paragraph{Cooling Coil Runtime Fraction {[]}}\label{cooling-coil-runtime-fraction-4} +\paragraph{Heating Coil Runtime Fraction {[]}}\label{heating-coil-runtime-fraction-4} This output field is the average runtime fraction of the DX coil compressor for the timestep being reported. This also represents the runtime fraction of the condenser water pump. -\paragraph{Cooling Coil Crankcase Heater Electric Power{[}W{]}}\label{cooling-coil-crankcase-heater-electric-powerw-1} +\paragraph{Heating Coil Crankcase Heater Electric Power{[}W{]}}\label{heating-coil-crankcase-heater-electric-powerw-1} This output field is the average electricity consumption rate of the DX coil compressor's crankcase heater in Watts for the timestep being reported. The crankcase heater operates only when the compressor is off and the air surrounding the compressor is below the Maximum Ambient Temperature for Crankcase Heater Operation, otherwise this output variable is set equal to 0. -\paragraph{Cooling Coil Crankcase Heater Electric Energy {[}J{]}}\label{cooling-coil-crankcase-heater-electric-energy-j-2} +\paragraph{Heating Coil Crankcase Heater Electric Energy {[}J{]}}\label{heating-coil-crankcase-heater-electric-energy-j-2} This output field is the total electricity consumption of the DX coil compressor's crankcase heater in Joules for the timestep being reported. This output is also added to a meter with Resource Type = Electricity, End Use Key = DHW, Group Key = Plant (ref. Output:Meter objects). -\paragraph{Cooling Coil Total Water Heating Rate {[}W{]}}\label{cooling-coil-total-water-heating-rate-w} +\paragraph{Heating Coil Total Water Heating Rate {[}W{]}}\label{heating-coil-total-water-heating-rate-w} This output field is the average water heating rate output of the DX coil (condenser coil plus condenser water pump) in Watts for the timestep being reported. This is determined using the inlet and outlet water temperatures and the water mass flow rate through the condenser coil. -\paragraph{Cooling Coil Total Water Heating Energy {[}J{]}}\label{cooling-coil-total-water-heating-energy-j} +\paragraph{Heating Coil Total Water Heating Energy {[}J{]}}\label{heating-coil-total-water-heating-energy-j} This output field is the total water heating output of the DX coil (condenser coil plus condenser water pump) in Joules for the timestep being reported. This is determined using the inlet and outlet water temperatures and the water mass flow rate through the condenser coil. -\paragraph{Cooling Coil Water Heating Electric Power{[}W{]}}\label{cooling-coil-water-heating-electric-powerw} +\paragraph{Heating Coil Water Heating Electric Power{[}W{]}}\label{heating-coil-water-heating-electric-powerw} This output field is the average electricity consumption rate of the DX coil compressor and condenser pump in Watts for the timestep being reported. -\paragraph{Cooling Coil Water Heating Electric Energy {[}J{]}}\label{cooling-coil-water-heating-electric-energy-j} +\paragraph{Heating Coil Water Heating Electric Energy {[}J{]}}\label{heating-coil-water-heating-electric-energy-j} This output field is the electricity consumption of the DX coil compressor and condenser pump in Joules for the timestep being reported. This output is also added to a meter with Resource Type = Electricity, End Use Key = DHW, Group Key = Plant (ref. Output:Meter objects). + \subsection{Coil:WaterHeating:AirToWaterHeatPump:Wrapped}\label{coilwaterheatingairtowaterheatpumpwrapped} -EnergyPlus can model a heat pump water heater (HPWH) consisting of a water heater tank (e.g., \hyperref[waterheaterstratified]{\lstinline!WaterHeater:Stratified!}), a direct expansion (DX) coil (i.e., an air-to-water DX compression system which includes a water heating coil, air coil, compressor, and water pump), and a fan to provide air flow across the air coil associated with the DX compression system. These objects work together to model a system which heats water using zone air, outdoor air, or a combination of zone and outdoor air as the primary heat source. +EnergyPlus can model a heat pump water heater (HPWH) consisting of a water heater tank (e.g., \lstinline!WaterHeater:Stratified!), a direct expansion (DX) coil (i.e., an air-to-water DX compression system which includes a water heating coil, air coil, compressor, and water pump), and a fan to provide air flow across the air coil associated with the DX compression system. These objects work together to model a system which heats water using zone air, outdoor air, or a combination of zone and outdoor air as the primary heat source. From the air-side heat transfer perspective, the water-heater receives heating energy from the air. Thus it is considered as a cooling coil, and the output variable names are using "Cooling Coil". The \hyperref[waterheaterheatpumpwrappedcondenser]{\lstinline!WaterHeater:HeatPump:WrappedCondenser!} compound object, water heater tank object (e.g., \hyperref[waterheatermixed]{\lstinline!WaterHeater:Mixed!}), and fan object (e.g., \hyperref[fanonoff]{\lstinline!Fan:OnOff!}) are defined elsewhere in this reference document. \lstinline!Coil:WaterHeating:AirToWaterHeatPump:Wrapped! object described here models an air-to-water DX compression system to determine its air-side and water-side performance. This DX coil object calculates the air-side sensible and latent cooling capacity at the specific operating conditions for each simulation timestep, as well as the condenser's water-side temperature difference at a given condenser water flow rate. @@ -5949,82 +5936,58 @@ \subsubsection{Outputs}\label{outputs-24} \begin{itemize} \item - HVAC,Average,Cooling Coil Total Cooling Rate {[}W{]} -\item - HVAC,Sum,Cooling Coil Total Cooling Energy {[}J{]} -\item - HVAC,Average,Cooling Coil Sensible Cooling Rate {[}W{]} -\item - HVAC,Sum,Cooling Coil Sensible Cooling Energy {[}J{]} + HVAC,Average,Heating Coil Total Heating Rate {[}W{]} \item - HVAC,Average,Cooling Coil Latent Cooling Rate {[}W{]} -\item - HVAC,Sum,Cooling Coil Latent Cooling Energy {[}J{]} + HVAC,Sum,Heating Coil Total Heating Energy {[}J{]} \item - HVAC,Average, Cooling Coil Runtime Fraction {[]} + HVAC,Average, Heating Coil Runtime Fraction {[]} \item - HVAC,Average,DX Cooling Coil Crankcase Heater Electric Power {[}W{]} + HVAC,Average,Heating Coil Crankcase Heater Electric Power {[}W{]} \item - HVAC,Sum, Cooling Coil Crankcase Heater Electric Energy {[}J{]} + HVAC,Sum, Heating Coil Crankcase Heater Electric Energy {[}J{]} \item - HVAC,Average,Cooling Coil Total Water Heating Rate {[}W{]} + HVAC,Average,Heating Coil Total Water Heating Rate {[}W{]} \item - HVAC,Sum,Cooling Coil Total Water Heating Energy {[}J{]} + HVAC,Sum,Heating Coil Total Water Heating Energy {[}J{]} \item - HVAC,Average,Cooling Coil Water Heating Electric Power{[}W{]} + HVAC,Average,Heating Coil Water Heating Electric Power{[}W{]} \item - HVAC,Sum,Cooling Coil Water Heating Electric Energy {[}J{]} + HVAC,Sum,Heating Coil Water Heating Electric Energy {[}J{]} \end{itemize} -\paragraph{Cooling Coil Total Cooling Rate {[}W{]}}\label{cooling-coil-total-cooling-rate-w-7} - -This output field is the average total (sensible and latent) cooling rate output of the DX coil in Watts for the timestep being reported. This is determined by the coil inlet and outlet air conditions and the air mass flow rate through the coil. - -\paragraph{Cooling Coil Total Cooling Energy {[}J{]}}\label{cooling-coil-total-cooling-energy-j-7} - -This output field is the total (sensible plus latent) cooling output of the DX coil in Joules for the timestep being reported. This is determined by the coil inlet and outlet air conditions and the air mass flow rate through the coil. - -\paragraph{Cooling Coil Sensible Cooling Rate {[}W{]}}\label{cooling-coil-sensible-cooling-rate-w-7} +\paragraph{Heating Coil Total Heating Rate {[}W{]}}\label{heating-coil-total-heating-rate-w-7} -This output field is the average moist air sensible cooling rate output of the DX coil in Watts for the timestep being reported. This is determined by the inlet and outlet air conditions and the air mass flow rate through the coil. +This output field is the average total heating rate output of the DX coil in Watts for the timestep being reported. This is determined by the coil inlet and outlet air conditions and the air mass flow rate through the coil. -\paragraph{Cooling Coil Sensible Cooling Energy {[}J{]}}\label{cooling-coil-sensible-cooling-energy-j-7} +\paragraph{Heating Coil Total Heating Energy {[}J{]}}\label{heating-coil-total-heating-energy-j-7} -This output field is the moist air sensible cooling output of the DX coil in Joules for the timestep being reported. This is determined by the inlet and outlet air conditions and the air mass flow rate through the coil. +This output field is the total heating output of the DX coil in Joules for the timestep being reported. This is determined by the coil inlet and outlet air conditions and the air mass flow rate through the coil. -\paragraph{DX Coil Latent Cooling Rate {[}W{]}}\label{dx-coil-latent-cooling-rate-w-1} - -This output field is the average latent cooling rate output of the DX coil in Watts for the timestep being reported. This is determined by the inlet and outlet air conditions and the air mass flow rate through the coil. - -\paragraph{Cooling Coil Latent Cooling Energy {[}J{]}}\label{cooling-coil-latent-cooling-energy-j-5} - -This output field is the latent cooling output of the DX coil in Joules for the timestep being reported. This is determined by the inlet and outlet air conditions and the air mass flow rate through the coil. - -\paragraph{Cooling Coil Runtime Fraction {[]}}\label{cooling-coil-runtime-fraction-5} +\paragraph{Heating Coil Runtime Fraction {[]}}\label{heating-coil-runtime-fraction-5} This output field is the average runtime fraction of the DX coil compressor for the timestep being reported. This also represents the runtime fraction of the condenser water pump. -\paragraph{Cooling Coil Crankcase Heater Electric Power{[}W{]}}\label{cooling-coil-crankcase-heater-electric-powerw-2} +\paragraph{Heating Coil Crankcase Heater Electric Power{[}W{]}}\label{heating-coil-crankcase-heater-electric-powerw-2} This output field is the average electricity consumption rate of the DX coil compressor's crankcase heater in Watts for the timestep being reported. The crankcase heater operates only when the compressor is off and the air surrounding the compressor is below the Maximum Ambient Temperature for Crankcase Heater Operation, otherwise this output variable is set equal to 0. -\paragraph{Cooling Coil Crankcase Heater Electric Energy {[}J{]}}\label{cooling-coil-crankcase-heater-electric-energy-j-3} +\paragraph{Heating Coil Crankcase Heater Electric Energy {[}J{]}}\label{heating-coil-crankcase-heater-electric-energy-j-3} This output field is the total electricity consumption of the DX coil compressor's crankcase heater in Joules for the timestep being reported. This output is also added to a meter with Resource Type = Electricity, End Use Key = DHW, Group Key = Plant (ref. Output:Meter objects). -\paragraph{Cooling Coil Total Water Heating Rate {[}W{]}}\label{cooling-coil-total-water-heating-rate-w-1} +\paragraph{Heating Coil Total Water Heating Rate {[}W{]}}\label{heating-coil-total-water-heating-rate-w-1} This output field is the average water heating rate output of the DX coil (condenser coil plus condenser water pump) in Watts for the timestep being reported. -\paragraph{Cooling Coil Total Water Heating Energy {[}J{]}}\label{cooling-coil-total-water-heating-energy-j-1} +\paragraph{Heating Coil Total Water Heating Energy {[}J{]}}\label{heating-coil-total-water-heating-energy-j-1} This output field is the total water heating output of the DX coil (condenser coil plus condenser water pump) in Joules for the timestep being reported. -\paragraph{Cooling Coil Water Heating Electric Power{[}W{]}}\label{cooling-coil-water-heating-electric-powerw-1} +\paragraph{Heating Coil Water Heating Electric Power{[}W{]}}\label{heating-coil-water-heating-electric-powerw-1} This output field is the average electricity consumption rate of the DX coil compressor in Watts for the timestep being reported. -\paragraph{Cooling Coil Water Heating Electric Energy {[}J{]}}\label{cooling-coil-water-heating-electric-energy-j-1} +\paragraph{Heating Coil Water Heating Electric Energy {[}J{]}}\label{heating-coil-water-heating-electric-energy-j-1} This output field is the electricity consumption of the DX coil compressor in Joules for the timestep being reported. This output is also added to a meter with Resource Type = Electricity, End Use Key = DHW, Group Key = Plant (ref. Output:Meter objects). @@ -6039,6 +6002,8 @@ \subsection{Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed}\label{coil-water This DX coil object calculates the air-side sensible and latent cooling capacity at the specific operating conditions for each simulation timestep, as well as the condenser's water-side temperature difference at a given condenser water flow rate. +This coil draws heating energy from air to the heater. Thus it is regarded as a cooling coil, as shown in the output variable names. + The heat pump water heater DX coil model performs the following major functions: \begin{itemize} @@ -6264,7 +6229,7 @@ \subsection{Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed}\label{coil-water \paragraph{Field: Speed \textless{}x\textgreater{} Total WH Capacity Function of Temperature Curve Name}\label{vshpwhheating-speed-x-total-wh-capacity-function-of-temperature-curve-name} -This alpha field specifies the name of a \textbf{biquadratic} performance curve object (ref: Performance Curves) (or any Bivariate function such as !\lstinline!Table:TwoIndependentVariables!) that defines the variation in DX coil heating capacity as a function of inlet fluid (air and water) temperatures. +This alpha field specifies the name of a \textbf{biquadratic} performance curve object (ref: Performance Curves) (or any Bivariate function) that defines the variation in DX coil heating capacity as a function of inlet fluid (air and water) temperatures. The biquadratic curve uses evaporator inlet air temperature (dry-bulb or wet-bulb temperature based on the field Evaporator Air Temperature Type for Curve Objects defined above) and condenser inlet water temperature as the independent variables. The output of this curve is multiplied by the rated heating capacity at this speed to give the heating capacity at specific operating conditions (i.e., at temperatures different from the rating point temperatures). The curve should be normalized to have the value of 1.0 at the rating point temperatures. If this field is left blank, the heating capacity remains constant (curve value assumed to be 1.0 for all conditions). @@ -6284,7 +6249,7 @@ \subsection{Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed}\label{coil-water \paragraph{Field: Speed \textless{}x\textgreater{} COP Function of Temperature Curve Name}\label{vshpwhheating-speed-x-cop-function-of-temperature-curve-name} -This alpha field specifies the name of a \textbf{biquadratic} performance curve object (ref: Performance Curves) (or any Bivariate function such as \lstinline!Table:TwoIndependentVariables!) that defines the variation in DX coil heating COP as a function of inlet fluid (air and water) temperatures. +This alpha field specifies the name of a \textbf{biquadratic} performance curve object (ref: Performance Curves) (or any Bivariate function) that defines the variation in DX coil heating COP as a function of inlet fluid (air and water) temperatures. The biquadratic curve uses evaporator inlet air temperature (dry-bulb or wet-bulb temperature based on the field Evaporator Air Temperature Type for Curve Objects defined above) and condenser inlet water temperature as the independent variables. The output of this curve is multiplied by the rated COP at this specific speed to give the heating COP at specific operating conditions (i.e., at temperatures different from the rating point temperatures). The curve should be normalized to have the value of 1.0 at the rating point temperatures. If this field is left blank, the COP remains constant (curve value assumed to be 1.0 for all conditions). @@ -8395,31 +8360,31 @@ \subsubsection{Inputs}\label{inputs-35} \paragraph{Field: Cooling Only Mode Total Evaporator Cooling Capacity Function of Temperature Curve Name}\label{field-cooling-only-mode-total-evaporator-cooling-capacity-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the condenser section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 35.0 °C. The result of the curve is multiplied by Cooling Only Mode Rated Total Evaporator Cooling Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the condenser section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 35.0 °C. The result of the curve is multiplied by Cooling Only Mode Rated Total Evaporator Cooling Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling Only Mode is available. \paragraph{Field: Cooling Only Mode Total Evaporator Cooling Capacity Function of Flow Fraction Curve Name}\label{field-cooling-only-mode-total-evaporator-cooling-capacity-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling Only Mode Rated Total Evaporator Cooling Capacity to model capacity at air flow rates away from the rating point. This field is required if Cooling Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling Only Mode Rated Total Evaporator Cooling Capacity to model capacity at air flow rates away from the rating point. This field is required if Cooling Only Mode is available. \paragraph{Field: Cooling Only Mode Energy Input Ratio Function of Temperature Curve Name}\label{field-cooling-only-mode-energy-input-ratio-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the condenser section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 35.0 °C. The result of this curve is multiplied by the inverse of the Cooling Only Mode Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the condenser section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 35.0 °C. The result of this curve is multiplied by the inverse of the Cooling Only Mode Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling Only Mode is available. \paragraph{Field: Cooling Only Mode Energy Input Ratio Function of Flow Fraction Curve Name}\label{field-cooling-only-mode-energy-input-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling Only Mode Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling Only Mode Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling Only Mode is available. \paragraph{Field: Cooling Only Mode Part Load Fraction Correlation Curve Name}\label{field-cooling-only-mode-part-load-fraction-correlation-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction of the coil is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction of the coil is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling Only Mode is available. \paragraph{Field: Cooling Only Mode Sensible Heat Ratio Function of Temperature Curve Name}\label{field-cooling-only-mode-sensible-heat-ratio-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the evaporator section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the evaporator section. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 26.7 °C. The result of the curve is multiplied by the Cooling Only Mode Rated Sensible Heat Ratio to model the SHR at coil entering temperatures that differ from the rating point. This field is required if Cooling Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the evaporator section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the evaporator section. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 26.7 °C. The result of the curve is multiplied by the Cooling Only Mode Rated Sensible Heat Ratio to model the SHR at coil entering temperatures that differ from the rating point. This field is required if Cooling Only Mode is available. \paragraph{Field: Cooling Only Mode Sensible Heat Ratio Function of Flow Fraction Curve Name}\label{field-cooling-only-mode-sensible-heat-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling Only Mode Rated Sensible Heat Ratio to model the SHR at coil air flow rates that differ from the rating point. This field is required if Cooling Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling Only Mode Rated Sensible Heat Ratio to model the SHR at coil air flow rates that differ from the rating point. This field is required if Cooling Only Mode is available. \paragraph{Field: Cooling And Charge Mode Available}\label{field-cooling-and-charge-mode-available} @@ -8459,57 +8424,57 @@ \subsubsection{Inputs}\label{inputs-35} \paragraph{Field: Cooling And Charge Mode Total Evaporator Cooling Capacity Function of Temperature Curve Name}\label{field-cooling-and-charge-mode-total-evaporator-cooling-capacity-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Cooling And Charge Mode Rated Total Evaporator Cooling Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Cooling And Charge Mode Rated Total Evaporator Cooling Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Total Evaporator Cooling Capacity Function of Flow Fraction Curve Name}\label{field-cooling-and-charge-mode-total-evaporator-cooling-capacity-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Charge Mode Rated Total Evaporator Cooling Capacity to model capacity at air flow rates away from the rating point. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Charge Mode Rated Total Evaporator Cooling Capacity to model capacity at air flow rates away from the rating point. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Evaporator Energy Input Ratio Function of Temperature Curve Name}\label{field-cooling-and-charge-mode-evaporator-energy-input-ratio-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for evaporator cooling as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The performance curve is normalized to have the value of 1.0 at the rating point. The result of this curve is multiplied by the inverse of the Cooling And Charge Mode Cooling Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for evaporator cooling as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The performance curve is normalized to have the value of 1.0 at the rating point. The result of this curve is multiplied by the inverse of the Cooling And Charge Mode Cooling Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Evaporator Energy Input Ratio Function of Flow Fraction Curve Name}\label{field-cooling-and-charge-mode-evaporator-energy-input-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for evaporator cooling as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling And Charge Mode Cooling Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for evaporator cooling as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling And Charge Mode Cooling Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Evaporator Part Load Fraction Correlation Curve Name}\label{field-cooling-and-charge-mode-evaporator-part-load-fraction-correlation-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for evaporator cooling) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction of the coil is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for evaporator cooling) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction of the coil is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Storage Charge Capacity Function of Temperature Curve Name}\label{field-cooling-and-charge-mode-storage-charge-capacity-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the storage charging capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Cooling And Charge Mode Rated Storage Charging Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the storage charging capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Cooling And Charge Mode Rated Storage Charging Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Storage Charge Capacity Function of Total Evaporator PLR Curve Name}\label{field-cooling-and-charge-mode-storage-charge-capacity-function-of-total-evaporator-plr-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the storage charging capacity as a function of part load ratio (PLR) at the evaporator. PLR is the ratio of current evaporator cooling load to the current evaporator cooling capacity. This curve allows increasing the storage charging capacity when loads at the evaporator are low. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by Cooling And Charge Mode Rated Storage Charging Capacity to model capacity at evaporator PLR less than 1.0. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the storage charging capacity as a function of part load ratio (PLR) at the evaporator. PLR is the ratio of current evaporator cooling load to the current evaporator cooling capacity. This curve allows increasing the storage charging capacity when loads at the evaporator are low. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by Cooling And Charge Mode Rated Storage Charging Capacity to model capacity at evaporator PLR less than 1.0. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Storage Energy Input Ratio Function of Temperature Curve Name}\label{field-cooling-and-charge-mode-storage-energy-input-ratio-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for charging as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Cooling And Charge Mode Charging Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for charging as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Cooling And Charge Mode Charging Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Storage Energy Input Ratio Function of Flow Fraction Curve Name}\label{field-cooling-and-charge-mode-storage-energy-input-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for charging as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling And Charge Mode Charging Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for charging as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling And Charge Mode Charging Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Storage Energy Part Load Fraction Correlation Curve Name}\label{field-cooling-and-charge-mode-storage-energy-part-load-fraction-correlation-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for storage charging) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity (at the evaporator). The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for storage charging) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity (at the evaporator). The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Sensible Heat Ratio Function of Temperature Curve Name}\label{field-cooling-and-charge-mode-sensible-heat-ratio-function-of-temperature-curve-name} This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of temperature and optionally state of TES tank. The user can enter the name of a curve or table object that has either two or three independent variables. -For a curve or table with two independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the evaporator section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the evaporator section. +For a curve or table with two independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the evaporator section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the evaporator section. -For a curve or table with three independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the evaporator section and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x and y values for the curve are the same as for two independent variables while the z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. +For a curve or table with three independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the evaporator section and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x and y values for the curve are the same as for two independent variables while the z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 26.7 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by the Cooling And Charge Mode Rated Sensible Heat Ratio to model the SHR at coil entering temperatures that differ from the rating point. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Charge Mode Sensible Heat Ratio Function of Flow Fraction Curve Name}\label{field-cooling-and-charge-mode-sensible-heat-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Charge Mode Rated Sensible Heat Ratio to model the SHR at coil air flow rates that differ from the rating point. This field is required if Cooling And Charge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Charge Mode Rated Sensible Heat Ratio to model the SHR at coil air flow rates that differ from the rating point. This field is required if Cooling And Charge Mode is available. \paragraph{Field: Cooling And Discharge Mode Available}\label{field-cooling-and-discharge-mode-available} @@ -8549,61 +8514,61 @@ \subsubsection{Inputs}\label{inputs-35} \paragraph{Field: Cooling And Discharge Mode Total Evaporator Cooling Capacity Function of Temperature Curve Name}\label{field-cooling-and-discharge-mode-total-evaporator-cooling-capacity-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Cooling And Discharge Mode Rated Total Evaporator Cooling Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Cooling And Discharge Mode Rated Total Evaporator Cooling Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Total Evaporator Cooling Capacity Function of Flow Fraction Curve Name}\label{field-cooling-and-discharge-mode-total-evaporator-cooling-capacity-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Discharge Mode Rated Total Evaporator Cooling Capacity to model capacity at air flow rates away from the rating point. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the total cooling capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Discharge Mode Rated Total Evaporator Cooling Capacity to model capacity at air flow rates away from the rating point. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Evaporator Energy Input Ratio Function of Temperature Curve Name}\label{field-cooling-and-discharge-mode-evaporator-energy-input-ratio-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for evaporator cooling as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Cooling And Discharge Mode Cooling Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for evaporator cooling as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Cooling And Discharge Mode Cooling Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Evaporator Energy Input Ratio Function of Flow Fraction Curve Name}\label{field-cooling-and-discharge-mode-evaporator-energy-input-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for evaporator cooling as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling And Discharge Mode Cooling Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling And discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for evaporator cooling as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling And Discharge Mode Cooling Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling And discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Evaporator Part Load Fraction Correlation Curve Name}\label{field-cooling-and-discharge-mode-evaporator-part-load-fraction-correlation-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for evaporator cooling) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction of the coil is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for evaporator cooling) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction of the coil is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Storage Discharge Capacity Function of Temperature Curve Name}\label{field-cooling-and-discharge-mode-storage-discharge-capacity-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the storage discharging capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Cooling And Discharge Mode Rated Storage Discharging Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the storage discharging capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Cooling And Discharge Mode Rated Storage Discharging Capacity to model capacity at temperatures away from the rating point. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Storage Discharge Capacity Function of Flow Fraction Curve Name}\label{field-cooling-and-discharge-mode-storage-discharge-capacity-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the storage discharge capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Discharge Mode Rated Storage Discharging Capacity to model capacity at air flow rates away from the rating point. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the storage discharge capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Discharge Mode Rated Storage Discharging Capacity to model capacity at air flow rates away from the rating point. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Storage Discharge Capacity Function of Total Evaporator PLR Curve Name}\label{field-cooling-and-discharge-mode-storage-discharge-capacity-function-of-total-evaporator-plr-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the storage discharging capacity as a function of part load ratio (PLR) at the evaporator. PLR is the ratio of current evaporator cooling load to the current evaporator cooling capacity. This curve allows varying the storage discharging capacity based on loads at the evaporator. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by Cooling And Discharge Mode Rated Storage Discharging Capacity to model capacity at different evaporator PLR values. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the storage discharging capacity as a function of part load ratio (PLR) at the evaporator. PLR is the ratio of current evaporator cooling load to the current evaporator cooling capacity. This curve allows varying the storage discharging capacity based on loads at the evaporator. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by Cooling And Discharge Mode Rated Storage Discharging Capacity to model capacity at different evaporator PLR values. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Storage Energy Input Ratio Function of Temperature Curve Name}\label{field-cooling-and-discharge-mode-storage-energy-input-ratio-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for discharging as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Cooling And Discharge Mode Discharging Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for discharging as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the condenser section, and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 35.0 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Cooling And Discharge Mode Discharging Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Storage Energy Input Ratio Function of Flow Fraction Curve Name}\label{field-cooling-and-discharge-mode-storage-energy-input-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for discharging as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling And Discharge Mode Discharging Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for discharging as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Cooling And Discharge Mode Discharging Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Storage Energy Part Load Fraction Correlation Curve Name}\label{field-cooling-and-discharge-mode-storage-energy-part-load-fraction-correlation-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for storage discharging) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity (at the evaporator). The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for storage discharging) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity (at the evaporator). The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Sensible Heat Ratio Function of Temperature Curve Name}\label{field-cooling-and-discharge-mode-sensible-heat-ratio-function-of-temperature-curve-name} This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of temperature and optionally state of TES tank. The user can enter the name of a curve or table object that has either two or three independent variables. -For a curve or table with two independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the evaporator section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the evaporator section. +For a curve or table with two independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the evaporator section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the evaporator section. -For a curve or table with three independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the evaporator section and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x and y values for the curve are the same as for two independent variables while the z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. +For a curve or table with three independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the evaporator section and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x and y values for the curve are the same as for two independent variables while the z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 26.7 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by the Cooling And Discharge Mode Rated Sensible Heat Ratio to model the SHR at coil entering temperatures that differ from the rating point. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Cooling And Discharge Mode Sensible Heat Ratio Function of Flow Fraction Curve Name}\label{field-cooling-and-discharge-mode-sensible-heat-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Discharge Mode Rated Sensible Heat Ratio to model the SHR at coil air flow rates that differ from the rating point. This field is required if Cooling And Discharge Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling And Discharge Mode Rated Sensible Heat Ratio to model the SHR at coil air flow rates that differ from the rating point. This field is required if Cooling And Discharge Mode is available. \paragraph{Field: Charge Only Mode Available}\label{field-charge-only-mode-available} @@ -8625,11 +8590,11 @@ \subsubsection{Inputs}\label{inputs-35} \paragraph{Field: Charge Only Mode Storage Charge Capacity Function of Temperature Curve Name}\label{field-charge-only-mode-storage-charge-capacity-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the storage charging capacity as a function of (1) the drybulb temperature of the air entering the condenser section, and (2) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The y values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 35.0 °C, and y = 0.5 for Ice storage type or y = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Charge Only Mode Rated Storage Charging Capacity to model capacity at temperatures away from the rating point. This field is required if Charge Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the storage charging capacity as a function of (1) the drybulb temperature of the air entering the condenser section, and (2) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The y values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 35.0 °C, and y = 0.5 for Ice storage type or y = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Charge Only Mode Rated Storage Charging Capacity to model capacity at temperatures away from the rating point. This field is required if Charge Only Mode is available. \paragraph{Field: Charge Only Mode Storage Energy Input Ratio Function of Temperature Curve Name}\label{field-charge-only-mode-storage-energy-input-ratio-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for charging as a function of (1) the drybulb temperature of the air entering the condenser section, and (2) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The y values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 35.0 °C, and y = 0.5 for Ice storage type or y = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Charge Only Mode Charging Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Charge Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for charging as a function of (1) the drybulb temperature of the air entering the condenser section, and (2) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the drybulb temperature of air entering the condenser section (which if using evaporatively-cooled condenser the temperature will be adjusted to approach the wetbulb temperature depending on effectiveness). The y values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 35.0 °C, and y = 0.5 for Ice storage type or y = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Charge Only Mode Charging Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Charge Only Mode is available. \paragraph{Field: Discharge Only Mode Available}\label{field-discharge-only-mode-available} @@ -8655,37 +8620,37 @@ \subsubsection{Inputs}\label{inputs-35} \paragraph{Field: Discharge Only Mode Storage Discharge Capacity Function of Temperature Curve Name}\label{field-discharge-only-mode-storage-discharge-capacity-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the storage discharging capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, and (2) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 0.5 for Ice storage type or y = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Discharge Only Mode Rated Storage Discharging Capacity to model capacity at temperatures away from the rating point. This field is required if Discharge Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the storage discharging capacity as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, and (2) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 0.5 for Ice storage type or y = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by Discharge Only Mode Rated Storage Discharging Capacity to model capacity at temperatures away from the rating point. This field is required if Discharge Only Mode is available. \paragraph{Field: Discharge Only Mode Storage Discharge Capacity Function of Flow Fraction Curve Name}\label{field-discharge-only-mode-storage-discharge-capacity-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the storage discharge capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling Discharge Only Mode Rated Storage Discharging Capacity to model capacity at air flow rates away from the rating point. This field is required if Discharge Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the storage discharge capacity as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Cooling Discharge Only Mode Rated Storage Discharging Capacity to model capacity at air flow rates away from the rating point. This field is required if Discharge Only Mode is available. \paragraph{Field: Discharge Only Mode Energy Input Ratio Function of Temperature Curve Name}\label{field-discharge-only-mode-energy-input-ratio-function-of-temperature-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for discharging as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, and (2) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 0.5 for Ice storage type or y = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Discharge Only Mode Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Discharge Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for discharging as a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, and (2) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have the value of 1.0 at the rating point which is defined to be x = 19.4 °C and y = 0.5 for Ice storage type or y = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of this curve is multiplied by the inverse of the Discharge Only Mode Rated COP to model electric energy consumption at temperatures away from the rating point. This field is required if Discharge Only Mode is available. \paragraph{Field: Discharge Only Mode Energy Input Ratio Function of Flow Fraction Curve Name}\label{field-discharge-only-mode-energy-input-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for discharging as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Discharge Only Mode Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Discharge Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) for discharging as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the inverse of the Discharge Only Mode Rated COP to model electric energy consumption at air flow rates away from the rating point. This field is required if Discharge Only Mode is available. \paragraph{Field: Discharge Only Mode Part Load Fraction Correlation Curve Name}\label{field-discharge-only-mode-part-load-fraction-correlation-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for storage discharging) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Discharge Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the energy input ratio (EIR) (for storage discharging) as a function of the part load ratio (PLR). PLR is the ratio of current cooling load to the current cooling capacity. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is the part load fraction (PLF) and the runtime fraction is defined as PLR divided by PLF. The runtime fraction is then multiplied by the energy input ratio to model electric energy consumption at part load to account for inefficiencies because of compressor cycling. This field is required if Discharge Only Mode is available. \paragraph{Field: Discharge Only Mode Sensible Heat Ratio Function of Temperature Curve Name}\label{field-discharge-only-mode-sensible-heat-ratio-function-of-temperature-curve-name} This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of temperature and optionally state of TES tank. The user can enter the name of a curve or table object that has either two or three independent variables. -For a curve or table with two independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the evaporator section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the evaporator section. +For a curve or table with two independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil and (2) the drybulb temperature of the air entering the evaporator section. The performance curve can be any curve or table based on two independent variables, x and y, including: \hyperref[curvebiquadratic]{Curve:Biquadratic}, \hyperref[tablelookup]{Table:Lookup}, \hyperref[curvebicubic]{Curve:Bicubic}, and \hyperref[curvequadraticlinear]{Curve:QuadraticLinear}. The x values for the performance curve are the wetbulb temperature of air entering the evaporator section. The y values for the performance curve are the drybulb temperature of air entering the evaporator section. -For a curve or table with three independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the evaporator section and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}. The x and y values for the curve are the same as for two independent variables while the z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. +For a curve or table with three independent variables the SHR is a function of (1) the wetbulb temperature of air entering the evaporator section of the TES coil, (2) the drybulb temperature of the air entering the evaporator section and (3) the state of TES tank (in C or fraction). The performance curve can be any curve or table based on three independent variables, x, y, and z, including: \hyperref[curvetriquadratic]{Curve:Triquadratic} and \hyperref[tablelookup]{Table:Lookup}. The x and y values for the curve are the same as for two independent variables while the z values are the state of the TES tank which are the tank's temperature for water or fluid storage type or the storage fraction for ice storage types. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 19.4 °C, y = 26.7 °C, and z = 0.5 for Ice storage type or z = Fluid Storage Tank Rating Temperature when storage type is Water or UserDefinedFluidType. The result of the curve is multiplied by the Discharge Only Mode Rated Sensible Heat Ratio to model the SHR at coil entering temperatures that differ from the rating point. This field is required if Discharge Only Mode is available. \paragraph{Field: Discharge Only Mode Sensible Heat Ratio Function of Flow Fraction Curve Name}\label{field-discharge-only-mode-sensible-heat-ratio-function-of-flow-fraction-curve-name} -This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tableoneindependentvariable]{Table:OneIndependentVariable}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Discharge Only Mode Rated Sensible Heat Ratio to model the SHR at coil air flow rates that differ from the rating point. This field is required if Discharge Only Mode is available. +This field is the name of a separate performance curve object that parameterizes the variation of the sensible heat ratio (SHR) as a function of the ratio of actual air flow rate across the cooling coil to the value of the Rated Evaporator Air Flow Rate. The performance curve can be any curve or table based on one independent variable, x, including: \hyperref[curvelinear]{Curve:Linear}, \hyperref[curvequadratic]{Curve:Quadratic}, \hyperref[curvecubic]{Curve:Cubic}, \hyperref[curvequartic]{Curve:Quartic}, \hyperref[curveexponent]{Curve:Exponent}, \hyperref[curveexponentialskewnormal]{Curve:ExponentialSkewNormal}, \hyperref[curvesigmoid]{Curve:Sigmoid}, Curve:RectuangularHyperbola1, \hyperref[curverectangularhyperbola2]{Curve:RectangularHyperbola2}, \hyperref[curveexponentialdecay]{Curve:ExponentialDecay}, \hyperref[curvedoubleexponentialdecay]{Curve:DoubleExponentialDecay}, and \hyperref[tablelookup]{Table:Lookup}. The performance curve is normalized to have a value of 1.0 at the rating point which is defined to be x = 1.0. The result of the curve is multiplied by the Discharge Only Mode Rated Sensible Heat Ratio to model the SHR at coil air flow rates that differ from the rating point. This field is required if Discharge Only Mode is available. \paragraph{Field: Ancillary Electric Power {[}W{]}}\label{field-ancillary-electric-power-w} @@ -9381,4 +9346,4 @@ \subsubsection{Secondary Coil Compressor Part Load Ratio {[]}}\label{secondary-c This is the compressor part load ratio when the heat pump is operating in heating mode and the secondary coil is extracting heat from a zone where the coil is installed. The secondary coil DX coil compressor part load ratio can be different from the primary DX coil compressor part load ratio in that the later may include the defrosting load. -Reference: Dixon, Erin Elizabeth, ``Energy Model Development and Heating Energy Investigation of the Nested Thermal Envelope Design (NTED (tm))'' (2010). Theses and dissertations. Paper 974. \ No newline at end of file +Reference: Dixon, Erin Elizabeth, ``Energy Model Development and Heating Energy Investigation of the Nested Thermal Envelope Design (NTED (tm))'' (2010). Theses and dissertations. Paper 974. diff --git a/doc/input-output-reference/src/overview/group-performance-tables.tex b/doc/input-output-reference/src/overview/group-performance-tables.tex index 9ac1b2954a3..68f1178ce59 100644 --- a/doc/input-output-reference/src/overview/group-performance-tables.tex +++ b/doc/input-output-reference/src/overview/group-performance-tables.tex @@ -1,819 +1,626 @@ \section{Group Performance Tables}\label{group-performance-tables} -This group of objects consists of tabular data which are used to characterize the performance of HVAC equipment. The use of performance tables eliminate the need to perform a regression analysis to calculate the performance curve equation coefficients. Two performance tables are available to represent any performance curve having one or two independent variables. The tabular data is entered as data pairs and represent each independent variable followed by the table output at that condition. When using these two performance table objects, a regression analysis may be performed during the simulation to create the associated performance curve. The regression analysis is performed when the user requests to evaluate the curve to the limits specified (see Interpolation Method input field). The performance curve that is created is used throughout the simulation and is also written to the eio file when the user sets the diagnostics output flag DisplayAdvancedVariables (ref. \hyperref[outputdiagnostics]{Output:Diagnostics}, DisplayAdvancedVariables) This performance curve object may be directly used in future input files. The following descriptions define the input requirements for the performance table objects. +This group of objects consists of tabular data which are used to characterize the performance of HVAC equipment. The use of performance tables eliminate the need to perform a regression analysis to calculate the performance curve equation coefficients. The following descriptions define the input requirements for the performance table objects. -\subsection{Table:OneIndependentVariable}\label{tableoneindependentvariable} +\subsection{Table:Lookup}\label{tablelookup} -Input for the data table consists of a table name, the curve type, the interpolation method, and the data pairs representing the polynomial equation. Optional inputs for minimum and maximum values for the independent variable and curve minimum and maximum may be used to limit the output of the table when evaluating the regression curve (e.g., limit extrapolation). The existing performance curves represented by this table object are: +Input for tables representing data with one or more independent +variables. -\begin{equation} -Linear\,\,Curve:\,\,\,Output = {C_1} + {C_2}x -\end{equation} +\subsubsection{Inputs}\label{inputs} -\begin{equation} -Quadratic\,\,Curve:\,\,\,Output = {C_1} + {C_2}x + {C_3}{x^2} -\end{equation} +\paragraph{Field: Name}\label{field-name} -\begin{equation} -Cubic\,\,Curve:\,\,\,Output = {C_1} + {C_2}x + {C_3}{x^2} + {C_4}{x^3} -\end{equation} +A unique user-assigned name for an instance of a lookup table. When a +table is used, it is referenced by this name. The name of this table +object may be used anywhere a valid performance curve object is allowed. -\begin{equation} -Quartic\,\,Curve:\,\,\,Output = {C_1} + {C_2}x + {C_3}{x^2} + {C_4}{x^3} + {C_5}{x^4} -\end{equation} +\paragraph{Field: Independent Variable List +Name}\label{field-independent-variable-list-name} -\begin{equation} -Exponent\,\,Curve:\,\,\,Output = {C_1} + {C_2}{x^{{C_3}}} -\end{equation} +The name of a Table:IndependentVariableList object that defines the +independent variables that comprise the dimensions of the tabular data. -\subsubsection{Inputs}\label{inputs-032} +\paragraph{Field: Normalization Method}\label{field-normalization-method} -\paragraph{Field: Name}\label{field-name-031} +Determines if and how this output will be normalized. Choices are: -A unique user assigned name for an instance of a performance table. When a table is used, it is referenced by this name. The name of this table object may be used anywhere a valid performance curve object is allowed. +\begin{enumerate} + \item \emph{No}: Do not normalize output. + \item \emph{DivisorOnly}: Normalize the output using only the value entered into the Normalization Divisor field, below. + \item \emph{AutomaticWithDivisor}: Normalize the output by dividing the output data by the value of the table at each of the independent variable normalization reference values in the associated independent variable list AND dividing by the value entered into the Normalization Divisor field, below. +\end{enumerate} -\paragraph{Field: Curve Type}\label{field-curve-type} +Normalization applies to the Output Value fields as well as the Minimum +and Maximum Output fields. -The form of the polynomial equation used to represent the tabular data. Choices are \emph{Linear}, \emph{Quadratic}, \emph{Cubic}, and \emph{Quartic}. This field is required when the next field, Interpolation Method, is set to \emph{EvaluateCurveToLimits}, where this input infers the polynomial order (or degree) used for curve fitting. If the next field is set to \emph{LagrangeInterpolationLinearExtrapolation}, this field determines the number of interpolation points. For Linear, Quadratic, Cubic, and Quartic the number of interpolation points is set at 2, 3, 4 and 5, respectively. If left blank, the number of interpolation points is set to 4. In a few cases, this field is used to determine if this table object is representative of the type of performance table (curve) allowed for a particular application (i.e., if this type of polynomial is allowed to be used as the curve type for other objects). +\paragraph{Field: Normalization Divisor}\label{field-normalization-divisor} -\paragraph{Field: Interpolation Method}\label{field-interpolation-method} +Defines a value by which output values are normalized if the Normalization Method +field is set to \emph{DivisorOnly} or \emph{AutomaticWithDivisor}. Default is 1.0. -The method used to evaluate the tabular data. Choices are \emph{LinearInterpolationOfTable, LagrangeInterpolationLinearExtrapolation} and \emph{EvaluateCurveToLimits}. When \emph{LinearInterpolationOfTable} is selected, the tabular data is interpolated within the limits of the data set and the following fields are used only within the boundary of the table limits (i.e., are only used to limit interpolation). Extrapolation of the data set is not allowed. When \emph{LagrangeInterpolationLinearExtrapolation} is selected, a polynomial interpolation routine is used within the table boundaries along with linear extrapolation. Given the valid one independent variable equations above, the polynomial order is up to 5\(^{th}\) order. When \emph{EvaluateCurveToLimits} is selected, the coefficients (i.e., C in the equations above) of the polynomial equation are calculated and used to determine the table output within the limits specified in the following fields. If these fields are not entered, the limits of the tabular data are used. The minimum number of data pairs required for this choice are 2, 3, 4 and 5 data pairs for Linear, Quadratic, Cubic and Quartic curves, respectively. If insufficient data is provided, the regression analysis is not performed and the simulation reverts to interpolating the tabular data. The performance curve is written to the eio file when the output diagnostics flag DisplayAdvancedVariables is used (ref. \hyperref[outputdiagnostics]{Output:Diagnostics}, DisplayAdvancedVariables). +\paragraph{Field: Minimum Output}\label{field-minimum-output} -\paragraph{Field: Minimum Value of X}\label{field-minimum-value-of-x-000} +The (non-normalized) minimum allowable value of the evaluated table after interpolation +and extrapolation. Values less than the minimum will be replaced by the +minimum. If this field is left blank, no limit is imposed. -The minimum allowable value of X. Values of X less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the data set determines the limit. +\paragraph{Field: Maximum Output}\label{field-maximum-output} -\paragraph{Field: Maximum Value of X}\label{field-maximum-value-of-x-000} +The (non-normalized) maximum allowable value of the evaluated table after interpolation +and extrapolation. Values greater than the maximum will be replaced by +the maximum. If this field is left blank, no limit is imposed. -The maximum allowable value of X. Values of X greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the data set determines the limit. +\paragraph{Field: Output Unit Type}\label{field-output-unit-type} -\paragraph{Field: Minimum Table Output}\label{field-minimum-table-output} - -The minimum allowable value of the table output. Values less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the \emph{Minimum Value of X} and \emph{Maximum Value of X} determines the limit. - -\paragraph{Field: Maximum Table Output}\label{field-maximum-table-output} - -The maximum allowable value of the table output. Values greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the \emph{Minimum Value of X} and \emph{Maximum Value of X} determines the limit. - -\paragraph{Field: Input Unit Type for X1}\label{field-input-unit-type-for-x1} - -This field is used to indicate the kind of units that may be associated with the x values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Value of X and Maximum Value of X. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Temperature -\item - VolumetricFlow -\item - MassFlow -\item - Distance -\item - Power -\end{itemize} - -\paragraph{Field: Output Unit Type}\label{field-output-unit-type-000} - -This field is used to indicate the kind of units that may be associated with the output values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Curve Output and Maximum Curve Output. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. +This field is used to indicate the kind of units that may be associated +with the output values. It is used by interfaces or input editors (e.g., IDF Editor) to display the +appropriate SI and IP units for the Minimum Output and Maximum Output. +If none of these options are appropriate, select \emph{Dimensionless} +which will have no unit conversion. Options are: \begin{itemize} -\item - Dimensionless -\item - Capacity -\item - Power + \tightlist + \item + \emph{Dimensionless} + \item + \emph{Capacity} + \item + \emph{Power} \end{itemize} -\paragraph{Field: Normalization Reference}\label{field-normalization-reference} - -The normalization point for the data set. This field provides a method for automatically normalizing a set of data. Equipment performance data is typically normalized based on a specific operating condition. Both the output values and minimum/maximum curve limits are normalized. This normalization can be performed simply by entering the data at the reference point. If this field is left blank or a 1 is entered, the data set is assumed to be in the correct format. - -\paragraph{Data Pairs}\label{data-pairs} - -The following inputs describe the data set. Data pairs are entered as X and Output pairs where X is the independent variable (i.e., x in the equation above) and Output is the dependent variable (i.e., Output in the equation above). Any number of data pairs may be entered, however, a minimum number of data pairs must be entered and depends on the polynomial equation. Linear (1\(^{st}\) order), Quadratic (2\(^{nd}\) order), Cubic (3\(^{rd}\) order), Quartic (4\(^{th}\) order), BiQuadratic and QuadraticLinear polynomials require a minimum of 2, 3, 4, 5, 6 and 6 data pairs, respectively. This minimum requirement is for performing a regression analysis, not interpolating the tabular data. If a regression analysis is not performed (i.e., only table interpolation is used), these minimum requirements are not enforced. If a regression analysis is performed and these minimum requirements are not met, the simulation will revert to table interpolation. These fields may be repeated as many times as necessary to define the tabular data. - -\paragraph{Field: X Value \#n}\label{field-x-value-n} - -The value of the independent variable n (i.e., independent variable values for data 1 to number of data pairs). - -\paragraph{Field: Output Value \#n}\label{field-output-value-n} - -The value of the dependent variable n (i.e., dependent variable values for data 1 to number of data pairs). - -Following is an example input for a Table:OneIndependentVariable object: +\paragraph{Field: External File +Name}\label{field-external-file-name} + +The name of an external CSV file that represents the tabular data. This +file should be formatted such that the data for this particular output +is ordered according to the order of the corresponding independent +variables. For example, for three independent variables (\texttt{iv1}, +\texttt{iv2}, \texttt{iv3}) with 3, 2, and 4 values respectively. The +output values (\texttt{out{[}iv1{]}{[}iv2{]}{[}iv3{]}}) should be +ordered as: + +\begin{longtable}[]{@{}llll@{}} +\toprule +\texttt{iv1} & \texttt{iv2} & \texttt{iv3} & +\texttt{output}\tabularnewline +\midrule +\endhead +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}1{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}1{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}1{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}1{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}1{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}1{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}1{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}1{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}2{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}2{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}2{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}2{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}2{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}2{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}2{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}2{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}3{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}3{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}3{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}3{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}3{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}3{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}3{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}3{]}{[}2{]}{[}4{]}}\tabularnewline +\bottomrule +\end{longtable} + +Alternatively, the output may be defined using the \emph{Output Value +\textless{}x\textgreater{}} fields below. + +\paragraph{Field: External File Column +Number}\label{field-external-file-column-number} + +The column number (starting at 1) in the CSV file corresponding to this +output. + +\paragraph{Field: External File Starting Row +Number}\label{field-external-file-starting-row-number} + +The row number (starting at 1) in the CSV file where the data for this +output begins. If there are not enough rows of data to fill out the full +grid of data an error will be presented to the user. + +\paragraph{Output Value +\textless{}x\textgreater{}}\label{output-value-x} + +If not reading from an external file, this field is repeated to capture +the full set of output data in the table (if not otherwise defined in an +external file). The data for this particular output is ordered according +to the order of the corresponding independent variables. For example, +for three independent variables (\texttt{iv1}, \texttt{iv2}, +\texttt{iv3}) with 3, 2, and 4 values respectively. The output values +(\texttt{out{[}iv1{]}{[}iv2{]}{[}iv3{]}}) should be ordered as: + +\begin{longtable}[]{@{}llll@{}} +\toprule +\texttt{iv1} & \texttt{iv2} & \texttt{iv3} & +\texttt{output}\tabularnewline +\midrule +\endhead +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}1{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}1{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}1{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}1{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}1{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}1{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}1{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}1{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}2{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}2{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}2{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}2{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}2{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}2{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}2{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}2{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}3{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}3{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}3{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}3{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}3{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}3{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}3{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}3{]}{[}2{]}{[}4{]}}\tabularnewline +\bottomrule +\end{longtable} + +\subsubsection{Example IDF}\label{example-idf} \begin{lstlisting} - -Table:OneIndependentVariable, - WindACCoolCapFFF, !- Name - Linear, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Type - 0, !- Minimum Value of X1, - 1.5, !- Maximum Value of X1, - 0.8, !- Minimum Table Output - 1.1, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Output Unit Type - , !- Normalization Point - 0,0.8, !- X Value #1, Output Value #1 - 1.5,1.1; !- X Value #2, Output Value #2 +Table:Lookup, + HPACCoolCapFT, !- Name + HPACCoolCapFT_IndependentVariableList, !- Independent Variable List Name + AutomaticWithDivisor, !- Normalization Method + , !- Normalization Divisor + 0, !- Minimum Output + 40000, !- Maximum Output + Dimensionless, !- Output Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 24421.69383, 22779.73113, 21147.21662, 19794.00525, 19524.15032, 18178.81244, 16810.36004, + 25997.3589, 24352.1562, 22716.4017, 21360.49033, 21090.0954, 19742.05753, 18370.84513, + 28392.31868, 26742.74198, 25102.61348, 23743.0571, 23471.93318, 22120.2503, 20745.3119, + 29655.22876, 28003.546, 26361.31143, 25000, 24728.52506, 23375.08713, 21998.35468, + 31094.97495, 29441.02425, 27796.52175, 26433.32038, 26161.46745, 24806.13958, 23427.47518, + 33988.3473, 32330.1846, 30681.4701, 29314.75872, 29042.2038, 27683.36592, 26301.11353; \end{lstlisting} -\subsubsection{Outputs}\label{outputs-022} - -\paragraph{Performance Curve Output Value {[]}}\label{performance-curve-output-value-000} - -The current value of the performance table. Performance curves and tables use the same output variable. This value is averaged over the time step being reported. Inactive or unused performance curves will show a value of -999 (e.g., equipment is off, a specific performance curve is not required for this aspect of the equipment model at this time step, etc.). This value means that the performance curve was not called during the simulation and, therefore, not evaluated. This inactive state value is only set at the beginning of each environment. When averaging over long periods of time, this inactive state value may skew results. In this case, use a detaled reporting frequency (ref. Output:Variable object) to view results at each HVAC time step. - -\paragraph{Performance Curve Input Variable 1 Value {[]}}\label{performance-curve-input-variable-1-value} - -The current value of the independent variable passed to the performance curve. This value is averaged over the time step being reported. - -HVAC,Average,Performance Curve Output Value {[]} - -HVAC,Average,Performance Curve Input Variable 1 Value {[]} - -\subsection{Table:TwoIndependentVariables}\label{tabletwoindependentvariables} - -Input for the data table consists of a table name, the curve type, the interpolation method, and the data pairs representing the polynomial equation. Optional inputs for minimum and maximum values for the independent variable, and curve minimum and maximum may be used to limit the output of the table (e.g., limit extrapolation) when evaluating the regression curve instead of the tabular data. The polynomial equations currently represented by this table object are: - -\begin{equation} -BiQuadratic\,\,Curve:\,\,\,\,Output = {C_1} + {C_2}x + {C_3}{x^2} + {C_4}y + {C_5}{y^2} + {C_6}xy -\end{equation} - -\begin{equation} -QuadraticLinear\,\,Curve:\,\,\,\,Output = {C_1} + {C_2}x + {C_3}{x^2} + {C_4}y + {C_5}xy + {C_6}{x^2}y -\end{equation} - -\subsubsection{Inputs}\label{inputs-1-029} - -\paragraph{Field: Name}\label{field-name-1-028} - -A unique user assigned name for an instance of a performance table. When a table is used, it is referenced by this name. The name of this table object may be used anywhere a valid performance curve object is allowed. - -\paragraph{Field: Curve Type}\label{field-curve-type-1} - -The form of the polynomial equation used to represent the tabular data. Choices are \emph{BiQuadratic} and \emph{QuadraticLinear}. This field is required when the next field, Interpolation Method, is set to \emph{EvaluateCurveToLimits}, where this input infers the polynomial order (or degree) used for curve fitting (a minimum of 6 data pairs are required). If the next field is set to \emph{LagrangeInterpolationLinearExtrapolation}, this field determines the number of interpolation points. If left blank, the number of interpolation points is set to 4. In a few cases, this field is used to determine if this table object is representative of the type of performance table (curve) allowed for a particular application (i.e., if this type of polynomial is allowed to be used as the curve type for other objects). - -\paragraph{Field: Interpolation Method}\label{field-interpolation-method-1} - -The method used to evaluate the tabular data. Choices are \emph{LinearInterpolationOfTable, LagrangeInterpolationLinearExtrapolation,} and \emph{EvaluateCurveToLimits}. When \emph{LinearInterpolationOfTable} is selected, the data entered is evaluated within the limits of the data set and the following fields are used only within the boundary of the table limits (i.e., are only used to limit interpolation). A complete data set is required. For each X variable, entries must include all Y variables and associated curve output (i.e., a complete table, no gaps or missing data). Extrapolation of the data set is not allowed. When Lagrange\emph{InterpolationLinearExtrapolation} is selected, a polynomial interpolation routine is used within the table boundaries along with linear extrapolation. Given the valid equations above, the polynomial order is fixed at 2 which infers that 3 data points will be used for interpolation. When \emph{EvaluateCurveToLimits} is selected, the coefficients (i.e., C in the equations above) of the polynomial equation are calculated and used to determine the table output within the limits specified in the following fields. If the following fields are not entered, the limits of the data set are used. A complete table is not required when using this method, however, a minimum number of data is required to perform the regression analysis. The minimum number of data pairs required for this choice is 6 data pairs for both bi-quadratic and quadratic-linear curve types. If insufficient data is provided, the simulation reverts to interpolating the tabular data. The performance curve is written to the eio file when the output diagnostics flag DisplayAdvancedVariables is used (ref. \hyperref[outputdiagnostics]{Output:Diagnostics}, DisplayAdvancedVariables). - -When the input data are optical properties, the LinearInterpolationOfTable choice is forced. - -\paragraph{Field: Minimum Value of X}\label{field-minimum-value-of-x-1-000} - -The minimum allowable value of X. Values of X less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the data set determines the limit. - -\paragraph{Field: Maximum Value of X}\label{field-maximum-value-of-x-1-000} - -The maximum allowable value of X. Values of X greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the data set determines the limit. - -\paragraph{Field: Minimum Value of Y}\label{field-minimum-value-of-y-000} - -The minimum allowable value of Y. Values of Y less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the data set determines the limit. - -\paragraph{Field: Maximum Value of Y}\label{field-maximum-value-of-y-000} - -The maximum allowable value of Y. Values of Y greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the data set determines the limit. - -\paragraph{Field: Minimum Table Output}\label{field-minimum-table-output-1} - -The minimum allowable value of the table output. Values less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the \emph{Minimum Value of X and Y} and \emph{Maximum Value of X and Y} determines the limit. - -\paragraph{Field: Maximum Table Output}\label{field-maximum-table-output-1} - -The maximum allowable value of the table output. Values greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method}. If this field is left blank, the \emph{Minimum Value of X and Y} and \emph{Maximum Value of X and Y} determines the limit. - -\paragraph{Field: Input Unit Type for X}\label{field-input-unit-type-for-x-000} - -This field is used to indicate the kind of units that may be associated with the X values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Value of X and Maximum Value of X. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Temperature -\item - VolumetricFlow -\item - MassFlow -\item - Distance -\item - Power -\item - Angle -\end{itemize} - -\paragraph{Field: Input Unit Type for Y}\label{field-input-unit-type-for-y-000} - -This field is used to indicate the kind of units that may be associated with the Y values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Value of Y and Maximum Value of Y. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Temperature -\item - VolumetricFlow -\item - MassFlow -\item - Distance -\item - Power -\item - Wavelength -\end{itemize} - -\paragraph{Field: Output Unit Type}\label{field-output-unit-type-1-000} - -This field is used to indicate the kind of units that may be associated with the output values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Curve Output and Maximum Curve Output. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Capacity -\item - Power -\end{itemize} - -\paragraph{Field: Normalization Reference}\label{field-normalization-reference-1} - -The normalization point for the data set. This field provides a method for automatically normalizing a set of data. Equipment performance data is typically normalized based on a specific operating condition. Both the output values and minimum/maximum curve limits are normalized as applicable. This normalization can be performed simply by entering the data at the reference point. If this field is left blank or a 1 is entered, the data set is assumed to be in the correct format. - -\paragraph{Field: External File Name}\label{field-external-file-name} - -The name of an external file that represents the tabular data. This file would include all data after the Output Unit Type field below starting with the same format as idf: X1, Y1, Z1, X2, Y2, Z2, ..., Xn, Yn, Zn, and continuing until all input and output values have been entered. The tabular data may use either comma, space or tab delimited format. The field should include a full path with file name, for best results. The field must be \textless{} = 100 characters. The file name must not include commas or an exclamation point. A relative path or a simple file name should work with version 7.0 or later when using EP-Launch even though EP-Launch uses temporary directories as part of the execution of EnergyPlus. If using RunEPlus.bat to run EnergyPlus from the command line, a relative path or a simple file name may work if RunEPlus.bat is run from the folder that contains EnergyPlus.exe. - -When the External File Name is entered, the following input fields are ignored. - -\paragraph{Data Pairs}\label{data-pairs-1} - -The following inputs describe the data set. Data pairs are entered as X, Y and Output pairs where X and Y are the independent variables (i.e., x and y in the equations above) and Output is the dependent variable (i.e., Output in the equation above). Any number of data pairs may be entered, however, a minimum number of data pairs must be entered and depends on the polynomial equation. BiQuadratic and QuadraticLinear (2\(^{nd}\) order with 2 independent variables) require a minimum of 6 data pairs. This minimum requirement is for performing a regression analysis, not interpolating the tabular data. If a regression analysis is not performed (i.e., only table interpolation is used), these minimum requirements are not enforced. If a regression analysis is performed and these minimum requirements are not met, the simulation will revert to table interpolation. These fields may be repeated as many times as necessary to define the tabular data. - -\paragraph{Field: X Value \#n}\label{field-x-value-n-1} - -The value of the first independent variable n (i.e., first independent variable values for data pair 1 to number of data pairs). - -\paragraph{Field: Y Value \#n}\label{field-y-value-n} - -The value of the second independent variable n (i.e., second independent variable values for data pair 1 to number of data pairs). - -\paragraph{Field: Output Value \#n}\label{field-output-value-n-1} - -The value of the dependent variable n (i.e., dependent variable values for data pair 1 to number of data pairs). - -Following is an example input for a Table:TwoIndependentVariable object: +\subsubsection{Outputs}\label{outputs} + +\paragraph{Performance Curve Output Value +{[}{]}}\label{performance-curve-output-value} + +The current value of the performance table. Performance curves and +tables use the same output variable. This value is averaged over the +time step being reported. Inactive or unused performance curves will +show a value of -999 (e.g., equipment is off, a specific performance +curve is not required for this aspect of the equipment model at this +time step, etc.). This value means that the performance curve was not +called during the simulation and, therefore, not evaluated. This +inactive state value is only set at the beginning of each environment. +When averaging over long periods of time, this inactive state value may +skew results. In this case, use a detailed reporting frequency (ref. +Output:Variable object) to view results at each HVAC time step. + +\paragraph{Performance Curve Input Variable +\textless{}x\textgreater{} Value +{[}{]}}\label{performance-curve-input-variable-x-value} + +\subsection{Table:IndependentVariableList}\label{tableindependentvariablelist} + +A list of Table:IndependentVariable references that define the size and +dimensions of the data for one or more Table:Lookup objects. The order +of this list defines the order that the tabular data must be defined. +The output values in the Table:Lookup associated with this list will +list the output in an order cycling through the last item in the list +first, and then the second to last, and so on with the the first item +cycling last. For example, for three independent variables +(\texttt{iv1}, \texttt{iv2}, \texttt{iv3}) with 3, 2, and 4 values +respectively. The output values +(\texttt{out{[}iv1{]}{[}iv2{]}{[}iv3{]}}) should be ordered as: + +\begin{longtable}[]{@{}llll@{}} +\toprule +\texttt{iv1} & \texttt{iv2} & \texttt{iv3} & +\texttt{output}\tabularnewline +\midrule +\endhead +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}1{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}1{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}1{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}1{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}1{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}1{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}1{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}1{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}2{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}2{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}2{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}2{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}2{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}2{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}2{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}2{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}3{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}3{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}3{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}3{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}3{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}3{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}3{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}3{]}{[}2{]}{[}4{]}}\tabularnewline +\bottomrule +\end{longtable} + +\subsubsection{Inputs}\label{inputs-1} + +\paragraph{Field: Name}\label{field-name-1} + +A unique user-assigned name for a list of independent variables. This +name is referenced by Table:Lookup objects. The name of this list object +may be referenced by any number of Table:Lookup objects. + +\paragraph{Field: Independent Variable \textless{}x\textgreater{} +Name}\label{field-independent-variable-x-name} + +This field is repeated for the number of independent variables that +define the dimensions of any corresponding Table:Lookup objects that +refer to this list. Each instance provides the name of a +Table:IndependentVariable object that defines the values and properties +of an independent variable. + +\subsubsection{Example IDF}\label{example-idf-1} \begin{lstlisting} - -Table:TwoIndependentVariables, - CCOOLEIRFT, !- Name - BiQuadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Type - 5.0, !- Minimum Value of x, - 60.0, !- Maximum Value of x, - 5.0, !- Minimum Value of y, - 70.0, !- Maximum Value of y, - 0.01, !- Minimum Table Output - 0.5, !- Maximum Table Output - Temperature, !- Input Unit Type for x - Temperature, !- Input Unit Type for y - Dimensionless, !- Output Unit Type - 0.258266502, !- Normalization Point - 17.2222222,18.3333333,0.18275919, !-X Value #1,Y Value #1,Output #1 - 17.2222222,23.8888889,0.207383768, !-X Value #2,Y Value #2,Output #2 - 17.2222222,29.4444444,0.237525541, !-X Value #3,Y Value #3,Output #3 - 17.2222222,35,0.274217751, !-X Value #4,Y Value #4,Output #4 - 17.2222222,40.5555556,0.318548624, !-X Value #5,Y Value #5,Output #5 - 17.2222222,46.1111111,0.374560389, !-X Value #6,Y Value #6,Output #6 - 19.4444444,18.3333333,0.172982816, !-X Value #7,Y Value #7,Output #7 - 19.4444444,23.8888889,0.19637691, !-X Value #8,Y Value #8,Output #8 - 19.4444444,29.4444444,0.224789822, !-X Value #9,Y Value #9,Output #9 - 19.4444444,35,0.258266502, !-X Value #10,Y Value #10,Output #10 - 19.4444444,40.5555556,0.299896794, !-X Value #11,Y Value #11,Output #11 - 19.4444444,46.1111111,0.351242021, !-X Value #12,Y Value #12,Output #12 - 21.6666667,18.3333333,0.164081122, !-X Value #13,Y Value #13,Output #13 - 21.6666667,23.8888889,0.185603303, !-X Value #14,Y Value #14,Output #14 - 21.6666667,29.4444444,0.211709812, !-X Value #15,Y Value #15,Output #15 - 21.6666667,35,0.243492052, !-X Value #16,Y Value #16,Output #16 - 21.6666667,40.5555556,0.281757875, !-X Value #17,Y Value #17,Output #17 - 21.6666667,46.1111111,0.331185659; !-X Value #18,Y Value #18,Output #18 +Table:IndependentVariableList, + HPACCoolCapFT_IndependentVariableList, !- Name + HPACCoolCapFT_Tewb, !- Independent Variable 1 Name + HPACCoolCapFT_Todb; !- Independent Variable 2 Name \end{lstlisting} -\subsubsection{Outputs}\label{outputs-1-017} - -\paragraph{Performance Curve Output Value {[]}}\label{performance-curve-output-value-1} - -The current value of the performance table. Performance curves and tables use the same output variable. This value is averaged over the time step being reported. Inactive or unused performance curves will show a value of -999 (e.g., equipment is off, a specific performance curve is not required for this aspect of the equipment model at this time step, etc.). This value means that the performance curve was not called during the simulation and, therefore, not evaluated. This inactive state value is only set at the beginning of each environment. When averaging over long periods of time, this inactive state value may skew results. In this case, use a detaled reporting frequency (ref. Output:Variable object) to view results at each HVAC time step. - -\paragraph{Performance Curve Input Variable 1 Value {[]}}\label{performance-curve-input-variable-1-value-1} - -\paragraph{Performance Curve Input Variable 2 Value {[]}}\label{performance-curve-input-variable-2-value} +\subsection{Table:IndependentVariable}\label{tableindependentvariable} -The current value of the first and second independent variable passed to the performance curve. The order of the independent variables is in the same order as the model equation represented by this performance curve object. This value is averaged over the time step being reported. +Independent variables are used to define the size and dimensions of a +Table:Lookup object. -\begin{itemize} -\item - HVAC,Average,Performance Curve Output Value {[]} -\item - HVAC,Average,Performance Curve Input Variable 1 Value {[]} -\item - HVAC,Average,Performance Curve Input Variable 2 Value {[]} -\end{itemize} - -\subsection{Lookup Tables}\label{lookup-tables} - -Lookup tables are useful for determining the results of a nth order polynomial without the need to calculate the polynomial coefficients. The Lagrange method for interpolation is currently the only method available for polynomial interpolation. LinearInterpolationOfTable and EvaluateCurveToLimits may also be used. The multi-variable lookup table can represent from 1 to 5 independent variables and can interpolate these independent variables up to a 4\(^{th}\) order polynomial. The polynomial order is assumed to be the number of interpolation points (n) minus 1. Polynomial interpolation of tabular data takes place when the values of the independent variables are within the upper table boundary and at least n data points are available when approaching the lower table boundary for any independent variable. When any independent variable value is outside the table limits, linear extrapolation is used to predict the table result and is based on the two nearest data points in the table for that particular independent variable. - -\subsection{Table:MultiVariableLookup}\label{tablemultivariablelookup} - -Input for the multi-variable data table consists of a table name, the interpolation method, the number of points to be used for interpolation, an optional external file name, and, if an external file name is not entered, the tabular data. Optional inputs for minimum and maximum values for the independent variable, and curve minimum and maximum may be used to limit the output of the table (e.g., limit extrapolation). - -\subsubsection{Inputs}\label{inputs-2-027} - -\paragraph{Field: Name}\label{field-name-2-026} +\subsubsection{Inputs}\label{inputs-2} -A unique user assigned name for an instance of a lookup table. When a table is used, it is referenced by this name. The name of this table object may be used anywhere a valid performance curve object is allowed. +\paragraph{Field: Name}\label{field-name-2} -\paragraph{Field: Interpolation Method}\label{field-interpolation-method-2} +A unique user-assigned name for an independent variables. This name is +referenced by Table:IndependentVariableList objects. The name of this +object may be referenced by any number of Table:IndependentVariableList +objects. -The method used to evaluate the lookup table. The choices are \emph{LinearInterpolationOfTable, LagrangeInterpolationLinearExtrapolation, and EvaluateCurveToLimits}. When \emph{LinearInterpolationOfTable} is selected, the data entered is evaluated within the limits of the data set and the minimum/maximum value of x and output inputs are used only within the boundary of the table limits (i.e., are only used to limit interpolation). A complete data set is required. For each X variable, entries must include all Y variables and associated curve output (i.e., a complete table, no gaps or missing data). Extrapolation of the data set is not allowed. When \emph{LagrangeInterpolationLinearExtrapolation} is selected, the lookup table is evaluated using Lagrange's form of the interpolating polynomial. The order of the polynomial is inferred to be one less than the input in the Number of Interpolation Points field below. When \emph{EvaluateCurveToLimits} is selected, the coefficients (i.e., C in the equation above) of the polynomial equation are calculated and used to determine the table output within the limits specified in the following fields. If the minimum/maximum fields below are not entered, the limits of the data set are used. A complete table is not required when using this method, however, a minimum number of data is required to perform the regression analysis. The minimum number of data pairs required for this choice is 6 data pairs for both bi-quadratic and quadratic-linear curve types. If insufficient data is provided, the simulation reverts to interpolating the tabular data. The performance curve is written to the eio file when the output diagnostics flag DisplayAdvancedVariables is used (ref. \hyperref[outputdiagnostics]{Output:Diagnostics}, DisplayAdvancedVariables). A regression analysis may only be performed on lookup tables with one or two independent variables. +\paragraph{Field: Interpolation +Method}\label{field-interpolation-method} -\paragraph{Field: Number of Interpolation Points}\label{field-number-of-interpolation-points} - -This field specifies the number of data points to be used in the lookup table interpolation. The value specified in this field should be 1 greater than the order (or degree) of the polynomial used for interpolation. For example, if 2 is entered here, the polynomial is assumed to be first order where only 2 data points are required to calculate the table solution. If 3 is entered here, the polynomial is assumed to be second order and 3 data points would be required to calculate the table solution. Linear extrapolation is always used when the independent variable values are near the lower edge or outside the range of the table. The interpolation points selected are always the nearest data point greater than the independent variable with 1 or more values less than the independent variable. For example, if 3 interpolation points are used, the data point greater than the independent variable and 2 data points less than the independent variable are used to determine the table solution. If the independent variable exactly equals a table reference point, that value is used as the table solution. - -\paragraph{Field: Curve Type}\label{field-curve-type-2} - -The order of the polynomial used to represent the tabular data. Choices are \emph{Linear}, \emph{Quadratic}, \emph{Cubic}, \emph{Quartic, BiQuadratic, QuadraticLinear}. This field is used to determine if this table object is representative of the type of performance table (curve) allowed for a particular application (i.e., if this type of polynomial is allowed to be used as the curve type for other objects). This input also infers the polynomial order (or degree). - - -\paragraph{Field: Table Data Format}\label{field-table-data-format} - -The format specifier which determines the method used to read the lookup table. The only valid choice at this time is \emph{SingleLineIndependentVariableWithMatrix}. When \emph{SingleLineIndependentVariableWithMatrix} is selected, a free format is used as shown below. The format shown below assumes the output values are in ascending order for both independent variables 1 and 2. Tabular data are entered in 3 groups of data, the header, the independent variable values, and the tabular data matrix. A summary of the external file format is shown below. - -Key: - -\begin{itemize} -\item - IV = independent variable (i.e., the X1, or X2, etc) -\item - NIV = number of independent variables (i.e., number of values for X1, or X2, etc.) -\item - IVV = independent variable value (i.e., the value for X1, or X2, etc.) -\item - NIV1 = number of values for independent variable \#1 (i.e., X1) -\item - NIV2 = number of values for independent variable \#2 (i.e., X2) -\item - NIV3 = number of values for independent variable \#3 (i.e., X3) -\item - NIV4 = number of values for independent variable \#4 (i.e., X4) -\item - NIV5 = number of values for independent variable \#5 (i.e., X5) -\item - OV = output value -\end{itemize} - -\begin{lstlisting} -Header: Row 1: , , (only used if NIV>1), (only used if NIV>2), (only used if NIV>3), (only used if NIV>4) -\end{lstlisting} - -\begin{lstlisting} -Independent Variable Values: Row 2: where n = NIV1 (max = 10) Row 2a (row included only when NIV > 1): IVV1 to IVVn for IV2 where n = NIV2 (max = 10) Row 2b (row included only when NIV > 2): IVV1 to IVVn for IV3 where n = NIV3 (max = 10) Row 2c (row included only when NIV > 3): IVV1 to IVVn for IV4 where n = NIV4 (max = 10) Row 2d (row included only when NIV > 4): IVV1 to IVVn for IV5 where n = NIV5 (max = 10) -\end{lstlisting} - -\begin{lstlisting} -Tabular Data Matrix Format (repeat rows 3 and 4(1) 4(m) for each occurrence of a unique data pair for independent variable \#3, \#4, and \#5): -\end{lstlisting} - -\begin{lstlisting} -Row 3 (row included only when NIV > 2): IVVn for IV3, IVVn for IV4 (included only when NIV > 3), IVVn for IV5 (included only when NIV > 4), (where n = a unique value for the independent variable) -\end{lstlisting} - -\begin{lstlisting} -Row 4(1): OV1/1 to OVn/1 for each value of IV1 where n = NIV1 representing IV2(1) Row 4(2): OV1/2 to OVn/2 for each value of IV1 where n = NIV1 representing IV2(2) Row 4(3): OV1/3 to OVn/3 for each value of IV1 where n = NIV1 representing IV2(3) ... Row 4(m): OV1/m to OVn/m for each value of IV1 where n = NIV1 representing IV2(m) where m = NIV2 -\end{lstlisting} - -\paragraph{Field: External File Name}\label{field-external-file-name} - -The name of an external file that represents the tabular data. This file would include all data after the Output Unit Type field below starting with the number of independent variables and continuing until all input and output values have been entered. The tabular data may use either comma, space or tab delimited format. The field should include a full path with file name, for best results. The field must be \textless{} = 100 characters. The file name must not include commas or an exclamation point. A relative path or a simple file name should work with version 7.0 or later when using EP-Launch even though EP-Launch uses temporary directories as part of the execution of EnergyPlus. If using RunEPlus.bat to run EnergyPlus from the command line, a relative path or a simple file name may work if RunEPlus.bat is run from the folder that contains EnergyPlus.exe. - -\paragraph{Field: X1 Sort Order}\label{field-x1-sort-order} - -The choice field specifies the order of the lookup table data for the 1\(^{st}\) independent variable. Valid choices are \emph{Increasing} or \emph{Decreasing}. If increasing is selected, then the order of the data is from lowest value of the 1\(^{st}\) independent variable to highest. If decreasing is selected, then the order of the data is from highest value of the 1\(^{st}\) independent variable to lowest. - -\paragraph{Field: X2 Sort Order}\label{field-x2-sort-order} - -The choice field specifies the order of the lookup table data for the 2\(^{nd}\) independent variable. Valid choices are \emph{Ascending} or \emph{Descending}. If increasing is selected, then the order of the data is from lowest value of the 2\(^{nd}\) independent variable to highest. If decreasing is selected, then the order of the data is from highest value of the 2\(^{nd}\) independent variable to lowest. - -\paragraph{Normalization Reference}\label{field-normalization-reference-2} - -The normalization point for the data set. This field provides a method for automatically normalizing a set of data. Equipment performance data is typically normalized based on a specific operating condition. Both the output values and minimum/maximum curve limits are normalized as applicable. This normalization can be performed simply by entering the data at the reference point. If this field is left blank or a 1 is entered, the data set is assumed to be in the correct format. - -\paragraph{Field: Minimum Value of X1}\label{field-minimum-value-of-x1} - -The minimum allowable value of X1. Values of X1 less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. - -\paragraph{Field: Maximum Value of X1}\label{field-maximum-value-of-x1} - -The maximum allowable value of X1. Values of X1 greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. - -\paragraph{Field: Minimum Value of X2}\label{field-minimum-value-of-x2} - -The minimum allowable value of X2. Values of X2 less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. This field is only used when the number of independent variables is greater than 1. - -\paragraph{Field: Maximum Value of X2}\label{field-maximum-value-of-x2} - -The maximum allowable value of X2. Values of X2 greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. This field is only used when the number of independent variables is greater than 1. - -\paragraph{Field: Minimum Value of X3}\label{field-minimum-value-of-x3} - -The minimum allowable value of X3. Values of X3 less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. This field is only used when the number of independent variables is greater than 2. - -\paragraph{Field: Maximum Value of X3}\label{field-maximum-value-of-x3} - -The maximum allowable value of X3. Values of X3 greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. This field is only used when the number of independent variables is greater than 2. - -\paragraph{Field: Minimum Value of X4}\label{field-minimum-value-of-x4} - -The minimum allowable value of X4. Values of X4 less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. This field is only used when the number of independent variables is greater than 3. - -\paragraph{Field: Maximum Value of X4}\label{field-maximum-value-of-x4} - -The maximum allowable value of X4. Values of X4 greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. This field is only used when the number of independent variables is greater than 3. - -\paragraph{Field: Minimum Value of X5}\label{field-minimum-value-of-x5} - -The minimum allowable value of X5. Values of X5 less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. This field is only used when the number of independent variables is greater than 4. - -\paragraph{Field: Maximum Value of X5}\label{field-maximum-value-of-x5} - -The maximum allowable value of X5. Values of X5 greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. This field is only used when the number of independent variables is greater than 4. - -\paragraph{Field: Minimum Curve Output}\label{field-minimum-curve-output-000} - -The minimum allowable value of the evaluated curve. Values less than the minimum will be replaced by the minimum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. - -\paragraph{Field: Maximum Curve Output}\label{field-maximum-curve-output-000} - -The maximum allowable value of the evaluated curve. Values greater than the maximum will be replaced by the maximum. This field can only limit extrapolation when the \emph{Interpolation Method} is selected as \emph{EvaluateCurveToLimits or LagrangeInterpolationLinearExtrapolation}. This field can be used to limit interpolation using any \emph{Interpolation Method.} If this field is left blank, the data set determines the limit. - -\paragraph{Field: Input Unit Type for X1}\label{field-input-unit-type-for-x1-1} - -This field is used to indicate the kind of units that may be associated with the X1 values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Value of X1 and Maximum Value of X1. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Temperature -\item - VolumetricFlow -\item - MassFlow -\item - Distance -\item - Power -\end{itemize} - -\paragraph{Field: Input Unit Type for X2}\label{field-input-unit-type-for-x2} - -This field is used to indicate the kind of units that may be associated with the X2 values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Value of X2 and Maximum Value of X2. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Temperature -\item - VolumetricFlow -\item - MassFlow -\item - Distance -\item - Power -\end{itemize} - -\paragraph{Field: Input Unit Type for X3}\label{field-input-unit-type-for-x3} - -This field is used to indicate the kind of units that may be associated with the X3 values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Value of X3 and Maximum Value of X3. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Temperature -\item - VolumetricFlow -\item - MassFlow -\item - Distance -\item - Power -\end{itemize} - -\paragraph{Field: Input Unit Type for X4}\label{field-input-unit-type-for-x4} - -This field is used to indicate the kind of units that may be associated with the X4 values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Value of X4 and Maximum Value of X4. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Temperature -\item - VolumetricFlow -\item - MassFlow -\item - Distance -\item - Power -\end{itemize} - -\paragraph{Field: Input Unit Type for X5}\label{field-input-unit-type-for-x5} - -This field is used to indicate the kind of units that may be associated with the X5 values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Value of X5 and Maximum Value of X5. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Temperature -\item - VolumetricFlow -\item - MassFlow -\item - Distance -\item - Power -\end{itemize} - -\paragraph{Field: Output Unit Type}\label{field-output-unit-type-2-000} - -This field is used to indicate the kind of units that may be associated with the output values. It is used by IDF Editor to display the appropriate SI and IP units for the Minimum Curve Output and Maximum Curve Output. The unit conversion is not applied to the coefficients. The available options are shown below. If none of these options are appropriate, select \textbf{Dimensionless} which will have no unit conversion. - -\begin{itemize} -\item - Dimensionless -\item - Capacity -\item - Power -\end{itemize} - -\subsection{Data Input Format}\label{data-input-format} - -The following inputs describe the data set. These values may also be placed in an external file starting with Field \#1. If an external file name is entered above, the following fields are not used. Data are entered in a specific order according to the number and quantity of independent variables. The data input format is described here in 3 groups as Header, Independent Variable Values, and the Tabular Data. The header is always the first line in the data set and represents the number of independent variables followed by the number of values for each independent variable. The independent variable values are listed next and represent the values of each independent variable on a separate line. These values are only listed once at the top of the data set and are listed in ascending order. The number of independent variables, the first number in the header, specifies how many lines, or rows, make up this section of tabular data. The remaining lines are repeated as many times as necessary to completely describe the tabular data. The values of independent variables 3 n are listed on a single line followed by a matrix of data that represent the table output corresponding to independent variables 1 and 2. +Method used to determine the value of the table within the bounds of its +independent variables. The choices are: \begin{itemize} \tightlist \item - \textbf{Header:} -\end{itemize} - -Line 1: The first number specified is the number of independent variables followed by the number of variables for each independent variable. - -\begin{itemize} -\tightlist +\emph{Linear} \item - \textbf{Independent Variable Values:} +\emph{Cubic} \end{itemize} -Line 1: the n values for the first independent variable as specified in the header. +\paragraph{Field: Extrapolation +Method}\label{field-extrapolation-method} -Line 2: the n values for the second independent variable as specified in the header if the number of independent variables is greater than 1. This line is not required if the number of independent variables is less than 2. - -Line 3: the n values for the third independent variable as specified in the header if the number of independent variables is greater than 2. This line is not required if the number of independent variables is less than 3. - -Line 4: the n values for the fourth independent variable as specified in the header if the number of independent variables is greater than 3. This line is not required if the number of independent variables is less than 4. - -Line 5: the n values for the fifth independent variable as specified in the header if the number of independent variables is greater than 4. This line is not required if the number of independent variables is less than 5. +Method used to determine the value of the table beyond the bounds of its +independent variables. The choices are: \begin{itemize} \tightlist \item - \textbf{Tabular Data:} -\end{itemize} - -Line 1: the values of the 3\(^{rd}\) through nth independent variables - -Line 2 m (where m-1 equals the number of variables for the second independent variable): the tabular data corresponding to the 1\(^{st}\) independent variable (the number of inputs on this line equals the number of values for 1\(^{st}\) independent variable), the m\(^{th})\) values for the 2\(^{nd}\) independent variable and corresponding to the values for the 3\(^{rd}\) nth independent variables (see Line 1 above for Tabular Data). - -Three examples are provided here as this can be difficult to describe in text. This example assumes that the table data are listed in ascending order from lowest to highest. - -\begin{itemize} -\item - \textbf{One Independent Variable:} -\item - \textbf{Header:} -\end{itemize} - -1, 5, (1 independent variable with 5 values for the single independent variable) - -\begin{itemize} -\tightlist +\emph{Constant}: Value is the same as the interpolated value at the +closest point along the table's boundary. \item - \textbf{Independent Variable Values:} +\emph{Linear}: Value is linearly extrapolated in all dimensions from +the interpolated value at the closest point along the table's +boundary. +%\item +%\emph{Unavailable}: The object using this curve is assumed to be not +%operable outside of the provided range of values. This will override +%any corresponding availability schedules of applicable equipment. \end{itemize} -70, 72, 74, 76, 78, (the five values for the single independent variable, these values are always listed in ascending order) +\paragraph{Field: Minimum Value}\label{field-minimum-value} + +The minimum allowable value. Table:Lookup output for values between this +value and the lowest value provided for this independent variable will +be extrapolated according to the extrapolation method. Below this value, +extrapolation is held constant and a warning will be issued. If +extrapolation method is ``Unavailable'', the corresponding equipment +will be disabled for all values less than the lowest independent +variable value, regardless of the minimum value set here. + +\paragraph{Field: Maximum Value}\label{field-maximum-value} + +The maximum allowable value. Table:Lookup output for values between this +value and the highest value provided for this independent variable will +be extrapolated according to the extrapolation method. Above this value, +extrapolation is held constant and a warning will be issued. If +extrapolation method is ``Unavailable'', the corresponding equipment +will be disabled for all values greater than the highest independent +variable value, regardless of the maximum value set here. + +\paragraph{Field: Normalization Reference Value}\label{field-normalization--reference-value} + +The value of this independent variable where nominal or rated output is +defined. This will be used to normalize the data so that the outputs of +any Table:Lookup at this value (and the corresponding Normalization +Reference Values of the other independent variables described in the same +Table:IndependentVariableList object) are equal to 1.0. If left blank, no +normalization will be calculated. If this field is left blank the Normalization +Reference Value of all other Table:IndependentVariable objects within the same +Table:IndependentVariableList must also be left blank. + +\paragraph{Field: Unit Type}\label{field-unit-type} + +This field is used to indicate the kind of units that may be associated +with this independent variable. It is used by interfaces or input editors (e.g., IDF Editor) to display the +appropriate SI and IP units for the Minimum Value and Maximum Value. The +available options are shown below. If none of these options are +appropriate, select \emph{Dimensionless} which will have no unit +conversion. \begin{itemize} \tightlist \item - \textbf{Tabular Data:} -\end{itemize} - -0.1, 0.3, 0.5, 0.7, 0.9; (the table values associated with the independent variable values listed previously Note: these values may be read in ascending or descending order based on the input in the X1 Sort Order field above). Example: If X1 Sort Order is ascending, 0.1 corresponds to the value of 70 for the first independent variable. If X1 Sort Order is descending, then 0.1 corresponds to the value of 78 for the first independent variable. The use of ascending order provides a direct correlation to inputs for the Independent Variable Values group above. - -\begin{itemize} +Dimensionless \item - \textbf{Two Independent Variables:} +Temperature \item - \textbf{Header:} -\end{itemize} - -2, 5, 6, (2 independent variables with 5 and 6 values for the 1\(^{st}\) and 2\(^{nd}\) independent variables, respectively) - -\begin{itemize} -\tightlist +VolumetricFlow \item - \textbf{Independent Variable Values:} -\end{itemize} - -70, 72, 74, 76, 78, (the five values for the 1st independent variable, these values are always listed in ascending order) - -32, 45, 68, 81, 94, 107, (the six values for the 2nd independent variable, these values are always listed in ascending order) - -\begin{itemize} -\tightlist -\item - \textbf{Tabular Data:} -\end{itemize} - -0.1, 0.3, 0.5, 0.7, 0.9, (the first five table values associated with each value of the 1\(^{st}\) independent variable and the first value (32) of the second independent variable listed previously Note: these values may be listed in ascending or descending order based on the input in the X1 Sort Order field above. Each of these rows may also be listed in ascending or descending order based on the input in the X2 Sort Order field above). - -0.2, 0.4, 0.6, 0.8, 1.0, (the second five table values associated with each value of the 1\(^{st}\) independent variable and the second value (45) of the second independent variable listed previously). - -0.3, 0.5, 0.7, 0.9, 1.1, (the third five table values associated with each value of the 1\(^{st}\) independent variable and the third value (68) of the second independent variable listed previously). - -0.4, 0.6, 0.8, 1.0, 1.2, (the fourth five table values associated with each value of the 1\(^{st}\) independent variable and the fourth value (81) of the second independent variable listed previously). - -0.5, 0.7, 0.9, 1.1, 1.3, (the fifth five table values associated with each value of the 1\(^{st}\) independent variable and the fifth value (94) of the second independent variable listed previously). - -0.6, 0.8, 1.0, 1.2, 1.4; (the sixth five table values associated with each value of the 1\(^{st}\) independent variable and the sixth value (107) of the second independent variable listed previously). - -\begin{itemize} -\item - \textbf{Three Independent Variables:} -\item - \textbf{Header:} -\end{itemize} - -3, 5, 6, 2, (3 independent variables with 5, 6 and 2 values for the 1\(^{st}\) , 2\(^{nd}\), and 3\(^{rd}\) independent variables) - -\begin{itemize} -\tightlist +MassFlow \item - \textbf{Independent Variable Values:} -\end{itemize} - -70, 72, 74, 76, 78, (the five values for the 1st independent variable, these values are always listed in ascending order) - -32, 45, 68, 81, 94, 107, (the six values for the 2nd independent variable, these values are always listed in ascending order) - -15.5, 45.5, (the two values for the 3\(^{rd}\) independent variable, these values are always listed in ascending order) - -\begin{itemize} -\tightlist +Distance \item - \textbf{Tabular Data:} +Power \end{itemize} -15.5, (the first value for the 3\(^{rd}\) independent variable values for the 4\(^{th}\) and 5\(^{th}\) independent variable are also listed on this line if they are used) - -0.1, 0.3, 0.5, 0.7, 0.9, (the table values associated with each value of the 1\(^{st}\) independent variable, the first value (32) of the second independent variable, and the first value (15.5) of the 3\(^{rd}\) independent variable). Note: these values may be listed in ascending or descending order based on the input in the X1 Sort Order field above). - -0.2, 0.4, 0.6, 0.8, 1.0, (the table values associated with each value of the 1\(^{st}\) independent variable, the second value (45) of the second independent variable, and the first value (15.5) of the 3\(^{rd}\) independent variable). - -0.3, 0.5, 0.7, 0.9, 1.1, (the table values associated with each value of the 1\(^{st}\) independent variable, the third value (68) of the second independent variable, and the first value (15.5) of the 3\(^{rd}\) independent variable). - -0.4, 0.6, 0.8, 1.0, 1.2, (the table values associated with each value of the 1\(^{st}\) independent variable, the fourth value (81) of the second independent variable, and the first value (15.5) of the 3\(^{rd}\) independent variable). - -0.5, 0.7, 0.9, 1.1, 1.3, (the table values associated with each value of the 1\(^{st}\) independent variable, the fifth value (94) of the second independent variable, and the first value (15.5) of the 3\(^{rd}\) independent variable). - -0.6, 0.8, 1.0, 1.2, 1.4. (the table values associated with each value of the 1\(^{st}\) independent variable, the sixth value (107) of the second independent variable, and the first value (15.5) of the 3\(^{rd}\) independent variable). - -45.5, (the second value for the 3\(^{rd}\) independent variable values for the 4\(^{th}\) and 5\(^{th}\) independent variable are also listed on this line if they are used) - -1.1, 1.3, 1.5, 1.7, 1.9, (the table values associated with each value of the 1\(^{st}\) independent variable, the first value (32) of the second independent variable, and the second value (45.5) of the 3\(^{rd}\) independent variable). - -1.2, 1.4, 1.6, 1.8, 2.0, (the table values associated with each value of the 1\(^{st}\) independent variable, the second value (45) of the second independent variable, and the second value (45.5) of the 3\(^{rd}\) independent variable). - -1.3, 1.5, 1.7, 1.9, 2.1, (the table values associated with each value of the 1\(^{st}\) independent variable, the third value (68) of the second independent variable, and the second value (45.5) of the 3\(^{rd}\) independent variable). - -1.4, 1.6, 1.8, 2.0, 2.2, (the table values associated with each value of the 1\(^{st}\) independent variable, the fourth value (81) of the second independent variable, and the second value (45.5) of the 3\(^{rd}\) independent variable). - -1.5, 1.7, 1.9, 2.1, 2.3, (the table values associated with each value of the 1\(^{st}\) independent variable, the fifth value (94) of the second independent variable, and the second value (45.5) of the 3\(^{rd}\) independent variable). - -1.6, 1.8, 2.0, 2.2, 2.4. (the table values associated with each value of the 1\(^{st}\) independent variable, the sixth value (107) of the second independent variable, and the second value (45.5) of the 3\(^{rd}\) independent variable). - -Note: The following fields define the tabular data as described in the previous examples. These field values depend on the number and quantity of independent variables used in the table. The tabular data can be entered in the following fields or entered using an external file. These fields are echoed to the eio file as a check when the output diganostics flag DisplayAdvancedVariables is used (ref. \hyperref[outputdiagnostics]{Output:Diagnostics}, DisplayAdvancedVariables). The normalization value is not included in the echoed values. - -\subsubsection{Field: Field \#1 (NumberOfIndependentVariables)}\label{field-field-1-numberofindependentvariables} - -The number of independent variables used in the lookup table. This number (n) can range from 1 to 5. The number entered here will define the following n fields as the number of values for these n independent variables. This is the first number in the external file as shown in the previous examples. - -\subsubsection{Field: Field \#2 (NumberOfValuesForIndependentVariable1)}\label{field-field-2-numberofvaluesforindependentvariable1} - -The number of values for the first independent variable. This is the second number in the tabular data and resides on the same line as Field \#1. - -\subsubsection{Field: Field \#3 (DeterminedByPreviousFields)}\label{field-field-3-determinedbypreviousfields} - -The value specified in this field is dependent on the number entered in Field \#1. If a 1 is entered in Field \#1, this field represents the first value of the single independent variable. The number of values entered in Field \#3-\#n will be equal to the number entered in Field \#2. Values entered in fields \#3-\#n are always entered in increasing value (ascending order). If a number greater than 1 is entered in Field \#1, this field represents the number of values for the second independent variable. - -\subsubsection{Field: Field \#4}\label{field-field-4} - -The value specified in this field is dependent on the number entered in Field \#1. If a 1 is entered in Field \#1, this field represents the second value of the single independent variable. The number of values entered in Field \#3-\#n will be equal to the number entered in Field \#2. Values entered in fields \#3-\#n are always entered in increasing value (ascending order). If a 2 is entered in Field \#1, this field represents the first value of the first independent variable. If a number greater than 2 is entered in Field \#1, this field represents the number of values for the third independent variable. - -\textless{}reduced for brevity\textgreater{} - -Following is an example input for a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object: +\paragraph{Field: External File +Name}\label{field-external-file-name-1} + +The name of an external CSV file that represents the tabular data. This +file should be formatted such that the data for any output is ordered +according to the order of the corresponding independent variables. For +example, for three independent variables (\texttt{iv1}, \texttt{iv2}, +\texttt{iv3}) with 3, 2, and 4 values respectively. The output values +(\texttt{out{[}iv1{]}{[}iv2{]}{[}iv3{]}}) should be ordered as: + +\begin{longtable}[]{@{}llll@{}} +\toprule +\texttt{iv1} & \texttt{iv2} & \texttt{iv3} & +\texttt{output}\tabularnewline +\midrule +\endhead +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}1{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}1{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}1{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}1{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}1{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}1{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}1{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}1{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}1{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}2{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}2{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}2{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}2{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}2{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}2{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}2{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}2{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}2{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}3{]}{[}1{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}3{]}{[}1{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}3{]}{[}1{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}3{]}{[}1{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}3{]}{[}2{]}{[}1{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}2{]}} & +\texttt{out{[}3{]}{[}2{]}{[}2{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}3{]}} & +\texttt{out{[}3{]}{[}2{]}{[}3{]}}\tabularnewline +\texttt{iv1{[}3{]}} & \texttt{iv2{[}2{]}} & \texttt{iv3{[}4{]}} & +\texttt{out{[}3{]}{[}2{]}{[}4{]}}\tabularnewline +\bottomrule +\end{longtable} + +Independent variable values must appear in \textbf{ascending} order (an +error will be issued if this is not the case). + +Alternatively, the independent variables may be defined using the +\emph{Value \textless{}x\textgreater{}} fields below. + +\paragraph{Field: External File Column +Number}\label{field-external-file-column-number-1} + +The column number (starting at 1) in the CSV file corresponding to this +independent variable. As the values of the independent variables each +repeat over a defined cycle, EnergyPlus will only read unique values +from this column. EnergyPlus does not validate that the cycles are +repeating correctly. In fact, the same data can be read by only defining +each value once as it is first encountered: + +\begin{longtable}[]{@{}llll@{}} +\toprule +\texttt{iv1} & \texttt{iv2} & \texttt{iv3} & +\texttt{output}\tabularnewline +\midrule +\endhead +\texttt{iv1{[}1{]}} & \texttt{iv2{[}1{]}} & \texttt{iv3{[}1{]}} & +\texttt{out{[}1{]}{[}1{]}{[}1{]}}\tabularnewline +& & \texttt{iv3{[}2{]}} & +\texttt{out{[}1{]}{[}1{]}{[}2{]}}\tabularnewline +& & \texttt{iv3{[}3{]}} & +\texttt{out{[}1{]}{[}1{]}{[}3{]}}\tabularnewline +& & \texttt{iv3{[}4{]}} & +\texttt{out{[}1{]}{[}1{]}{[}4{]}}\tabularnewline +& \texttt{iv2{[}2{]}} & & +\texttt{out{[}1{]}{[}2{]}{[}1{]}}\tabularnewline +& & & \texttt{out{[}1{]}{[}2{]}{[}2{]}}\tabularnewline +& & & \texttt{out{[}1{]}{[}2{]}{[}3{]}}\tabularnewline +& & & \texttt{out{[}1{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}2{]}} & & & +\texttt{out{[}2{]}{[}1{]}{[}1{]}}\tabularnewline +& & & \texttt{out{[}2{]}{[}1{]}{[}2{]}}\tabularnewline +& & & \texttt{out{[}2{]}{[}1{]}{[}3{]}}\tabularnewline +& & & \texttt{out{[}2{]}{[}1{]}{[}4{]}}\tabularnewline +& & & \texttt{out{[}2{]}{[}2{]}{[}1{]}}\tabularnewline +& & & \texttt{out{[}2{]}{[}2{]}{[}2{]}}\tabularnewline +& & & \texttt{out{[}2{]}{[}2{]}{[}3{]}}\tabularnewline +& & & \texttt{out{[}2{]}{[}2{]}{[}4{]}}\tabularnewline +\texttt{iv1{[}3{]}} & & & +\texttt{out{[}3{]}{[}1{]}{[}1{]}}\tabularnewline +& & & \texttt{out{[}3{]}{[}1{]}{[}2{]}}\tabularnewline +& & & \texttt{out{[}3{]}{[}1{]}{[}3{]}}\tabularnewline +& & & \texttt{out{[}3{]}{[}1{]}{[}4{]}}\tabularnewline +& & & \texttt{out{[}3{]}{[}2{]}{[}1{]}}\tabularnewline +& & & \texttt{out{[}3{]}{[}2{]}{[}2{]}}\tabularnewline +& & & \texttt{out{[}3{]}{[}2{]}{[}3{]}}\tabularnewline +& & & \texttt{out{[}3{]}{[}2{]}{[}4{]}}\tabularnewline +\bottomrule +\end{longtable} + +\paragraph{Field: External File Starting Row +Number}\label{field-external-file-starting-row-number-1} + +The row number (starting at 1) in the CSV file where the data for this +independent variable begins. Any values in the same column below this +row are considered part of the range. + +\paragraph{Field: Value +\textless{}x\textgreater{}}\label{field-value-x} + +If not reading from an external file, this field is repeated to capture +the full set of values for this independent variable. These values must +be defined in \textbf{ascending} order (an error will be issued if this +is not the case). + +\subsubsection{Example IDF}\label{example-idf-2} \begin{lstlisting} - -Table:MultiVariableLookup, - HPACCoolCapFT, !- Name - LagrangeinterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - BiQuadratic, !- Interpolation Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format - , !- External File Name - ASCENDING, !- X1 Sort Order - ASCENDING, !- X2 Sort Order - 24999.9597049817, !- Normalization reference - 12.77778, !- Minimum Value of X1, - 23.88889, !- Maximum Value of X1, - 18.0, !- Minimum Value of X2, - 46.11111, !- Maximum Value of X2, - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - Dimensionless, !- Output Unit Type - 2, 6, 7, - 12.77778, 15, 18, 19.44448943, 21, 23.88889, - 18, 24, 30, 35, 36, 41, 46.11111, - 24421.69383, 25997.3589, 28392.31868, 29655.22876, 31094.97495, 33988.3473, - 22779.73113, 24352.1562, 26742.74198, 28003.546, 29441.02425, 32330.1846, - 21147.21662, 22716.4017, 25102.61348, 26361.31143, 27796.52175, 30681.4701, - 19794.00525, 21360.49033, 23743.0571, 25000, 26433.32038, 29314.75872, - 19524.15032, 21090.0954, 23471.93318, 24728.52506, 26161.46745, 29042.2038, - 18178.81244, 19742.05753, 22120.2503, 23375.08713, 24806.13958, 27683.36592, - 16810.36004, 18370.84513, 20745.3119, 21998.35468, 23427.47518, 26301.11353; +Table:IndependentVariable, + HPACCoolCapFT_Tewb, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 12.77778, !- Minimum Value + 23.88889, !- Maximum Value + 19.44449, !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 12.77778, !- Value 1 + 15.00000, !- Value 2 + 18.00000, !- Value 3 + 19.44449, !- Value 4 + 21.00000, !- Value 5 + 23.88889; !- Value 6 \end{lstlisting} - -\subsection{Lookup Table Outputs}\label{lookup-table-outputs} - -\subsubsection{Performance Curve Output Value {[]}}\label{performance-curve-output-value-2} - -The current value of the lookup table. Performance curves and tables use the same output variable. This value is averaged over the time step being reported. Inactive or unused performance curves will show a value of -999 (e.g., equipment is off, a specific performance curve is not required for this aspect of the equipment model at this time step, etc.). This value means that the performance curve was not called during the simulation and, therefore, not evaluated. This inactive state value is only set at the beginning of each environment. When averaging over long periods of time, this inactive state value may skew results. In this case, use a detailed reporting frequency (ref. \hyperref[outputvariable]{Output:Variable} object) to view results at each HVAC time step. - -\subsubsection{Performance Curve Input Variable 1(-N) Value {[]}}\label{performance-curve-input-variable-1-n-value-000} - -The current value of the nth independent variable passed to the performance curve. The order of the independent variables is in the same order as the model equation represented by this performance curve object. This value is averaged over the time step being reported. - -HVAC,Average,Performance Curve Output Value {[]} - -HVAC,Average,Performance Curve Input Variable 1 Value {[]} - -HVAC,Average,Performance Curve Input Variable 2 Value {[]} - -HVAC,Average,Performance Curve Input Variable 3 Value {[]} - -HVAC,Average,Performance Curve Input Variable 4 Value {[]} - -HVAC,Average,Performance Curve Input Variable 5 Value {[]} \ No newline at end of file diff --git a/doc/input-output-reference/src/overview/group-plant-equipment.tex b/doc/input-output-reference/src/overview/group-plant-equipment.tex index 02c2411e5b3..1cce86ee992 100644 --- a/doc/input-output-reference/src/overview/group-plant-equipment.tex +++ b/doc/input-output-reference/src/overview/group-plant-equipment.tex @@ -1837,7 +1837,7 @@ \subsubsection{Inputs}\label{inputs-5-021} \paragraph{Field: Electric Input to Cooling Output Ratio Function of Temperature Curve Name}\label{field-electric-input-to-cooling-output-ratio-function-of-temperature-curve-name-1} -The name of the Electric Input to Cooling Output Ratio Function of Temperature Curve. Valid curve object types are \hyperref[curvequadratic]{Curve:Quadratic} or \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables}. The performance curve (ref: Performance Curves) parameterizes the variation of the energy input to cooling output ratio (EIR) as a function of the leaving chilled water temperature and the leaving condenser water temperature. The EIR is the inverse of the COP. The output of this curve is multiplied by the reference EIR (inverse of the reference COP) to give the EIR at specific temperature operating conditions (i.e., at temperatures different from the reference temperatures). The curve should have a value of 1.0 at the reference temperatures and flow rates specified above. The biquadratic curve or the \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables} should be valid for the range of water temperatures anticipated for the simulation (otherwise the program issues warning messages). +The name of the Electric Input to Cooling Output Ratio Function of Temperature Curve. Valid curve object types are \hyperref[curvequadratic]{Curve:Quadratic} or \hyperref[tablelookup]{Table:Lookup}. The performance curve (ref: Performance Curves) parameterizes the variation of the energy input to cooling output ratio (EIR) as a function of the leaving chilled water temperature and the leaving condenser water temperature. The EIR is the inverse of the COP. The output of this curve is multiplied by the reference EIR (inverse of the reference COP) to give the EIR at specific temperature operating conditions (i.e., at temperatures different from the reference temperatures). The curve should have a value of 1.0 at the reference temperatures and flow rates specified above. The biquadratic curve or the \hyperref[tablelookup]{Table:Lookup} should be valid for the range of water temperatures anticipated for the simulation (otherwise the program issues warning messages). \paragraph{Field: Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type}\label{field-electric-input-to-cooling-output-ratio-function-of-part-load-ratio-curve-type} @@ -1847,10 +1847,10 @@ \subsubsection{Inputs}\label{inputs-5-021} The name of performance curve (ref: Performance Curves) that parameterizes the variation of the energy input ratio (EIR) as a function of the leaving condenser water temperature and the part-load ratio (EIRfTPLR). The form of this curve is based on the input for Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type. -For the type of LeavingCondenserWaterTemperature, the curve object type should be \hyperref[curvebicubic]{Curve:Bicubic} or \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables} that parameterizes +For the type of LeavingCondenserWaterTemperature, the curve object type should be \hyperref[curvebicubic]{Curve:Bicubic} or \hyperref[tablelookup]{Table:Lookup} that parameterizes the variation of the energy input to cooling output ratio (EIR) as a function of the leaving chilled water temperature and the leaving condenser water temperature. -For the type of Lift, the curve object type should be \hyperref[curvechillerpartloadwithlift]{Curve:ChillerPartLoadWithLift} or \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables} that parameterizes the variation of EIR +For the type of Lift, the curve object type should be \hyperref[curvechillerpartloadwithlift]{Curve:ChillerPartLoadWithLift} or \hyperref[tablelookup]{Table:Lookup} that parameterizes the variation of EIR as a function of the normalized fractional Lift, normalized Tdev and the PLR. Tdev is the difference between Leaving Chilled Water Temperature and Reference Chilled Water Temperature. Lift is the difference between the Leaving Condenser Water Temperature and Leaving Chilled Water Temperature. The EIR is the inverse of the COP, and the part-load ratio is the actual cooling load divided by the chiller's available cooling capacity. diff --git a/doc/input-output-reference/src/overview/group-radiative-convective-units.tex b/doc/input-output-reference/src/overview/group-radiative-convective-units.tex index 2ea1bdd3a3f..99800aacd71 100644 --- a/doc/input-output-reference/src/overview/group-radiative-convective-units.tex +++ b/doc/input-output-reference/src/overview/group-radiative-convective-units.tex @@ -169,15 +169,15 @@ \subsubsection{Outputs}\label{outputs-027} \paragraph{Baseboard Total Heating Rate {[}W{]}}\label{baseboard-total-heating-rate-w-000} -This is the actual convective heat addition rate of the baseboard to the zone in Watts.~ This value includes the heat convected to the zone air from the baseboard unit, the heat radiated to people in the zone from the baseboard unit, and the additional convection from surfaces within the zone that have been heated by radiation from the baseboard unit.~ This value will be different from (and almost always less than) the next field. +This is the actual convective heat addition rate of the baseboard to the zone in Watts.~ This value includes the heat convected to the zone air from the baseboard unit, the heat radiated to people in the zone from the baseboard unit, and the additional convection from surfaces within the zone that have been heated by radiation from the baseboard unit.~ This value will be different from (and almost always more than) the next field (convective heating rate). \paragraph{Baseboard Convective Heating Rate {[}W{]}}\label{baseboard-convective-heating-rate-w-000} -This field reports the rate at which convective heat addition is transferred from the baseboard to the zone in Watts. +This field reports the rate at which convective heat addition is transferred from the baseboard to the zone in Watts. This field in combination with the baseboard radiant heating rate (the next field) equals the total heat addition to the space by the baseboard unit. \paragraph{Baseboard Radiant Heating Rate {[}W{]}}\label{baseboard-radiant-heating-rate-w-000} -This field reports the rate at which radiant heat addition is transferred from the baseboard to the people and the surfaces within the zone in Watts. +This field reports the rate at which radiant heat addition is transferred from the baseboard to the people and the surfaces within the zone in Watts. This field in combination with the baseboard convective heating rate (the previous field) equals the total heat addition to the space by the baseboard unit. \paragraph{Baseboard Total Heating Energy ~{[}J{]}}\label{baseboard-total-heating-energy-j-000} @@ -354,15 +354,15 @@ \subsubsection{Outputs}\label{outputs-1-021} \paragraph{Baseboard Total Heating Rate {[}W{]}}\label{baseboard-total-heating-rate-w-1} -This is the actual convective heat addition rate of the baseboard to the zone in Watts.~ This value includes the heat convected to the zone air from the baseboard unit, the heat radiated to people in the zone from the baseboard unit, and the additional convection from surfaces within the zone that have been heated by radiation from the baseboard unit. This value will be different from (and almost always less than) the next field. +This is the actual convective heat addition rate of the baseboard to the zone in Watts.~ This value includes the heat convected to the zone air from the baseboard unit, the heat radiated to people in the zone from the baseboard unit, and the additional convection from surfaces within the zone that have been heated by radiation from the baseboard unit. This value will be different from (and almost always more than) the next field. \paragraph{Baseboard Convective Heating Rate {[}W{]}}\label{baseboard-convective-heating-rate-w-1} -This field reports the rate at which convective heat addition is transferred from the baseboard to the zone in Watts. +This field reports the rate at which convective heat addition is transferred from the baseboard to the zone in Watts. This field in combination with the baseboard radiant heating rate (the next field) equals the total heat addition to the space by the baseboard unit. \paragraph{Baseboard Radiant Heating Rate {[}W{]}}\label{baseboard-radiant-heating-rate-w-1} -This field reports the rate at which radiant heat addition is transferred from the baseboard to the people and the surfaces within the zone in Watts. +This field reports the rate at which radiant heat addition is transferred from the baseboard to the people and the surfaces within the zone in Watts. This field in combination with the baseboard convective heating rate (the previous field) equals the total heat addition to the space by the baseboard unit. \paragraph{Baseboard Total Heating Energy {[}J{]}}\label{baseboard-total-heating-energy-j-1} @@ -487,10 +487,10 @@ \subsubsection{Outputs}\label{outputs-2-017} \begin{itemize} \item HVAC,Average,Baseboard Total Heating Rate {[}W{]} -\item - HVAC,Average,Baseboard Radiant Heating Rate {[}W{]} \item HVAC,Average,Baseboard Convective Heating Rate {[}W{]} +\item + HVAC,Average,Baseboard Radiant Heating Rate {[}W{]} \item HVAC,Average,Baseboard Electric Power{[}W{]} \item @@ -509,15 +509,15 @@ \subsubsection{Outputs}\label{outputs-2-017} \paragraph{Baseboard Total Heating Rate {[}W{]}}\label{baseboard-total-heating-rate-w-2} -This is the actual convective heat addition rate of the baseboard to the zone in Watts. This value includes the heat convected to the zone air from the baseboard unit, the heat radiated to people in the zone from the baseboard unit, and the additional convection from surfaces within the zone that have been heated by radiation from the baseboard unit. This value will be different from (and almost always less than) the next field. +This is the actual convective heat addition rate of the baseboard to the zone in Watts. This value includes the heat convected to the zone air from the baseboard unit, the heat radiated to people in the zone from the baseboard unit, and the additional convection from surfaces within the zone that have been heated by radiation from the baseboard unit. This value will be different from (and almost always more than) the next field. -\paragraph{Baseboard Radiant Heating Rate {[}W{]}}\label{baseboard-radiant-heating-rate-w-2} +\paragraph{Baseboard Convective Heating Rate {[}W{]}}\label{baseboard-convective-heating-rate-w-2} -This field reports the rate at which radiant heat addition is transferred from the baseboard to the people and the surfaces within the zone in Watts. +This field reports the rate at which convective heat addition is transferred from the baseboard to the zone in Watts. This field in combination with the baseboard radiant heating rate (the next field) equals the total heat addition to the space by the baseboard unit. -\paragraph{Baseboard Convective Heating Rate {[}W{]}}\label{baseboard-convective-heating-rate-w-2} +\paragraph{Baseboard Radiant Heating Rate {[}W{]}}\label{baseboard-radiant-heating-rate-w-2} -This field reports the rate at which convective heat addition is transferred from the baseboard to the zone in Watts. +This field reports the rate at which radiant heat addition is transferred from the baseboard to the people and the surfaces within the zone in Watts. This field in combination with the baseboard convective heating rate (the previous field) equals the total heat addition to the space by the baseboard unit. \paragraph{Baseboard Electric Energy {[}J{]}}\label{baseboard-electric-energy-j-000} diff --git a/doc/input-output-reference/src/overview/group-refrigeration.tex b/doc/input-output-reference/src/overview/group-refrigeration.tex index 013c138c2ea..c13ca5d3a90 100644 --- a/doc/input-output-reference/src/overview/group-refrigeration.tex +++ b/doc/input-output-reference/src/overview/group-refrigeration.tex @@ -3998,7 +3998,7 @@ \subsubsection{Inputs}\label{inputs-15-011} \paragraph{Field: Capacity Rating Type}\label{field-capacity-rating-type} -The type of capacity rating used for this refrigeration chiller. Valid choices are UnitLoadFactorSensibleOnly, CapacityTotalSpecificConditions, EuropeanSC1Standard, EuropeanSC1NominalWet, EuropeanSC2Standard, EuropeanSC2NominalWet, EuropeanSC3Standard, EuropeanSC3NominalWet, EuropeanSC4Standard, EuropeanSC4NominalWet, EuropeanSC5Standard, and EuropeanSC5NominalWet. In each case, select the rating option that corresponds to the expected service conditions.~ For example, U.S. manufacturers quote a separate Unit Load Factor for wet or frosted coils.~ If the evaporating temperature is less than 0C, input the frosted coil value. Within the European convention, select SC1, 2, 3, 4, or 5 depending upon the expected evaporating temperature. This field is required and there is no default value. Refer to the Engineering Reference for further information on these rating types. NOTE: If the CapacityTotalSpecificConditions rating type is specified, the input file must include the manufacturer's coil capacity correction curve in tabular form using the \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object. An example of this may be found in the RefrigeratedWarehouse.idf example file. +The type of capacity rating used for this refrigeration chiller. Valid choices are UnitLoadFactorSensibleOnly, CapacityTotalSpecificConditions, EuropeanSC1Standard, EuropeanSC1NominalWet, EuropeanSC2Standard, EuropeanSC2NominalWet, EuropeanSC3Standard, EuropeanSC3NominalWet, EuropeanSC4Standard, EuropeanSC4NominalWet, EuropeanSC5Standard, and EuropeanSC5NominalWet. In each case, select the rating option that corresponds to the expected service conditions.~ For example, U.S. manufacturers quote a separate Unit Load Factor for wet or frosted coils.~ If the evaporating temperature is less than 0C, input the frosted coil value. Within the European convention, select SC1, 2, 3, 4, or 5 depending upon the expected evaporating temperature. This field is required and there is no default value. Refer to the Engineering Reference for further information on these rating types. NOTE: If the CapacityTotalSpecificConditions rating type is specified, the input file must include the manufacturer's coil capacity correction curve in tabular form using the \hyperref[tablelookup]{Table:Lookup} object. An example of this may be found in the RefrigeratedWarehouse.idf example file. \paragraph{NOTE -- ONLY ONE OF THE FOLLOWING TWO FIELDS IS USED}\label{note-only-one-of-the-following-two-fields-is-used} @@ -4040,7 +4040,7 @@ \subsubsection{Inputs}\label{inputs-15-011} \paragraph{Field: Capacity Correction Curve Name}\label{field-capacity-correction-curve-name} -The name of the curve object defining the total refrigerating capacity. For correction curve types LinearSHR60 and QuadraticSHR, the independent variable is the Sensible Heat Ratio and the output values are between 1.0 and 2.0. For correction curve type European, EnergyPlus contains built-in capacity correction curves and specification of a capacity correction curve name is not required. For correction curve type TabularRHxDT1xTRoom, enter the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that gives the total capacity (in W) as a function of RH, DT1, and Room Temperature; IN THAT ORDER. An example of a TabularRHxDT1xTRoom correction curve using the Table:MultiVariableLoopkup object may be found in the RefrigeratedWarehouse.idf example file. +The name of the curve object defining the total refrigerating capacity. For correction curve types LinearSHR60 and QuadraticSHR, the independent variable is the Sensible Heat Ratio and the output values are between 1.0 and 2.0. For correction curve type European, EnergyPlus contains built-in capacity correction curves and specification of a capacity correction curve name is not required. For correction curve type TabularRHxDT1xTRoom, enter the name of a \hyperref[tablelookup]{Table:Lookup} object that gives the total capacity (in W) as a function of RH, DT1, and Room Temperature; IN THAT ORDER. An example of a TabularRHxDT1xTRoom correction curve using the Table:Lookup object may be found in the RefrigeratedWarehouse.idf example file. \paragraph{Field: SHR60 Correction Factor}\label{field-shr60-correction-factor} diff --git a/doc/input-output-reference/src/overview/group-simulation-parameters.tex b/doc/input-output-reference/src/overview/group-simulation-parameters.tex index 48b73544a5d..8dca3e3c984 100644 --- a/doc/input-output-reference/src/overview/group-simulation-parameters.tex +++ b/doc/input-output-reference/src/overview/group-simulation-parameters.tex @@ -790,6 +790,21 @@ \subsubsection{Inputs}\label{inputs-15-014} 2; !- Maximum Number of HVAC Sizing Simulation Passes \end{lstlisting} +\subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} + +The PerformancePrecisionTradeoffs object is to provide users with options for performance over precision tradeoffs for certain EnergyPlus features. This object enables users to choose certain options that speed up EnergyPlus simulations, but may lead to small decreases in the accuracy of results. + +\paragraph{Field: Use Coil Direct Solutions}\label{use-coil-direct-solutions} + +If Yes, an analytical or empirical solution will be used to replace iterations in the coil performance calculations. + +An IDF example: + +\begin{lstlisting} +PerformancePrecisionTradeoffs, + Yes; !- Use Coil Direct Solutions +\end{lstlisting} + \subsection{HVACSystemRootFindingAlgorithm}\label{hvacystemrootfindingalgorithm} The HVACSystemRootFindingAlgorithm object provides a way to select what type of solution diff --git a/doc/input-output-reference/src/overview/group-surface-construction-elements.tex b/doc/input-output-reference/src/overview/group-surface-construction-elements.tex index 7af9d7d4829..149254926d8 100644 --- a/doc/input-output-reference/src/overview/group-surface-construction-elements.tex +++ b/doc/input-output-reference/src/overview/group-surface-construction-elements.tex @@ -1200,7 +1200,7 @@ \subsubsection{Inputs}\label{inputs-13-015} If Optical Data Type = Spectral, then, in the following field, you must enter the name of a spectral data set defined with the WindowGlassSpectralData object. In this case, the values of~ solar and visible transmittance and reflectance in the fields below should be blank. -If Optical Data Type = SpectralAndAngle, then, in the last 3 fields, you must enter the name of a spectral and angle data set defined with the \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables} object. In this case, the Window Glass Spectral Data Set Name should be blank, and the values of solar and visible transmittance and reflectance in the fields below should be blank. +If Optical Data Type = SpectralAndAngle, then, in the last 3 fields, you must enter the name of a spectral and angle data set defined with a curve or table object with two independent variables. In this case, the Window Glass Spectral Data Set Name should be blank, and the values of solar and visible transmittance and reflectance in the fields below should be blank. If Optical Data Type = BSDF, the \hyperref[constructioncomplexfenestrationstate]{Construction:ComplexFenestrationState} object must be used to define the window construction layers. The \hyperref[constructioncomplexfenestrationstate]{Construction:ComplexFenestrationState} object contains references to the BSDF files which contain the optical properties of the Complex Fenestration layers. In this case, @@ -1312,15 +1312,15 @@ \subsubsection{Inputs}\label{inputs-13-015} \paragraph{Field: Window Glass Spectral and Incident Angle Transmittance Data Set Table Name}\label{field-window-glass-spectral-and-incident-angle-transmittance-data} -If Optical Data Type = SpectralAndAngle, this is the name of a spectral and angle data set of transmittance defined with a \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables} object. The first and second independent variables must be Angle, and Wavelength, respectively. The restriction is based on internal dataset use. Each dataset is divided into subsets for each incident angle internally. +If Optical Data Type = SpectralAndAngle, this is the name of a spectral and angle data set of transmittance defined with a curve or table object with two independent variables. The first and second independent variables must be Angle, and Wavelength, respectively. The restriction is based on internal dataset use. Each dataset is divided into subsets for each incident angle internally. \paragraph{Field: Window Glass Spectral and Incident Angle Front Reflectance Data Set Table Name}\label{field-window-glass-spectral-and-incident-angle-front-reflectance-data} -If Optical Data Type = SpectralAndAngle, this is the name of a spectral and angle data set of front reflectance defined with a \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables} object. The first and second independent variables must be Angle, and Wavelength, respectively. The restriction is based on internal dataset use. Each dataset is divided into subsets for each incident angle internally. +If Optical Data Type = SpectralAndAngle, this is the name of a spectral and angle data set of front reflectance defined with a curve or table object with two independent variables. The first and second independent variables must be Angle, and Wavelength, respectively. The restriction is based on internal dataset use. Each dataset is divided into subsets for each incident angle internally. \paragraph{Field: Window Glass Spectral and Incident Angle Back Reflectance Data Set Table Name}\label{field-window-glass-spectral-and-incident-angle-back-reflectance-data} -If Optical Data Type = SpectralAndAngle, this is the name of a spectral and angle data set of back reflectance defined with a \hyperref[tabletwoindependentvariables]{Table:TwoIndependentVariables} object. The first and second independent variables must be Angle, and Wavelength, respectively. The restriction is based on internal dataset use. Each dataset is divided into subsets for each incident angle internally. +If Optical Data Type = SpectralAndAngle, this is the name of a spectral and angle data set of back reflectance defined with a curve or table object with two independent variables. The first and second independent variables must be Angle, and Wavelength, respectively. The restriction is based on internal dataset use. Each dataset is divided into subsets for each incident angle internally. It should be pointed out that when Optical Data Type = SpectralAndAngle for a glass layer in a construction, the table input data are converted into polynomial curve fits with 6 coefficients, so that all outputs of optical properties for the same construction will be curve values for a given incident angle. Therefore, the values may be slightly different from input values. @@ -3386,6 +3386,10 @@ \subsubsection{Inputs}\label{inputs-30-001} This value is the back side long-wave hemispherical emissivity of the glazing. The minimum value is 0.0, the maximum value is less than 1.0.~ The default value is 0.84. +\paragraph{Field: Thermal Resistance}\label{field-thermal-resistance-equivglazing} + +This field is used to enter the thermal resistance (R-value) of the material layer. Units for this parameter are (m\(^{2}\)-K)/W. Thermal resistance must be greater than zero. The default value is 0.158 which is roughly equivalent to a single layer of 1/4" glass. This field is only used if this equivalent layer of glazing is being referenced for movable insulation. + An IDF example for this object, is shown below: \begin{lstlisting} @@ -3418,7 +3422,8 @@ \subsubsection{Inputs}\label{inputs-30-001} 0.0, !- Back Side Diffuse-Diffuse Visible Reflectance 0.0, !- Infrared Transmittance 0.84, !- Front Side Infrared Emissivity - 0.84; !- Back Side Infrared Emissivity + 0.84, !- Back Side Infrared Emissivity + 0.158; !- Thermal Resistance (used for movable insulation only) \end{lstlisting} \subsection{WindowMaterial:Gap:EquivalentLayer}\label{windowmaterialgapequivalentlayer} @@ -4061,6 +4066,73 @@ \subsubsection{Outputs}\label{outputs-36-1} This output is the temperature within the surface at the location requested by the user. +\subsection{Construction:AirBoundary}\label{constructionairboundary} + +Construction:AirBoundary indicates an open boundary between two zones. It may be used for base surfaces and fenestration surfaces. +When this construction type is used, the Outside Boundary Condition of the surface (or the base surface of a fenestration surface) +must be either \textit{Surface} or \textit{Zone}. A base surface with Construction:AirBoundary cannot hold any fenestration surfaces. + +\subsubsection{Inputs}\label{inputs-38-01} + +\paragraph{Field: Name}\label{field-name-31-0001} + +The name of the construction. + +\paragraph{Field: Solar and Daylighting Method}\label{field-solar and-daylighting-method} + +This field controls how the surface is modeled for solar distribution and daylighting calculations. There are two +choices: +\begin{itemize} + \item + \textbf{GroupedZones} - The two zones separated by this air boundary will be grouped together into a combined zone for solar distribution and daylighting. If a given zone has an air boundary with more than one zone, then all of the connected zones will be grouped together. For example, if there is an air boundary between zones A and B, and another air boundary between zones B and C, all three zones (A, B, and C) will be grouped into a single zone. + + \item + \textbf{InteriorWindow} - The air boundary will be modeled as a perfectly transmitting interior window. As with other interior windows, all direct solar passing through the interior window will be diffuse in the adjacent zone. +\end{itemize} + +\paragraph{Field: Radiant Exchange Method}\label{field-radiant-exchange-method} + +This field controls how the surface is modeled for radiant exchange calculations. There are two choices: + +\begin{itemize} + \item + \textbf{GroupedZones} - The two zones separated by this air boundary will be grouped together into a combined zone for radiant exchange between surfaces and distribution of radiant internal gains. If a given zone has an air boundary with more than one zone, then all of the connected zones will be grouped together. For example, if there is an air boundary between zones A and B, and another air boundary between zones B and C, all three zones (A, B, and C) will be grouped into a single zone. Normal default simplified view factors will apply unless detailed view factors are specified using \hyperref[zonepropertyuserviewfactorsbysurfacename]{ZoneProperty:UserViewFactors:bySurfaceName}. + + \item + \textbf{IRTSurface} - The air boundary will be modeled as blackbody surface between the adjacent zones (similar to, but not exactly the same as, \hyperref[materialinfraredtransparent]{Material:InfraredTransparent}. The surface participates in the radiant exchange within each zone and receives long-wave radiant energy from internal sources. The surface does not absorb any visible or solar radiation, has no thermal resistance, and has zero convective heat transfer coefficients on both sides. +\end{itemize} + +\paragraph{Field: Air Exchange Method}\label{field-air-exchange-method} + +This field controls how the surface is modeled for radiant exchange calculations. There are two choices: + +\begin{itemize} + \item + \textbf{None} - There will be no air exchange modeled across this surface. Other objects, such as \hyperref[zonemixing]{ZoneMixing} and \hyperref[zonecrossmixing]{ZoneCrossMixing} or AirflowNetwork openings may be specified if desired. + \item + \textbf{SimpleMixing} - For each pair of zones connected by Construction:AirBoundary, a pair of ZoneMixing objects will created automatically. These mixing objects may be automatically adjusted to balance HVAC system flows using the \hyperref[zoneairmassflowconservation]{ZoneAirMassFlowConservation} object. + +\end{itemize} + +\paragraph{Field: Simple Mixing Air Changes per Hour}\label{field-simple-mixing-air-changes-per-hour} + +If the Air Exchange Method is \textit{SimpleMixing}* then this field specifies the air change rate [1/hr] using the volume of the smaller zone as the basis. The default is 0.5. If an AirflowNetwork simulation is active this field is ignored. + +\paragraph{Field:Simple Mixing Schedule Name}\label{field-Simple-mixing-schedule-name} + +If the Air Exchange Method is \textit{SimpleMixing} then this field specifies the schedule name for the air mixing across this boundary. If this field is blank, then the schedule defaults to always 1.0. If an AirflowNetwork simulation is active this field is ignored. + +IDF Example: + +\begin{lstlisting} + Construction:AirBoundary, + Air Wall, !- Name + GroupedZones, !- Solar and Daylighting Method + GroupedZones, !- Radiant Exchange Method + SimpleMixing, !- Air Exchange Method + 0.5, !- Simple Mixing Air Changes per Hour {1/hr} + ; !- Simple Mixing Schedule Name +\end{lstlisting} \subsection{Composite Wall Constructions}\label{composite-wall-constructions} diff --git a/doc/input-output-reference/src/overview/group-thermal-zone-description-geometry.tex b/doc/input-output-reference/src/overview/group-thermal-zone-description-geometry.tex index 49484860624..442e561a18d 100644 --- a/doc/input-output-reference/src/overview/group-thermal-zone-description-geometry.tex +++ b/doc/input-output-reference/src/overview/group-thermal-zone-description-geometry.tex @@ -248,20 +248,41 @@ \subsubsection{Zone Air System Sensible Heating Energy {[}J{]}}\label{zone-air-s \begin{callout} Zone Air System Sensible Heating (and Cooling) Energy (and Rate) all report the heating or cooling delivered by the HVAC system to a zone. These values are calculated by multiplying the supply air mass flow rate by the difference between the supply air temperature and the zone air temperature. This does not always indicate the operation of heating or cooling coils. For example, cooling will be reported if the supply air is cooled due to the introduction of outside air, even if all coils are off. -Note that these variables are calculated at the system timestep. When reported at the ``detailed'' reporting frequency, these variables will never show heating and cooling both in the same system timestep. If reported at a frequency less than ``Detailed'' (for example, Hourly) values may appear in both the heating and cooling variable for the same hour if the system cooled the zone for part of the reporting period and heated the zone for another part of the reporting period. +In addition, certain "non-air" zone-based systems will also add their heating or cooling contribution to this output variable. For example, the following zone equipment will also add their output to the appropriate heating or cooling energy/rate output variable: + +\begin{itemize} +\item +ZoneHVAC:Baseboard:RadiantConvective:Water +\item +ZoneHVAC:Baseboard:RadiantConvective:Steam +\item +ZoneHVAC:Baseboard:RadiantConvective:Electric +\item +ZoneHVAC:Baseboard:Convective:Water +\item +ZoneHVAC:Baseboard:Convective:Electric +\item +ZoneHVAC:CoolingPanel:RadiantConvective:Water +\item +ZoneHVAC:RefrigerationChillerSet +\end{itemize} + +This means that system output from equipment such as high and low temperature radiant systems are NOT included in this output variable as the control of these radiant systems are handled separately with their own unique controls. + +Finally, note that these variables are calculated at the system timestep. When reported at the ``detailed'' reporting frequency, these variables will never show heating and cooling both in the same system timestep. If reported at a frequency less than ``Detailed'' (for example, Hourly) values may appear in both the heating and cooling variable for the same hour if the system cooled the zone for part of the reporting period and heated the zone for another part of the reporting period. \end{callout} \subsubsection{Zone Air System Sensible Cooling Energy {[}J{]}}\label{zone-air-system-sensible-cooling-energy-j} -This output variable represents the sensible cooling energy in Joules that is actually supplied by the system to that zone for the timestep reported. This is the sensible cooling rate multiplied by the simulation timestep. This is calculated and reported from the Correct step in the Zone Predictor-Corrector module. This field is not multiplied by zone or group multipliers. +This output variable represents the sensible cooling energy in Joules that is actually supplied by the system to that zone for the timestep reported. This is the sensible cooling rate multiplied by the simulation timestep. This is calculated and reported from the Correct step in the Zone Predictor-Corrector module. This field is not multiplied by zone or group multipliers. For additional information on this output variable, see the note that accompanies the Zone Air System Sensible Heating Energy output variable above. \subsubsection{Zone Air System Sensible Heating Rate {[}W{]}}\label{zone-air-system-sensible-heating-rate-w} -This output variable represents the sensible heating rate in Watts that is actually supplied by the system to that zone for the timestep reported. This is calculated and reported from the Correct step in the Zone Predictor-Corrector module. This field is not multiplied by zone or group multipliers. +This output variable represents the sensible heating rate in Watts that is actually supplied by the system to that zone for the timestep reported. This is calculated and reported from the Correct step in the Zone Predictor-Corrector module. This field is not multiplied by zone or group multipliers. For additional information on this output variable, see the note that accompanies the Zone Air System Sensible Heating Energy output variable above. \subsubsection{Zone Air System Sensible Cooling Rate {[}W{]}}\label{zone-air-system-sensible-cooling-rate-w} -This output variable represents the sensible cooling rate in Watts that is actually supplied by the system to that zone for the timestep reported. This is calculated and reported from the Correct step in the Zone Predictor-Corrector module. This field is not multiplied by zone or group multipliers. +This output variable represents the sensible cooling rate in Watts that is actually supplied by the system to that zone for the timestep reported. This is calculated and reported from the Correct step in the Zone Predictor-Corrector module. This field is not multiplied by zone or group multipliers. For additional information on this output variable, see the note that accompanies the Zone Air System Sensible Heating Energy output variable above. \subsubsection{Zone Air Humidity Ratio {[}kgWater/kgDryAir{]}}\label{zone-air-humidity-ratio-kgwaterkgdryair} diff --git a/doc/input-output-reference/src/overview/group-unitary-equipment.tex b/doc/input-output-reference/src/overview/group-unitary-equipment.tex index 3daf130eaea..d73db2d6bf5 100644 --- a/doc/input-output-reference/src/overview/group-unitary-equipment.tex +++ b/doc/input-output-reference/src/overview/group-unitary-equipment.tex @@ -2829,7 +2829,7 @@ \subsubsection{Outputs}\label{outputs-6-011} \subsection{AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass}\label{airloophvacunitaryheatcoolvavchangeoverbypass} -The changeover-bypass variable air volume (CBVAV) unitary system is a compound object made up of other components. Each CBVAV system consists of an outdoor air mixer, direct expansion (DX) cooling coil, heating coil, and a supply air fan as shown in the figures below. Zone thermostats and terminal units are required in each zone served by this system. The terminal units are specific to this system type and are either \hyperref[airterminalsingleductvavheatandcoolreheat]{AirTerminal:SingleDuct:VAV:HeatAndCool:Reheat} or \hyperref[airterminalsingleductvavheatandcoolnoreheat]{AirTerminal:SingleDuct:VAV:HeatAndCool:NoReheat}. A zone humidistat and single zone max humidity set point manager may also be specified to help control high humidity levels. These individual components are described elsewhere in this document. The CBVAV unitary system object coordinates the operation of these components and is modeled as a type of air loop equipment (Ref. \hyperref[airloophvac]{AirLoopHVAC}). +The changeover-bypass variable air volume (CBVAV) unitary system is a compound object made up of other components. Each CBVAV system consists of an outdoor air mixer, direct expansion (DX) cooling coil, heating coil, and a supply air fan as shown in the figures below. Zone thermostats and terminal units are required in each zone served by this system. The terminal units are specific to this system type and are either \hyperref[airterminalsingleductvavheatandcoolreheat]{AirTerminal:SingleDuct:VAV:HeatAndCool:Reheat} or \hyperref[airterminalsingleductvavheatandcoolnoreheat]{AirTerminal:SingleDuct:VAV:HeatAndCool:NoReheat}. A zone humidistat and single zone max humidity set point manager may also be specified to help control high humidity levels. These individual components are described elsewhere in this document. The system may also be connected to an inlet node of either the \hyperref[airloophvaczonemixer]{AirLoopHVAC:ZoneMixer} or \hyperref[airloophvacreturnplenum]{AirLoopHVAC:ReturnPlenum} to more accurately model the \hyperref[airloophvacoutdoorairsystem]{AirLoopHVAC:OutdoorAirSystem}. The CBVAV unitary system object coordinates the operation of these components and is modeled as a type of air loop equipment (Ref. \hyperref[airloophvac]{AirLoopHVAC}). \begin{figure}[hbtp] % fig 123 \centering @@ -2843,6 +2843,12 @@ \subsection{AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass}\label{airloophvacun \caption{Schematic of a CBVAV unitary system (blow through fan placement) \protect \label{fig:schematic-of-a-cbvav-unitary-system-blow}} \end{figure} +\begin{figure}[hbtp] +\centering +\includegraphics[width=0.9\textwidth, height=0.9\textheight, keepaspectratio=true]{media/ChangeoverBypassVAV-ReturnPlenumOrMixer.png} +\caption{Schematic of a CBVAV unitary system used with outdoor air system \protect \label{fig:schematic-of-a-cbvav-unitary-system-used-with-outdoor-air-system}} +\end{figure} + Links to the CBVAV system's supply air fan, coils, and outdoor air mixer specifications are provided in the object's input syntax. Additional inputs include system and outdoor air flow rates during heating and cooling operation, the priority control mode, and dehumidification control type. A description of each input field for the CBVAV unitary system compound object is provided below. \subsubsection{Inputs}\label{inputs-8-027} @@ -2986,9 +2992,11 @@ \subsubsection{Inputs}\label{inputs-8-027} HeatingPriority \item ZonePriority +\item + LoadPriority \end{itemize} -If CoolingPriority is selected, the system operates to meet the cooling load if any zone served by this system (air loop) requires cooling. If no zones require cooling, then the system operates in heating mode if needed. If HeatingPriority is selected, the system operates to meet the heating load if any zone requires heating. If no zones require heating, then the system operates in cooling mode if needed. If ZonePriority is selected, the system operates based on the maximum number of zones requiring either heating or cooling. If the number of zones requiring cooling is greater than the number of zones requiring heating, then the system operates in cooling mode. If the number of zones requiring heating is greater than the number of zones requiring cooling, then the system operates in heating mode. If the number of zones requiring cooling equals the number of zones requiring heating, then the largest combined load (i.e., the sum of the cooling loads for zones requiring cooling compared to the sum of the heating loads for zones that require heating) sets the cooling or heating operating mode for the system during that simulation timestep. +If CoolingPriority is selected, the system operates to meet the cooling load if any zone served by this system (air loop) requires cooling. If no zones require cooling, then the system operates in heating mode if needed. If HeatingPriority is selected, the system operates to meet the heating load if any zone requires heating. If no zones require heating, then the system operates in cooling mode if needed. If ZonePriority is selected, the system operates based on the maximum number of zones requiring either heating or cooling. If the number of zones requiring cooling is greater than the number of zones requiring heating, then the system operates in cooling mode. If the number of zones requiring heating is greater than the number of zones requiring cooling, then the system operates in heating mode. If the number of zones requiring cooling equals the number of zones requiring heating, then the largest combined load (i.e., the sum of the cooling loads for zones requiring cooling compared to the sum of the heating loads for zones that require heating) sets the cooling or heating operating mode for the system during that simulation timestep. If LoadPriority is selected, the system operates based on the largest combined load (i.e., the sum of the cooling loads for zones requiring cooling compared to the sum of the heating loads for zones that require heating). If the toal load for zones requiring cooling is greater than the toal load for zones requiring heating, then the system operates in cooling mode. Similar logic is used for heating mode selection. If the toal cooling load equals the toal heating load, then cooling or heating operation reverts to the total number of zones requiring cooling or heating (and if equal reverts to cooling mode if the cooling load is non-zero, otherwise, heating mode. \paragraph{Field: Minimum Outlet Air Temperature During Cooling Operation}\label{field-minimum-outlet-air-temperature-during-cooling-operation} @@ -3021,6 +3029,15 @@ \subsubsection{Inputs}\label{inputs-8-027} objects. When extra dehumidification is required, the system may not be able to meet the humidity setpoint if its full capacity is not adequate. +\paragraph{Field: Plenum or Mixer Inlet Node Name}\label{field-bypass-duct-mixer-node-name} + +This alpha field defines the name of the HVAC system node where the bypass air enters the zone mixer or return plenum. This node name must be different from the system's \textbf{\hyperref[field-air-outlet-node-name-3-002]{Air Outlet Node Name}} and \textbf{\hyperref[field-bypass-duct-splitter-node-name]{Bypass Duct Splitter Node Name}}. This name should match the name of the inlet node in the \hyperref[airloophvaczonemixer]{AirLoopHVAC:ZoneMixer} or \hyperref[airloophvacreturnplenum]{AirLoopHVAC:ReturnPlenum} associated with this system. + +\paragraph{Field: Minimum Runtime Before Operating Mode Change}\label{minimum-runtime-before-operating-mode-change} + +This numeric field defines the amount of time, in hours, the HVAC system operates before a mode change is allowed. The value entered must be greater than or equal to 0. The default value is 0.25 hours if this input is present and blank. If this field is not present the minimum runtime is 0 hours (i.e., immediate change over as needed). +\medskip + As shown in the example below, correct specification of the CBVAV unitary system requires specification of the following objects in addition to the AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass object: 1)~~~outdoor air mixer (\hyperref[outdoorairmixer]{OutdoorAir:Mixer}) @@ -3033,7 +3050,9 @@ \subsubsection{Inputs}\label{inputs-8-027} 5)~~~terminal unit for each zone being served by this system (\hyperref[airterminalsingleductvavheatandcoolreheat]{AirTerminal:SingleDuct:VAV:HeatAndCool:Reheat} or \hyperref[airterminalsingleductvavheatandcoolnoreheat]{AirTerminal:SingleDuct:VAV:HeatAndCool:NoReheat}) -Note: The fan, heating coil, cooling coil, and outdoor air mixer must be connected in the air loop according to the configurations shown above (Figure~\ref{fig:schematic-of-a-cbvav-unitary-system-draw} and Figure~\ref{fig:schematic-of-a-cbvav-unitary-system-blow}). +6)~~~When the Plenum or Mixer Inlet Node Name is specified, this node name must connect to either the \hyperref[airloophvaczonemixer]{AirLoopHVAC:ZoneMixer} or \hyperref[airloophvacreturnplenum]{AirLoopHVAC:ReturnPlenum} and the \hyperref[airloophvacoutdoorairsystem]{AirLoopHVAC:OutdoorAirSystem} may then be used to control the outdoor air flow rates. When using the AirloopHVAC:OutdoorAirSystem it is recommended that the Cooling, Heating and No Load Outdoor Air Flow Rate inputs are set to 0, otherwise the amount of outdoor air is increased and the coils may not autosize properly. + +Note: The fan, heating coil, cooling coil, and outdoor air mixer must be connected in the air loop according to the configurations shown above (Figure~\ref{fig:schematic-of-a-cbvav-unitary-system-draw}, Figure~\ref{fig:schematic-of-a-cbvav-unitary-system-blow} or Figure~\ref{fig:schematic-of-a-cbvav-unitary-system-used-with-outdoor-air-system}). \begin{lstlisting} @@ -3185,6 +3204,8 @@ \subsubsection{Outputs}\label{outputs-7-011} HVAC,Average,Unitary System Bypass Air Mass Flow Rate {[}kg/s{]} \item HVAC,Average,Unitary System Air Outlet Setpoint Temperature {[}C{]} +\item + HVAC,Average,Unitary System Operating Mode Index {[]} \end{itemize} \paragraph{Unitary System Total Heating Rate {[}W{]}}\label{unitary-system-total-heating-rate-w-2} @@ -3257,4 +3278,8 @@ \subsubsection{Outputs}\label{outputs-7-011} \paragraph{Unitary System Air Outlet Setpoint Temperature {[}C{]}}\label{unitary-system-air-outlet-setpoint-temperature-c} -This output field is the dry-bulb set point temperature in degrees Celsius. This set point temperature is calculated by the model based on the zone cooling/heating loads calculated by EnergyPlus, and the priority control mode and the dehumidification control type specified for this unitary system. The CBVAV system attempts to achieve the outlet air set point temperature to the extent possible. \ No newline at end of file +This output field is the dry-bulb set point temperature in degrees Celsius. This set point temperature is calculated by the model based on the zone cooling/heating loads calculated by EnergyPlus, and the priority control mode and the dehumidification control type specified for this unitary system. The CBVAV system attempts to achieve the outlet air set point temperature to the extent possible. + +\paragraph{Unitary System Operating Mode Index {[]}}\label{unitary-system-operating-mode-index} + +This output field is the current operating mode, either cooling, heating or no cooling or heating. A value of 0 represents no cooling or heating is required, a value of 1 represents cooling and a value of 2 represents heating. These specific values can be seen using the detailed time step reporting frequency. If longer reporting frequencies are used (e.g., timestep, hourly, etc.) then this output is averaged over the reporting interval and the result is dependent on the value selected for \hyperref[minimum-runtime-before-operating-mode-change]{Minimum Runtime Before Operating Mode Change}. \ No newline at end of file diff --git a/doc/input-output-reference/src/overview/group-zone-forced-air-units.tex b/doc/input-output-reference/src/overview/group-zone-forced-air-units.tex index 405cfa6de02..d4ac5dcc149 100644 --- a/doc/input-output-reference/src/overview/group-zone-forced-air-units.tex +++ b/doc/input-output-reference/src/overview/group-zone-forced-air-units.tex @@ -1433,7 +1433,7 @@ \subsection{ZoneHVAC:EvaporativeCoolerUnit}\label{zonehvacevaporativecoolerunit} The zone evaporative cooler unit is a compound object made up of a fan and one or two evaporative cooler components.~ This unit serves a single thermal zone as a forced-convection, cooling-only unit with supply fan.~ It always draws 100\% of its supply air from the outside, passes the air through a supply fan and evaporative cooler(s) and then into the zone.~ The fan can be positioned upstream of the cooler(s) for a blow through placement.~ Or it can be positioned downstream of the cooler(s) for a draw through placement.~ If there is more than one evaporative cooler, then should be in series with the first cooler immediately upstream of the second cooler. There is an option to include a relief zone exhaust node to balance the air in the zone. -The unit can have either constant or variable speed fans.~ This zone unit differs from other constant speed forced-air zone units in that its controls are not based on a part-load formulation with averaged air flow rates. Instead the unit is completely on or off during the entire timestep.~ This means that it is beneficial to use relatively short timesteps. However for variable speed fans, the unit can modulate fan speed to just meet cooling loads and therefore operates similar to other zone HVAC units. +The unit can have either constant or variable speed fans.~ When a constant speed fan is specified and the Cooler Unit Control Method is either \textit{ZoneTemperatureDeadbandOnOffCycling} or \textit{ZoneCoolingLoadOnOffCycling}, this zone unit runs just like other constant speed forced-air zone units in that its controls allow the unit to cycle based on a part-load formulation with averaged air flow rates. When a variable speed fan is specified and the Cooler Unit Control Method is \textit{ZoneCoolingLoadVariableSpeedFan}, then the unit can modulate fan speed to meet cooling loads just like other zone HVAC units with variable speed fan. \subsubsection{Inputs}\label{inputs-4-040} @@ -1484,9 +1484,9 @@ \subsubsection{Inputs}\label{inputs-4-040} \begin{itemize} \item - \textbf{ZoneTemperatureDeadbandOnOffCycling}. This control method determines whether or not to operate the cooler based on the thermostat setpoint and the zone air temperature.~ This thermostatic control method uses a throttling temperature range, determined in the following input field, to model hysteresis-type control to avoid excessive short-cycling.~ If the zone air temperature is warmer than the cooling setpoint temperature plus one-half of the throttling range, then the unit is operated for the entire timestep at the design air mass flow rate.~ If the zone air temperature is cooler than the cooling setpoint temperature minus one-half of the throttling range, then the unit is off for the entire timestep.~ When the zone air temperatures are within the throttling range, then the unit will stay off if it was not running during the previous timestep and will stay on if it was already running. This control method does not usually behave in a smooth manner and zone conditions will tend to oscillate considerably during periods of low load. + \textbf{ZoneTemperatureDeadbandOnOffCycling}. This control method determines whether or not to operate the cooler based on the thermostat setpoint and the zone air temperature.~ This thermostatic control method uses a throttling temperature range, determined in the following input field, to model hysteresis-type control to avoid excessive short-cycling.~ If the zone air temperature is warmer than the cooling setpoint temperature plus one-half of the throttling range, then the unit is operated for the entire timestep at the design air mass flow rate.~ If the zone air temperature is cooler than the cooling setpoint temperature minus one-half of the throttling range, then the unit is off for the entire timestep.~ When the zone air temperatures are within the throttling range, then the unit will stay off if it was not running during the previous timestep and will stay on if it was already running. If the unit is On, then the unit is cycled such that it meets the current cooling load and avoids over-cooling the zone. \item - \textbf{ZoneCoolingLoadOnOffCycling}. This control method determines whether or not to operate the cooler based on the predicted zone load to cooling setpoint.~ If there is a cooling load (and the unit is available), then the unit is operated for the entire timestep at the design air mass flow rate. If there is no cooling load, then the unit is not operated at all.~ The magnitude of the cooling load that will trigger the unit to operate can be controlled using the field below called Cooling Load Control Threshold Heat Transfer Rate. This control method does not usually behave in a smooth manner and zone conditions will tend to oscillate considerably during periods of low load. + \textbf{ZoneCoolingLoadOnOffCycling}. This control method determines whether or not to operate the cooler based on the predicted zone load to cooling setpoint.~ If there is a cooling load (and the unit is available), then the unit is operated for the entire timestep at the design air mass flow rate. If there is no cooling load, then the unit is cycled at the design air mass flow rate such that it meets the current cooling load.~ The magnitude of the cooling load that will trigger the unit to operate can be controlled using the field below called Cooling Load Control Threshold Heat Transfer Rate. \item \textbf{ZoneCoolingLoadVariableSpeedFan}.~ This control method determines whether or not to operate the cooler based on the predicted zone load to cooling setpoint.~ If there is a cooling load (and the unit is available), then the unit is operated for the entire timestep at a fan speed that is controlled to meet the sensible cooling load (if possible). The magnitude of the cooling load that will trigger the unit to operate can be controlled using the field below called Cooling Load Control Threshold Heat Transfer Rate.~ This control method requires a variable speed fan and cannot be used with \hyperref[fanconstantvolume]{Fan:ConstantVolume} or \hyperref[fanonoff]{Fan:OnOff}. \end{itemize} @@ -3893,7 +3893,7 @@ \subsection{ZoneHVAC:TerminalUnit:VariableRefrigerantFlow}\label{zonehvactermina Zone terminal units with variable refrigerant flow compound HVAC object are used exclusively with variable refrigerant flow (VRF) air conditioning systems (Ref. \hyperref[airconditionervariablerefrigerantflow]{AirConditioner:VariableRefrigerantFlow} objects). The zone terminal VRF compound object contains a DX cooling coil, a DX heating coil, supply fan, and an optional supplemental heating coil objects. zone The zone terminal units are connected to a zone using the inlet and exhaust node names specified in a \hyperref[zonehvacequipmentconnections]{ZoneHVAC:EquipmentConnections} object. The zone exhaust node has the same name as the terminal unit air inlet node. The zone inlet node has the same name as the terminal unit air outlet node. The zone terminal unit is also listed in a zone's equipment list and will typically be the first equipment operating for both cooling and heating (i.e., Sequence = 1 in the \hyperref[zonehvacequipmentlist]{ZoneHVAC:EquipmentList}). Other ZoneHVAC equipment may be used in the same zone and should be sequenced to operate after the zone terminal units (i.e., sequence = 2 or higher) The terminal units operate to satisfy a heating or cooling load in a zone based on a zone thermostat temperature set point. A direct-expansion (DX) cooling and/or DX heating coil is specified depending on the operating mode required. Both a DX cooling and DX heating coil will typically be installed in the terminal unit, however only one may be used if desired. An optional supplemental heating coil can also be added to the terminal unit to provide additional heating when the main DX heating coil could not meet the entire heating load of a zone during cold outdoor conditions. The Supplemental Heating Coil Object Type must be \hyperref[coilheatingelectric]{Coil:Heating:Electric}, \hyperref[coilheatingfuel]{Coil:Heating:Fuel}, \hyperref[coilheatingwater]{Coil:Heating:Water}, or \hyperref[coilheatingsteam]{Coil:Heating:Steam}. Outdoor ventilation air is modeled with the use of an optional outside air mixer object. Outside air may be provided to the zone only when the coil is operating or can be supplied continuously even when the coil is not operating. - + A supply air fan is also required and can be modeled as either draw through or blow through. The Supply Air Fan Object Type must be \hyperref[fansystemmodel]{Fan:SystemModel}, \hyperref[fanonoff]{Fan:OnOff}, or \hyperref[fanconstantvolume]{Fan:ConstantVolume} if \hyperref[airconditionervariablerefrigerantflow]{AirConditioner:VariableRefrigerantFlow} is used to model the VRF outdoor unit. The Supply Air Fan Object Type must be \hyperref[fansystemmodel]{Fan:SystemModel} or \hyperref[fanvariablevolume]{Fan:VariableVolume} if AirConditioner:VariableRefrigerantFlow:\-FluidTemperatureControl or AirConditioner:VariableRefrigerantFlow:\-FluidTemperatureControl:HR is used to model the VRF outdoor unit. \subsubsection{Inputs}\label{inputs-14-018} @@ -4010,11 +4010,11 @@ \subsubsection{Inputs}\label{inputs-14-018} \paragraph{Field: Supplemental Heating Coil Object Type}\label{field-supplemental-heating-coil-object-type-2-000} -This alpha field defines the type of supplemental heating coil to be used by this VRF terminal unit. The input requirements for these heating coil objects are described elsewhere in this document. The hot water and steam heating coils require specifying plant loop, branches, and connector objects to support the heating coils, and are placed on the demand side of the plantloop. The hot water flow modulation through the supplemental heating coil does not require additional controller or Controller:WaterCoil object. The parent object (VRF terminal unit) itself provides the “controller” function of modulating water flow. Supplemental Heating Coil Object Type must be \hyperref[coilheatingelectric]{Coil:Heating:Electric}, \hyperref[coilheatingfuel]{Coil:Heating:Fuel}, \hyperref[coilheatingwater]{Coil:Heating:Water}, or \hyperref[coilheatingsteam]{Coil:Heating:Steam}. +This alpha field defines the type of supplemental heating coil to be used by this VRF terminal unit. The input requirements for these heating coil objects are described elsewhere in this document. The hot water and steam heating coils require specifying plant loop, branches, and connector objects to support the heating coils, and are placed on the demand side of the plantloop. The hot water flow modulation through the supplemental heating coil does not require additional controller or Controller:WaterCoil object. The parent object (VRF terminal unit) itself provides the “controller” function of modulating water flow. Supplemental Heating Coil Object Type must be \hyperref[coilheatingelectric]{Coil:Heating:Electric}, \hyperref[coilheatingfuel]{Coil:Heating:Fuel}, \hyperref[coilheatingwater]{Coil:Heating:Water}, or \hyperref[coilheatingsteam]{Coil:Heating:Steam}. \paragraph{Field: Supplemental Heating Coil Name}\label{field-supplemental-heating-coil-name-2-000} -This alpha field defines the name of the supplemental heating coil used by this VRF terminal unit, and this name should match the name specified in the corresponding heating coil object. +This alpha field defines the name of the supplemental heating coil used by this VRF terminal unit, and this name should match the name specified in the corresponding heating coil object. \paragraph{Field: Maximum Supply Air Temperature from Supplemental Heater}\label{field-maximum-supply-air-temperature-from-supplemental-heater-2-000} @@ -4058,7 +4058,7 @@ \subsubsection{Inputs}\label{inputs-14-018} Coil:Heating:Electric, !- Supplemental Heating Coil Object Type TU1 Supp Heating Coil, !- Supplemental Heating Coil Name autosize, !- Maximum Supply Air Temperature from Supplemental Heater - ; !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation + ; !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation \end{lstlisting} \subsubsection{Outputs}\label{outputs-12-006} @@ -4180,7 +4180,7 @@ \subsection{ZoneHVAC:HybridUnitaryHVAC}\label{zonehvac-hybridunitaryhvac} ZoneHVAC:HybridUnitaryHVAC is a black-box model designed to allow empirical representation of a wide variety of hybrid unitary systems. The model does not require information about internal system architecture, however it requires extensive data to describe the performance of a product in every operating mode. The model is intended for packed forced air equipment and can represent unitary systems that consume electricity, water, and up to two additional fuel types. -Uncontrolled independent variables include outdoor and indoor air temperature and humidity ratio. Controlled independent variables include: operating mode, supply air flow rate, outdoor air fraction, and part runtime fraction. Dependent variables include supply air temperature, supply air humidity, electricity use, fuel uses, water use, fan electricity use, and external static pressure. Empirical data tables (see \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}) are required to map each dependent variable in each discrete operating mode. The model can accommodate up to 26 discrete operating modes, including a standby mode. Each mode is limited to operate within independently specified ranges of indoor and outdoor psychrometric conditions. The standby mode is not limited by either indoor or outdoor psychrometric conditions. +Uncontrolled independent variables include outdoor and indoor air temperature and humidity ratio. Controlled independent variables include: operating mode, supply air flow rate, outdoor air fraction, and part runtime fraction. Dependent variables include supply air temperature, supply air humidity, electricity use, fuel uses, water use, fan electricity use, and external static pressure. Empirical data tables (see \hyperref[tablelookup]{Table:Lookup}) are required to map each dependent variable in each discrete operating mode. The model can accommodate up to 26 discrete operating modes, including a standby mode. Each mode is limited to operate within independently specified ranges of indoor and outdoor psychrometric conditions. The standby mode is not limited by either indoor or outdoor psychrometric conditions. \begin{figure}[hbtp] \centering @@ -4233,10 +4233,10 @@ \subsubsection{Inputs} This optional alpha input field specifies the name of an HVAC system node which can extract air from the zone to balance the air supplied to the zone by the unit. This node name would match the name of a zone exhaust air node. \paragraph{Field: System Maximum Supply Air Volume Flow Rate} -This numeric input field specifies the maximum standard density supply air volume flow rate among all operating modes. The field allows custom resizing of the hybrid unit. The values specified in each \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object associated with a hybrid unit represent performance data for a specific product of a particular size, but the value output from each \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object is augmented by a normalization reference (Ref: Group - Performance Tables \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup}). The normalization reference specified for all \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with a hybrid unit should be the maximum supply air mass flow rate for the real hybrid unit that was used to create the performance data included in each table object. The value in this field is used to rescale the normalized values output from tables for extensive dependent variables. If the standard density supply air volume flow rate input to this field is equivalent to the system maximum supply air mass flow rate used as the normalization reference – given appropriate unit conversions – then the resulting output from the model will exactly match the original performance data specified in each table. If the value in this field is larger or smaller, the values for extensive dependent variables will be scaled proportionally. The values of intensive dependent variables are rescaled by the normalization reference value, so will always match the original performance data specified in each table object. The value in this field should be specified as standard density volume flow rate. Standard density in EnergyPlus corresponds to dry air at 20ºC drybulb, and 101,325 Pa. +This numeric input field specifies the maximum standard density supply air volume flow rate among all operating modes. The field allows custom resizing of the hybrid unit. The values specified in each \hyperref[tablelookup]{Table:Lookup} object associated with a hybrid unit represent performance data for a specific product of a particular size, but the value output from each \hyperref[tablelookup]{Table:Lookup} object is augmented by a normalization reference (Ref: Group - Performance Tables \hyperref[tablelookup]{Table:Lookup}). The normalization reference specified for all \hyperref[tablelookup]{Table:Lookup} objects associated with a hybrid unit should be the maximum supply air mass flow rate for the real hybrid unit that was used to create the performance data included in each table object. The value in this field is used to rescale the normalized values output from tables for extensive dependent variables. If the standard density supply air volume flow rate input to this field is equivalent to the system maximum supply air mass flow rate used as the normalization reference – given appropriate unit conversions – then the resulting output from the model will exactly match the original performance data specified in each table. If the value in this field is larger or smaller, the values for extensive dependent variables will be scaled proportionally. The values of intensive dependent variables are rescaled by the normalization reference value, so will always match the original performance data specified in each table object. The value in this field should be specified as standard density volume flow rate. Standard density in EnergyPlus corresponds to dry air at 20ºC drybulb, and 101,325 Pa. \paragraph{Field: External Static Pressure at System Maximum Supply Air Flow Rate} -This optional numeric input field specifies the external static pressure at the system maximum supply air flow rate specified in the previous field. Fan affinity laws are used to scale supply fan power from the scenario used to create the performance data included in each \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object, to a scenario that corresponds to the value specified in this field. The result is also used to adjust the system electric power accordingly. If this field is blank, the supply fan power is not scaled from the values specified in lookup tables. +This optional numeric input field specifies the external static pressure at the system maximum supply air flow rate specified in the previous field. Fan affinity laws are used to scale supply fan power from the scenario used to create the performance data included in each \hyperref[tablelookup]{Table:Lookup} object, to a scenario that corresponds to the value specified in this field. The result is also used to adjust the system electric power accordingly. If this field is blank, the supply fan power is not scaled from the values specified in lookup tables. \paragraph{Field: Scaling Factor} This optional numeric field scales all extensive dependent variables including: supply air mass flow rate, electricity use, fuel uses, and water use. The value in this field acts together with the value in field System Maximum Standard Density Supply Air Volume Flow Rate to allow custom resizing of the hybrid unit. @@ -4248,13 +4248,13 @@ \subsubsection{Inputs} This numeric field specifies the minimum time that must pass before the hybrid unit can change mode. If the value in this field is larger than each timestep, the mode selected in one time step will persist in later time steps until the minimum time between mode change is satisfied. If the value in this field is smaller than each timestep, it will determine the minimum part runtime fraction allowed for any mode. Supply air mass flow rate and outdoor air fraction within a mode are not subject to minimum runtime and may change in every time step, or with any part runtime fraction. Mode 0 does not have a minimum time. If this field is blank, the default minimum time between mode change is 10 minutes. \paragraph{Field: First Fuel Type} -This alpha field specifies the fuel type associated with the \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object specified in field ''System Electric Power Power Lookup Table``. Valid choices include: None, Electricity, NaturalGas, PropaneGas, FuelOil\#1, FuelOil\#2, Diesel, Gasoline, Coal, OtherFuel1, OtherFuel2, Steam, \hyperref[districtheating]{DistrictHeating} and \hyperref[districtcooling]{DistrictCooling}. If this field is blank, the default first fuel type is Electricity. +This alpha field specifies the fuel type associated with the \hyperref[tablelookup]{Table:Lookup} object specified in field ''System Electric Power Power Lookup Table``. Valid choices include: None, Electricity, NaturalGas, PropaneGas, FuelOil\#1, FuelOil\#2, Diesel, Gasoline, Coal, OtherFuel1, OtherFuel2, Steam, \hyperref[districtheating]{DistrictHeating} and \hyperref[districtcooling]{DistrictCooling}. If this field is blank, the default first fuel type is Electricity. \paragraph{Field: Second Fuel Type} -This alpha field specifies the fuel type associated with the \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object specified in field ''System Second Fuel Consumption Lookup Table``. Valid choices include: None, Electricity, NaturalGas, PropaneGas, FuelOil\#1, FuelOil\#2, Diesel, Gasoline, Coal, OtherFuel1, OtherFuel2, Steam, \hyperref[districtheating]{DistrictHeating} and \hyperref[districtcooling]{DistrictCooling}. If this field is blank, the default second fuel type is None. +This alpha field specifies the fuel type associated with the \hyperref[tablelookup]{Table:Lookup} object specified in field ''System Second Fuel Consumption Lookup Table``. Valid choices include: None, Electricity, NaturalGas, PropaneGas, FuelOil\#1, FuelOil\#2, Diesel, Gasoline, Coal, OtherFuel1, OtherFuel2, Steam, \hyperref[districtheating]{DistrictHeating} and \hyperref[districtcooling]{DistrictCooling}. If this field is blank, the default second fuel type is None. \paragraph{Field: Third Fuel Type} -This alpha field specifies the fuel type associated with the \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object specified in field ''System Third Fuel Consumption Lookup Table``. Valid choices include: None, Electricity, NaturalGas, PropaneGas, FuelOil\#1, FuelOil\#2, Diesel, Gasoline, Coal, OtherFuel1, OtherFuel2, Steam, \hyperref[districtheating]{DistrictHeating} and \hyperref[districtcooling]{DistrictCooling}. If this field is blank, the default second fuel type is None. +This alpha field specifies the fuel type associated with the \hyperref[tablelookup]{Table:Lookup} object specified in field ''System Third Fuel Consumption Lookup Table``. Valid choices include: None, Electricity, NaturalGas, PropaneGas, FuelOil\#1, FuelOil\#2, Diesel, Gasoline, Coal, OtherFuel1, OtherFuel2, Steam, \hyperref[districtheating]{DistrictHeating} and \hyperref[districtcooling]{DistrictCooling}. If this field is blank, the default second fuel type is None. \paragraph{Field: Objective Function to Minimize} In each time step ZoneHVAC:HybridUnitaryHVAC will choose one or more combinations of the controlled independent variables, subject to constraints, so as to best satisfy sensible load, latent load, and scheduled ventilation with the least amount of resource consumption. This alpha field specifies which resource will be minimized by the optimization. Valid choices include: Electricity Use, Second Fuel Use, Third Fuel Use, and Water Use. If this field is blank, the objective function will minimize electricity use. @@ -4267,28 +4267,28 @@ \subsubsection{Inputs} This alpha input field specifies a unique user-assigned descriptive name for Mode 0. Mode 0 describes performance when the hybrid unit is in standby. Mode 0 is usually characterized by electricity use for controls and crankcase heaters, or other standby resource consumption. Mode 0 will be chosen for any timestep, or portion of timestep, when the unit is available, but there is no sensible load, latent load, or scheduled ventilation. Mode 0 is not constrained by limits on indoor or outdoor conditions. \paragraph{Field: Mode 0 Supply Air Temperature Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes supply air temperature for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 will not be considered for any period that requires ventilation, heating, cooling, humidification, or dehumidification. If this field is blank, when Mode 0 is chosen (during standby periods) the supply air temperature will equal the return air temperature. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes supply air temperature for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 will not be considered for any period that requires ventilation, heating, cooling, humidification, or dehumidification. If this field is blank, when Mode 0 is chosen (during standby periods) the supply air temperature will equal the return air temperature. \paragraph{Field: Mode 0 Supply Air Humidity Ratio Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes supply air humidity ratio for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 will not be considered for any period that requires ventilation, heating, cooling, humidification, or dehumidification. If this field is blank, when Mode 0 is chosen (during standby periods) the supply air humidity ratio will equal the return air humidity ratio. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes supply air humidity ratio for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 will not be considered for any period that requires ventilation, heating, cooling, humidification, or dehumidification. If this field is blank, when Mode 0 is chosen (during standby periods) the supply air humidity ratio will equal the return air humidity ratio. \paragraph{Field: Mode 0 System Electric Power Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes electric power consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume electricity. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes electric power consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume electricity. \paragraph{Field: Mode 0 Supply Fan Electric Power Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes supply fan electric power consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume electricity for supply fan. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes supply fan electric power consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume electricity for supply fan. \paragraph{Field: Mode 0 External Static Pressure Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes external static pressure for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, external static pressure will not be reported. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes external static pressure for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, external static pressure will not be reported. \paragraph{Field: Mode 0 System Second Fuel Consumption Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes second fuel consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume a second fuel. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes second fuel consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume a second fuel. \paragraph{Field: Mode 0 System Third Fuel Consumption Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes third fuel consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume a third fuel. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes third fuel consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume a third fuel. \paragraph{Field: Mode 0 System Water Use Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes water consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume water. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes water consumption for Mode 0 as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode 0 does not consume water. \paragraph{Field: Mode 0 Outdoor Air Fraction} This optional numeric input field specifies the outdoor air fraction for Mode 0. Outdoor air fraction is not a controlled independent variable in Mode 0, it must be set to a particular value for all times that Mode 0 operates. Typically Mode 0 would have zero supply air, in which case this value would be irrelevant. If this field is blank, the outdoor air fraction for Mode 0 will be 0.00. @@ -4297,82 +4297,82 @@ \subsubsection{Inputs} This optional numeric field specifies the supply air mass flow rate ratio for Mode 0. Mass flow rate is not a controlled independent variable in Mode 0, it must be set to a particular value for all times that Mode 0 operates. Supply air mass flow rate ratio describes supply air mass flow rate as a fraction of the mass flow rate associated with the value in field: ''System Maximum Standard Density Supply Air Volume Flow Rate``. If this field is blank, the supply air mass flow rate ratio for Mode 0 will be 0.00. \paragraph{Field-Set: Mode Definition (extensible object)} -The definition of each operating mode is given as inputs to 25 fields. The first field specifies a unique name for the mode. The following eight fields specify the names of \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects that describe hybrid unit performance parameters. The remaining sixteen fields specify constraints on controlled independent variables, and constraints to describe the indoor and outdoor psychrometric conditions at which the mode is allowed. The definition of operating modes is extensible. To define multiple modes, repeat the following 25 fields with appropriate input values for each mode. The object does not require that modes be defined in a particular order. Up to 25 modes can be defined in this way. +The definition of each operating mode is given as inputs to 25 fields. The first field specifies a unique name for the mode. The following eight fields specify the names of \hyperref[tablelookup]{Table:Lookup} objects that describe hybrid unit performance parameters. The remaining sixteen fields specify constraints on controlled independent variables, and constraints to describe the indoor and outdoor psychrometric conditions at which the mode is allowed. The definition of operating modes is extensible. To define multiple modes, repeat the following 25 fields with appropriate input values for each mode. The object does not require that modes be defined in a particular order. Up to 25 modes can be defined in this way. \paragraph{Field: Mode \# Name} This alpha input field specifies a unique user-assigned descriptive name for Mode \#. \paragraph{Field: Mode \# Supply Air Temperature Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes supply air temperature for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# will not be considered for any time step that requires ventilation, heating, cooling, humidification, or dehumidification. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes supply air temperature for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# will not be considered for any time step that requires ventilation, heating, cooling, humidification, or dehumidification. \paragraph{Field: Mode \# Supply Air Humidity Ratio Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes supply air humidity ratio for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# will not be considered for any period that requires ventilation, heating, cooling, humidification, or dehumidification. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes supply air humidity ratio for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# will not be considered for any period that requires ventilation, heating, cooling, humidification, or dehumidification. \paragraph{Field: Mode \# System Electric Power Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes system electric power consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume electricity. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes system electric power consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume electricity. \paragraph{Field: Mode \# Supply Fan Electric Power Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes supply fan electric power consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume electricity for supply fan. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes supply fan electric power consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume electricity for supply fan. \paragraph{Field: Mode \# External Static Pressure Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes external static pressure for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, external static pressure will not be reported for Mode \#. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes external static pressure for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, external static pressure will not be reported for Mode \#. \paragraph{Field: Mode \# System Second Fuel Consumption Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes second fuel consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume a second fuel. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes second fuel consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume a second fuel. \paragraph{Field: Mode \# System Third Fuel Consumption Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes third fuel consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume a third fuel. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes third fuel consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume a third fuel. \paragraph{Field: Mode \# System Water Use Lookup Table Name} -This optional alpha input field specifies the name of a \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} object that describes water consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume water. +This optional alpha input field specifies the name of a \hyperref[tablelookup]{Table:Lookup} object that describes water consumption for Mode \# as a function of six independent variables: outdoor air temperature, outdoor air humidity ratio, return air temperature, return air humidity ratio, supply air mass flow rate, and outdoor air fraction. If this field is blank, Mode \# does not consume water. \paragraph{Field: Mode \# Minimum Outdoor Air Temperature} -This optional numeric input field specifies the minimum outdoor air temperature at which Mode \# is allowed. When outdoor air temperature is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no lower constraint on outdoor air temperature for Mode \#. +This optional numeric input field specifies the minimum outdoor air temperature at which Mode \# is allowed. When outdoor air temperature is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no lower constraint on outdoor air temperature for Mode \#. \paragraph{Field: Mode \# Maximum Outdoor Air Temperature} -This optional numeric input field specifies the maximum outdoor air temperature at which Mode \# is allowed. When outdoor air temperature is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no upper constraint on outdoor air temperature for Mode \#. +This optional numeric input field specifies the maximum outdoor air temperature at which Mode \# is allowed. When outdoor air temperature is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no upper constraint on outdoor air temperature for Mode \#. \paragraph{Field: Mode \# Minimum Outdoor Air Humidity Ratio} -This optional numeric input field specifies the minimum outdoor air humidity ratio at which Mode \# is allowed. When outdoor air humidity ratio is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no lower constraint on outdoor air humidity ratio for Mode \#. +This optional numeric input field specifies the minimum outdoor air humidity ratio at which Mode \# is allowed. When outdoor air humidity ratio is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no lower constraint on outdoor air humidity ratio for Mode \#. \paragraph{Field: Mode \# Maximum Outdoor Air Humidity Ratio} -This optional numeric input field specifies the maximum outdoor air humidity ratio at which Mode \# is allowed. When outdoor air humidity ratio is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no upper constraint on outdoor air humidity ratio for Mode \#. +This optional numeric input field specifies the maximum outdoor air humidity ratio at which Mode \# is allowed. When outdoor air humidity ratio is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no upper constraint on outdoor air humidity ratio for Mode \#. \paragraph{Field: Mode \# Minimum Outdoor Air Relative Humidity} -This optional numeric input field specifies the minimum outdoor air relative humidity at which Mode \# is allowed. When outdoor air relative humidity is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the lower constraint on outdoor air relative humidity will be 0.00% for Mode \#. +This optional numeric input field specifies the minimum outdoor air relative humidity at which Mode \# is allowed. When outdoor air relative humidity is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the lower constraint on outdoor air relative humidity will be 0.00% for Mode \#. \paragraph{Field: Mode \# Maximum Outdoor Air Relative Humidity} -This optional numeric input field specifies the maximum outdoor air relative humidity at which Mode \# is allowed. When outdoor air relative humidity is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the upper constraint on outdoor air relative humidity will be 100% for Mode \#. +This optional numeric input field specifies the maximum outdoor air relative humidity at which Mode \# is allowed. When outdoor air relative humidity is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the upper constraint on outdoor air relative humidity will be 100% for Mode \#. \paragraph{Field: Mode \# Minimum Return Air Temperature} -This optional numeric input field specifies the minimum return air temperature at which Mode \# is allowed. When return air temperature is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond than the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no lower constraint on outdoor air temperature for Mode \#. +This optional numeric input field specifies the minimum return air temperature at which Mode \# is allowed. When return air temperature is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond than the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no lower constraint on outdoor air temperature for Mode \#. \paragraph{Field: Mode \# Maximum Return Air Temperature} -This optional numeric input field specifies the maximum return air temperature at which Mode \# is allowed. When return air temperature is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no upper constraint on outdoor air temperature for Mode \#. +This optional numeric input field specifies the maximum return air temperature at which Mode \# is allowed. When return air temperature is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no upper constraint on outdoor air temperature for Mode \#. \paragraph{Field: Mode \# Minimum Return Air Humidity Ratio} -This optional numeric input field specifies the minimum return air humidity ratio at which Mode \# mode one is allowed. When return air humidity ratio is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no lower constraint on return air humidity ratio for Mode \#. +This optional numeric input field specifies the minimum return air humidity ratio at which Mode \# mode one is allowed. When return air humidity ratio is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no lower constraint on return air humidity ratio for Mode \#. \paragraph{Field: Mode \# Maximum Return Air Humidity Ratio} -This optional numeric input field specifies the maximum return air humidity ratio at which Mode \# is allowed. When return air humidity ratio is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no upper constraint on return air humidity ratio for Mode \#. +This optional numeric input field specifies the maximum return air humidity ratio at which Mode \# is allowed. When return air humidity ratio is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, there will be no upper constraint on return air humidity ratio for Mode \#. \paragraph{Field: Mode \# Minimum Return Air Relative Humidity} -This optional numeric input field specifies the minimum return air relative humidity at which Mode \# is allowed. When return air relative humidity is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the lower constraint on return air relative humidity will be 0.00% for Mode \#. +This optional numeric input field specifies the minimum return air relative humidity at which Mode \# is allowed. When return air relative humidity is below this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the lower constraint on return air relative humidity will be 0.00% for Mode \#. \paragraph{Field: Mode \# Maximum Return Air Relative Humidity} -This optional numeric input field specifies the maximum return air relative humidity at which Mode \# is allowed. When return air relative humidity is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond than the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the upper constraint on return air relative humidity will be 100% for Mode \# +This optional numeric input field specifies the maximum return air relative humidity at which Mode \# is allowed. When return air relative humidity is above this value all settings in Mode \# will be excluded from the feasible set. This value may be beyond than the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the upper constraint on return air relative humidity will be 100% for Mode \# \paragraph{Field: Mode \# Minimum Outdoor Air Fraction} -This optional numeric input field specifies the minimum outdoor air fraction allowed in Mode \#. Outdoor air fractions below this value will be excluded from the feasible set within Mode \#. This value may be beyond than the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the lower constraint on outdoor air fraction will be 0.00 for Mode \#. +This optional numeric input field specifies the minimum outdoor air fraction allowed in Mode \#. Outdoor air fractions below this value will be excluded from the feasible set within Mode \#. This value may be beyond than the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the lower constraint on outdoor air fraction will be 0.00 for Mode \#. \paragraph{Field: Mode \# Maximum Outdoor Air Fraction} -This optional numeric input field specifies the maximum outdoor air fraction allowed in Mode \#. Outdoor air fractions above this value will be excluded from the feasible set within Mode \#. This value may be beyond than the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the upper constraint on outdoor air fraction will be 1.00 for Mode \#. +This optional numeric input field specifies the maximum outdoor air fraction allowed in Mode \#. Outdoor air fractions above this value will be excluded from the feasible set within Mode \#. This value may be beyond than the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the upper constraint on outdoor air fraction will be 1.00 for Mode \#. \paragraph{Field: Mode \# Minimum Supply Air Mass Flow Rate Ratio} -This optional numeric input field specifies the minimum supply air mass flow rate ratio allowed in Mode \#. Supply air mass flow rate ratios below this value will be excluded from the feasible set within Mode \#. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the lower constraint on supply air mass flow rate ratio will be 0.00 for Mode \#. +This optional numeric input field specifies the minimum supply air mass flow rate ratio allowed in Mode \#. Supply air mass flow rate ratios below this value will be excluded from the feasible set within Mode \#. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the lower constraint on supply air mass flow rate ratio will be 0.00 for Mode \#. \paragraph{Field: Mode \# Maximum Supply Air Mass Flow Rate Ratio} -This optional numeric input field specifies the maximum supply air mass flow rate ratio allowed in Mode \#. Supply air mass flow rate ratios above this value will be excluded from the feasible set within Mode \#. This value may be beyond the extents of the data in \hyperref[tablemultivariablelookup]{Table:MultiVariableLookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the upper constraint on supply air mass flow rate ratio will be 1.00 for Mode \#. +This optional numeric input field specifies the maximum supply air mass flow rate ratio allowed in Mode \#. Supply air mass flow rate ratios above this value will be excluded from the feasible set within Mode \#. This value may be beyond the extents of the data in \hyperref[tablelookup]{Table:Lookup} objects associated with Mode1, in which case this value sets the limit for extrapolation from the data table. If this field is blank, the upper constraint on supply air mass flow rate ratio will be 1.00 for Mode \#. \subsubsection{Outputs} {\tiny diff --git a/doc/output-details-and-examples/src/output-files/eplusout-eio.tex b/doc/output-details-and-examples/src/output-files/eplusout-eio.tex index feb4bead61c..175e5239c69 100644 --- a/doc/output-details-and-examples/src/output-files/eplusout-eio.tex +++ b/doc/output-details-and-examples/src/output-files/eplusout-eio.tex @@ -386,13 +386,13 @@ \subsubsection{Calculation Method}\label{calculation-method} \subsubsection{Water Mains Temperature Schedule Name}\label{water-mains-temperature-schedule-name} -This is name of a schedule that contains site water mains temperature for each time step. +This is name of a schedule that contains site water mains temperature for each time step. -\subsubsection{Annual Average Outdoor Air Temperature}\label{annual-average-outdoor-air-temperature} +\subsubsection{Annual Average Outdoor Air Temperature}\label{annual-average-outdoor-air-temperature} This is the annual average outdoor air dry-bulb temperature for the site. -\subsubsection{Maximum Difference In Monthly Average Outdoor Air Temperatures}\label{maximum-difference-in-monthly-average-outdoor-air-temperatures} +\subsubsection{Maximum Difference In Monthly Average Outdoor Air Temperatures}\label{maximum-difference-in-monthly-average-outdoor-air-temperatures} This is the maximum difference in monthly-daily average of the outdoor air dry-bulb temperature for the site. @@ -460,7 +460,7 @@ \subsubsection{Field:Temperature Modifier Coefficient {[}Internal{]}}\label{fiel Then, the temperature at a height above ground is calculated as: \begin{equation} -\text{ActualTemperature} = \text{Temperature}_{met} + TMC - +\text{ActualTemperature} = \text{Temperature}_{met} + TMC - frac{ \text{TemperatureGradient}_{site} * \text{EarthRadius} * \text{Height}_{site/component} } { \text{EarthRadius} + \text{Height}_{site/component} } \end{equation} @@ -1808,12 +1808,12 @@ \subsubsection{Field: Nominal U (with film coefs)}\label{field-nominal-u-with-fi For opaque surfaces, interior and exterior film coefficients are added to the surface construction based on the prescribed R-values for interior and exterior film coefficients as found in ASHRAE 90.1-2004, Appendix A, and shown below:~ The SI values are the exact values used inside EnergyPlus. \begin{longtable}[c]{p{1.2in}p{1.2in}p{1.2in}p{1.2in}p{1.2in}} -\toprule +\toprule Surface Class & Interior Film Coefficient & Exterior Film Coefficient \tabularnewline \midrule \endfirsthead -\toprule +\toprule Surface Class & Interior Film Coefficient & Exterior Film Coefficient \tabularnewline \midrule \endhead @@ -1945,12 +1945,12 @@ \subsubsection{Field: Outside Model Assignment}\label{field-outside-model-assign This is an integer code for the type of model assigned to the outside face, if a specific model has been assigned. Surface(SurfLoop)\%ExtConvCoeff \begin{longtable}[c]{p{1.5in}p{4.5in}} -\toprule +\toprule Code value & meaning \tabularnewline \midrule \endfirsthead -\toprule +\toprule Code value & meaning \tabularnewline \midrule \endhead @@ -4229,7 +4229,7 @@ \subsubsection{Field: Rated Total Electric Power Test D \{W\}}\label{field-rated Rated total electric power input of the unit at Test condition D per Standard ASHRAE 127. Units are Watts. See the EnergyPlus Engineering Reference (ANSI/ASHRAE 127 - Standard Ratings of Single-Speed DX Cooling Coils) for details on how this value is calculated. The total electric power includes the supply fan power as well. The total electric power input is reported for class I, II, III and IV test conditions. \begin{lstlisting} -! , Component Type, Component Name, Standard 127 Classification, Rated Net Cooling Capacity Test A {W}, Rated Total Electric Power Test A {W}, Rated Net Cooling Capacity Test B {W}, Rated Total Electric Power Test B {W}, Rated Net Cooling Capacity Test C {W}, Rated Total Electric Power Test C {W}, Rated Net Cooling Capacity Test D {W}, Rated Total Electric Power Test D {W} +! , Component Type, Component Name, Standard 127 Classification, Rated Net Cooling Capacity Test A {W}, Rated Total Electric Power Test A {W}, Rated Net Cooling Capacity Test B {W}, Rated Total Electric Power Test B {W}, Rated Net Cooling Capacity Test C {W}, Rated Total Electric Power Test C {W}, Rated Net Cooling Capacity Test D {W}, Rated Total Electric Power Test D {W} DX Cooling Coil ASHRAE 127 Standard Ratings Information, Coil:Cooling:DX:SingleSpeed, MAIN COOLING COIL 1, Class 1, 126953.8, 35918.5, 135678.7, 30852.7, 141523.1, 24400.1, 141727.0, 13951.0 DX Cooling Coil ASHRAE 127 Standard Ratings Information, Coil:Cooling:DX:SingleSpeed, MAIN COOLING COIL 1, Class 2, 133377.6, 37330.3, 140336.0, 31647.7, 141727.0, 24424.7, 141727.0, 13951.0 DX Cooling Coil ASHRAE 127 Standard Ratings Information, Coil:Cooling:DX:SingleSpeed, MAIN COOLING COIL 1, Class 3, 139488.4, 38673.3, 141354.0, 31821.4, 141727.0, 24424.7, 141727.0, 13951.0 @@ -4295,43 +4295,6 @@ \subsubsection{Field: IPLV in IP Units \{Btu/W-h\}}\label{field-iplv-in-ip-units The integrated part load value (\emph{IPLV}) for the Chiller:Electric:EIR and Chiller:Electric:ReformulatedEIR in IP units of Btu/W-hr. See the EnergyPlus Engineering Reference (Electric Chiller Model Based on Condenser Entering Temperature, Standard Ratings) for details on how this value is calculated. -\subsection{Lookup Table Outputs}\label{lookup-table-outputs} - -\textbf{The following fields are shown only when the diagnostics flag is set to DisplayExtraWarnings (ref. Output:Diagnotstics, DisplayAdvancedReportVariables).} - -Outputs are provided for lookup tables in two forms. The first being the outputs related to the creation of a performance curve. When the Interpolation Method for table objects is set to EvaluateCurveToLimits, a performance curve object is created. The coefficients of the performance curve are calculated and a curve object is written for review. The regression statistics are also included. This performance curve may be used in subsequent simulations or saved in a library file for future use. - -\begin{lstlisting} -! -CREATING NEW CURVE OBJECT -! Input as Table:OneIndependentVariable "HPACCOOLCAPFFF" -! RSquared = 1.0000000000 -! Standard Error = 0.0000000000 -! Sample Size = 3 -Curve:Quadratic, -FromTable_HPACCOOLCAPFFF, !- Name - 0.8000000000, !- Coefficient1 Constant - 0.2000000000, !- Coefficient2 x - -3.1086244690E-015, !- Coefficient3 x**2 - 0.0000000000, !- Minimum Value of x - 1.5000000000, !- Maximum Value of x - 0.8000000000, !- Minimum Curve Output - 1.5000000000; !- Maximum Curve Output -END CREATING NEW CURVE OBJECT -`` -\end{lstlisting} - -A second output form is provided to echo the reading of tabular data. The tabular data is echoed for each multi-variable lookup table object (ref. Table:MultiVariableLookup). The data is echoed using an increasing order sort format regardless of the format specified by the user. In addition, the tabular data is echoed when the data is included in the table object, or when read from an external file. This output form is provided as a verification step when reading tabular data. The normalization point is not included in the raw data varification. - -\begin{lstlisting} -! READING LOOKUP TABLE DATA -! Reading tabular data for Table:MultiVariableLookup ``HPACCOOLCAPFFF2'' -1 3 -0.000000000000000E+000 1.00000000000000 1.50000000000000 -0.800000000000000 1.00000000000000 1.10000000000000 -END READING LOOKUP TABLE DATA -\end{lstlisting} - \subsection{Warmup Days Line} As described elsewhere, EnergyPlus simulates the first day of each simulation period until it reaches “convergence”. This data line will show how many warm up days were required to reach that state. diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index ea87faaaea8..1cbe896ab5f 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -443,7 +443,18 @@ SimulationControl, \type integer \minimum 1 \default 1 - + +PerformancePrecisionTradeoffs, + \unique-object + \memo This object enables users to choose certain options that speed up EnergyPlus simulation, + \memo but may lead to small decreases in accuracy of results. + A1; \field Use Coil Direct Solutions + \note If Yes, an analytical or empirical solution will be used to replace iterations in + \note the coil performance calculations. + \type choice + \key Yes + \key No + \default No Building, \memo Describes parameters that are used during the simulation @@ -6960,13 +6971,22 @@ WindowMaterial:Glazing:EquivalentLayer, \minimum> 0.0 \maximum< 1.0 \default 0.84 - N25; \field Back Side Infrared Emissivity + N25, \field Back Side Infrared Emissivity \note The back side long-wave hemispherical emissivity of the glazing. \type real \units dimensionless \minimum> 0.0 \maximum< 1.0 \default 0.84 + N26; \field Thermal Resistance + \note This is the R-Value in SI for the glass. The default value is an + \note approximation for a single layer of glass at 1/4" inch thickness. + \note This field is used only for movable insulation defined with this + \note material type. + \type real + \units m2-K/W + \minimum> 0.0 + \default 0.158 WindowMaterial:Gap:EquivalentLayer, \memo Gas material properties that are used in Windows Equivalent Layer @@ -8792,6 +8812,48 @@ Construction:InternalSource, \type object-list \object-list MaterialName +Construction:AirBoundary, + \memo Indicates an open boundary between two zones. It may be used for base surfaces and fenestration surfaces. + \memo When this construction type is used, the Outside Boundary Condition of the surface + \memo (or the base surface of a fenestration surface) must be either Surface or Zone. + \memo A base surface with Construction:AirBoundary cannot hold any fenestration surfaces. + A1, \field Name + \required-field + \type alpha + \reference ConstructionNames + A2, \field Solar and Daylighting Method + \note This field controls how the surface is modeled for solar distribution and daylighting calculations. + \type choice + \key GroupedZones + \key InteriorWindow + \default GroupedZones + A3, \field Radiant Exchange Method + \note This field controls how the surface is modeled for radiant exchange calculations. + \type choice + \key GroupedZones + \key IRTSurface + \default GroupedZones + A4, \field Air Exchange Method + \note This field controls how air exchange is modeled across this boundary. + \type choice + \key None + \key SimpleMixing + \default None + N1, \field Simple Mixing Air Changes per Hour + \note If the Air Exchange Method is SimpleMixing then this field specifies the air changes per hour + \note using the volume of the smaller zone as the basis. + \note If an AirflowNetwork simulation is active this field is ignored. + \units 1/hr + \type real + \minimum 0 + \default 0.5 + A5; \field Simple Mixing Schedule Name + \note If the Air Exchange Method is SimpleMixing then this field specifies the air exchange schedule. + \note If this field is blank, the schedule is always 1.0. + \note If an AirflowNetwork simulation is active this field is ignored. + \type object-list + \object-list ScheduleNames + WindowThermalModel:Params, \memo object is used to select which thermal model should be used in tarcog simulations A1 , \field Name @@ -12693,7 +12755,7 @@ InternalMass, \memo Used to describe internal zone surface area that does not need to be part of geometric \memo representation. This should be the total surface area exposed to the zone air. \memo If you use a ZoneList in the Zone or ZoneList name field then this definition applies - \memo to all the zones in the ZoneList. + \memo to all the zones in the ZoneList. A1 , \field Name \required-field \type alpha @@ -16574,17 +16636,22 @@ Foundation:Kiva, \required-field \type alpha \reference OutFaceEnvNames + N1, \field Initial Indoor Air Temperature + \note Indoor air temperature used for Kiva initialization (prior to warmup period) + \note If left blank, indoor air temperature will be determined based on zone setpoints + \units C + \type real A2, \field Interior Horizontal Insulation Material Name \type object-list \object-list MaterialName - N1, \field Interior Horizontal Insulation Depth + N2, \field Interior Horizontal Insulation Depth \note Distance from the slab bottom to the top of interior horizontal \note insulation \units m \type real \minimum 0.0 \default 0.0 - N2, \field Interior Horizontal Insulation Width + N3, \field Interior Horizontal Insulation Width \note Extent of insulation as measured from the wall interior \units m \type real @@ -16592,7 +16659,7 @@ Foundation:Kiva, A3, \field Interior Vertical Insulation Material Name \type object-list \object-list MaterialName - N3, \field Interior Vertical Insulation Depth + N4, \field Interior Vertical Insulation Depth \note Extent of insulation as measured from the wall top to the bottom \note edge of the interior vertical insulation \units m @@ -16601,13 +16668,13 @@ Foundation:Kiva, A4, \field Exterior Horizontal Insulation Material Name \type object-list \object-list MaterialName - N4, \field Exterior Horizontal Insulation Depth + N5, \field Exterior Horizontal Insulation Depth \note Distance from the exterior grade to the top of exterior horizontal \note insulation \units m \type real \minimum 0.0 - N5, \field Exterior Horizontal Insulation Width + N6, \field Exterior Horizontal Insulation Width \note Extent of insulation as measured from the wall exterior \units m \type real @@ -16616,19 +16683,19 @@ Foundation:Kiva, A5, \field Exterior Vertical Insulation Material Name \type object-list \object-list MaterialName - N6, \field Exterior Vertical Insulation Depth + N7, \field Exterior Vertical Insulation Depth \note Extent of insulation as measured from the wall top to the bottom \note edge of the exterior vertical insulation \units m \type real \minimum> 0.0 - N7, \field Wall Height Above Grade + N8, \field Wall Height Above Grade \note Distance from the exterior grade to the wall top \units m \type real \minimum 0.0 \default 0.2 - N8, \field Wall Depth Below Slab + N9, \field Wall Depth Below Slab \note Distance from the slab bottom to the bottom of the foundation wall \units m \type real @@ -16642,7 +16709,7 @@ Foundation:Kiva, A7, \field Footing Material Name \type object-list \object-list MaterialName - N9, \field Footing Depth + N10, \field Footing Depth \note Top-to-bottom dimension of the footing (not to be confused with its \note depth in the ground). The width of the footing is defined by the \note material's thickness. @@ -16654,135 +16721,135 @@ Foundation:Kiva, \begin-extensible \type object-list \object-list MaterialName - N10, \field Custom Block 1 Depth + N11, \field Custom Block 1 Depth \note Top-to-bottom dimension of the block downward. \units m \type real \minimum> 0.0 - N11, \field Custom Block 1 X Position + N12, \field Custom Block 1 X Position \note Position outward (+) or inward (-) relative to the foundation wall \note interior \units m \type real - N12, \field Custom Block 1 Z Position + N13, \field Custom Block 1 Z Position \note Position downward (+) relative to the foundation wall top \units m \type real A9, \field Custom Block 2 Material Name \type object-list \object-list MaterialName - N13, \field Custom Block 2 Depth + N14, \field Custom Block 2 Depth \units m \type real \minimum> 0.0 - N14, \field Custom Block 2 X Position + N15, \field Custom Block 2 X Position \units m \type real - N15, \field Custom Block 2 Z Position + N16, \field Custom Block 2 Z Position \units m \type real A10, \field Custom Block 3 Material Name \type object-list \object-list MaterialName - N16, \field Custom Block 3 Depth + N17, \field Custom Block 3 Depth \units m \type real \minimum> 0.0 - N17, \field Custom Block 3 X Position + N18, \field Custom Block 3 X Position \units m \type real - N18, \field Custom Block 3 Z Position + N19, \field Custom Block 3 Z Position \units m \type real A11, \field Custom Block 4 Material Name \type object-list \object-list MaterialName - N19, \field Custom Block 4 Depth + N20, \field Custom Block 4 Depth \units m \type real \minimum> 0.0 - N20, \field Custom Block 4 X Position + N21, \field Custom Block 4 X Position \units m \type real - N21, \field Custom Block 4 Z Position + N22, \field Custom Block 4 Z Position \units m \type real A12, \field Custom Block 5 Material Name \type object-list \object-list MaterialName - N22, \field Custom Block 5 Depth + N23, \field Custom Block 5 Depth \units m \type real \minimum> 0.0 - N23, \field Custom Block 5 X Position + N24, \field Custom Block 5 X Position \units m \type real - N24, \field Custom Block 5 Z Position + N25, \field Custom Block 5 Z Position \units m \type real A13, \field Custom Block 6 Material Name \type object-list \object-list MaterialName - N25, \field Custom Block 6 Depth + N26, \field Custom Block 6 Depth \units m \type real \minimum> 0.0 - N26, \field Custom Block 6 X Position + N27, \field Custom Block 6 X Position \units m \type real - N27, \field Custom Block 6 Z Position + N28, \field Custom Block 6 Z Position \units m \type real A14, \field Custom Block 7 Material Name \type object-list \object-list MaterialName - N16, \field Custom Block 7 Depth + N29, \field Custom Block 7 Depth \units m \type real \minimum> 0.0 - N29, \field Custom Block 7 X Position + N30, \field Custom Block 7 X Position \units m \type real - N30, \field Custom Block 7 Z Position + N31, \field Custom Block 7 Z Position \units m \type real A15, \field Custom Block 8 Material Name \type object-list \object-list MaterialName - N31, \field Custom Block 8 Depth + N32, \field Custom Block 8 Depth \units m \type real \minimum> 0.0 - N32, \field Custom Block 8 X Position + N33, \field Custom Block 8 X Position \units m \type real - N33, \field Custom Block 8 Z Position + N34, \field Custom Block 8 Z Position \units m \type real A16, \field Custom Block 9 Material Name \type object-list \object-list MaterialName - N34, \field Custom Block 9 Depth + N35, \field Custom Block 9 Depth \units m \type real \minimum> 0.0 - N35, \field Custom Block 9 X Position + N36, \field Custom Block 9 X Position \units m \type real - N36, \field Custom Block 9 Z Position + N37, \field Custom Block 9 Z Position \units m \type real A17, \field Custom Block 10 Material Name \type object-list \object-list MaterialName - N37, \field Custom Block 10 Depth + N38, \field Custom Block 10 Depth \units m \type real - N38, \field Custom Block 10 X Position + N39, \field Custom Block 10 X Position \units m \type real \minimum> 0.0 - N39; \field Custom Block 10 Z Position + N40; \field Custom Block 10 Z Position \units m \type real @@ -18352,12 +18419,14 @@ ComplexFenestrationProperty:SolarAbsorbedLayers, ZoneProperty:UserViewFactors:bySurfaceName, \memo View factors for Surface to Surface in a zone. - \memo (Number of Surfaces)**2 must be entered. + \memo (Number of Surfaces)**2 are expected. Any omitted surface pairs will be assumed to have a view factor of zero. \extensible:3 - copy last three fields, remembering to remove ; \format ViewFactor - A1, \field Zone Name + A1, \field Zone or ZoneList Name + \note View factors may be entered for a single zone or for a group of zones connected by Construction:AirBoundary \type object-list \object-list ZoneNames + \object-list ZoneListNames A2, \field From Surface 1 \begin-extensible \type object-list @@ -18559,107 +18628,53 @@ ZoneProperty:UserViewFactors:bySurfaceName, \note This value is the view factor value From Surface => To Surface \type real \maximum 1.0 - A42,A43,N21, \note fields as indicated - A44,A45,N22, \note fields as indicated - A46,A47,N23, \note fields as indicated - A48,A49,N24, \note fields as indicated - A50,A51,N25, \note fields as indicated - A52,A53,N26, \note fields as indicated - A54,A55,N27, \note fields as indicated - A56,A57,N28, \note fields as indicated - A58,A59,N29, \note fields as indicated - A60,A61,N30, \note fields as indicated - A62,A63,N31, \note fields as indicated - A64,A65,N32, \note fields as indicated - A66,A67,N33, \note fields as indicated - A68,A69,N34, \note fields as indicated - A70,A71,N35, \note fields as indicated - A72,A73,N36, \note fields as indicated - A74,A75,N37, \note fields as indicated - A76,A77,N38, \note fields as indicated - A78,A79,N39, \note fields as indicated - A80,A81,N40, \note fields as indicated - A82,A83,N41, \note fields as indicated - A84,A85,N42, \note fields as indicated - A86,A87,N43, \note fields as indicated - A88,A89,N44, \note fields as indicated - A90,A91,N45, \note fields as indicated - A92,A93,N46, \note fields as indicated - A94,A95,N47, \note fields as indicated - A96,A97,N48, \note fields as indicated - A98,A99,N49, \note fields as indicated - A100,A101,N50, \note fields as indicated - A102,A103,N51, \note fields as indicated - A104,A105,N52, \note fields as indicated - A106,A107,N53, \note fields as indicated - A108,A109,N54, \note fields as indicated - A110,A111,N55, \note fields as indicated - A112,A113,N56, \note fields as indicated - A114,A115,N57, \note fields as indicated - A116,A117,N58, \note fields as indicated - A118,A119,N59, \note fields as indicated - A120,A121,N60, \note fields as indicated - A122,A123,N61, \note fields as indicated - A124,A125,N62, \note fields as indicated - A126,A127,N63, \note fields as indicated - A128,A129,N64, \note fields as indicated - A130,A131,N65, \note fields as indicated - A132,A133,N66, \note fields as indicated - A134,A135,N67, \note fields as indicated - A136,A137,N68, \note fields as indicated - A138,A139,N69, \note fields as indicated - A140,A141,N70, \note fields as indicated - A142,A143,N71, \note fields as indicated - A144,A145,N72, \note fields as indicated - A146,A147,N73, \note fields as indicated - A148,A149,N74, \note fields as indicated - A150,A151,N75, \note fields as indicated - A152,A153,N76, \note fields as indicated - A154,A155,N77, \note fields as indicated - A156,A157,N78, \note fields as indicated - A158,A159,N79, \note fields as indicated - A160,A161,N80, \note fields as indicated - A162,A163,N81, \note fields as indicated - A164,A165,N82, \note fields as indicated - A166,A167,N83, \note fields as indicated - A168,A169,N84, \note fields as indicated - A170,A171,N85, \note fields as indicated - A172,A173,N86, \note fields as indicated - A174,A175,N87, \note fields as indicated - A176,A177,N88, \note fields as indicated - A178,A179,N89, \note fields as indicated - A180,A181,N90, \note fields as indicated - A182,A183,N91, \note fields as indicated - A184,A185,N92, \note fields as indicated - A186,A187,N93, \note fields as indicated - A188,A189,N94, \note fields as indicated - A190,A191,N95, \note fields as indicated - A192,A193,N96, \note fields as indicated - A194,A195,N97, \note fields as indicated - A196,A197,N98, \note fields as indicated - A198,A199,N99, \note fields as indicated - A200,A201,N100, \note fields as indicated - A202,A203,N101, \note fields as indicated - A204,A205,N102, \note fields as indicated - A206,A207,N103, \note fields as indicated - A208,A209,N104, \note fields as indicated - A210,A211,N105, \note fields as indicated - A212,A213,N106, \note fields as indicated - A214,A215,N107, \note fields as indicated - A216,A217,N108, \note fields as indicated - A218,A219,N109, \note fields as indicated - A220,A221,N110, \note fields as indicated - A222,A223,N111, \note fields as indicated - A224,A225,N112, \note fields as indicated - A226,A227,N113, \note fields as indicated - A228,A229,N114, \note fields as indicated - A230,A231,N115, \note fields as indicated - A232,A233,N116, \note fields as indicated - A234,A235,N117, \note fields as indicated - A236,A237,N118, \note fields as indicated - A238,A239,N119, \note fields as indicated - A240,A241,N120, \note fields as indicated - A242,A243,N121; \note fields as indicated + A42,A43,N21,A44,A45,N22,A46,A47,N23,A48,A49,N24,A50,A51,N25,A52,A53,N26,A54,A55,N27,A56,A57,N28,A58,A59,N29,A60,A61,N30, + A62,A63,N31,A64,A65,N33,A66,A67,N35,A68,A69,N37,A70,A71,N39,A72,A73,N41,A74,A75,N43,A76,A77,N45,A78,A79,N47,A80,A81,N49, + A82,A83,N41,A84,A85,N43,A86,A87,N45,A88,A89,N47,A90,A91,N49,A92,A93,N51,A94,A95,N53,A96,A97,N55,A98,A99,N57,A100,A101,N59, + A102,A103,N51,A104,A105,N53,A106,A107,N55,A108,A109,N57,A110,A111,N59,A112,A113,N61,A114,A115,N63,A116,A117,N65,A118,A119,N67,A120,A121,N69, + A122,A123,N61,A124,A125,N63,A126,A127,N65,A128,A129,N67,A130,A131,N69,A132,A133,N71,A134,A135,N73,A136,A137,N75,A138,A139,N77,A140,A141,N79, + A142,A143,N71,A144,A145,N73,A146,A147,N75,A148,A149,N77,A150,A151,N79,A152,A153,N81,A154,A155,N83,A156,A157,N85,A158,A159,N87,A160,A161,N89, + A162,A163,N81,A164,A165,N83,A166,A167,N85,A168,A169,N87,A170,A171,N89,A172,A173,N91,A174,A175,N93,A176,A177,N95,A178,A179,N97,A180,A181,N99, + A182,A183,N91,A184,A185,N93,A186,A187,N95,A188,A189,N97,A190,A191,N99,A192,A193,N101,A194,A195,N103,A196,A197,N105,A198,A199,N107,A200,A201,N109, + A202,A203,N101,A204,A205,N103,A206,A207,N105,A208,A209,N107,A210,A211,N109,A212,A213,N111,A214,A215,N113,A216,A217,N115,A218,A219,N117,A220,A221,N119, + A222,A223,N111,A224,A225,N113,A226,A227,N115,A228,A229,N117,A230,A231,N119,A232,A233,N121,A234,A235,N123,A236,A237,N125,A238,A239,N127,A240,A241,N129, + A242,A243,N121,A244,A245,N123,A246,A247,N125,A248,A249,N127,A250,A251,N129,A252,A253,N131,A254,A255,N133,A256,A257,N135,A258,A259,N137,A260,A261,N139, + A262,A263,N131,A264,A265,N133,A266,A267,N135,A268,A269,N137,A270,A271,N139,A272,A273,N141,A274,A275,N143,A276,A277,N145,A278,A279,N147,A280,A281,N149, + A282,A283,N141,A284,A285,N143,A286,A287,N145,A288,A289,N147,A290,A291,N149,A292,A293,N151,A294,A295,N153,A296,A297,N155,A298,A299,N157,A300,A301,N159, + A302,A303,N151,A304,A305,N153,A306,A307,N155,A308,A309,N157,A310,A311,N159,A312,A313,N161,A314,A315,N163,A316,A317,N165,A318,A319,N167,A320,A321,N169, + A322,A323,N161,A324,A325,N163,A326,A327,N165,A328,A329,N167,A330,A331,N169,A332,A333,N171,A334,A335,N173,A336,A337,N175,A338,A339,N177,A340,A341,N179, + A342,A343,N171,A344,A345,N173,A346,A347,N175,A348,A349,N177,A350,A351,N179,A352,A353,N181,A354,A355,N183,A356,A357,N185,A358,A359,N187,A360,A361,N189, + A362,A363,N181,A364,A365,N183,A366,A367,N185,A368,A369,N187,A370,A371,N189,A372,A373,N191,A374,A375,N193,A376,A377,N195,A378,A379,N197,A380,A381,N199, + A382,A383,N191,A384,A385,N193,A386,A387,N195,A388,A389,N197,A390,A391,N199,A392,A393,N201,A394,A395,N203,A396,A397,N205,A398,A399,N207,A400,A401,N209, + A402,A403,N201,A404,A405,N203,A406,A407,N205,A408,A409,N207,A410,A411,N209,A412,A413,N211,A414,A415,N213,A416,A417,N215,A418,A419,N217,A420,A421,N219, + A422,A423,N211,A424,A425,N213,A426,A427,N215,A428,A429,N217,A430,A431,N219,A432,A433,N221,A434,A435,N223,A436,A437,N225,A438,A439,N227,A440,A441,N229, + A442,A443,N221,A444,A445,N223,A446,A447,N225,A448,A449,N227,A450,A451,N229,A452,A453,N231,A454,A455,N233,A456,A457,N235,A458,A459,N237,A460,A461,N239, + A462,A463,N231,A464,A465,N233,A466,A467,N235,A468,A469,N237,A470,A471,N239,A472,A473,N241,A474,A475,N243,A476,A477,N245,A478,A479,N247,A480,A481,N249, + A482,A483,N241,A484,A485,N243,A486,A487,N245,A488,A489,N247,A490,A491,N249,A492,A493,N251,A494,A495,N253,A496,A497,N255,A498,A499,N257,A500,A501,N259, + A502,A503,N251,A504,A505,N253,A506,A507,N255,A508,A509,N257,A510,A511,N259,A512,A513,N261,A514,A515,N263,A516,A517,N265,A518,A519,N267,A520,A521,N269, + A522,A523,N261,A524,A525,N263,A526,A527,N265,A528,A529,N267,A530,A531,N269,A532,A533,N271,A534,A535,N273,A536,A537,N275,A538,A539,N277,A540,A541,N279, + A542,A543,N271,A544,A545,N273,A546,A547,N275,A548,A549,N277,A550,A551,N279,A552,A553,N281,A554,A555,N283,A556,A557,N285,A558,A559,N287,A560,A561,N289, + A562,A563,N281,A564,A565,N283,A566,A567,N285,A568,A569,N287,A570,A571,N289,A572,A573,N291,A574,A575,N293,A576,A577,N295,A578,A579,N297,A580,A581,N299, + A582,A583,N291,A584,A585,N293,A586,A587,N295,A588,A589,N297,A590,A591,N299,A592,A593,N301,A594,A595,N303,A596,A597,N305,A598,A599,N307,A600,A601,N309, + A602,A603,N301,A604,A605,N303,A606,A607,N305,A608,A609,N307,A610,A611,N309,A612,A613,N311,A614,A615,N313,A616,A617,N315,A618,A619,N317,A620,A621,N319, + A622,A623,N311,A624,A625,N313,A626,A627,N315,A628,A629,N317,A630,A631,N319,A632,A633,N321,A634,A635,N323,A636,A637,N325,A638,A639,N327,A640,A641,N329, + A642,A643,N321,A644,A645,N323,A646,A647,N325,A648,A649,N327,A650,A651,N329,A652,A653,N331,A654,A655,N333,A656,A657,N335,A658,A659,N337,A660,A661,N339, + A662,A663,N331,A664,A665,N333,A666,A667,N335,A668,A669,N337,A670,A671,N339,A672,A673,N341,A674,A675,N343,A676,A677,N345,A678,A679,N347,A680,A681,N349, + A682,A683,N341,A684,A685,N343,A686,A687,N345,A688,A689,N347,A690,A691,N349,A692,A693,N351,A694,A695,N353,A696,A697,N355,A698,A699,N357,A700,A701,N359, + A702,A703,N351,A704,A705,N353,A706,A707,N355,A708,A709,N357,A710,A711,N359,A712,A713,N361,A714,A715,N363,A716,A717,N365,A718,A719,N367,A720,A721,N369, + A722,A723,N361,A724,A725,N363,A726,A727,N365,A728,A729,N367,A730,A731,N369,A732,A733,N371,A734,A735,N373,A736,A737,N375,A738,A739,N377,A740,A741,N379, + A742,A743,N371,A744,A745,N373,A746,A747,N375,A748,A749,N377,A750,A751,N379,A752,A753,N381,A754,A755,N383,A756,A757,N385,A758,A759,N387,A760,A761,N389, + A762,A763,N381,A764,A765,N383,A766,A767,N385,A768,A769,N387,A770,A771,N389,A772,A773,N391,A774,A775,N393,A776,A777,N395,A778,A779,N397,A780,A781,N399, + A782,A783,N391,A784,A785,N393,A786,A787,N395,A788,A789,N397,A790,A791,N399,A792,A793,N401,A794,A795,N403,A796,A797,N405,A798,A799,N407,A800,A801,N409, + A802,A803,N401,A804,A805,N403,A806,A807,N405,A808,A809,N407,A810,A811,N409,A812,A813,N411,A814,A815,N413,A816,A817,N415,A818,A819,N417,A820,A821,N419, + A822,A823,N411,A824,A825,N413,A826,A827,N415,A828,A829,N417,A830,A831,N419,A832,A833,N421,A834,A835,N423,A836,A837,N425,A838,A839,N427,A840,A841,N429, + A842,A843,N421,A844,A845,N423,A846,A847,N425,A848,A849,N427,A850,A851,N429,A852,A853,N431,A854,A855,N433,A856,A857,N435,A858,A859,N437,A860,A861,N439, + A862,A863,N431,A864,A865,N433,A866,A867,N435,A868,A869,N437,A870,A871,N439,A872,A873,N441,A874,A875,N443,A876,A877,N445,A878,A879,N447,A880,A881,N449, + A882,A883,N441,A884,A885,N443,A886,A887,N445,A888,A889,N447,A890,A891,N449,A892,A893,N451,A894,A895,N453,A896,A897,N455,A898,A899,N457,A900,A901,N459, + A902,A903,N451,A904,A905,N453,A906,A907,N455,A908,A909,N457,A910,A911,N459,A912,A913,N461,A914,A915,N463,A916,A917,N465,A918,A919,N467,A920,A921,N469, + A922,A923,N461,A924,A925,N463,A926,A927,N465,A928,A929,N467,A930,A931,N469,A932,A933,N471,A934,A935,N473,A936,A937,N475,A938,A939,N477,A940,A941,N479, + A942,A943,N471,A944,A945,N473,A946,A947,N475,A948,A949,N477,A950,A951,N479,A952,A953,N481,A954,A955,N483,A956,A957,N485,A958,A959,N487,A960,A961,N489, + A962,A963,N481,A964,A965,N483,A966,A967,N485,A968,A969,N487,A970,A971,N489,A972,A973,N491,A974,A975,N493,A976,A977,N495,A978,A979,N497,A980,A981,N499; \group Detailed Ground Heat Transfer @@ -34675,10 +34690,10 @@ ZoneHVAC:WaterToAirHeatPump, \object-list HeatingCoilName \note Needs to match in the supplemental heating coil object N11, \field Maximum Supply Air Temperature from Supplemental Heater - \required-field + \required-field \type real \units C - \autosizable + \autosizable \default autosize \note Supply air temperature from the supplemental heater will not exceed this value. N12, \field Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation @@ -40152,7 +40167,7 @@ ZoneHVAC:OutdoorAirUnit:EquipmentList, ZoneHVAC:TerminalUnit:VariableRefrigerantFlow, \memo Zone terminal unit with variable refrigerant flow (VRF) DX cooling and heating coils \memo (air-to-air heat pump). The VRF terminal units are served by an - \memo AirConditioner:VariableRefrigerantFlow or + \memo AirConditioner:VariableRefrigerantFlow or \memo AirConditioner:VariableRefrigerantFlow:FluidTemperatureControl:* system. \min-fields 19 A1 , \field Zone Terminal Unit Name @@ -40332,12 +40347,12 @@ ZoneHVAC:TerminalUnit:VariableRefrigerantFlow, A18, \field Supplemental Heating Coil Name \type object-list \object-list HeatingCoilName - \note Needs to match in the supplemental heating coil object. + \note Needs to match in the supplemental heating coil object. N11, \field Maximum Supply Air Temperature from Supplemental Heater - \required-field + \required-field \type real \units C - \autosizable + \autosizable \default autosize \note Supply air temperature from the supplemental heater will not exceed this value. N12; \field Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation @@ -49455,6 +49470,7 @@ Coil:Cooling:DX:MultiSpeed, \required-field \type alpha \reference CoolingCoilsDXMultiSpeed + \reference DesuperHeatingWaterOnlySources \reference AFNCoilNames A2 , \field Availability Schedule Name \note Availability schedule name for this system. Schedule value > 0 means the system is available. @@ -53479,6 +53495,7 @@ Coil:Cooling:WaterToAirHeatPump:EquationFit, \reference CoolingCoilsWaterToAirHP \reference-class-name validBranchEquipmentTypes \reference validBranchEquipmentNames + \reference DesuperHeatingWaterOnlySources A2, \field Water Inlet Node Name \required-field \type node @@ -55802,7 +55819,7 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A10, \field Part Load Fraction Correlation Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note Part Load Fraction Correlation (function of part load ratio) should be quadratic or cubic. \note Quadratic curve = a + b(PLR) + c(PLR)^2. \note Cubic curve = a + b(PLR) + c(PLR)^2 + d(PLR)^3. @@ -55855,7 +55872,7 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, \required-field \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) @@ -55863,7 +55880,7 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, \required-field \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow @@ -55871,7 +55888,7 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, \required-field \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -55879,7 +55896,7 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, \required-field \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) @@ -55887,7 +55904,7 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, \required-field \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow @@ -55895,7 +55912,7 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, \required-field \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -55940,42 +55957,42 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A17, \field Speed 2 Total WH Capacity Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A18, \field Speed 2 Total WH Capacity Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A19, \field Speed 2 Total WH Capacity Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow A20, \field Speed 2 COP Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A21, \field Speed 2 COP Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A22, \field Speed 2 COP Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -56020,42 +56037,42 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A23, \field Speed 3 Total WH Capacity Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A24, \field Speed 3 Total WH Capacity Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A25, \field Speed 3 Total WH Capacity Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow A26, \field Speed 3 COP Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A27, \field Speed 3 COP Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A28, \field Speed 3 COP Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -56100,42 +56117,42 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A29, \field Speed 4 Total WH Capacity Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A30, \field Speed 4 Total WH Capacity Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A31, \field Speed 4 Total WH Capacity Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow A32, \field Speed 4 COP Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A33, \field Speed 4 COP Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A34, \field Speed 4 COP Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -56180,42 +56197,42 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A35, \field Speed 5 Total WH Capacity Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A36, \field Speed 5 Total WH Capacity Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A37, \field Speed 5 Total WH Capacity Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow A38, \field Speed 5 COP Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A39, \field Speed 5 COP Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A40, \field Speed 5 COP Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -56260,42 +56277,42 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A41, \field Speed 6 Total WH Capacity Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A42, \field Speed 6 Total WH Capacity Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A43, \field Speed 6 Total WH Capacity Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow A44, \field Speed 6 COP Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A45, \field Speed 6 COP Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A46, \field Speed 6 COP Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -56340,42 +56357,42 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A47, \field Speed 7 Total WH Capacity Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A48, \field Speed 7 Total WH Capacity Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A49, \field Speed 7 Total WH Capacity Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow A50, \field Speed 7 COP Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A51, \field Speed 7 COP Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A52, \field Speed 7 COP Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -56420,42 +56437,42 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A53, \field Speed 8 Total WH Capacity Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A54, \field Speed 8 Total WH Capacity Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A55, \field Speed 8 Total WH Capacity Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow A56, \field Speed 8 COP Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A57, \field Speed 8 COP Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A58, \field Speed 8 COP Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -56500,42 +56517,42 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A59, \field Speed 9 Total WH Capacity Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A60, \field Speed 9 Total WH Capacity Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A61, \field Speed 9 Total WH Capacity Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow A62, \field Speed 9 COP Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A63, \field Speed 9 COP Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A64, \field Speed 9 COP Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -56580,42 +56597,42 @@ Coil:WaterHeating:AirToWaterHeatPump:VariableSpeed, A65, \field Speed 10 Total WH Capacity Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A66, \field Speed 10 Total WH Capacity Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A67, \field Speed 10 Total WH Capacity Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow A68, \field Speed 10 COP Function of Temperature Curve Name \type object-list \object-list BivariateFunctions - \note Table:TwoIndependentVariables object can also be used + \note Table:Lookup object can also be used \note curve = a + b*wb + c*wb**2 + d*ewt + e*ewt**2 + f*wb*ewt \note wb = entering wet-bulb temperature or dry bulb temperature upon selection (C) \note ewt = water entering temperature seen by the condenser (C) A69, \field Speed 10 COP Function of Air Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffa + c*ffa**2 \note cubic curve = a + b*ffa + c*ffa**2 + d*ffa**3 \note ffa = Fraction of the full load Air Flow A70; \field Speed 10 COP Function of Water Flow Fraction Curve Name \type object-list \object-list UnivariateFunctions - \note Table:OneIndependentVariable object can also be used + \note Table:Lookup object can also be used \note quadratic curve = a + b*ffw + c*ffw**2 \note cubic curve = a + b*ffw + c*ffw**2 + d*ffw**3 \note ffw = Fraction of the full load Water Flow @@ -56700,6 +56717,7 @@ Coil:WaterHeating:Desuperheater, A7 , \field Tank Object Type \type choice \key WaterHeater:Mixed + \key WaterHeater:Stratified \default WaterHeater:Mixed \note Specify the type of water heater tank used by this desuperheater water heating coil. A8 , \field Tank Name @@ -56708,6 +56726,7 @@ Coil:WaterHeating:Desuperheater, \note The name of the water heater tank used by this desuperheater water heating coil. \note Needs to match the name used in the corresponding water heater object. \object-list WaterHeaterMixedNames + \object-list WaterHeaterStratifiedNames A9 , \field Heating Source Object Type \required-field \type choice @@ -56715,6 +56734,8 @@ Coil:WaterHeating:Desuperheater, \key Coil:Cooling:DX:TwoSpeed \key Coil:Cooling:DX:TwoStageWithHumidityControlMode \key Coil:Cooling:DX:VariableSpeed + \key Coil:Cooling:DX:MultiSpeed + \key Coil:Cooling:WaterToAirHeatPump:EquationFit \key Refrigeration:CompressorRack \key Refrigeration:Condenser:AirCooled \key Refrigeration:Condenser:EvaporativeCooled @@ -56724,6 +56745,7 @@ Coil:WaterHeating:Desuperheater, \required-field \type object-list \object-list DesuperHeatingCoilSources + \object-list DesuperHeatingWaterOnlySources \note The name of the DX system used for heat reclaim. N6 , \field Water Flow Rate \required-field @@ -57292,7 +57314,7 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \note required field if Cooling And Charge Mode is available \type object-list \object-list TrivariateFunctions - \note Allowed curve or table objects are Curve:Triquadratic and Table:MultiVariableLookup + \note Allowed curve or table objects are Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = db, z = stes) \note x = ewb = evaporator entering wet-bulb temperature (C) \note y = db = dry-bulb temperature seen by the condenser (C) @@ -57309,7 +57331,7 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \note required field if Cooling And Charge Mode is available \type object-list \object-list TrivariateFunctions - \note Allowed curve or table objects are Curve:Triquadratic and Table:MultiVariableLookup + \note Allowed curve or table objects are Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = db, z = stes) \note x = ewb = evaporator entering wet-bulb temperature (C) \note y = db = dry-bulb temperature seen by the condenser (C) @@ -57334,7 +57356,7 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \note required field if Cooling And Charge Mode is available \type object-list \object-list TrivariateFunctions - \note Allowed curve or table objects are Curve:Triquadratic and Table:MultiVariableLookup + \note Allowed curve or table objects are Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = db, z = stes) \note x = ewb = evaporator entering wet-bulb temperature (C) \note y = db = dry-bulb temperature seen by the condenser (C) @@ -57351,7 +57373,7 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \note required field if Cooling And Charge Mode is available \type object-list \object-list TrivariateFunctions - \note Allowed curve or table objects are Curve:Triquadratic and Table:MultiVariableLookup + \note Allowed curve or table objects are Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = db, z = stes) \note x = ewb = evaporator entering wet-bulb temperature (C) \note y = db = dry-bulb temperature seen by the condenser (C) @@ -57378,11 +57400,11 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \object-list BivariateFunctions \object-list TrivariateFunctions \note Curves or tables with either two or three independent variables can be used. - \note Curve:Biquadratic, Table:TwoIndependentVariables, Curve:Bicubic and Curve:QuadraticLinear allowed + \note Curve:Biquadratic, Table:Lookup, Curve:Bicubic and Curve:QuadraticLinear allowed \note curve = a + b*ewb + c*ewb**2 + d*edb + e*edb**2 + f*ewb*edb \note x = ewb = entering wet-bulb temperature seen by the cooling coil (C) \note y = edb = entering dry-bulb temperature seen by the cooling coil (C) - \note Also allows Curve:Triquadratic and Table:MultiVariableLookup + \note Also allows Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = edb, z = stes) \note z = stes = state of thermal energy storage (C or fraction) A30, \field Cooling And Charge Mode Sensible Heat Ratio Function of Flow Fraction Curve Name @@ -57456,7 +57478,7 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \note required field if Cooling Only Mode is available \type object-list \object-list TrivariateFunctions - \note Allowed curve or table objects are Curve:Triquadratic and Table:MultiVariableLookup + \note Allowed curve or table objects are Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = db, z = stes) \note x = ewb = evaporator entering wet-bulb temperature (C) \note y = db = dry-bulb temperature seen by the condenser (C) @@ -57473,7 +57495,7 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \note required field if Cooling And Discharge Mode is available \type object-list \object-list TrivariateFunctions - \note Allowed curve or table objects are Curve:Triquadratic and Table:MultiVariableLookup + \note Allowed curve or table objects are Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = db, z = stes) \note x = ewb = evaporator entering wet-bulb temperature (C) \note y = db = dry-bulb temperature seen by the condenser (C) @@ -57498,7 +57520,7 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \note required field if Cooling And Discharge Mode is available \type object-list \object-list TrivariateFunctions - \note Allowed curve or table objects are Curve:Triquadratic and Table:MultiVariableLookup + \note Allowed curve or table objects are Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = db, z = stes) \note x = ewb = evaporator entering wet-bulb temperature (C) \note y = db = dry-bulb temperature seen by the condenser (C) @@ -57523,7 +57545,7 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \note required field if Cooling And Discharge Mode is available \type object-list \object-list TrivariateFunctions - \note Allowed curve or table objects are Curve:Triquadratic and Table:MultiVariableLookup + \note Allowed curve or table objects are Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = db, z = stes) \note x = ewb = evaporator entering wet-bulb temperature (C) \note y = db = dry-bulb temperature seen by the condenser (C) @@ -57553,7 +57575,7 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \note curve = a + b*ewb + c*ewb**2 + d*edb + e*edb**2 + f*ewb*edb \note x = ewb = entering wet-bulb temperature seen by the cooling coil (C) \note y = edb = entering dry-bulb temperature seen by the cooling coil (C) - \note Also allows Curve:Triquadratic and Table:MultiVariableLookup + \note Also allows Curve:Triquadratic and Table:Lookup \note curve or table = func(x = ewb, y = edb, z = stes) \note z = stes = state of thermal energy storage (C or fraction) A44, \field Cooling And Discharge Mode Sensible Heat Ratio Function of Flow Fraction Curve Name @@ -57686,11 +57708,10 @@ Coil:Cooling:DX:SingleSpeed:ThermalStorage, \object-list BivariateFunctions \object-list TrivariateFunctions \note Curves or tables with either two or three independent variables can be used. - \note Curve:Biquadratic, Table:TwoIndependentVariables, Curve:Bicubic and Curve:QuadraticLinear allowed - \note curve = a + b*ewb + c*ewb**2 + d*edb + e*edb**2 + f*ewb*edb + \note For two independent variables: \note x = ewb = entering wet-bulb temperature seen by the cooling coil (C) \note y = edb = entering dry-bulb temperature seen by the cooling coil (C) - \note Also allows Curve:Triquadratic and Table:MultiVariableLookup + \note For three independent variables: \note curve or table = func(x = ewb, y = edb, z = stes) \note z = stes = state of thermal energy storage (C or fraction) A55, \field Discharge Only Mode Sensible Heat Ratio Function of Flow Fraction Curve Name @@ -58010,16 +58031,11 @@ EvaporativeCooler:Indirect:ResearchSpecial, \note x = HXFlowRatio = sum of the primary and secondary flow rates divided by the sum of the design flow \note rates. If this input field is left blank, constant cooler wetbulb effectiveness is assumed. \note This input field is required in order to use operating range control based on the following three - \note input fields: Evaporative Operation Minimum Limit Secondary Air Drybulb Temperature, - \note Evaporative Operation Maximum Limit Outdoor Wetbulb Temperature, and + \note input fields: Evaporative Operation Minimum Limit Secondary Air Drybulb Temperature, + \note Evaporative Operation Maximum Limit Outdoor Wetbulb Temperature, and \note Dry Operation Maximum Limit Outdoor Drybulb Temperature \type object-list \object-list UnivariateFunctions - \note Any curve or table with one independent variable can be used: - \note Curve:Linear, Curve:Quadratic, Curve:Cubic, Curve:Quartic, Curve:Exponent, - \note Curve:ExponentialSkewNormal, Curve:Sigmoid, Curve:RectuangularHyperbola1, - \note Curve:RectangularHyperbola2, Curve:ExponentialDecay, Curve:DoubleExponentialDecay, - \note Table:OneIndependentVariable N2 , \field Cooler Drybulb Design Effectiveness \type real \note dry operation effectiveness with respect to drybulb temperature difference @@ -58031,16 +58047,11 @@ EvaporativeCooler:Indirect:ResearchSpecial, \note x = HXFlowRatio = sum of the primary and secondary flow rates divided by the sum of the design flow \note rates. If this input field is left blank, constant cooler drybulb effectiveness is assumed. \note This input field is required in order to use operating range control based on the following three - \note input fields: Evaporative Operation Minimum Limit Secondary Air Drybulb Temperature, - \note Evaporative Operation Maximum Limit Outdoor Wetbulb Temperature, and + \note input fields: Evaporative Operation Minimum Limit Secondary Air Drybulb Temperature, + \note Evaporative Operation Maximum Limit Outdoor Wetbulb Temperature, and \note Dry Operation Maximum Limit Outdoor Drybulb Temperature \type object-list \object-list UnivariateFunctions - \note Any curve or table with one independent variable can be used: - \note Curve:Linear, Curve:Quadratic, Curve:Cubic, Curve:Quartic, Curve:Exponent, - \note Curve:ExponentialSkewNormal, Curve:Sigmoid, Curve:RectuangularHyperbola1, - \note Curve:RectangularHyperbola2, Curve:ExponentialDecay, Curve:DoubleExponentialDecay, - \note Table:OneIndependentVariable N3 , \field Recirculating Water Pump Design Power \units W \ip-units W @@ -58064,11 +58075,6 @@ EvaporativeCooler:Indirect:ResearchSpecial, \note Design Air Flow Rate. If this input field is left blank, pump power is assumed to be proportional to part load ratio. \type object-list \object-list UnivariateFunctions - \note Any curve or table with one independent variable can be used: - \note Curve:Linear, Curve:Quadratic, Curve:Cubic, Curve:Quartic, Curve:Exponent, - \note Curve:ExponentialSkewNormal, Curve:Sigmoid, Curve:RectuangularHyperbola1, - \note Curve:RectangularHyperbola2, Curve:ExponentialDecay, Curve:DoubleExponentialDecay, - \note Table:OneIndependentVariable N5 , \field Secondary Air Design Flow Rate \type real \units m3/s @@ -58100,11 +58106,6 @@ EvaporativeCooler:Indirect:ResearchSpecial, \note Flow Rate. If this input field is left blank, the secondary fan power is assumed to be proportional to part load ratio. \type object-list \object-list UnivariateFunctions - \note Any curve or table with one independent variable can be used: - \note Curve:Linear, Curve:Quadratic, Curve:Cubic, Curve:Quartic, Curve:Exponent, - \note Curve:ExponentialSkewNormal, Curve:Sigmoid, Curve:RectuangularHyperbola1, - \note Curve:RectangularHyperbola2, Curve:ExponentialDecay, Curve:DoubleExponentialDecay, - \note Table:OneIndependentVariable A7 , \field Primary Air Inlet Node Name \required-field \type node @@ -58214,11 +58215,6 @@ EvaporativeCooler:Direct:ResearchSpecial, \note is assumed to be constant. \type object-list \object-list UnivariateFunctions - \note Any curve or table with one independent variable can be used: - \note Curve:Linear, Curve:Quadratic, Curve:Cubic, Curve:Quartic, Curve:Exponent, - \note Curve:ExponentialSkewNormal, Curve:Sigmoid, Curve:RectuangularHyperbola1, - \note Curve:RectangularHyperbola2, Curve:ExponentialDecay, Curve:DoubleExponentialDecay, - \note Table:OneIndependentVariable N2 , \field Primary Air Design Flow Rate \type real \units m3/s @@ -58249,11 +58245,6 @@ EvaporativeCooler:Direct:ResearchSpecial, \note by Primary Air Design Flow Rate \type object-list \object-list UnivariateFunctions - \note Any curve or table with one independent variable can be used: - \note Curve:Linear, Curve:Quadratic, Curve:Cubic, Curve:Quartic, Curve:Exponent, - \note Curve:ExponentialSkewNormal, Curve:Sigmoid, Curve:RectuangularHyperbola1, - \note Curve:RectangularHyperbola2, Curve:ExponentialDecay, Curve:DoubleExponentialDecay, - \note Table:OneIndependentVariable A5 , \field Air Inlet Node Name \required-field \type node @@ -60836,12 +60827,14 @@ AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass, \key CoolingPriority \key HeatingPriority \key ZonePriority + \key LoadPriority \default ZonePriority \note CoolingPriority = system provides cooling if any zone requires cooling. \note HeatingPriority = system provides heating if any zone requires heating. \note ZonePriority = system controlled based on the total number of zones \note requiring cooling or heating (highest number of zones \note in cooling or heating determines the system's operating mode). + \note LoadPriority = system provides cooling or heating based on total zone loads. N7 , \field Minimum Outlet Air Temperature During Cooling Operation \type real \units C @@ -60858,7 +60851,7 @@ AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass, \note Specify the maximum outlet air temperature allowed for this unitary system \note during heating operation. This value should be greater than the minimum outlet \note air temperature during cooling operation. - A19; \field Dehumidification Control Type + A19, \field Dehumidification Control Type \type choice \key None \key Multimode @@ -60877,6 +60870,17 @@ AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass, \note SetpointManager:SingleZone:Humidity:Maximum, \note SetpointManager:MultiZone:Humidity:Maximum or \note SetpointManager:MultiZone:MaximumHumidity:Average objects. + A20, \field Plenum or Mixer Inlet Node Name + \type node + \note Enter the name of the bypass duct node connected to a plenum or mixer. + \note This field is required when this HVAC System is connected to a plenum or mixer. + \note This is a different node name than that entered in the Bypass Duct Splitter Node Name field. + N9 ; \field Minimum Runtime Before Operating Mode Change + \type real + \units hr + \minimum 0.0 + \default 0.25 + \note This is the minimum amount of time the unit operates in cooling or heating mode before changing modes. AirLoopHVAC:UnitaryHeatPump:AirToAir:MultiSpeed, \memo Unitary system, heating and cooling, multi-speed with constant volume supply fan @@ -63565,8 +63569,8 @@ AirLoopHVAC:OutdoorAirSystem, \reference-class-name validBranchEquipmentTypes \reference validBranchEquipmentNames A2, \field Controller List Name - \note Enter the name of an AirLoopHVAC:ControllerList object. - \required-field + \note Enter the name of an AirLoopHVAC:ControllerList object or blank if this object is used in + \note AirLoopHVAC:DedicatedOutdoorAirSystem. \type object-list \object-list ControllerLists A3, \field Outdoor Air Equipment List Name @@ -65012,6 +65016,346 @@ AirLoopHVAC:ReturnPath, \type object-list \object-list ReturnPathComponentNames +AirLoopHVAC:DedicatedOutdoorAirSystem, + \extensible:1 Just duplicate last field and comments (changing numbering, please) + \min-fields 11 + \memo Defines a central forced air system to provide dedicated outdoor air to multiple + \memo AirLoopHVACs. + A1 , \field Name + \required-field + \type alpha + \reference DOASAirLoops + A2 , \field AirLoopHVAC:OutdoorAirSystem Name + \note Enter the name of an AirLoopHVAC:OutdoorAirSystem object. + \type object-list + \object-list validBranchEquipmentNames + A3 , \field Availability Schedule Name + \note Availability schedule name for this system. Schedule value > 0 means the system is available. + \note If this field is blank, the system is always available. + \type object-list + \object-list ScheduleNames + A4 , \field AirLoopHVAC:Mixer Name + \note Name of AirLoopHVAC:Mixer. + \object-list AirLoopHVACMixerNames + \required-field + A5 , \field AirLoopHVAC:Splitter Name + \note Name of AirLoopHVAC:Splitter. + \object-list AirLoopHVACSplitterNames + \required-field + N1 , \field Preheat Design Temperature + \required-field + \type real + \units C + N2 , \field Preheat Design Humidity Ratio + \required-field + \type real + \units kgWater/kgDryAir + N3 , \field Precool Design Temperature + \required-field + \type real + \units C + N4 , \field Precool Design Humidity Ratio + \required-field + \type real + \units kgWater/kgDryAir + N5 , \field Number of AirLoopHVAC + \required-field + \type integer + \note Enter the number of the AirLoopHAVC served by AirLoopHVAC:DedicatedOutdoorAirSystem + A6 , \field AirLoopHVAC 1 Name + \note The rest of fields are extensible. It requires AirLoopHVAC names served by + \note an AirLoopHVAC:DedicatedOutdoorAirSystem. + \begin-extensible + \type object-list + \object-list AirPrimaryLoops + A7 , \field AirLoopHVAC 2 Name + \type object-list + \object-list AirPrimaryLoops + A8 , \field AirLoopHVAC 3 Name + \type object-list + \object-list AirPrimaryLoops + A9 , \field AirLoopHVAC 4 Name + \type object-list + \object-list AirPrimaryLoops + A10, \field AirLoopHVAC 5 Name + \type object-list + \object-list AirPrimaryLoops + A11, \field AirLoopHVAC 6 Name + \type object-list + \object-list AirPrimaryLoops + A12, \field AirLoopHVAC 7 Name + \type object-list + \object-list AirPrimaryLoops + A13, \field AirLoopHVAC 8 Name + \type object-list + \object-list AirPrimaryLoops + A14, \field AirLoopHVAC 9 Name + \type object-list + \object-list AirPrimaryLoops + A15, \field AirLoopHVAC 10 Name + \type object-list + \object-list AirPrimaryLoops + A16, \field AirLoopHVAC 11 Name + \type object-list + \object-list AirPrimaryLoops + A17, \field AirLoopHVAC 12 Name + \type object-list + \object-list AirPrimaryLoops + A18, \field AirLoopHVAC 13 Name + \type object-list + \object-list AirPrimaryLoops + A19, \field AirLoopHVAC 14 Name + \type object-list + \object-list AirPrimaryLoops + A20, \field AirLoopHVAC 15 Name + \type object-list + \object-list AirPrimaryLoops + A21, \field AirLoopHVAC 16 Name + \type object-list + \object-list AirPrimaryLoops + A22, \field AirLoopHVAC 17 Name + \type object-list + \object-list AirPrimaryLoops + A23, \field AirLoopHVAC 18 Name + \type object-list + \object-list AirPrimaryLoops + A24, \field AirLoopHVAC 19 Name + \type object-list + \object-list AirPrimaryLoops + A25; \field AirLoopHVAC 20 Name + \type object-list + \object-list AirPrimaryLoops + +AirLoopHVAC:Mixer, + \extensible:1 - Just duplicate last field and comments (changing numbering, please) + \memo Mix N inlet air streams from Relief Air Stream Node in OutdoorAir:Mixer objects + \memo served by AirLoopHVAC objects listed in AirLoopHVAC:DedicatedOutdoorAirSystem into one + \memo (currently 10 as default, but extensible). Node names cannot + \memo be duplicated within a single mixer list. + A1 , \field Name + \required-field + \reference AirLoopHVACMixerNames + A2 , \field Outlet Node Name + \required-field + \type node + A3 , \field Inlet 1 Node Name + \begin-extensible + \required-field + \type node + A4 , \field Inlet 2 Node Name + \type node + A5 , \field Inlet 3 Node Name + \type node + A6 , \field Inlet 4 Node Name + \type node + A7 , \field Inlet 5 Node Name + \type node + A8 , \field Inlet 6 Node Name + \type node + A9 , \field Inlet 7 Node Name + \type node + A10, \field Inlet 8 Node Name + \type node + A11, \field Inlet 9 Node Name + \type node + A12, \field Inlet 10 Node Name + \type node + A13, \field Inlet 11 Node Name + \type node + A14, \field Inlet 12 Node Name + \type node + A15, \field Inlet 13 Node Name + \type node + A16, \field Inlet 14 Node Name + \type node + A17, \field Inlet 15 Node Name + \type node + A18, \field Inlet 16 Node Name + \type node + A19, \field Inlet 17 Node Name + \type node + A20, \field Inlet 18 Node Name + \type node + A21, \field Inlet 19 Node Name + \type node + A22, \field Inlet 20 Node Name + \type node + A23, \field Inlet 21 Node Name + \type node + A24, \field Inlet 22 Node Name + \type node + A25, \field Inlet 23 Node Name + \type node + A26, \field Inlet 24 Node Name + \type node + A27, \field Inlet 25 Node Name + \type node + A28, \field Inlet 26 Node Name + \type node + A29, \field Inlet 27 Node Name + \type node + A30, \field Inlet 28 Node Name + \type node + A31, \field Inlet 29 Node Name + \type node + A32, \field Inlet 30 Node Name + \type node + A33, \field Inlet 31 Node Name + \type node + A34, \field Inlet 32 Node Name + \type node + A35, \field Inlet 33 Node Name + \type node + A36, \field Inlet 34 Node Name + \type node + A37, \field Inlet 35 Node Name + \type node + A38, \field Inlet 36 Node Name + \type node + A39, \field Inlet 37 Node Name + \type node + A40, \field Inlet 38 Node Name + \type node + A41, \field Inlet 39 Node Name + \type node + A42, \field Inlet 40 Node Name + \type node + A43, \field Inlet 41 Node Name + \type node + A44, \field Inlet 42 Node Name + \type node + A45, \field Inlet 43 Node Name + \type node + A46, \field Inlet 44 Node Name + \type node + A47, \field Inlet 45 Node Name + \type node + A48, \field Inlet 46 Node Name + \type node + A49, \field Inlet 47 Node Name + \type node + A50, \field Inlet 48 Node Name + \type node + A51, \field Inlet 49 Node Name + \type node + A52; \field Inlet 50 Node Name + \type node + +AirLoopHVAC:Splitter, + \extensible:1 Just duplicate last field and comments (changing numbering, please) + \memo Split one air stream from AirLoopHVAC:DedicatedOutdoorAirSystem outlet node into N + \memo outlet streams (currently 10 as default, but extensible). Node names + \memo should be Outdoor Air Stream Node Name in OutdoorAir:Mixer objects served by + \memo AirLoopHVAC objects listed in AirLoopHVAC:DedicatedOutdoorAirSystem. + A1 , \field Name + \required-field + \reference AirLoopHVACSplitterNames + A2 , \field Inlet Node Name + \required-field + \type node + A3 , \field Outlet 1 Node Name + \begin-extensible + \required-field + \type node + A4 , \field Outlet 2 Node Name + \type node + A5 , \field Outlet 3 Node Name + \type node + A6 , \field Outlet 4 Node Name + \type node + A7 , \field Outlet 5 Node Name + \type node + A8 , \field Outlet 6 Node Name + \type node + A9 , \field Outlet 7 Node Name + \type node + A10, \field Outlet 8 Node Name + \type node + A11, \field Outlet 9 Node Name + \type node + A12, \field Outlet 10 Node Name + \type node + A13, \field Outlet 11 Node Name + \type node + A14, \field Outlet 12 Node Name + \type node + A15, \field Outlet 13 Node Name + \type node + A16, \field Outlet 14 Node Name + \type node + A17, \field Outlet 15 Node Name + \type node + A18, \field Outlet 16 Node Name + \type node + A19, \field Outlet 17 Node Name + \type node + A20, \field Outlet 18 Node Name + \type node + A21, \field Outlet 19 Node Name + \type node + A22, \field Outlet 20 Node Name + \type node + A23, \field Outlet 21 Node Name + \type node + A24, \field Outlet 22 Node Name + \type node + A25, \field Outlet 23 Node Name + \type node + A26, \field Outlet 24 Node Name + \type node + A27, \field Outlet 25 Node Name + \type node + A28, \field Outlet 26 Node Name + \type node + A29, \field Outlet 27 Node Name + \type node + A30, \field Outlet 28 Node Name + \type node + A31, \field Outlet 29 Node Name + \type node + A32, \field Outlet 30 Node Name + \type node + A33, \field Outlet 31 Node Name + \type node + A34, \field Outlet 32 Node Name + \type node + A35, \field Outlet 33 Node Name + \type node + A36, \field Outlet 34 Node Name + \type node + A37, \field Outlet 35 Node Name + \type node + A38, \field Outlet 36 Node Name + \type node + A39, \field Outlet 37 Node Name + \type node + A40, \field Outlet 38 Node Name + \type node + A41, \field Outlet 39 Node Name + \type node + A42, \field Outlet 40 Node Name + \type node + A43, \field Outlet 41 Node Name + \type node + A44, \field Outlet 42 Node Name + \type node + A45, \field Outlet 43 Node Name + \type node + A46, \field Outlet 44 Node Name + \type node + A47, \field Outlet 45 Node Name + \type node + A48, \field Outlet 46 Node Name + \type node + A49, \field Outlet 47 Node Name + \type node + A50, \field Outlet 48 Node Name + \type node + A51, \field Outlet 49 Node Name + \type node + A52; \field Outlet 50 Node Name + \type node + \group Node-Branch Management Branch, @@ -68948,13 +69292,13 @@ Chiller:Electric:ReformulatedEIR, \note The form of this curve is based on the input for \note Electric Input to Cooling Output RatioFunction of Part Load Ratio Curve Type \note Type=LeavingCondenserWaterTemperature: Calculated based on LCT and PLR - \note Curve object type should be Curve:Bicubic or Table:TwoIndependentVariables + \note Curve object type should be Curve:Bicubic or Table:Lookup \note Bicubic curve = a + b*LCT + c*LCT**2 + d*PLR + e*PLR**2 + f*LCT*PLR + g*0 + h*PLR**3 \note + i*0 + j*0 \note PLR = part load ratio (cooling load/steady state capacity) \note LCT = leaving condenser fluid temperature(C) \note Type=Lift: Calculated based on dT*, Tdev* and PLR - \note Curve object type should be Curve:ChillerPartLoadWithLiftCurves or Table:MultiVariableLookup + \note Curve object type should be Curve:ChillerPartLoadWithLiftCurves or Table:Lookup \note ChillerPartLoadWithLiftCurves curve = a + b*(dT*) + c*(dT*)**2 + d*PLR + e*PLR**2 + f*(dT*)*PLR + g*(dT*)**3 \note + h*PLR**3 + i*(dT*)**2*PLR + j*(dT*)*PLR**2 + k*(dT*)**2*PLR**2 + l*(Tdev*)*PLR**3 \note x = dT* = normalized fractional Lift = dT / dTref @@ -83888,7 +84232,7 @@ Refrigeration:AirChiller, A5 , \field Capacity Correction Curve Name \type object-list \object-list UnivariateFunctions - \note Can also be the name of a "Table:OneIndependentVariable" or a "Table:MultiVariableLookup" + \object-list TrivariateFunctions \note Should be blank for LinearSHR60 correction curve type N9 , \field SHR60 Correction Factor \type real @@ -91263,62 +91607,34 @@ Curve:ChillerPartLoadWithLift, \group Performance Tables -Table:OneIndependentVariable, - \extensible:2 repeat last two fields - \min-fields 14 - \memo Allows entry of tabular data pairs as alternate input - \memo for performance curve objects. - \memo Performance curve objects can be created using these inputs. - \memo Linear Table Equation: Output = a + bX - \memo Linear solution requires a minimum of 2 data pairs - \memo Quadratic Table Equation: Output = a + b*X + c*X**2 - \memo Quadratic solution requires a minimum of 3 data pairs - \memo Cubic Table Equation: Output = a + b*X + c* X**2 + d*X**3 - \memo Cubic solution requires a minimum of 4 data pairs - \memo Quartic Table Equation: Output = a + b*X + c* X**2 + d*X**3 + e*X**4 - \memo Quartic solution requires a minimum of 5 data pairs - \memo Exponent Table Equation: Output = a + b*X**c - \memo Exponent solution requires a minimum of 4 data pairs - A1 , \field Name +Table:IndependentVariable, + \memo An independent variable representing a single dimension of a Table:Lookup + \memo object. + \extensible:1 + A1, \field Name \required-field + \reference IndependentVariableName \type alpha - \reference UnivariateFunctions - A2 , \field Curve Type + A2, \field Interpolation Method \type choice \key Linear - \key Quadratic \key Cubic - \key Quartic - A3 , \field Interpolation Method + \default Linear + A3, \field Extrapolation Method \type choice - \key LinearInterpolationOfTable - \key EvaluateCurveToLimits - \key LagrangeInterpolationLinearExtrapolation - N1 , \field Minimum Value of X + \key Constant + \key Linear + \default Constant + N1, \field Minimum Value \type real \unitsBasedOnField A4 - \note used only when Interpolation Type is Evaluate Curve - \note to Limits - N2 , \field Maximum Value of X + N2, \field Maximum Value \type real \unitsBasedOnField A4 - \note used only when Interpolation Type is Evaluate Curve - \note to Limits - N3 , \field Minimum Table Output + N3, \field Normalization Reference Value \type real - \note Specify the minimum value calculated by this table - \note lookup object - \unitsBasedOnField A5 - \note used only when Interpolation Type is Evaluate Curve - \note to Limits - N4 , \field Maximum Table Output - \type real - \note Specify the maximum value calculated by this table - \note lookup object - \unitsBasedOnField A5 - \note used only when Interpolation Type is Evaluate Curve - \note to Limits - A4, \field Input Unit Type for X + \unitsBasedOnField A4 + A4, \field Unit Type \type choice \key Dimensionless \key Temperature @@ -91326,214 +91642,51 @@ Table:OneIndependentVariable, \key MassFlow \key Power \key Distance + \key Angle \default Dimensionless - A5, \field Output Unit Type - \type choice - \key Dimensionless - \key Capacity - \key Power - \key Temperature - \default Dimensionless - N5 , \field Normalization Reference - \type real - \note This field is used to normalize the following ouput data. - \note The minimum and maximum table output fields are also normalized. - \note If this field is blank or 1, the table data presented - \note in the following fields will be used with normalization - \note reference set to 1. - N6 , \field X Value #1 - \required-field + A5, \field External File Name + \type alpha + \retaincase + N4, \field External File Column Number + \type integer + \minimum 1 + N5, \field External File Starting Row Number + \type integer + \minimum 1 + N6, \field Value 1 \type real \begin-extensible - N7 , \field Output Value #1 - \required-field - \type real - N8 , \field X Value #2 - \required-field + N7, \field Value 2 \type real - N9 , \field Output Value #2 - \required-field - \type real - N10, \field X Value #3 - \type real - N11, \field Output Value #3 - \type real - N12, \field X Value #4 - \type real - N13, \field Output Value #4 - \type real - N14, \field X Value #5 - \type real - N15, \field Output Value #5 - \type real - N16, \field X Value #6 - \type real - N17, \field Output Value #6 - \type real - N18, \field X Value #7 - \type real - N19, \field Output Value #7 - \type real - N20,N21,N22,N23,N24,N25,N26,N27,N28,N29,N30,N31,N32,N33,N34,N35,N36,N37,N38,N39, \note fields as indicated - N40,N41,N42,N43,N44,N45,N46,N47,N48,N49,N50,N51,N52,N53,N54,N55,N56,N57,N58,N59, \note fields as indicated - N60,N61,N62,N63,N64,N65,N66,N67,N68,N69,N70,N71,N72,N73,N74,N75,N76,N77,N78,N79, \note fields as indicated - N80,N81,N82,N83,N84,N85,N86,N87,N88,N89,N90,N91,N92,N93,N94,N95,N96,N97,N98,N99, \note fields as indicated - N100,N101,N102,N103,N104,N105,N106,N107,N108,N109,N110,N111,N112,N113,N114,N115,N116,N117,N118,N119; \note fields as indicated + N8,N9,N10,N11,N12,N13,N14,N15,N16,N17,N18,N19,N20; -Table:TwoIndependentVariables, - \extensible:3 repeat last three fields - \min-fields 14 - \memo Allows entry of tabular data pairs as alternate input - \memo for performance curve objects. - \memo Performance curve objects can be created using these inputs. - \memo BiQuadratic Table Equation: Output = a + bX + cX**2 + dY + eY**2 + fXY - \memo BiQuadratic solution requires a minimum of 6 data pairs - \memo QuadraticLinear Table Equation: Output = a + bX + cX**2 + dY + eXY + fX**2Y - \memo QuadraticLinear solution requires a minimum of 6 data pairs - A1 , \field Name +Table:IndependentVariableList, + \memo A sorted list of independent variables used by one or more Table:Lookup + \memo objects. + \extensible:1 + A1, \field Name \required-field + \reference IndependentVariableListName \type alpha - \reference BivariateFunctions - A2 , \field Curve Type - \type choice - \key BiQuadratic - \key QuadraticLinear - A3 , \field Interpolation Method - \type choice - \key LinearInterpolationOfTable - \key EvaluateCurveToLimits - \key LagrangeInterpolationLinearExtrapolation - \default LagrangeInterpolationLinearExtrapolation - N1 , \field Minimum Value of X - \type real - \unitsBasedOnField A4 - N2 , \field Maximum Value of X - \type real - \unitsBasedOnField A4 - N3 , \field Minimum Value of Y - \type real - \unitsBasedOnField A5 - N4 , \field Maximum Value of Y - \type real - \unitsBasedOnField A5 - N5 , \field Minimum Table Output - \type real - \note Specify the minimum value calculated by this table lookup object - \unitsBasedOnField A6 - N6 , \field Maximum Table Output - \type real - \note Specify the maximum value calculated by this table lookup object - \unitsBasedOnField A6 - A4, \field Input Unit Type for X - \type choice - \key Dimensionless - \key Temperature - \key VolumetricFlow - \key MassFlow - \key Power - \key Distance - \key Angle - \default Dimensionless - A5, \field Input Unit Type for Y - \type choice - \key Dimensionless - \key Temperature - \key VolumetricFlow - \key MassFlow - \key Power - \key Distance - \key Wavelength - \default Dimensionless - A6, \field Output Unit Type - \type choice - \key Dimensionless - \key Capacity - \key Power - \key Temperature - \default Dimensionless - N7 , \field Normalization Reference - \type real - \note This field is used to normalize the following output data. - \note The minimum and maximum table output fields are also normalized. - \note If this field is blank or 1, the table data presented below will be used. - A7 , \field External File Name - \type alpha - \retaincase - N8 , \field X Value #1 - \type real + A2, \field Independent Variable 1 Name + \required-field + \type object-list + \object-list IndependentVariableName \begin-extensible - N9 , \field Y Value #1 - \type real - N10, \field Output Value #1 - \type real - N11, \field X Value #2 - \type real - N12, \field Y Value #2 - \type real - N13, \field Output Value #2 - \type real - N14, \field X Value #3 - \type real - N15, \field Y Value #3 - \type real - N16, \field Output Value #3 - \type real - N17, \field X Value #4 - \type real - N18, \field Y Value #4 - \type real - N19, \field Output Value #4 - \type real - N20,N21,N22,N23,N24,N25,N26,N27,N28,N29,N30,N31,N32,N33,N34,N35,N36,N37,N38,N39, \note fields as indicated - N40,N41,N42,N43,N44,N45,N46,N47,N48,N49,N50,N51,N52,N53,N54,N55,N56,N57,N58,N59, \note fields as indicated - N60,N61,N62,N63,N64,N65,N66,N67,N68,N69,N70,N71,N72,N73,N74,N75,N76,N77,N78,N79, \note fields as indicated - N80,N81,N82,N83,N84,N85,N86,N87,N88,N89,N90,N91,N92,N93,N94,N95,N96,N97,N98,N99, \note fields as indicated - N100,N101,N102,N103,N104,N105,N106,N107,N108,N109,N110,N111,N112,N113,N114,N115,N116,N117,N118,N119, \note fields as indicated - N120,N121,N122,N123,N124,N125,N126,N127,N128,N129,N130,N131,N132,N133,N134,N135,N136,N137,N138,N139, \note fields as indicated - N140,N141,N142,N143,N144,N145,N146,N147,N148,N149,N150,N151,N152,N153,N154,N155,N156,N157,N158,N159, \note fields as indicated - N160,N161,N162,N163,N164,N165,N166,N167,N168,N169,N170,N171,N172,N173,N174,N175,N176,N177,N178,N179, \note fields as indicated - N180,N181,N182,N183,N184,N185,N186,N187,N188,N189,N190,N191,N192,N193,N194,N195,N196,N197,N198,N199, \note fields as indicated - N200,N201,N202,N203,N204,N205,N206,N207,N208,N209,N210,N211,N212,N213,N214,N215,N216,N217,N218,N219, \note fields as indicated - N220,N221,N222,N223,N224,N225,N226,N227,N228,N229,N230,N231,N232,N233,N234,N235,N236,N237,N238,N239, \note fields as indicated - N240,N241,N242,N243,N244,N245,N246,N247,N248,N249,N250,N251,N252,N253,N254,N255,N256,N257,N258,N259, \note fields as indicated - N260,N261,N262,N263,N264,N265,N266,N267,N268,N269,N270,N271,N272,N273,N274,N275,N276,N277,N278,N279, \note fields as indicated - N280,N281,N282,N283,N284,N285,N286,N287,N288,N289,N290,N291,N292,N293,N294,N295,N296,N297,N298,N299, \note fields as indicated - N300,N301,N302,N303,N304,N305,N306,N307,N308,N309,N310,N311,N312,N313,N314,N315,N316,N317,N318,N319, \note fields as indicated - N320,N321,N322,N323,N324,N325,N326,N327,N328,N329,N330,N331,N332,N333,N334,N335,N336,N337,N338,N339, \note fields as indicated - N340,N341,N342,N343,N344,N345,N346,N347,N348,N349,N350,N351,N352,N353,N354,N355,N356,N357,N358,N359, \note fields as indicated - N360,N361,N362,N363,N364,N365,N366,N367,N368,N369,N370,N371,N372,N373,N374,N375,N376,N377,N378,N379, \note fields as indicated - N380,N381,N382,N383,N384,N385,N386,N387,N388,N389,N390,N391,N392,N393,N394,N395,N396,N397,N398,N399, \note fields as indicated - N400,N401,N402,N403,N404,N405,N406,N407,N408,N409,N410,N411,N412,N413,N414,N415,N416,N417,N418,N419, \note fields as indicated - N420,N421,N422,N423,N424,N425,N426,N427,N428,N429,N430,N431,N432,N433,N434,N435,N436,N437,N438,N439, \note fields as indicated - N440,N441,N442,N443,N444,N445,N446,N447,N448,N449,N450,N451,N452,N453,N454,N455,N456,N457,N458,N459, \note fields as indicated - N460,N461,N462,N463,N464,N465,N466,N467,N468,N469,N470,N471,N472,N473,N474,N475,N476,N477,N478,N479, \note fields as indicated - N480,N481,N482,N483,N484,N485,N486,N487,N488,N489,N490,N491,N492,N493,N494,N495,N496,N497,N498,N499, \note fields as indicated - N500,N501,N502,N503,N504,N505,N506,N507,N508,N509,N510,N511,N512,N513,N514,N515,N516,N517,N518,N519, \note fields as indicated - N520,N521,N522,N523,N524,N525,N526,N527,N528,N529,N530,N531,N532,N533,N534,N535,N536,N537,N538,N539, \note fields as indicated - N540,N541,N542,N543,N544,N545,N546,N547,N548,N549,N550,N551,N552,N553,N554,N555,N556,N557,N558,N559, \note fields as indicated - N560,N561,N562,N563,N564,N565,N566,N567,N568,N569,N570,N571,N572,N573,N574,N575,N576,N577,N578,N579, \note fields as indicated - N580,N581,N582,N583,N584,N585,N586,N587,N588,N589,N590,N591,N592,N593,N594,N595,N596,N597,N598,N599, \note fields as indicated - N600,N601,N602,N603,N604,N605,N606,N607,N608,N609,N610,N611,N612,N613,N614,N615,N616,N617,N618,N619, \note fields as indicated - N620,N621,N622,N623,N624,N625,N626,N627,N628,N629,N630,N631,N632,N633,N634,N635,N636,N637,N638,N639, \note fields as indicated - N640,N641,N642,N643,N644,N645,N646,N647,N648,N649,N650,N651,N652,N653,N654,N655,N656,N657,N658,N659, \note fields as indicated - N660,N661,N662,N663,N664,N665,N666,N667,N668,N669,N670,N671,N672,N673,N674,N675,N676,N677,N678,N679, \note fields as indicated - N680,N681,N682,N683,N684,N685,N686,N687,N688,N689,N690,N691,N692,N693,N694,N695,N696,N697,N698,N699, \note fields as indicated - N700,N701,N702,N703,N704,N705,N706,N707,N708,N709,N710,N711,N712,N713,N714,N715,N716,N717,N718,N719, \note fields as indicated - N720,N721,N722,N723,N724,N725,N726,N727,N728,N729,N730,N731,N732,N733,N734,N735,N736,N737,N738,N739, \note fields as indicated - N740,N741,N742,N743,N744,N745,N746,N747,N748,N749,N750,N751,N752,N753,N754,N755,N756,N757,N758,N759, \note fields as indicated - N760,N761,N762,N763,N764,N765,N766,N767,N768,N769,N770,N771,N772,N773,N774,N775,N776,N777,N778,N779, \note fields as indicated - N780,N781,N782,N783,N784,N785,N786,N787,N788,N789,N790,N791,N792,N793,N794,N795,N796,N797,N798,N799; \note fields as indicated - -Table:MultiVariableLookup, - \memo The multi-variable lookup table can represent from 1 to 6 independent variables and - \memo can interpolate these independent variables up to a 4th order polynomial. The - \memo polynomial order is assumed to be the number of interpolation points (n) minus 1. - \memo When any independent variable value is outside the table limits, linear extrapolation - \memo is used to predict the table result and is based on the two nearest data points in the - \memo table for that particular independent variable. - \extensible:20 repeat last twenty fields remembering to move the semi-colon to the last value - \min-fields 27 - A1 , \field Name + A3, \field Independent Variable 2 Name + \type object-list + \object-list IndependentVariableName + A4,A5,A6,A7; + +Table:Lookup, + \memo Lookup tables are used in place of curves and can represent any number + \memo of independent variables (defined as Table:IndependentVariable objects + \memo in a Table:IndependentVariableList). Output values are interpolated + \memo within the bounds defined by each independent variable and extrapolated + \memo beyond the bounds according to the interpolation/extrapolation methods + \memo defined by each independent variable. + \extensible:1 + A1, \field Name \required-field \reference UnivariateFunctions \reference BivariateFunctions @@ -91541,531 +91694,128 @@ Table:MultiVariableLookup, \reference QuadvariateFunctions \reference MultivariateFunctions \type alpha - A2 , \field Interpolation Method - \type choice - \key LinearInterpolationOfTable - \key EvaluateCurveToLimits - \key LagrangeInterpolationLinearExtrapolation - \default LagrangeInterpolationLinearExtrapolation - N1 , \field Number of Interpolation Points - \type integer - \minimum> 1 - \maximum 4 - \default 3 - A3 , \field Curve Type - \type choice - \key Linear - \key Quadratic - \key Cubic - \key Quartic - \key BiQuadratic - \key QuadraticLinear - A4 , \field Table Data Format - \type choice - \key SingleLineIndependentVariableWithMatrix - \default SingleLineIndependentVariableWithMatrix - A5 , \field External File Name - \type alpha - \retaincase - A6 , \field X1 Sort Order - \type choice - \key Ascending - \key Descending - \default Ascending - A7 , \field X2 Sort Order + A2, \field Independent Variable List Name + \required-field + \type object-list + \object-list IndependentVariableListName + A3, \field Normalization Method \type choice - \key Ascending - \key Descending - \default Ascending - N2 , \field Normalization Reference - \type real - \note This field is used to normalize the table output data. - \note The minimum and maximum table output fields are also normalized. - \note If this field is blank or 1, the table data will be directly used. - \note This field is not allowed to be set equal to 0. - N3 , \field Minimum Value of X1 - \type real - \unitsBasedOnField A8 - N4 , \field Maximum Value of X1 - \type real - \unitsBasedOnField A8 - N5 , \field Minimum Value of X2 - \type real - \unitsBasedOnField A9 - N6 , \field Maximum Value of X2 - \type real - \unitsBasedOnField A9 - N7 , \field Minimum Value of X3 - \type real - \unitsBasedOnField A10 - N8 , \field Maximum Value of X3 - \type real - \unitsBasedOnField A10 - N9 , \field Minimum Value of X4 - \type real - \unitsBasedOnField A11 - N10, \field Maximum Value of X4 - \type real - \unitsBasedOnField A11 - N11, \field Minimum Value of X5 - \type real - \unitsBasedOnField A12 - N12, \field Maximum Value of X5 - \type real - \unitsBasedOnField A12 - N13, \field Minimum Value of X6 - \type real - \unitsBasedOnField A13 - N14, \field Maximum Value of X6 + \key None + \key DivisorOnly + \key AutomaticWithDivisor + \default None + N1, \field Normalization Divisor \type real - \unitsBasedOnField A13 - N15, \field Minimum Table Output + \default 1.0 + N2, \field Minimum Output \type real - \note Specify the minimum value calculated by this curve object - \unitsBasedOnField A13 - N16, \field Maximum Table Output + \unitsBasedOnField A4 + N3, \field Maximum Output \type real - \note Specify the maximum value calculated by this curve object - \unitsBasedOnField A13 - A8 , \field Input Unit Type for X1 - \type choice - \key Dimensionless - \key Temperature - \key VolumetricFlow - \key MassFlow - \key Power - \key Distance - \default Dimensionless - A9 , \field Input Unit Type for X2 - \type choice - \key Dimensionless - \key Temperature - \key VolumetricFlow - \key MassFlow - \key Power - \key Distance - \default Dimensionless - A10, \field Input Unit Type for X3 - \type choice - \key Dimensionless - \key Temperature - \key VolumetricFlow - \key MassFlow - \key Power - \key Distance - \default Dimensionless - A11, \field Input Unit Type for X4 - \type choice - \key Dimensionless - \key Temperature - \key VolumetricFlow - \key MassFlow - \key Power - \key Distance - \default Dimensionless - A12, \field Input Unit Type for X5 - \type choice - \key Dimensionless - \key Temperature - \key VolumetricFlow - \key MassFlow - \key Power - \key Distance - \default Dimensionless - A13, \field Input Unit Type for X6 - \type choice - \key Dimensionless - \key Temperature - \key VolumetricFlow - \key MassFlow - \key Power - \key Distance - \default Dimensionless - A14, \field Output Unit Type + \unitsBasedOnField A4 + A4, \field Output Unit Type \type choice \key Dimensionless \key Capacity \key Power - \key Temperature \default Dimensionless - N17, \field Number of Independent Variables + A5, \field External File Name + \type alpha + \retaincase + N4, \field External File Column Number \type integer - \minimum> 0 - \maximum 6 - N18, \field Number of Values for Independent Variable X1 + \minimum 1 + N5, \field External File Starting Row Number \type integer - N19, \field Field 1 Determined by the Number of Independent Variables + \minimum 1 + N6, \field Output Value 1 \type real - N20, \field Field 2 Determined by the Number of Independent Variables - N21, \field Field 3 Determined by the Number of Independent Variables + \unitsBasedOnField A4 \begin-extensible -N22,N23,N24,N25,N26,N27,N28,N29,N30,N31,N32,N33,N34,N35,N36,N37,N38,N39,N40,N41,N42,N43,N44,N45,N46, \note fields as indicated -N47,N48,N49,N50,N51,N52,N53,N54,N55,N56,N57,N58,N59,N60,N61,N62,N63,N64,N65,N66,N67,N68,N69,N70,N71, \note fields as indicated -N72,N73,N74,N75,N76,N77,N78,N79,N80,N81,N82,N83,N84,N85,N86,N87,N88,N89,N90,N91,N92,N93,N94,N95,N96, \note fields as indicated -N97,N98,N99,N100,N101,N102,N103,N104,N105,N106,N107,N108,N109,N110,N111,N112,N113,N114,N115,N116,N117, \note fields as indicated -N118,N119,N120,N121,N122,N123,N124,N125,N126,N127,N128,N129,N130,N131,N132,N133,N134,N135,N136,N137, \note fields as indicated -N138,N139,N140,N141,N142,N143,N144,N145,N146,N147,N148,N149,N150,N151,N152,N153,N154,N155,N156,N157, \note fields as indicated -N158,N159,N160,N161,N162,N163,N164,N165,N166,N167,N168,N169,N170,N171,N172,N173,N174,N175,N176,N177, \note fields as indicated -N178,N179,N180,N181,N182,N183,N184,N185,N186,N187,N188,N189,N190,N191,N192,N193,N194,N195,N196,N197, \note fields as indicated -N198,N199,N200,N201,N202,N203,N204,N205,N206,N207,N208,N209,N210,N211,N212,N213,N214,N215,N216,N217, \note fields as indicated -N218,N219,N220,N221,N222,N223,N224,N225,N226,N227,N228,N229,N230,N231,N232,N233,N234,N235,N236,N237, \note fields as indicated -N238,N239,N240,N241,N242,N243,N244,N245,N246,N247,N248,N249,N250,N251,N252,N253,N254,N255,N256,N257, \note fields as indicated -N258,N259,N260,N261,N262,N263,N264,N265,N266,N267,N268,N269,N270,N271,N272,N273,N274,N275,N276,N277, \note fields as indicated -N278,N279,N280,N281,N282,N283,N284,N285,N286,N287,N288,N289,N290,N291,N292,N293,N294,N295,N296,N297, \note fields as indicated -N298,N299,N300,N301,N302,N303,N304,N305,N306,N307,N308,N309,N310,N311,N312,N313,N314,N315,N316,N317, \note fields as indicated -N318,N319,N320,N321,N322,N323,N324,N325,N326,N327,N328,N329,N330,N331,N332,N333,N334,N335,N336,N337, \note fields as indicated -N338,N339,N340,N341,N342,N343,N344,N345,N346,N347,N348,N349,N350,N351,N352,N353,N354,N355,N356,N357, \note fields as indicated -N358,N359,N360,N361,N362,N363,N364,N365,N366,N367,N368,N369,N370,N371,N372,N373,N374,N375,N376,N377, \note fields as indicated -N378,N379,N380,N381,N382,N383,N384,N385,N386,N387,N388,N389,N390,N391,N392,N393,N394,N395,N396,N397, \note fields as indicated -N398,N399,N400,N401,N402,N403,N404,N405,N406,N407,N408,N409,N410,N411,N412,N413,N414,N415,N416,N417, \note fields as indicated -N418,N419,N420,N421,N422,N423,N424,N425,N426,N427,N428,N429,N430,N431,N432,N433,N434,N435,N436,N437, \note fields as indicated -N438,N439,N440,N441,N442,N443,N444,N445,N446,N447,N448,N449,N450,N451,N452,N453,N454,N455,N456,N457, \note fields as indicated -N458,N459,N460,N461,N462,N463,N464,N465,N466,N467,N468,N469,N470,N471,N472,N473,N474,N475,N476,N477, \note fields as indicated -N478,N479,N480,N481,N482,N483,N484,N485,N486,N487,N488,N489,N490,N491,N492,N493,N494,N495,N496,N497, \note fields as indicated -N498,N499,N500,N501,N502,N503,N504,N505,N506,N507,N508,N509,N510,N511,N512,N513,N514,N515,N516,N517, \note fields as indicated -N518,N519,N520,N521,N522,N523,N524,N525,N526,N527,N528,N529,N530,N531,N532,N533,N534,N535,N536,N537, \note fields as indicated -N538,N539,N540,N541,N542,N543,N544,N545,N546,N547,N548,N549,N550,N551,N552,N553,N554,N555,N556,N557, \note fields as indicated -N558,N559,N560,N561,N562,N563,N564,N565,N566,N567,N568,N569,N570,N571,N572,N573,N574,N575,N576,N577, \note fields as indicated -N578,N579,N580,N581,N582,N583,N584,N585,N586,N587,N588,N589,N590,N591,N592,N593,N594,N595,N596,N597, \note fields as indicated -N598,N599,N600,N601,N602,N603,N604,N605,N606,N607,N608,N609,N610,N611,N612,N613,N614,N615,N616,N617, \note fields as indicated -N618,N619,N620,N621,N622,N623,N624,N625,N626,N627,N628,N629,N630,N631,N632,N633,N634,N635,N636,N637, \note fields as indicated -N638,N639,N640,N641,N642,N643,N644,N645,N646,N647,N648,N649,N650,N651,N652,N653,N654,N655,N656,N657, \note fields as indicated -N658,N659,N660,N661,N662,N663,N664,N665,N666,N667,N668,N669,N670,N671,N672,N673,N674,N675,N676,N677, \note fields as indicated -N678,N679,N680,N681,N682,N683,N684,N685,N686,N687,N688,N689,N690,N691,N692,N693,N694,N695,N696,N697, \note fields as indicated -N698,N699,N700,N701,N702,N703,N704,N705,N706,N707,N708,N709,N710,N711,N712,N713,N714,N715,N716,N717, \note fields as indicated -N718,N719,N720,N721,N722,N723,N724,N725,N726,N727,N728,N729,N730,N731,N732,N733,N734,N735,N736,N737, \note fields as indicated -N738,N739,N740,N741,N742,N743,N744,N745,N746,N747,N748,N749,N750,N751,N752,N753,N754,N755,N756,N757, \note fields as indicated -N758,N759,N760,N761,N762,N763,N764,N765,N766,N767,N768,N769,N770,N771,N772,N773,N774,N775,N776,N777, \note fields as indicated -N778,N779,N780,N781,N782,N783,N784,N785,N786,N787,N788,N789,N790,N791,N792,N793,N794,N795,N796,N797, \note fields as indicated -N798,N799,N800,N801,N802,N803,N804,N805,N806,N807,N808,N809,N810,N811,N812,N813,N814,N815,N816,N817, \note fields as indicated -N818,N819,N820,N821,N822,N823,N824,N825,N826,N827,N828,N829,N830,N831,N832,N833,N834,N835,N836,N837, \note fields as indicated -N838,N839,N840,N841,N842,N843,N844,N845,N846,N847,N848,N849,N850,N851,N852,N853,N854,N855,N856,N857, \note fields as indicated -N858,N859,N860,N861,N862,N863,N864,N865,N866,N867,N868,N869,N870,N871,N872,N873,N874,N875,N876,N877, \note fields as indicated -N878,N879,N880,N881,N882,N883,N884,N885,N886,N887,N888,N889,N890,N891,N892,N893,N894,N895,N896,N897, \note fields as indicated -N898,N899,N900,N901,N902,N903,N904,N905,N906,N907,N908,N909,N910,N911,N912,N913,N914,N915,N916,N917, \note fields as indicated -N918,N919,N920,N921,N922,N923,N924,N925,N926,N927,N928,N929,N930,N931,N932,N933,N934,N935,N936,N937, \note fields as indicated -N938,N939,N940,N941,N942,N943,N944,N945,N946,N947,N948,N949,N950,N951,N952,N953,N954,N955,N956,N957, \note fields as indicated -N958,N959,N960,N961,N962,N963,N964,N965,N966,N967,N968,N969,N970,N971,N972,N973,N974,N975,N976,N977, \note fields as indicated -N978,N979,N980,N981,N982,N983,N984,N985,N986,N987,N988,N989,N990,N991,N992,N993,N994,N995,N996,N997, \note fields as indicated -N998,N999,N1000,N1001,N1002,N1003,N1004,N1005,N1006,N1007,N1008,N1009,N1010,N1011,N1012,N1013,N1014, \note fields as indicated -N1015,N1016,N1017,N1018,N1019,N1020,N1021,N1022,N1023,N1024,N1025,N1026,N1027,N1028,N1029,N1030,N1031, \note fields as indicated -N1032,N1033,N1034,N1035,N1036,N1037,N1038,N1039,N1040,N1041,N1042,N1043,N1044,N1045,N1046,N1047,N1048, \note fields as indicated -N1049,N1050,N1051,N1052,N1053,N1054,N1055,N1056,N1057,N1058,N1059,N1060,N1061,N1062,N1063,N1064,N1065, \note fields as indicated -N1066,N1067,N1068,N1069,N1070,N1071,N1072,N1073,N1074,N1075,N1076,N1077,N1078,N1079,N1080,N1081,N1082, \note fields as indicated -N1083,N1084,N1085,N1086,N1087,N1088,N1089,N1090,N1091,N1092,N1093,N1094,N1095,N1096,N1097,N1098,N1099, \note fields as indicated -N1100,N1101,N1102,N1103,N1104,N1105,N1106,N1107,N1108,N1109,N1110,N1111,N1112,N1113,N1114,N1115,N1116, \note fields as indicated -N1117,N1118,N1119,N1120,N1121,N1122,N1123,N1124,N1125,N1126,N1127,N1128,N1129,N1130,N1131,N1132,N1133, \note fields as indicated -N1134,N1135,N1136,N1137,N1138,N1139,N1140,N1141,N1142,N1143,N1144,N1145,N1146,N1147,N1148,N1149,N1150, \note fields as indicated -N1151,N1152,N1153,N1154,N1155,N1156,N1157,N1158,N1159,N1160,N1161,N1162,N1163,N1164,N1165,N1166,N1167, \note fields as indicated -N1168,N1169,N1170,N1171,N1172,N1173,N1174,N1175,N1176,N1177,N1178,N1179,N1180,N1181,N1182,N1183,N1184, \note fields as indicated -N1185,N1186,N1187,N1188,N1189,N1190,N1191,N1192,N1193,N1194,N1195,N1196,N1197,N1198,N1199,N1200,N1201, \note fields as indicated -N1202,N1203,N1204,N1205,N1206,N1207,N1208,N1209,N1210,N1211,N1212,N1213,N1214,N1215,N1216,N1217,N1218, \note fields as indicated -N1219,N1220,N1221,N1222,N1223,N1224,N1225,N1226,N1227,N1228,N1229,N1230,N1231,N1232,N1233,N1234,N1235, \note fields as indicated -N1236,N1237,N1238,N1239,N1240,N1241,N1242,N1243,N1244,N1245,N1246,N1247,N1248,N1249,N1250,N1251,N1252, \note fields as indicated -N1253,N1254,N1255,N1256,N1257,N1258,N1259,N1260,N1261,N1262,N1263,N1264,N1265,N1266,N1267,N1268,N1269, \note fields as indicated -N1270,N1271,N1272,N1273,N1274,N1275,N1276,N1277,N1278,N1279,N1280,N1281,N1282,N1283,N1284,N1285,N1286, \note fields as indicated -N1287,N1288,N1289,N1290,N1291,N1292,N1293,N1294,N1295,N1296,N1297,N1298,N1299,N1300,N1301,N1302,N1303, \note fields as indicated -N1304,N1305,N1306,N1307,N1308,N1309,N1310,N1311,N1312,N1313,N1314,N1315,N1316,N1317,N1318,N1319,N1320, \note fields as indicated -N1321,N1322,N1323,N1324,N1325,N1326,N1327,N1328,N1329,N1330,N1331,N1332,N1333,N1334,N1335,N1336,N1337, \note fields as indicated -N1338,N1339,N1340,N1341,N1342,N1343,N1344,N1345,N1346,N1347,N1348,N1349,N1350,N1351,N1352,N1353,N1354, \note fields as indicated -N1355,N1356,N1357,N1358,N1359,N1360,N1361,N1362,N1363,N1364,N1365,N1366,N1367,N1368,N1369,N1370,N1371, \note fields as indicated -N1372,N1373,N1374,N1375,N1376,N1377,N1378,N1379,N1380,N1381,N1382,N1383,N1384,N1385,N1386,N1387,N1388, \note fields as indicated -N1389,N1390,N1391,N1392,N1393,N1394,N1395,N1396,N1397,N1398,N1399,N1400,N1401,N1402,N1403,N1404,N1405, \note fields as indicated -N1406,N1407,N1408,N1409,N1410,N1411,N1412,N1413,N1414,N1415,N1416,N1417,N1418,N1419,N1420,N1421,N1422, \note fields as indicated -N1423,N1424,N1425,N1426,N1427,N1428,N1429,N1430,N1431,N1432,N1433,N1434,N1435,N1436,N1437,N1438,N1439, \note fields as indicated -N1440,N1441,N1442,N1443,N1444,N1445,N1446,N1447,N1448,N1449,N1450,N1451,N1452,N1453,N1454,N1455,N1456, \note fields as indicated -N1457,N1458,N1459,N1460,N1461,N1462,N1463,N1464,N1465,N1466,N1467,N1468,N1469,N1470,N1471,N1472,N1473, \note fields as indicated -N1474,N1475,N1476,N1477,N1478,N1479,N1480,N1481,N1482,N1483,N1484,N1485,N1486,N1487,N1488,N1489,N1490, \note fields as indicated -N1491,N1492,N1493,N1494,N1495,N1496,N1497,N1498,N1499,N1500,N1501,N1502,N1503,N1504,N1505,N1506,N1507, \note fields as indicated -N1508,N1509,N1510,N1511,N1512,N1513,N1514,N1515,N1516,N1517,N1518,N1519,N1520,N1521,N1522,N1523,N1524, \note fields as indicated -N1525,N1526,N1527,N1528,N1529,N1530,N1531,N1532,N1533,N1534,N1535,N1536,N1537,N1538,N1539,N1540,N1541, \note fields as indicated -N1542,N1543,N1544,N1545,N1546,N1547,N1548,N1549,N1550,N1551,N1552,N1553,N1554,N1555,N1556,N1557,N1558, \note fields as indicated -N1559,N1560,N1561,N1562,N1563,N1564,N1565,N1566,N1567,N1568,N1569,N1570,N1571,N1572,N1573,N1574,N1575, \note fields as indicated -N1576,N1577,N1578,N1579,N1580,N1581,N1582,N1583,N1584,N1585,N1586,N1587,N1588,N1589,N1590,N1591,N1592, \note fields as indicated -N1593,N1594,N1595,N1596,N1597,N1598,N1599,N1600,N1601,N1602,N1603,N1604,N1605,N1606,N1607,N1608,N1609, \note fields as indicated -N1610,N1611,N1612,N1613,N1614,N1615,N1616,N1617,N1618,N1619,N1620,N1621,N1622,N1623,N1624,N1625,N1626, \note fields as indicated -N1627,N1628,N1629,N1630,N1631,N1632,N1633,N1634,N1635,N1636,N1637,N1638,N1639,N1640,N1641,N1642,N1643, \note fields as indicated -N1644,N1645,N1646,N1647,N1648,N1649,N1650,N1651,N1652,N1653,N1654,N1655,N1656,N1657,N1658,N1659,N1660, \note fields as indicated -N1661,N1662,N1663,N1664,N1665,N1666,N1667,N1668,N1669,N1670,N1671,N1672,N1673,N1674,N1675,N1676,N1677, \note fields as indicated -N1678,N1679,N1680,N1681,N1682,N1683,N1684,N1685,N1686,N1687,N1688,N1689,N1690,N1691,N1692,N1693,N1694, \note fields as indicated -N1695,N1696,N1697,N1698,N1699,N1700,N1701,N1702,N1703,N1704,N1705,N1706,N1707,N1708,N1709,N1710,N1711, \note fields as indicated -N1712,N1713,N1714,N1715,N1716,N1717,N1718,N1719,N1720,N1721,N1722,N1723,N1724,N1725,N1726,N1727,N1728, \note fields as indicated -N1729,N1730,N1731,N1732,N1733,N1734,N1735,N1736,N1737,N1738,N1739,N1740,N1741,N1742,N1743,N1744,N1745, \note fields as indicated -N1746,N1747,N1748,N1749,N1750,N1751,N1752,N1753,N1754,N1755,N1756,N1757,N1758,N1759,N1760,N1761,N1762, \note fields as indicated -N1763,N1764,N1765,N1766,N1767,N1768,N1769,N1770,N1771,N1772,N1773,N1774,N1775,N1776,N1777,N1778,N1779, \note fields as indicated -N1780,N1781,N1782,N1783,N1784,N1785,N1786,N1787,N1788,N1789,N1790,N1791,N1792,N1793,N1794,N1795,N1796, \note fields as indicated -N1797,N1798,N1799,N1800,N1801,N1802,N1803,N1804,N1805,N1806,N1807,N1808,N1809,N1810,N1811,N1812,N1813, \note fields as indicated -N1814,N1815,N1816,N1817,N1818,N1819,N1820,N1821,N1822,N1823,N1824,N1825,N1826,N1827,N1828,N1829,N1830, \note fields as indicated -N1831,N1832,N1833,N1834,N1835,N1836,N1837,N1838,N1839,N1840,N1841,N1842,N1843,N1844,N1845,N1846,N1847, \note fields as indicated -N1848,N1849,N1850,N1851,N1852,N1853,N1854,N1855,N1856,N1857,N1858,N1859,N1860,N1861,N1862,N1863,N1864, \note fields as indicated -N1865,N1866,N1867,N1868,N1869,N1870,N1871,N1872,N1873,N1874,N1875,N1876,N1877,N1878,N1879,N1880,N1881, \note fields as indicated -N1882,N1883,N1884,N1885,N1886,N1887,N1888,N1889,N1890,N1891,N1892,N1893,N1894,N1895,N1896,N1897,N1898, \note fields as indicated -N1899,N1900,N1901,N1902,N1903,N1904,N1905,N1906,N1907,N1908,N1909,N1910,N1911,N1912,N1913,N1914,N1915, \note fields as indicated -N1916,N1917,N1918,N1919,N1920,N1921,N1922,N1923,N1924,N1925,N1926,N1927,N1928,N1929,N1930,N1931,N1932, \note fields as indicated -N1933,N1934,N1935,N1936,N1937,N1938,N1939,N1940,N1941,N1942,N1943,N1944,N1945,N1946,N1947,N1948,N1949, \note fields as indicated -N1950,N1951,N1952,N1953,N1954,N1955,N1956,N1957,N1958,N1959,N1960,N1961,N1962,N1963,N1964,N1965,N1966, \note fields as indicated -N1967,N1968,N1969,N1970,N1971,N1972,N1973,N1974,N1975,N1976,N1977,N1978,N1979,N1980,N1981,N1982,N1983, \note fields as indicated -N1984,N1985,N1986,N1987,N1988,N1989,N1990,N1991,N1992,N1993,N1994,N1995,N1996,N1997,N1998,N1999,N2000, \note fields as indicated -N2001,N2002,N2003,N2004,N2005,N2006,N2007,N2008,N2009,N2010,N2011,N2012,N2013,N2014,N2015,N2016,N2017, \note fields as indicated -N2018,N2019,N2020,N2021,N2022,N2023,N2024,N2025,N2026,N2027,N2028,N2029,N2030,N2031,N2032,N2033,N2034, \note fields as indicated -N2035,N2036,N2037,N2038,N2039,N2040,N2041,N2042,N2043,N2044,N2045,N2046,N2047,N2048,N2049,N2050,N2051, \note fields as indicated -N2052,N2053,N2054,N2055,N2056,N2057,N2058,N2059,N2060,N2061,N2062,N2063,N2064,N2065,N2066,N2067,N2068, \note fields as indicated -N2069,N2070,N2071,N2072,N2073,N2074,N2075,N2076,N2077,N2078,N2079,N2080,N2081,N2082,N2083,N2084,N2085, \note fields as indicated -N2086,N2087,N2088,N2089,N2090,N2091,N2092,N2093,N2094,N2095,N2096,N2097,N2098,N2099,N2100,N2101,N2102, \note fields as indicated -N2103,N2104,N2105,N2106,N2107,N2108,N2109,N2110,N2111,N2112,N2113,N2114,N2115,N2116,N2117,N2118,N2119, \note fields as indicated -N2120,N2121,N2122,N2123,N2124,N2125,N2126,N2127,N2128,N2129,N2130,N2131,N2132,N2133,N2134,N2135,N2136, \note fields as indicated -N2137,N2138,N2139,N2140,N2141,N2142,N2143,N2144,N2145,N2146,N2147,N2148,N2149,N2150,N2151,N2152,N2153, \note fields as indicated -N2154,N2155,N2156,N2157,N2158,N2159,N2160,N2161,N2162,N2163,N2164,N2165,N2166,N2167,N2168,N2169,N2170, \note fields as indicated -N2171,N2172,N2173,N2174,N2175,N2176,N2177,N2178,N2179,N2180,N2181,N2182,N2183,N2184,N2185,N2186,N2187, \note fields as indicated -N2188,N2189,N2190,N2191,N2192,N2193,N2194,N2195,N2196,N2197,N2198,N2199,N2200,N2201,N2202,N2203,N2204, \note fields as indicated -N2205,N2206,N2207,N2208,N2209,N2210,N2211,N2212,N2213,N2214,N2215,N2216,N2217,N2218,N2219,N2220,N2221, \note fields as indicated -N2222,N2223,N2224,N2225,N2226,N2227,N2228,N2229,N2230,N2231,N2232,N2233,N2234,N2235,N2236,N2237,N2238, \note fields as indicated -N2239,N2240,N2241,N2242,N2243,N2244,N2245,N2246,N2247,N2248,N2249,N2250,N2251,N2252,N2253,N2254,N2255, \note fields as indicated -N2256,N2257,N2258,N2259,N2260,N2261,N2262,N2263,N2264,N2265,N2266,N2267,N2268,N2269,N2270,N2271,N2272, \note fields as indicated -N2273,N2274,N2275,N2276,N2277,N2278,N2279,N2280,N2281,N2282,N2283,N2284,N2285,N2286,N2287,N2288,N2289, \note fields as indicated -N2290,N2291,N2292,N2293,N2294,N2295,N2296,N2297,N2298,N2299,N2300,N2301,N2302,N2303,N2304,N2305,N2306, \note fields as indicated -N2307,N2308,N2309,N2310,N2311,N2312,N2313,N2314,N2315,N2316,N2317,N2318,N2319,N2320,N2321,N2322,N2323, \note fields as indicated -N2324,N2325,N2326,N2327,N2328,N2329,N2330,N2331,N2332,N2333,N2334,N2335,N2336,N2337,N2338,N2339,N2340, \note fields as indicated -N2341,N2342,N2343,N2344,N2345,N2346,N2347,N2348,N2349,N2350,N2351,N2352,N2353,N2354,N2355,N2356,N2357, \note fields as indicated -N2358,N2359,N2360,N2361,N2362,N2363,N2364,N2365,N2366,N2367,N2368,N2369,N2370,N2371,N2372,N2373,N2374, \note fields as indicated -N2375,N2376,N2377,N2378,N2379,N2380,N2381,N2382,N2383,N2384,N2385,N2386,N2387,N2388,N2389,N2390,N2391, \note fields as indicated -N2392,N2393,N2394,N2395,N2396,N2397,N2398,N2399,N2400,N2401,N2402,N2403,N2404,N2405,N2406,N2407,N2408, \note fields as indicated -N2409,N2410,N2411,N2412,N2413,N2414,N2415,N2416,N2417,N2418,N2419,N2420,N2421,N2422,N2423,N2424,N2425, \note fields as indicated -N2426,N2427,N2428,N2429,N2430,N2431,N2432,N2433,N2434,N2435,N2436,N2437,N2438,N2439,N2440,N2441,N2442, \note fields as indicated -N2443,N2444,N2445,N2446,N2447,N2448,N2449,N2450,N2451,N2452,N2453,N2454,N2455,N2456,N2457,N2458,N2459, \note fields as indicated -N2460,N2461,N2462,N2463,N2464,N2465,N2466,N2467,N2468,N2469,N2470,N2471,N2472,N2473,N2474,N2475,N2476, \note fields as indicated -N2477,N2478,N2479,N2480,N2481,N2482,N2483,N2484,N2485,N2486,N2487,N2488,N2489,N2490,N2491,N2492,N2493, \note fields as indicated -N2494,N2495,N2496,N2497,N2498,N2499,N2500,N2501,N2502,N2503,N2504,N2505,N2506,N2507,N2508,N2509,N2510, \note fields as indicated -N2511,N2512,N2513,N2514,N2515,N2516,N2517,N2518,N2519,N2520,N2521,N2522,N2523,N2524,N2525,N2526,N2527, \note fields as indicated -N2528,N2529,N2530,N2531,N2532,N2533,N2534,N2535,N2536,N2537,N2538,N2539,N2540,N2541,N2542,N2543,N2544, \note fields as indicated -N2545,N2546,N2547,N2548,N2549,N2550,N2551,N2552,N2553,N2554,N2555,N2556,N2557,N2558,N2559,N2560,N2561, \note fields as indicated -N2562,N2563,N2564,N2565,N2566,N2567,N2568,N2569,N2570,N2571,N2572,N2573,N2574,N2575,N2576,N2577,N2578, \note fields as indicated -N2579,N2580,N2581,N2582,N2583,N2584,N2585,N2586,N2587,N2588,N2589,N2590,N2591,N2592,N2593,N2594,N2595, \note fields as indicated -N2596,N2597,N2598,N2599,N2600,N2601,N2602,N2603,N2604,N2605,N2606,N2607,N2608,N2609,N2610,N2611,N2612, \note fields as indicated -N2613,N2614,N2615,N2616,N2617,N2618,N2619,N2620,N2621,N2622,N2623,N2624,N2625,N2626,N2627,N2628,N2629, \note fields as indicated -N2630,N2631,N2632,N2633,N2634,N2635,N2636,N2637,N2638,N2639,N2640,N2641,N2642,N2643,N2644,N2645,N2646, \note fields as indicated -N2647,N2648,N2649,N2650,N2651,N2652,N2653,N2654,N2655,N2656,N2657,N2658,N2659,N2660,N2661,N2662,N2663, \note fields as indicated -N2664,N2665,N2666,N2667,N2668,N2669,N2670,N2671,N2672,N2673,N2674,N2675,N2676,N2677,N2678,N2679,N2680, \note fields as indicated -N2681,N2682,N2683,N2684,N2685,N2686,N2687,N2688,N2689,N2690,N2691,N2692,N2693,N2694,N2695,N2696,N2697, \note fields as indicated -N2698,N2699,N2700,N2701,N2702,N2703,N2704,N2705,N2706,N2707,N2708,N2709,N2710,N2711,N2712,N2713,N2714, \note fields as indicated -N2715,N2716,N2717,N2718,N2719,N2720,N2721,N2722,N2723,N2724,N2725,N2726,N2727,N2728,N2729,N2730,N2731, \note fields as indicated -N2732,N2733,N2734,N2735,N2736,N2737,N2738,N2739,N2740,N2741,N2742,N2743,N2744,N2745,N2746,N2747,N2748, \note fields as indicated -N2749,N2750,N2751,N2752,N2753,N2754,N2755,N2756,N2757,N2758,N2759,N2760,N2761,N2762,N2763,N2764,N2765, \note fields as indicated -N2766,N2767,N2768,N2769,N2770,N2771,N2772,N2773,N2774,N2775,N2776,N2777,N2778,N2779,N2780,N2781,N2782, \note fields as indicated -N2783,N2784,N2785,N2786,N2787,N2788,N2789,N2790,N2791,N2792,N2793,N2794,N2795,N2796,N2797,N2798,N2799, \note fields as indicated -N2800,N2801,N2802,N2803,N2804,N2805,N2806,N2807,N2808,N2809,N2810,N2811,N2812,N2813,N2814,N2815,N2816, \note fields as indicated -N2817,N2818,N2819,N2820,N2821,N2822,N2823,N2824,N2825,N2826,N2827,N2828,N2829,N2830,N2831,N2832,N2833, \note fields as indicated -N2834,N2835,N2836,N2837,N2838,N2839,N2840,N2841,N2842,N2843,N2844,N2845,N2846,N2847,N2848,N2849,N2850, \note fields as indicated -N2851,N2852,N2853,N2854,N2855,N2856,N2857,N2858,N2859,N2860,N2861,N2862,N2863,N2864,N2865,N2866,N2867, \note fields as indicated -N2868,N2869,N2870,N2871,N2872,N2873,N2874,N2875,N2876,N2877,N2878,N2879,N2880,N2881,N2882,N2883,N2884, \note fields as indicated -N2885,N2886,N2887,N2888,N2889,N2890,N2891,N2892,N2893,N2894,N2895,N2896,N2897,N2898,N2899,N2900,N2901, \note fields as indicated -N2902,N2903,N2904,N2905,N2906,N2907,N2908,N2909,N2910,N2911,N2912,N2913,N2914,N2915,N2916,N2917,N2918, \note fields as indicated -N2919,N2920,N2921,N2922,N2923,N2924,N2925,N2926,N2927,N2928,N2929,N2930,N2931,N2932,N2933,N2934,N2935, \note fields as indicated -N2936,N2937,N2938,N2939,N2940,N2941,N2942,N2943,N2944,N2945,N2946,N2947,N2948,N2949,N2950,N2951,N2952, \note fields as indicated -N2953,N2954,N2955,N2956,N2957,N2958,N2959,N2960,N2961,N2962,N2963,N2964,N2965,N2966,N2967,N2968,N2969, \note fields as indicated -N2970,N2971,N2972,N2973,N2974,N2975,N2976,N2977,N2978,N2979,N2980,N2981,N2982,N2983,N2984,N2985,N2986, \note fields as indicated -N2987,N2988,N2989,N2990,N2991,N2992,N2993,N2994,N2995,N2996,N2997,N2998,N2999,N3000,N3001,N3002,N3003, \note fields as indicated -N3004,N3005,N3006,N3007,N3008,N3009,N3010,N3011,N3012,N3013,N3014,N3015,N3016,N3017,N3018,N3019,N3020, \note fields as indicated -N3021,N3022,N3023,N3024,N3025,N3026,N3027,N3028,N3029,N3030,N3031,N3032,N3033,N3034,N3035,N3036,N3037, \note fields as indicated -N3038,N3039,N3040,N3041,N3042,N3043,N3044,N3045,N3046,N3047,N3048,N3049,N3050,N3051,N3052,N3053,N3054, \note fields as indicated -N3055,N3056,N3057,N3058,N3059,N3060,N3061,N3062,N3063,N3064,N3065,N3066,N3067,N3068,N3069,N3070,N3071, \note fields as indicated -N3072,N3073,N3074,N3075,N3076,N3077,N3078,N3079,N3080,N3081,N3082,N3083,N3084,N3085,N3086,N3087,N3088, \note fields as indicated -N3089,N3090,N3091,N3092,N3093,N3094,N3095,N3096,N3097,N3098,N3099,N3100,N3101,N3102,N3103,N3104,N3105, \note fields as indicated -N3106,N3107,N3108,N3109,N3110,N3111,N3112,N3113,N3114,N3115,N3116,N3117,N3118,N3119,N3120,N3121,N3122, \note fields as indicated -N3123,N3124,N3125,N3126,N3127,N3128,N3129,N3130,N3131,N3132,N3133,N3134,N3135,N3136,N3137,N3138,N3139, \note fields as indicated -N3140,N3141,N3142,N3143,N3144,N3145,N3146,N3147,N3148,N3149,N3150,N3151,N3152,N3153,N3154,N3155,N3156, \note fields as indicated -N3157,N3158,N3159,N3160,N3161,N3162,N3163,N3164,N3165,N3166,N3167,N3168,N3169,N3170,N3171,N3172,N3173, \note fields as indicated -N3174,N3175,N3176,N3177,N3178,N3179,N3180,N3181,N3182,N3183,N3184,N3185,N3186,N3187,N3188,N3189,N3190, \note fields as indicated -N3191,N3192,N3193,N3194,N3195,N3196,N3197,N3198,N3199,N3200,N3201,N3202,N3203,N3204,N3205,N3206,N3207, \note fields as indicated -N3208,N3209,N3210,N3211,N3212,N3213,N3214,N3215,N3216,N3217,N3218,N3219,N3220,N3221,N3222,N3223,N3224, \note fields as indicated -N3225,N3226,N3227,N3228,N3229,N3230,N3231,N3232,N3233,N3234,N3235,N3236,N3237,N3238,N3239,N3240,N3241, \note fields as indicated -N3242,N3243,N3244,N3245,N3246,N3247,N3248,N3249,N3250,N3251,N3252,N3253,N3254,N3255,N3256,N3257,N3258, \note fields as indicated -N3259,N3260,N3261,N3262,N3263,N3264,N3265,N3266,N3267,N3268,N3269,N3270,N3271,N3272,N3273,N3274,N3275, \note fields as indicated -N3276,N3277,N3278,N3279,N3280,N3281,N3282,N3283,N3284,N3285,N3286,N3287,N3288,N3289,N3290,N3291,N3292, \note fields as indicated -N3293,N3294,N3295,N3296,N3297,N3298,N3299,N3300,N3301,N3302,N3303,N3304,N3305,N3306,N3307,N3308,N3309, \note fields as indicated -N3310,N3311,N3312,N3313,N3314,N3315,N3316,N3317,N3318,N3319,N3320,N3321,N3322,N3323,N3324,N3325,N3326, \note fields as indicated -N3327,N3328,N3329,N3330,N3331,N3332,N3333,N3334,N3335,N3336,N3337,N3338,N3339,N3340,N3341,N3342,N3343, \note fields as indicated -N3344,N3345,N3346,N3347,N3348,N3349,N3350,N3351,N3352,N3353,N3354,N3355,N3356,N3357,N3358,N3359,N3360, \note fields as indicated -N3361,N3362,N3363,N3364,N3365,N3366,N3367,N3368,N3369,N3370,N3371,N3372,N3373,N3374,N3375,N3376,N3377, \note fields as indicated -N3378,N3379,N3380,N3381,N3382,N3383,N3384,N3385,N3386,N3387,N3388,N3389,N3390,N3391,N3392,N3393,N3394, \note fields as indicated -N3395,N3396,N3397,N3398,N3399,N3400,N3401,N3402,N3403,N3404,N3405,N3406,N3407,N3408,N3409,N3410,N3411, \note fields as indicated -N3412,N3413,N3414,N3415,N3416,N3417,N3418,N3419,N3420,N3421,N3422,N3423,N3424,N3425,N3426,N3427,N3428, \note fields as indicated -N3429,N3430,N3431,N3432,N3433,N3434,N3435,N3436,N3437,N3438,N3439,N3440,N3441,N3442,N3443,N3444,N3445, \note fields as indicated -N3446,N3447,N3448,N3449,N3450,N3451,N3452,N3453,N3454,N3455,N3456,N3457,N3458,N3459,N3460,N3461,N3462, \note fields as indicated -N3463,N3464,N3465,N3466,N3467,N3468,N3469,N3470,N3471,N3472,N3473,N3474,N3475,N3476,N3477,N3478,N3479, \note fields as indicated -N3480,N3481,N3482,N3483,N3484,N3485,N3486,N3487,N3488,N3489,N3490,N3491,N3492,N3493,N3494,N3495,N3496, \note fields as indicated -N3497,N3498,N3499,N3500,N3501,N3502,N3503,N3504,N3505,N3506,N3507,N3508,N3509,N3510,N3511,N3512,N3513, \note fields as indicated -N3514,N3515,N3516,N3517,N3518,N3519,N3520,N3521,N3522,N3523,N3524,N3525,N3526,N3527,N3528,N3529,N3530, \note fields as indicated -N3531,N3532,N3533,N3534,N3535,N3536,N3537,N3538,N3539,N3540,N3541,N3542,N3543,N3544,N3545,N3546,N3547, \note fields as indicated -N3548,N3549,N3550,N3551,N3552,N3553,N3554,N3555,N3556,N3557,N3558,N3559,N3560,N3561,N3562,N3563,N3564, \note fields as indicated -N3565,N3566,N3567,N3568,N3569,N3570,N3571,N3572,N3573,N3574,N3575,N3576,N3577,N3578,N3579,N3580,N3581, \note fields as indicated -N3582,N3583,N3584,N3585,N3586,N3587,N3588,N3589,N3590,N3591,N3592,N3593,N3594,N3595,N3596,N3597,N3598, \note fields as indicated -N3599,N3600,N3601,N3602,N3603,N3604,N3605,N3606,N3607,N3608,N3609,N3610,N3611,N3612,N3613,N3614,N3615, \note fields as indicated -N3616,N3617,N3618,N3619,N3620,N3621,N3622,N3623,N3624,N3625,N3626,N3627,N3628,N3629,N3630,N3631,N3632, \note fields as indicated -N3633,N3634,N3635,N3636,N3637,N3638,N3639,N3640,N3641,N3642,N3643,N3644,N3645,N3646,N3647,N3648,N3649, \note fields as indicated -N3650,N3651,N3652,N3653,N3654,N3655,N3656,N3657,N3658,N3659,N3660,N3661,N3662,N3663,N3664,N3665,N3666, \note fields as indicated -N3667,N3668,N3669,N3670,N3671,N3672,N3673,N3674,N3675,N3676,N3677,N3678,N3679,N3680,N3681,N3682,N3683, \note fields as indicated -N3684,N3685,N3686,N3687,N3688,N3689,N3690,N3691,N3692,N3693,N3694,N3695,N3696,N3697,N3698,N3699,N3700, \note fields as indicated -N3701,N3702,N3703,N3704,N3705,N3706,N3707,N3708,N3709,N3710,N3711,N3712,N3713,N3714,N3715,N3716,N3717, \note fields as indicated -N3718,N3719,N3720,N3721,N3722,N3723,N3724,N3725,N3726,N3727,N3728,N3729,N3730,N3731,N3732,N3733,N3734, \note fields as indicated -N3735,N3736,N3737,N3738,N3739,N3740,N3741,N3742,N3743,N3744,N3745,N3746,N3747,N3748,N3749,N3750,N3751, \note fields as indicated -N3752,N3753,N3754,N3755,N3756,N3757,N3758,N3759,N3760,N3761,N3762,N3763,N3764,N3765,N3766,N3767,N3768, \note fields as indicated -N3769,N3770,N3771,N3772,N3773,N3774,N3775,N3776,N3777,N3778,N3779,N3780,N3781,N3782,N3783,N3784,N3785, \note fields as indicated -N3786,N3787,N3788,N3789,N3790,N3791,N3792,N3793,N3794,N3795,N3796,N3797,N3798,N3799,N3800,N3801,N3802, \note fields as indicated -N3803,N3804,N3805,N3806,N3807,N3808,N3809,N3810,N3811,N3812,N3813,N3814,N3815,N3816,N3817,N3818,N3819, \note fields as indicated -N3820,N3821,N3822,N3823,N3824,N3825,N3826,N3827,N3828,N3829,N3830,N3831,N3832,N3833,N3834,N3835,N3836, \note fields as indicated -N3837,N3838,N3839,N3840,N3841,N3842,N3843,N3844,N3845,N3846,N3847,N3848,N3849,N3850,N3851,N3852,N3853, \note fields as indicated -N3854,N3855,N3856,N3857,N3858,N3859,N3860,N3861,N3862,N3863,N3864,N3865,N3866,N3867,N3868,N3869,N3870, \note fields as indicated -N3871,N3872,N3873,N3874,N3875,N3876,N3877,N3878,N3879,N3880,N3881,N3882,N3883,N3884,N3885,N3886,N3887, \note fields as indicated -N3888,N3889,N3890,N3891,N3892,N3893,N3894,N3895,N3896,N3897,N3898,N3899,N3900,N3901,N3902,N3903,N3904, \note fields as indicated -N3905,N3906,N3907,N3908,N3909,N3910,N3911,N3912,N3913,N3914,N3915,N3916,N3917,N3918,N3919,N3920,N3921, \note fields as indicated -N3922,N3923,N3924,N3925,N3926,N3927,N3928,N3929,N3930,N3931,N3932,N3933,N3934,N3935,N3936,N3937,N3938, \note fields as indicated -N3939,N3940,N3941,N3942,N3943,N3944,N3945,N3946,N3947,N3948,N3949,N3950,N3951,N3952,N3953,N3954,N3955, \note fields as indicated -N3956,N3957,N3958,N3959,N3960,N3961,N3962,N3963,N3964,N3965,N3966,N3967,N3968,N3969,N3970,N3971,N3972, \note fields as indicated -N3973,N3974,N3975,N3976,N3977,N3978,N3979,N3980,N3981,N3982,N3983,N3984,N3985,N3986,N3987,N3988,N3989, \note fields as indicated -N3990,N3991,N3992,N3993,N3994,N3995,N3996,N3997,N3998,N3999,N4000,N4001,N4002,N4003,N4004,N4005,N4006, \note fields as indicated -N4007,N4008,N4009,N4010,N4011,N4012,N4013,N4014,N4015,N4016,N4017,N4018,N4019,N4020,N4021,N4022,N4023, \note fields as indicated -N4024,N4025,N4026,N4027,N4028,N4029,N4030,N4031,N4032,N4033,N4034,N4035,N4036,N4037,N4038,N4039,N4040, \note fields as indicated -N4041,N4042,N4043,N4044,N4045,N4046,N4047,N4048,N4049,N4050,N4051,N4052,N4053,N4054,N4055,N4056,N4057, \note fields as indicated -N4058,N4059,N4060,N4061,N4062,N4063,N4064,N4065,N4066,N4067,N4068,N4069,N4070,N4071,N4072,N4073,N4074, \note fields as indicated -N4075,N4076,N4077,N4078,N4079,N4080,N4081,N4082,N4083,N4084,N4085,N4086,N4087,N4088,N4089,N4090,N4091, \note fields as indicated -N4092,N4093,N4094,N4095,N4096,N4097,N4098,N4099,N4100,N4101,N4102,N4103,N4104,N4105,N4106,N4107,N4108, \note fields as indicated -N4109,N4110,N4111,N4112,N4113,N4114,N4115,N4116,N4117,N4118,N4119,N4120,N4121,N4122,N4123,N4124,N4125, \note fields as indicated -N4126,N4127,N4128,N4129,N4130,N4131,N4132,N4133,N4134,N4135,N4136,N4137,N4138,N4139,N4140,N4141,N4142, \note fields as indicated -N4143,N4144,N4145,N4146,N4147,N4148,N4149,N4150,N4151,N4152,N4153,N4154,N4155,N4156,N4157,N4158,N4159, \note fields as indicated -N4160,N4161,N4162,N4163,N4164,N4165,N4166,N4167,N4168,N4169,N4170,N4171,N4172,N4173,N4174,N4175,N4176, \note fields as indicated -N4177,N4178,N4179,N4180,N4181,N4182,N4183,N4184,N4185,N4186,N4187,N4188,N4189,N4190,N4191,N4192,N4193, \note fields as indicated -N4194,N4195,N4196,N4197,N4198,N4199,N4200,N4201,N4202,N4203,N4204,N4205,N4206,N4207,N4208,N4209,N4210, \note fields as indicated -N4211,N4212,N4213,N4214,N4215,N4216,N4217,N4218,N4219,N4220,N4221,N4222,N4223,N4224,N4225,N4226,N4227, \note fields as indicated -N4228,N4229,N4230,N4231,N4232,N4233,N4234,N4235,N4236,N4237,N4238,N4239,N4240,N4241,N4242,N4243,N4244, \note fields as indicated -N4245,N4246,N4247,N4248,N4249,N4250,N4251,N4252,N4253,N4254,N4255,N4256,N4257,N4258,N4259,N4260,N4261, \note fields as indicated -N4262,N4263,N4264,N4265,N4266,N4267,N4268,N4269,N4270,N4271,N4272,N4273,N4274,N4275,N4276,N4277,N4278, \note fields as indicated -N4279,N4280,N4281,N4282,N4283,N4284,N4285,N4286,N4287,N4288,N4289,N4290,N4291,N4292,N4293,N4294,N4295, \note fields as indicated -N4296,N4297,N4298,N4299,N4300,N4301,N4302,N4303,N4304,N4305,N4306,N4307,N4308,N4309,N4310,N4311,N4312, \note fields as indicated -N4313,N4314,N4315,N4316,N4317,N4318,N4319,N4320,N4321,N4322,N4323,N4324,N4325,N4326,N4327,N4328,N4329, \note fields as indicated -N4330,N4331,N4332,N4333,N4334,N4335,N4336,N4337,N4338,N4339,N4340,N4341,N4342,N4343,N4344,N4345,N4346, \note fields as indicated -N4347,N4348,N4349,N4350,N4351,N4352,N4353,N4354,N4355,N4356,N4357,N4358,N4359,N4360,N4361,N4362,N4363, \note fields as indicated -N4364,N4365,N4366,N4367,N4368,N4369,N4370,N4371,N4372,N4373,N4374,N4375,N4376,N4377,N4378,N4379,N4380, \note fields as indicated -N4381,N4382,N4383,N4384,N4385,N4386,N4387,N4388,N4389,N4390,N4391,N4392,N4393,N4394,N4395,N4396,N4397, \note fields as indicated -N4398,N4399,N4400,N4401,N4402,N4403,N4404,N4405,N4406,N4407,N4408,N4409,N4410,N4411,N4412,N4413,N4414, \note fields as indicated -N4415,N4416,N4417,N4418,N4419,N4420,N4421,N4422,N4423,N4424,N4425,N4426,N4427,N4428,N4429,N4430,N4431, \note fields as indicated -N4432,N4433,N4434,N4435,N4436,N4437,N4438,N4439,N4440,N4441,N4442,N4443,N4444,N4445,N4446,N4447,N4448, \note fields as indicated -N4449,N4450,N4451,N4452,N4453,N4454,N4455,N4456,N4457,N4458,N4459,N4460,N4461,N4462,N4463,N4464,N4465, \note fields as indicated -N4466,N4467,N4468,N4469,N4470,N4471,N4472,N4473,N4474,N4475,N4476,N4477,N4478,N4479,N4480,N4481,N4482, \note fields as indicated -N4483,N4484,N4485,N4486,N4487,N4488,N4489,N4490,N4491,N4492,N4493,N4494,N4495,N4496,N4497,N4498,N4499, \note fields as indicated -N4500,N4501,N4502,N4503,N4504,N4505,N4506,N4507,N4508,N4509,N4510,N4511,N4512,N4513,N4514,N4515,N4516, \note fields as indicated -N4517,N4518,N4519,N4520,N4521,N4522,N4523,N4524,N4525,N4526,N4527,N4528,N4529,N4530,N4531,N4532,N4533, \note fields as indicated -N4534,N4535,N4536,N4537,N4538,N4539,N4540,N4541,N4542,N4543,N4544,N4545,N4546,N4547,N4548,N4549,N4550, \note fields as indicated -N4551,N4552,N4553,N4554,N4555,N4556,N4557,N4558,N4559,N4560,N4561,N4562,N4563,N4564,N4565,N4566,N4567, \note fields as indicated -N4568,N4569,N4570,N4571,N4572,N4573,N4574,N4575,N4576,N4577,N4578,N4579,N4580,N4581,N4582,N4583,N4584, \note fields as indicated -N4585,N4586,N4587,N4588,N4589,N4590,N4591,N4592,N4593,N4594,N4595,N4596,N4597,N4598,N4599,N4600,N4601, \note fields as indicated -N4602,N4603,N4604,N4605,N4606,N4607,N4608,N4609,N4610,N4611,N4612,N4613,N4614,N4615,N4616,N4617,N4618, \note fields as indicated -N4619,N4620,N4621,N4622,N4623,N4624,N4625,N4626,N4627,N4628,N4629,N4630,N4631,N4632,N4633,N4634,N4635, \note fields as indicated -N4636,N4637,N4638,N4639,N4640,N4641,N4642,N4643,N4644,N4645,N4646,N4647,N4648,N4649,N4650,N4651,N4652, \note fields as indicated -N4653,N4654,N4655,N4656,N4657,N4658,N4659,N4660,N4661,N4662,N4663,N4664,N4665,N4666,N4667,N4668,N4669, \note fields as indicated -N4670,N4671,N4672,N4673,N4674,N4675,N4676,N4677,N4678,N4679,N4680,N4681,N4682,N4683,N4684,N4685,N4686, \note fields as indicated -N4687,N4688,N4689,N4690,N4691,N4692,N4693,N4694,N4695,N4696,N4697,N4698,N4699,N4700,N4701,N4702,N4703, \note fields as indicated -N4704,N4705,N4706,N4707,N4708,N4709,N4710,N4711,N4712,N4713,N4714,N4715,N4716,N4717,N4718,N4719,N4720, \note fields as indicated -N4721,N4722,N4723,N4724,N4725,N4726,N4727,N4728,N4729,N4730,N4731,N4732,N4733,N4734,N4735,N4736,N4737, \note fields as indicated -N4738,N4739,N4740,N4741,N4742,N4743,N4744,N4745,N4746,N4747,N4748,N4749,N4750,N4751,N4752,N4753,N4754, \note fields as indicated -N4755,N4756,N4757,N4758,N4759,N4760,N4761,N4762,N4763,N4764,N4765,N4766,N4767,N4768,N4769,N4770,N4771, \note fields as indicated -N4772,N4773,N4774,N4775,N4776,N4777,N4778,N4779,N4780,N4781,N4782,N4783,N4784,N4785,N4786,N4787,N4788, \note fields as indicated -N4789,N4790,N4791,N4792,N4793,N4794,N4795,N4796,N4797,N4798,N4799,N4800,N4801,N4802,N4803,N4804,N4805, \note fields as indicated -N4806,N4807,N4808,N4809,N4810,N4811,N4812,N4813,N4814,N4815,N4816,N4817,N4818,N4819,N4820,N4821,N4822, \note fields as indicated -N4823,N4824,N4825,N4826,N4827,N4828,N4829,N4830,N4831,N4832,N4833,N4834,N4835,N4836,N4837,N4838,N4839, \note fields as indicated -N4840,N4841,N4842,N4843,N4844,N4845,N4846,N4847,N4848,N4849,N4850,N4851,N4852,N4853,N4854,N4855,N4856, \note fields as indicated -N4857,N4858,N4859,N4860,N4861,N4862,N4863,N4864,N4865,N4866,N4867,N4868,N4869,N4870,N4871,N4872,N4873, \note fields as indicated -N4874,N4875,N4876,N4877,N4878,N4879,N4880,N4881,N4882,N4883,N4884,N4885,N4886,N4887,N4888,N4889,N4890, \note fields as indicated -N4891,N4892,N4893,N4894,N4895,N4896,N4897,N4898,N4899,N4900,N4901,N4902,N4903,N4904,N4905,N4906,N4907, \note fields as indicated -N4908,N4909,N4910,N4911,N4912,N4913,N4914,N4915,N4916,N4917,N4918,N4919,N4920,N4921,N4922,N4923,N4924, \note fields as indicated -N4925,N4926,N4927,N4928,N4929,N4930,N4931,N4932,N4933,N4934,N4935,N4936,N4937,N4938,N4939,N4940,N4941, \note fields as indicated -N4942,N4943,N4944,N4945,N4946,N4947,N4948,N4949,N4950,N4951,N4952,N4953,N4954,N4955,N4956,N4957,N4958, \note fields as indicated -N4959,N4960,N4961,N4962,N4963,N4964,N4965,N4966,N4967,N4968,N4969,N4970,N4971,N4972,N4973,N4974,N4975, \note fields as indicated -N4976,N4977,N4978,N4979,N4980,N4981,N4982,N4983,N4984,N4985,N4986,N4987,N4988,N4989,N4990,N4991,N4992, \note fields as indicated -N4993,N4994,N4995,N4996,N4997,N4998,N4999,N5000,N5001,N5002,N5003,N5004,N5005,N5006,N5007,N5008,N5009, \note fields as indicated -N5010,N5011,N5012,N5013,N5014,N5015,N5016,N5017,N5018,N5019,N5020,N5021,N5022,N5023,N5024,N5025,N5026, \note fields as indicated -N5027,N5028,N5029,N5030,N5031,N5032,N5033,N5034,N5035,N5036,N5037,N5038,N5039,N5040,N5041,N5042,N5043, \note fields as indicated -N5044,N5045,N5046,N5047,N5048,N5049,N5050,N5051,N5052,N5053,N5054,N5055,N5056,N5057,N5058,N5059,N5060, \note fields as indicated -N5061,N5062,N5063,N5064,N5065,N5066,N5067,N5068,N5069,N5070,N5071,N5072,N5073,N5074,N5075,N5076,N5077, \note fields as indicated -N5078,N5079,N5080,N5081,N5082,N5083,N5084,N5085,N5086,N5087,N5088,N5089,N5090,N5091,N5092,N5093,N5094, \note fields as indicated -N5095,N5096,N5097,N5098,N5099,N5100,N5101,N5102,N5103,N5104,N5105,N5106,N5107,N5108,N5109,N5110,N5111, \note fields as indicated -N5112,N5113,N5114,N5115,N5116,N5117,N5118,N5119,N5120,N5121,N5122,N5123,N5124,N5125,N5126,N5127,N5128, \note fields as indicated -N5129,N5130,N5131,N5132,N5133,N5134,N5135,N5136,N5137,N5138,N5139,N5140,N5141,N5142,N5143,N5144,N5145, \note fields as indicated -N5146,N5147,N5148,N5149,N5150,N5151,N5152,N5153,N5154,N5155,N5156,N5157,N5158,N5159,N5160,N5161,N5162, \note fields as indicated -N5163,N5164,N5165,N5166,N5167,N5168,N5169,N5170,N5171,N5172,N5173,N5174,N5175,N5176,N5177,N5178,N5179, \note fields as indicated -N5180,N5181,N5182,N5183,N5184,N5185,N5186,N5187,N5188,N5189,N5190,N5191,N5192,N5193,N5194,N5195,N5196, \note fields as indicated -N5197,N5198,N5199,N5200,N5201,N5202,N5203,N5204,N5205,N5206,N5207,N5208,N5209,N5210,N5211,N5212,N5213, \note fields as indicated -N5214,N5215,N5216,N5217,N5218,N5219,N5220,N5221,N5222,N5223,N5224,N5225,N5226,N5227,N5228,N5229,N5230, \note fields as indicated -N5231,N5232,N5233,N5234,N5235,N5236,N5237,N5238,N5239,N5240,N5241,N5242,N5243,N5244,N5245,N5246,N5247, \note fields as indicated -N5248,N5249,N5250,N5251,N5252,N5253,N5254,N5255,N5256,N5257,N5258,N5259,N5260,N5261,N5262,N5263,N5264, \note fields as indicated -N5265,N5266,N5267,N5268,N5269,N5270,N5271,N5272,N5273,N5274,N5275,N5276,N5277,N5278,N5279,N5280,N5281, \note fields as indicated -N5282,N5283,N5284,N5285,N5286,N5287,N5288,N5289,N5290,N5291,N5292,N5293,N5294,N5295,N5296,N5297,N5298, \note fields as indicated -N5299,N5300,N5301,N5302,N5303,N5304,N5305,N5306,N5307,N5308,N5309,N5310,N5311,N5312,N5313,N5314,N5315, \note fields as indicated -N5316,N5317,N5318,N5319,N5320,N5321,N5322,N5323,N5324,N5325,N5326,N5327,N5328,N5329,N5330,N5331,N5332, \note fields as indicated -N5333,N5334,N5335,N5336,N5337,N5338,N5339,N5340,N5341,N5342,N5343,N5344,N5345,N5346,N5347,N5348,N5349, \note fields as indicated -N5350,N5351,N5352,N5353,N5354,N5355,N5356,N5357,N5358,N5359,N5360,N5361,N5362,N5363,N5364,N5365,N5366, \note fields as indicated -N5367,N5368,N5369,N5370,N5371,N5372,N5373,N5374,N5375,N5376,N5377,N5378,N5379,N5380,N5381,N5382,N5383, \note fields as indicated -N5384,N5385,N5386,N5387,N5388,N5389,N5390,N5391,N5392,N5393,N5394,N5395,N5396,N5397,N5398,N5399,N5400, \note fields as indicated -N5401,N5402,N5403,N5404,N5405,N5406,N5407,N5408,N5409,N5410,N5411,N5412,N5413,N5414,N5415,N5416,N5417, \note fields as indicated -N5418,N5419,N5420,N5421,N5422,N5423,N5424,N5425,N5426,N5427,N5428,N5429,N5430,N5431,N5432,N5433,N5434, \note fields as indicated -N5435,N5436,N5437,N5438,N5439,N5440,N5441,N5442,N5443,N5444,N5445,N5446,N5447,N5448,N5449,N5450,N5451, \note fields as indicated -N5452,N5453,N5454,N5455,N5456,N5457,N5458,N5459,N5460,N5461,N5462,N5463,N5464,N5465,N5466,N5467,N5468, \note fields as indicated -N5469,N5470,N5471,N5472,N5473,N5474,N5475,N5476,N5477,N5478,N5479,N5480,N5481,N5482,N5483,N5484,N5485, \note fields as indicated -N5486,N5487,N5488,N5489,N5490,N5491,N5492,N5493,N5494,N5495,N5496,N5497,N5498,N5499,N5500,N5501,N5502, \note fields as indicated -N5503,N5504,N5505,N5506,N5507,N5508,N5509,N5510,N5511,N5512,N5513,N5514,N5515,N5516,N5517,N5518,N5519, \note fields as indicated -N5520,N5521,N5522,N5523,N5524,N5525,N5526,N5527,N5528,N5529,N5530,N5531,N5532,N5533,N5534,N5535,N5536, \note fields as indicated -N5537,N5538,N5539,N5540,N5541,N5542,N5543,N5544,N5545,N5546,N5547,N5548,N5549,N5550,N5551,N5552,N5553, \note fields as indicated -N5554,N5555,N5556,N5557,N5558,N5559,N5560,N5561,N5562,N5563,N5564,N5565,N5566,N5567,N5568,N5569,N5570, \note fields as indicated -N5571,N5572,N5573,N5574,N5575,N5576,N5577,N5578,N5579,N5580,N5581,N5582,N5583,N5584,N5585,N5586,N5587, \note fields as indicated -N5588,N5589,N5590,N5591,N5592,N5593,N5594,N5595,N5596,N5597,N5598,N5599,N5600,N5601,N5602,N5603,N5604, \note fields as indicated -N5605,N5606,N5607,N5608,N5609,N5610,N5611,N5612,N5613,N5614,N5615,N5616,N5617,N5618,N5619,N5620,N5621, \note fields as indicated -N5622,N5623,N5624,N5625,N5626,N5627,N5628,N5629,N5630,N5631,N5632,N5633,N5634,N5635,N5636,N5637,N5638, \note fields as indicated -N5639,N5640,N5641,N5642,N5643,N5644,N5645,N5646,N5647,N5648,N5649,N5650,N5651,N5652,N5653,N5654,N5655, \note fields as indicated -N5656,N5657,N5658,N5659,N5660,N5661,N5662,N5663,N5664,N5665,N5666,N5667,N5668,N5669,N5670,N5671,N5672, \note fields as indicated -N5673,N5674,N5675,N5676,N5677,N5678,N5679,N5680,N5681,N5682,N5683,N5684,N5685,N5686,N5687,N5688,N5689, \note fields as indicated -N5690,N5691,N5692,N5693,N5694,N5695,N5696,N5697,N5698,N5699,N5700,N5701,N5702,N5703,N5704,N5705,N5706, \note fields as indicated -N5707,N5708,N5709,N5710,N5711,N5712,N5713,N5714,N5715,N5716,N5717,N5718,N5719,N5720,N5721,N5722,N5723, \note fields as indicated -N5724,N5725,N5726,N5727,N5728,N5729,N5730,N5731,N5732,N5733,N5734,N5735,N5736,N5737,N5738,N5739,N5740, \note fields as indicated -N5741,N5742,N5743,N5744,N5745,N5746,N5747,N5748,N5749,N5750,N5751,N5752,N5753,N5754,N5755,N5756,N5757, \note fields as indicated -N5758,N5759,N5760,N5761,N5762,N5763,N5764,N5765,N5766,N5767,N5768,N5769,N5770,N5771,N5772,N5773,N5774, \note fields as indicated -N5775,N5776,N5777,N5778,N5779,N5780,N5781,N5782,N5783,N5784,N5785,N5786,N5787,N5788,N5789,N5790,N5791, \note fields as indicated -N5792,N5793,N5794,N5795,N5796,N5797,N5798,N5799,N5800,N5801,N5802,N5803,N5804,N5805,N5806,N5807,N5808, \note fields as indicated -N5809,N5810,N5811,N5812,N5813,N5814,N5815,N5816,N5817,N5818,N5819,N5820,N5821,N5822,N5823,N5824,N5825, \note fields as indicated -N5826,N5827,N5828,N5829,N5830,N5831,N5832,N5833,N5834,N5835,N5836,N5837,N5838,N5839,N5840,N5841,N5842, \note fields as indicated -N5843,N5844,N5845,N5846,N5847,N5848,N5849,N5850,N5851,N5852,N5853,N5854,N5855,N5856,N5857,N5858,N5859, \note fields as indicated -N5860,N5861,N5862,N5863,N5864,N5865,N5866,N5867,N5868,N5869,N5870,N5871,N5872,N5873,N5874,N5875,N5876, \note fields as indicated -N5877,N5878,N5879,N5880,N5881,N5882,N5883,N5884,N5885,N5886,N5887,N5888,N5889,N5890,N5891,N5892,N5893, \note fields as indicated -N5894,N5895,N5896,N5897,N5898,N5899,N5900,N5901,N5902,N5903,N5904,N5905,N5906,N5907,N5908,N5909,N5910, \note fields as indicated -N5911,N5912,N5913,N5914,N5915,N5916,N5917,N5918,N5919,N5920,N5921,N5922,N5923,N5924,N5925,N5926,N5927, \note fields as indicated -N5928,N5929,N5930,N5931,N5932,N5933,N5934,N5935,N5936,N5937,N5938,N5939,N5940,N5941,N5942,N5943,N5944, \note fields as indicated -N5945,N5946,N5947,N5948,N5949,N5950,N5951,N5952,N5953,N5954,N5955,N5956,N5957,N5958,N5959,N5960,N5961, \note fields as indicated -N5962,N5963,N5964,N5965,N5966,N5967,N5968,N5969,N5970,N5971,N5972,N5973,N5974,N5975,N5976,N5977,N5978, \note fields as indicated -N5979,N5980,N5981,N5982,N5983,N5984,N5985,N5986,N5987,N5988,N5989,N5990,N5991,N5992,N5993,N5994,N5995, \note fields as indicated -N5996,N5997,N5998,N5999,N6000,N6001,N6002,N6003,N6004,N6005,N6006,N6007,N6008,N6009,N6010,N6011,N6012, \note fields as indicated -N6013,N6014,N6015,N6016,N6017,N6018,N6019,N6020,N6021,N6022,N6023,N6024,N6025,N6026,N6027,N6028,N6029, \note fields as indicated -N6030,N6031,N6032,N6033,N6034,N6035,N6036,N6037,N6038,N6039,N6040,N6041,N6042,N6043,N6044,N6045,N6046, \note fields as indicated -N6047,N6048,N6049,N6050,N6051,N6052,N6053,N6054,N6055,N6056,N6057,N6058,N6059,N6060,N6061,N6062,N6063, \note fields as indicated -N6064,N6065,N6066,N6067,N6068,N6069,N6070,N6071,N6072,N6073,N6074,N6075,N6076,N6077,N6078,N6079,N6080, \note fields as indicated -N6081,N6082,N6083,N6084,N6085,N6086,N6087,N6088,N6089,N6090,N6091,N6092,N6093,N6094,N6095,N6096,N6097, \note fields as indicated -N6098,N6099,N6100,N6101,N6102,N6103,N6104,N6105,N6106,N6107,N6108,N6109,N6110,N6111,N6112,N6113,N6114, \note fields as indicated -N6115,N6116,N6117,N6118,N6119,N6120,N6121,N6122,N6123,N6124,N6125,N6126,N6127,N6128,N6129,N6130,N6131, \note fields as indicated -N6132,N6133,N6134,N6135,N6136,N6137,N6138,N6139,N6140,N6141,N6142,N6143,N6144,N6145,N6146,N6147,N6148, \note fields as indicated -N6149,N6150,N6151,N6152,N6153,N6154,N6155,N6156,N6157,N6158,N6159,N6160,N6161,N6162,N6163,N6164,N6165, \note fields as indicated -N6166,N6167,N6168,N6169,N6170,N6171,N6172,N6173,N6174,N6175,N6176,N6177,N6178,N6179,N6180,N6181,N6182, \note fields as indicated -N6183,N6184,N6185,N6186,N6187,N6188,N6189,N6190,N6191,N6192,N6193,N6194,N6195,N6196,N6197,N6198,N6199, \note fields as indicated -N6200,N6201,N6202,N6203,N6204,N6205,N6206,N6207,N6208,N6209,N6210,N6211,N6212,N6213,N6214,N6215,N6216, \note fields as indicated -N6217,N6218,N6219,N6220,N6221,N6222,N6223,N6224,N6225,N6226,N6227,N6228,N6229,N6230,N6231,N6232,N6233, \note fields as indicated -N6234,N6235,N6236,N6237,N6238,N6239,N6240,N6241,N6242,N6243,N6244,N6245,N6246,N6247,N6248,N6249,N6250, \note fields as indicated -N6251,N6252,N6253,N6254,N6255,N6256,N6257,N6258,N6259,N6260,N6261,N6262,N6263,N6264,N6265,N6266,N6267, \note fields as indicated -N6268,N6269,N6270,N6271,N6272,N6273,N6274,N6275,N6276,N6277,N6278,N6279,N6280,N6281,N6282,N6283,N6284, \note fields as indicated -N6285,N6286,N6287,N6288,N6289,N6290,N6291,N6292,N6293,N6294,N6295,N6296,N6297,N6298,N6299,N6300,N6301, \note fields as indicated -N6302,N6303,N6304,N6305,N6306,N6307,N6308,N6309,N6310,N6311,N6312,N6313,N6314,N6315,N6316,N6317,N6318, \note fields as indicated -N6319,N6320,N6321,N6322,N6323,N6324,N6325,N6326,N6327,N6328,N6329,N6330,N6331,N6332,N6333,N6334,N6335, \note fields as indicated -N6336,N6337,N6338,N6339,N6340,N6341,N6342,N6343,N6344,N6345,N6346,N6347,N6348,N6349,N6350,N6351,N6352, \note fields as indicated -N6353,N6354,N6355,N6356,N6357,N6358,N6359,N6360,N6361,N6362,N6363,N6364,N6365,N6366; \note fields as indicated + N7, \field Output Value 2 + \type real + \unitsBasedOnField A4 + N8,N9,N10,N11,N12,N13,N14,N15,N16,N17,N18,N19,N20, \note fields as indicated + N21,N22,N23,N24,N25,N26,N27,N28,N29,N30,N31,N32,N33,N34,N35,N36,N37,N38,N39,N40, \note fields as indicated + N41,N42,N43,N44,N45,N46,N47,N48,N49,N50,N51,N52,N53,N54,N55,N56,N57,N58,N59,N60, \note fields as indicated + N61,N62,N63,N64,N65,N66,N67,N68,N69,N70,N71,N72,N73,N74,N75,N76,N77,N78,N79,N80, \note fields as indicated + N81,N82,N83,N84,N85,N86,N87,N88,N89,N90,N91,N92,N93,N94,N95,N96,N97,N98,N99,N100, \note fields as indicated + N101,N102,N103,N104,N105,N106,N107,N108,N109,N110,N111,N112,N113,N114,N115,N116,N117,N118,N119,N120, \note fields as indicated + N121,N122,N123,N124,N125,N126,N127,N128,N129,N130,N131,N132,N133,N134,N135,N136,N137,N138,N139,N140, \note fields as indicated + N141,N142,N143,N144,N145,N146,N147,N148,N149,N150,N151,N152,N153,N154,N155,N156,N157,N158,N159,N160, \note fields as indicated + N161,N162,N163,N164,N165,N166,N167,N168,N169,N170,N171,N172,N173,N174,N175,N176,N177,N178,N179,N180, \note fields as indicated + N181,N182,N183,N184,N185,N186,N187,N188,N189,N190,N191,N192,N193,N194,N195,N196,N197,N198,N199,N200, \note fields as indicated + N201,N202,N203,N204,N205,N206,N207,N208,N209,N210,N211,N212,N213,N214,N215,N216,N217,N218,N219,N220, \note fields as indicated + N221,N222,N223,N224,N225,N226,N227,N228,N229,N230,N231,N232,N233,N234,N235,N236,N237,N238,N239,N240, \note fields as indicated + N241,N242,N243,N244,N245,N246,N247,N248,N249,N250,N251,N252,N253,N254,N255,N256,N257,N258,N259,N260, \note fields as indicated + N261,N262,N263,N264,N265,N266,N267,N268,N269,N270,N271,N272,N273,N274,N275,N276,N277,N278,N279,N280, \note fields as indicated + N281,N282,N283,N284,N285,N286,N287,N288,N289,N290,N291,N292,N293,N294,N295,N296,N297,N298,N299,N300, \note fields as indicated + N301,N302,N303,N304,N305,N306,N307,N308,N309,N310,N311,N312,N313,N314,N315,N316,N317,N318,N319,N320, \note fields as indicated + N321,N322,N323,N324,N325,N326,N327,N328,N329,N330,N331,N332,N333,N334,N335,N336,N337,N338,N339,N340, \note fields as indicated + N341,N342,N343,N344,N345,N346,N347,N348,N349,N350,N351,N352,N353,N354,N355,N356,N357,N358,N359,N360, \note fields as indicated + N361,N362,N363,N364,N365,N366,N367,N368,N369,N370,N371,N372,N373,N374,N375,N376,N377,N378,N379,N380, \note fields as indicated + N381,N382,N383,N384,N385,N386,N387,N388,N389,N390,N391,N392,N393,N394,N395,N396,N397,N398,N399,N400, \note fields as indicated + N401,N402,N403,N404,N405,N406,N407,N408,N409,N410,N411,N412,N413,N414,N415,N416,N417,N418,N419,N420, \note fields as indicated + N421,N422,N423,N424,N425,N426,N427,N428,N429,N430,N431,N432,N433,N434,N435,N436,N437,N438,N439,N440, \note fields as indicated + N441,N442,N443,N444,N445,N446,N447,N448,N449,N450,N451,N452,N453,N454,N455,N456,N457,N458,N459,N460, \note fields as indicated + N461,N462,N463,N464,N465,N466,N467,N468,N469,N470,N471,N472,N473,N474,N475,N476,N477,N478,N479,N480, \note fields as indicated + N481,N482,N483,N484,N485,N486,N487,N488,N489,N490,N491,N492,N493,N494,N495,N496,N497,N498,N499,N500, \note fields as indicated + N501,N502,N503,N504,N505,N506,N507,N508,N509,N510,N511,N512,N513,N514,N515,N516,N517,N518,N519,N520, \note fields as indicated + N521,N522,N523,N524,N525,N526,N527,N528,N529,N530,N531,N532,N533,N534,N535,N536,N537,N538,N539,N540, \note fields as indicated + N541,N542,N543,N544,N545,N546,N547,N548,N549,N550,N551,N552,N553,N554,N555,N556,N557,N558,N559,N560, \note fields as indicated + N561,N562,N563,N564,N565,N566,N567,N568,N569,N570,N571,N572,N573,N574,N575,N576,N577,N578,N579,N580, \note fields as indicated + N581,N582,N583,N584,N585,N586,N587,N588,N589,N590,N591,N592,N593,N594,N595,N596,N597,N598,N599,N600, \note fields as indicated + N601,N602,N603,N604,N605,N606,N607,N608,N609,N610,N611,N612,N613,N614,N615,N616,N617,N618,N619,N620, \note fields as indicated + N621,N622,N623,N624,N625,N626,N627,N628,N629,N630,N631,N632,N633,N634,N635,N636,N637,N638,N639,N640, \note fields as indicated + N641,N642,N643,N644,N645,N646,N647,N648,N649,N650,N651,N652,N653,N654,N655,N656,N657,N658,N659,N660, \note fields as indicated + N661,N662,N663,N664,N665,N666,N667,N668,N669,N670,N671,N672,N673,N674,N675,N676,N677,N678,N679,N680, \note fields as indicated + N681,N682,N683,N684,N685,N686,N687,N688,N689,N690,N691,N692,N693,N694,N695,N696,N697,N698,N699,N700, \note fields as indicated + N701,N702,N703,N704,N705,N706,N707,N708,N709,N710,N711,N712,N713,N714,N715,N716,N717,N718,N719,N720, \note fields as indicated + N721,N722,N723,N724,N725,N726,N727,N728,N729,N730,N731,N732,N733,N734,N735,N736,N737,N738,N739,N740, \note fields as indicated + N741,N742,N743,N744,N745,N746,N747,N748,N749,N750,N751,N752,N753,N754,N755,N756,N757,N758,N759,N760, \note fields as indicated + N761,N762,N763,N764,N765,N766,N767,N768,N769,N770,N771,N772,N773,N774,N775,N776,N777,N778,N779,N780, \note fields as indicated + N781,N782,N783,N784,N785,N786,N787,N788,N789,N790,N791,N792,N793,N794,N795,N796,N797,N798,N799,N800, \note fields as indicated + N801,N802,N803,N804,N805,N806,N807,N808,N809,N810,N811,N812,N813,N814,N815,N816,N817,N818,N819,N820, \note fields as indicated + N821,N822,N823,N824,N825,N826,N827,N828,N829,N830,N831,N832,N833,N834,N835,N836,N837,N838,N839,N840, \note fields as indicated + N841,N842,N843,N844,N845,N846,N847,N848,N849,N850,N851,N852,N853,N854,N855,N856,N857,N858,N859,N860, \note fields as indicated + N861,N862,N863,N864,N865,N866,N867,N868,N869,N870,N871,N872,N873,N874,N875,N876,N877,N878,N879,N880, \note fields as indicated + N881,N882,N883,N884,N885,N886,N887,N888,N889,N890,N891,N892,N893,N894,N895,N896,N897,N898,N899,N900, \note fields as indicated + N901,N902,N903,N904,N905,N906,N907,N908,N909,N910,N911,N912,N913,N914,N915,N916,N917,N918,N919,N920, \note fields as indicated + N921,N922,N923,N924,N925,N926,N927,N928,N929,N930,N931,N932,N933,N934,N935,N936,N937,N938,N939,N940, \note fields as indicated + N941,N942,N943,N944,N945,N946,N947,N948,N949,N950,N951,N952,N953,N954,N955,N956,N957,N958,N959,N960, \note fields as indicated + N961,N962,N963,N964,N965,N966,N967,N968,N969,N970,N971,N972,N973,N974,N975,N976,N977,N978,N979,N980, \note fields as indicated + N981,N982,N983,N984,N985,N986,N987,N988,N989,N990,N991,N992,N993,N994,N995,N996,N997,N998,N999,N1000, \note fields as indicated + N1001,N1002,N1003,N1004,N1005,N1006,N1007,N1008,N1009,N1010,N1011,N1012,N1013,N1014,N1015,N1016,N1017,N1018,N1019,N1020, \note fields as indicated + N1021,N1022,N1023,N1024,N1025,N1026,N1027,N1028,N1029,N1030,N1031,N1032,N1033,N1034,N1035,N1036,N1037,N1038,N1039,N1040, \note fields as indicated + N1041,N1042,N1043,N1044,N1045,N1046,N1047,N1048,N1049,N1050,N1051,N1052,N1053,N1054,N1055,N1056,N1057,N1058,N1059,N1060, \note fields as indicated + N1061,N1062,N1063,N1064,N1065,N1066,N1067,N1068,N1069,N1070,N1071,N1072,N1073,N1074,N1075,N1076,N1077,N1078,N1079,N1080, \note fields as indicated + N1081,N1082,N1083,N1084,N1085,N1086,N1087,N1088,N1089,N1090,N1091,N1092,N1093,N1094,N1095,N1096,N1097,N1098,N1099,N1100, \note fields as indicated + N1101,N1102,N1103,N1104,N1105,N1106,N1107,N1108,N1109,N1110,N1111,N1112,N1113,N1114,N1115,N1116,N1117,N1118,N1119,N1120, \note fields as indicated + N1121,N1122,N1123,N1124,N1125,N1126,N1127,N1128,N1129,N1130,N1131,N1132,N1133,N1134,N1135,N1136,N1137,N1138,N1139,N1140, \note fields as indicated + N1141,N1142,N1143,N1144,N1145,N1146,N1147,N1148,N1149,N1150,N1151,N1152,N1153,N1154,N1155,N1156,N1157,N1158,N1159,N1160, \note fields as indicated + N1161,N1162,N1163,N1164,N1165,N1166,N1167,N1168,N1169,N1170,N1171,N1172,N1173,N1174,N1175,N1176,N1177,N1178,N1179,N1180, \note fields as indicated + N1181,N1182,N1183,N1184,N1185,N1186,N1187,N1188,N1189,N1190,N1191,N1192,N1193,N1194,N1195,N1196,N1197,N1198,N1199,N1200, \note fields as indicated + N1201,N1202,N1203,N1204,N1205,N1206,N1207,N1208,N1209,N1210,N1211,N1212,N1213,N1214,N1215,N1216,N1217,N1218,N1219,N1220, \note fields as indicated + N1221,N1222,N1223,N1224,N1225,N1226,N1227,N1228,N1229,N1230,N1231,N1232,N1233,N1234,N1235,N1236,N1237,N1238,N1239,N1240, \note fields as indicated + N1241,N1242,N1243,N1244,N1245,N1246,N1247,N1248,N1249,N1250,N1251,N1252,N1253,N1254,N1255,N1256,N1257,N1258,N1259,N1260, \note fields as indicated + N1261,N1262,N1263,N1264,N1265,N1266,N1267,N1268,N1269,N1270,N1271,N1272,N1273,N1274,N1275,N1276,N1277,N1278,N1279,N1280, \note fields as indicated + N1281,N1282,N1283,N1284,N1285,N1286,N1287,N1288,N1289,N1290,N1291,N1292,N1293,N1294,N1295,N1296,N1297,N1298,N1299,N1300, \note fields as indicated + N1301,N1302,N1303,N1304,N1305,N1306,N1307,N1308,N1309,N1310,N1311,N1312,N1313,N1314,N1315,N1316,N1317,N1318,N1319,N1320, \note fields as indicated + N1321,N1322,N1323,N1324,N1325,N1326,N1327,N1328,N1329,N1330,N1331,N1332,N1333,N1334,N1335,N1336,N1337,N1338,N1339,N1340, \note fields as indicated + N1341,N1342,N1343,N1344,N1345,N1346,N1347,N1348,N1349,N1350,N1351,N1352,N1353,N1354,N1355,N1356,N1357,N1358,N1359,N1360, \note fields as indicated + N1361,N1362,N1363,N1364,N1365,N1366,N1367,N1368,N1369,N1370,N1371,N1372,N1373,N1374,N1375,N1376,N1377,N1378,N1379,N1380, \note fields as indicated + N1381,N1382,N1383,N1384,N1385,N1386,N1387,N1388,N1389,N1390,N1391,N1392,N1393,N1394,N1395,N1396,N1397,N1398,N1399,N1400, \note fields as indicated + N1401,N1402,N1403,N1404,N1405,N1406,N1407,N1408,N1409,N1410,N1411,N1412,N1413,N1414,N1415,N1416,N1417,N1418,N1419,N1420, \note fields as indicated + N1421,N1422,N1423,N1424,N1425,N1426,N1427,N1428,N1429,N1430,N1431,N1432,N1433,N1434,N1435,N1436,N1437,N1438,N1439,N1440, \note fields as indicated + N1441,N1442,N1443,N1444,N1445,N1446,N1447,N1448,N1449,N1450,N1451,N1452,N1453,N1454,N1455,N1456,N1457,N1458,N1459,N1460, \note fields as indicated + N1461,N1462,N1463,N1464,N1465,N1466,N1467,N1468,N1469,N1470,N1471,N1472,N1473,N1474,N1475,N1476,N1477,N1478,N1479,N1480, \note fields as indicated + N1481,N1482,N1483,N1484,N1485,N1486,N1487,N1488,N1489,N1490,N1491,N1492,N1493,N1494,N1495,N1496,N1497,N1498,N1499,N1500, \note fields as indicated + N1501,N1502,N1503,N1504,N1505,N1506,N1507,N1508,N1509,N1510,N1511,N1512,N1513,N1514,N1515,N1516,N1517,N1518,N1519,N1520; \note fields as indicated \group Fluid Properties + + FluidProperties:Name, \memo potential fluid name/type in the input file \memo repeat this object for each fluid @@ -107507,7 +107257,63 @@ Meter:Custom, A43, \field Key Name 21 A44, \field Output Variable or Meter Name 21 A45, \field Key Name 22 - A46; \field Output Variable or Meter Name 22 + A46, \field Output Variable or Meter Name 22 + A47, \field Key Name 23 + A48, \field Output Variable or Meter Name 23 + A49, \field Key Name 24 + A50, \field Output Variable or Meter Name 24 + A51, \field Key Name 25 + A52, \field Output Variable or Meter Name 25 + A53, \field Key Name 26 + A54, \field Output Variable or Meter Name 26 + A55, \field Key Name 27 + A56, \field Output Variable or Meter Name 27 + A57, \field Key Name 28 + A58, \field Output Variable or Meter Name 28 + A59, \field Key Name 29 + A60, \field Output Variable or Meter Name 29 + A61, \field Key Name 30 + A62, \field Output Variable or Meter Name 30 + A63, \field Key Name 31 + A64, \field Output Variable or Meter Name 31 + A65, \field Key Name 32 + A66, \field Output Variable or Meter Name 32 + A67, \field Key Name 33 + A68, \field Output Variable or Meter Name 33 + A69, \field Key Name 34 + A70, \field Output Variable or Meter Name 34 + A71, \field Key Name 35 + A72, \field Output Variable or Meter Name 35 + A73, \field Key Name 36 + A74, \field Output Variable or Meter Name 36 + A75, \field Key Name 37 + A76, \field Output Variable or Meter Name 37 + A77, \field Key Name 38 + A78, \field Output Variable or Meter Name 38 + A79, \field Key Name 39 + A80, \field Output Variable or Meter Name 39 + A81, \field Key Name 40 + A82, \field Output Variable or Meter Name 40 + A83, \field Key Name 41 + A84, \field Output Variable or Meter Name 41 + A85, \field Key Name 42 + A86, \field Output Variable or Meter Name 42 + A87, \field Key Name 43 + A88, \field Output Variable or Meter Name 43 + A89, \field Key Name 44 + A90, \field Output Variable or Meter Name 44 + A91, \field Key Name 45 + A92, \field Output Variable or Meter Name 45 + A93, \field Key Name 46 + A94, \field Output Variable or Meter Name 46 + A95, \field Key Name 47 + A96, \field Output Variable or Meter Name 47 + A97, \field Key Name 48 + A98, \field Output Variable or Meter Name 48 + A99, \field Key Name 49 + A100, \field Output Variable or Meter Name 49 + A101, \field Key Name 50 + A102; \field Output Variable or Meter Name 50 Meter:CustomDecrement, \extensible:2 - repeat last two fields, remembering to remove ; from "inner" fields. @@ -107829,4 +107635,3 @@ Output:PreprocessorMessage, \retaincase A12; \field Message Line 10 \retaincase - diff --git a/release/ep.icns b/release/ep.icns new file mode 100644 index 00000000000..92b933cf89c Binary files /dev/null and b/release/ep.icns differ diff --git a/release/ep.ico b/release/ep.ico new file mode 100644 index 00000000000..8dee1f8573e Binary files /dev/null and b/release/ep.ico differ diff --git a/release/ep.png b/release/ep.png new file mode 100644 index 00000000000..5fabc9f0b2a Binary files /dev/null and b/release/ep.png differ diff --git a/release/ep_nobg.png b/release/ep_nobg.png new file mode 100644 index 00000000000..7b8d90526af Binary files /dev/null and b/release/ep_nobg.png differ diff --git a/scripts/dev/generate_epJSON_schema/idd_parser.py b/scripts/dev/generate_epJSON_schema/idd_parser.py index 343ab6d6b23..14d93effd17 100644 --- a/scripts/dev/generate_epJSON_schema/idd_parser.py +++ b/scripts/dev/generate_epJSON_schema/idd_parser.py @@ -262,6 +262,9 @@ def parse_obj(data): continue if token != TOKEN_FIELD: + eat_comment(data) + if comma_or_semicolon == TOKEN_SEMICOLON: + return root raise RuntimeError("expected /field after , or ;") next_token(data) field_name = parse_line(data) diff --git a/scripts/dev/generate_epJSON_schema/modify_schema.py b/scripts/dev/generate_epJSON_schema/modify_schema.py index e812acfa594..0ab9b55c23e 100644 --- a/scripts/dev/generate_epJSON_schema/modify_schema.py +++ b/scripts/dev/generate_epJSON_schema/modify_schema.py @@ -80,9 +80,9 @@ def isInt(s): 'Parametric:RunControl': 'runs', 'ZoneHVAC:EquipmentList': 'equipment', 'AvailabilityManagerAssignmentList': 'managers', - 'Table:MultiVariableLookup': 'values', - 'Table:OneIndependentVariable': 'values', - 'Table:TwoIndependentVariables': 'values', + 'Table:IndependentVariable': 'values', + 'Table:IndependentVariableList': 'independent_variables', + 'Table:Lookup': 'values', 'Matrix:TwoDimension': 'values', 'WindowMaterial:GlazingGroup:Thermochromic': 'temperature_data', 'Schedule:Compact': 'data', @@ -117,7 +117,10 @@ def isInt(s): 'Schedule:Year': 'schedule_weeks', 'WindowShadingControl': 'fenestration_surfaces', 'PlantEquipmentList': 'equipment', - 'CondenserEquipmentList': 'equipment' + 'CondenserEquipmentList': 'equipment', + 'AirLoopHVAC:Mixer': 'nodes', + 'AirLoopHVAC:Splitter': 'nodes', + 'AirLoopHVAC:DedicatedOutdoorAirSystem': 'airloophvacs' } remaining_objects = [ 'Site:SpectrumData', @@ -266,7 +269,7 @@ def change_89_release_issues(schema): 'Curve:Linear', 'Curve:Quadratic', 'Curve:Cubic', 'Curve:Quartic', 'Curve:Exponent', 'Curve:Bicubic', 'Curve:Biquadratic', 'Curve:QuadraticLinear', 'Curve:CubicLinear', 'Curve:Triquadratic', 'Curve:ExponentialSkewNormal', 'Curve:Sigmoid', 'Curve:RectangularHyperbola1', 'Curve:RectangularHyperbola2', 'Curve:ExponentialDecay', - 'Curve:DoubleExponentialDecay', 'Curve:ChillerPartLoadWithLift', 'Table:OneIndependentVariable', 'Table:TwoIndependentVariables', 'Table:MultiVariableLookup' + 'Curve:DoubleExponentialDecay', 'Curve:ChillerPartLoadWithLift', 'Table:Lookup' ] for curve in curves: get_schema_object(schema, curve)['properties']['output_unit_type']['enum'] = [ diff --git a/scripts/diagnostics/afn_auditor.py b/scripts/diagnostics/afn_auditor.py new file mode 100644 index 00000000000..13167d97e3f --- /dev/null +++ b/scripts/diagnostics/afn_auditor.py @@ -0,0 +1,440 @@ +# Copyright (c) 2019, Alliance for Sustainable Energy, LLC +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# 1. Redistributions of source code must retain the above copyright notice, this +# list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# 3. Neither the name of the copyright holder nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +import json +import os +import argparse +import sys +import uuid +import auditor + +# +# Local definitions +# +afn_object_names = ['RoomAir:Node:AirflowNetwork:AdjacentSurfaceList', + 'RoomAir:Node:AirflowNetwork:InternalGains', + 'RoomAir:Node:AirflowNetwork:HVACEquipment', + 'AirflowNetwork:SimulationControl', + 'AirflowNetwork:MultiZone:Zone', + 'AirflowNetwork:MultiZone:Surface', + 'AirflowNetwork:MultiZone:ReferenceCrackConditions', + 'AirflowNetwork:MultiZone:Surface:Crack', + 'AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea', + 'AirflowNetwork:MultiZone:Component:DetailedOpening', + 'AirflowNetwork:MultiZone:Component:SimpleOpening', + 'AirflowNetwork:MultiZone:Component:HorizontalOpening', + 'AirflowNetwork:MultiZone:Component:ZoneExhaustFan', + 'AirflowNetwork:MultiZone:ExternalNode', + 'AirflowNetwork:MultiZone:WindPressureCoefficientArray', + 'AirflowNetwork:MultiZone:WindPressureCoefficientValues', + 'AirflowNetwork:ZoneControl:PressureController', + 'AirflowNetwork:Distribution:Node', + 'AirflowNetwork:Distribution:Component:Leak', + 'AirflowNetwork:Distribution:Component:LeakageRatio', + 'AirflowNetwork:Distribution:Component:Duct', + 'AirflowNetwork:Distribution:Component:Fan', + 'AirflowNetwork:Distribution:Component:Coil', + 'AirflowNetwork:Distribution:Component:HeatExchanger', + 'AirflowNetwork:Distribution:Component:TerminalUnit', + 'AirflowNetwork:Distribution:Component:ConstantPressureDrop', + 'AirflowNetwork:Distribution:Component:OutdoorAirFlow', + 'AirflowNetwork:Distribution:Component:ReliefAirFlow', + 'AirflowNetwork:Distribution:Linkage', + 'AirflowNetwork:Distribution:DuctViewFactors', + 'AirflowNetwork:OccupantVentilationControl', + 'AirflowNetwork:IntraZone:Node', + 'AirflowNetwork:IntraZone:Linkage'] + +# +# Names of the multizone components +# +multizone_component_names = ['AirflowNetwork:MultiZone:Surface:Crack', + 'AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea', + 'AirflowNetwork:MultiZone:Component:DetailedOpening', + 'AirflowNetwork:MultiZone:Component:SimpleOpening', + 'AirflowNetwork:MultiZone:Component:HorizontalOpening', + 'AirflowNetwork:MultiZone:Component:ZoneExhaustFan'] + +class AFN_Auditor(auditor.Auditor): + def __init__(self, model): + super().__init__(model) + self.nodes = {} + self.external_nodes = {} + self.surfs = {} + self.wpcs = {} + self.refconds = {} + self.afes = {} + self.relative_geometry = False + self.vertex_ccw = True + # Figure out what is what + if 'GlobalGeometryRules' in self.model: + obj = next(iter(self.model['GlobalGeometryRules'].values())) + if 'coordinate_system' in obj: + if obj['coordinate_system'] == 'Relative': + self.relative_geometry = True + if 'vertex_entry_direction' == 'ClockWise': + self.vertex_ccw = False + if self.__extract(): + self.__connect_multizone() + def __extract(self): + lookup = {'AirflowNetwork:MultiZone:Zone':self.nodes, + 'AirflowNetwork:MultiZone:Surface':self.surfs, + 'AirflowNetwork:MultiZone:ReferenceCrackConditions':self.refconds, + 'AirflowNetwork:MultiZone:Surface:Crack':self.afes, + 'AirflowNetwork:MultiZone:Surface:EffectiveLeakageArea':self.afes, + 'AirflowNetwork:MultiZone:Component:DetailedOpening':self.afes, + 'AirflowNetwork:MultiZone:Component:SimpleOpening':self.afes, + 'AirflowNetwork:MultiZone:Component:HorizontalOpening':self.afes, + 'AirflowNetwork:MultiZone:Component:ZoneExhaustFan':self.afes, + 'AirflowNetwork:MultiZone:ExternalNode':self.external_nodes, + #'AirflowNetwork:Distribution:Node':self.nodes, + #'AirflowNetwork:IntraZone:Node':self.nodes + } + # Load the simcontrol object + try: + self.simcontrol = self.model['AirflowNetwork:SimulationControl'] + except KeyError: + self.json['messages'] = ['Model does not contain a AirflowNetwork:SimulationControl object, aborting audit'] + return False + # Handle the wind pressure coefficients, should maybe remove these from the model once we're done + try: + wpa = next(iter(self.model['AirflowNetwork:MultiZone:WindPressureCoefficientArray'].values())) + keys = [el for el in wpa.keys() if el.startswith('wind_dir')] + keys.sort() + directions = [] + for key in keys: + directions.append(wpa[key]) + + for k,v in self.model['AirflowNetwork:MultiZone:WindPressureCoefficientValues'].items(): + keys = [el for el in v.keys() if el.startswith('wind_pres')] + keys.sort() + coeffs = [] + for key in keys: + coeffs.append(v[key]) + self.wpcs[k] = {'wind_directions' : directions, + 'wind_pressure_coefficient_values' : coeffs} + except KeyError: + self.wpcs = {} + + # Pull out the airflow network objects + for key in self.model.keys(): + if key in lookup: + thedict = lookup[key] + for k,v in self.model[key].items(): + thedict[k] = v + return True + + def write_dot(self, fp): + if self.nodes == []: + # Have to have internal nodes + return + if self.surfs == []: + # Have to have connections + return + # + # Generate a graph + # + # Give nodes names for displaying + count = 0 + for name, node in self.external_nodes.items(): + node['display_name'] = 'E%d' % count + count += 1 + + count = 0 + for name, node in self.nodes.items(): + node['display_name'] = 'I%d' % count + count += 1 + + fp.write('graph linkages {\n') + for name, surf in self.surfs.items(): + fp.write('%s -- %s\n' % (surf.nodes[0]['display_name'], + surf.nodes[1]['display_name'])) + fp.write('}\n') + def __compute_azimuths(self): + if self.relative_geometry: + for surf in self.surfs: + htsurf = self.model['BuildingSurface:Detailed'][surf['building_surface_name']] + + + def __connect_multizone(self): + # Link surfaces to nodes, need to automate this better at some point + for name, node in self.nodes.items(): + node['link_count'] = 0 + node['external_connections'] = 0 + node['neighbors'] = {} + + for name, node in self.external_nodes.items(): + node['link_count'] = 0 + node['neighbors'] = {} + + heat_transfer_surface_names = ['BuildingSurface:Detailed', + 'FenestrationSurface:Detailed'] + + htsurfs = {} + for name in heat_transfer_surface_names: + if name in self.model: + htsurfs.update(self.model[name]) + + outdoor_count = 0 + + for name, surf in self.surfs.items(): + window = None + try: + htsurf = htsurfs[surf['surface_name']] + except KeyError: + raise auditor.BadModel('Failed to find heat transfer surface for AirflowNetwork surface "' + name + '"') + if 'building_surface_name' in htsurf: + window = htsurf + try: + htsurf = htsurfs[window['building_surface_name']] + except KeyError: + raise auditor.BadModel('Failed to find window heat transfer surface for AirflowNetwork surface "' + name + '"') + + bc = htsurf['outside_boundary_condition'] + + linked_nodes = [] + if bc == 'Outdoors': + outdoor_count += 1 + try: + external_node_name = surf['external_node_name'] + except KeyError: + # This is probably a model using precomputed WPCs, should check that + external_node_name = uuid.uuid4().hex[:6].upper() + self.external_nodes[external_node_name] = {'link_count':0, 'zone_name':None, 'neighbors':{}} + surf['external_node_name'] = external_node_name + try: + external_node = self.external_nodes[external_node_name] + except KeyError: + raise auditor.BadModel('Failed to find external node "' + external_node_name + '" for AirflowNetwork surface "' + name + '"') + external_node['link_count'] += 1 + zone_name = htsurf['zone_name'] + # Find the multizone zone that points at this zone + afnzone = None + for name,node in self.nodes.items(): + if node['zone_name'] == zone_name: + afnzone = node + node['link_count'] += 1 + node['external_connections'] += 1 + if surf['external_node_name'] in node['neighbors']: + node['neighbors'][surf['external_node_name']] += 1 + else: + node['neighbors'][surf['external_node_name']] = 1 + if zone_name in external_node['neighbors']: + external_node['neighbors'][zone_name] += 1 + else: + external_node['neighbors'][zone_name] = 1 + break + if afnzone == None: + raise auditor.BadModel('Failed to find AirflowNetwork zone for thermal zone "' + zone_name + '"') + linked_nodes = [afnzone, external_node] + elif bc == 'Surface': + zone_name = htsurf['zone_name'] + # Find the multizone zone that points at this zone + afnzone = None + for name,node in self.nodes.items(): + if node['zone_name'] == zone_name: + afnzone = node + node['link_count'] += 1 + break + if afnzone == None: + raise auditor.BadModel('Failed to find AirflowNetwork zone for thermal zone "' + zone_name + '"') + linked_nodes = [afnzone] + adjhtsurf = htsurfs[htsurf['outside_boundary_condition_object']] + adj_zone_name = adjhtsurf['zone_name'] + adj_afnzone = None + for name,node in self.nodes.items(): + if node['zone_name'] == adj_zone_name: + adj_afnzone = node + node['link_count'] += 1 + break + if adj_afnzone == None: + raise auditor.BadModel('Failed to find AirflowNetwork zone for adjacent thermal zone "' + adj_zone_name + '"') + linked_nodes.append(adj_afnzone) + if adj_zone_name in afnzone['neighbors']: + afnzone['neighbors'][adj_zone_name] += 1 + else: + afnzone['neighbors'][adj_zone_name] = 1 + if zone_name in adj_afnzone['neighbors']: + adj_afnzone['neighbors'][zone_name] += 1 + else: + adj_afnzone['neighbors'][zone_name] = 1 + + surf['nodes'] = linked_nodes + return True + def audit(self, **kwargs): + if self.nodes == {} or self.external_nodes == {} or self.surfs == {}: + # This is not a super great way to get this done, should reconsider + self.__extract() + self.__connect_multizone() + + #for name, surf in netcomps.data['AirflowNetwork:MultiZone:Surface'].items(): + # if len(surf['nodes']) != 2: + # raise Exception('Failed to define all surface linkages') + + # + # Now we've got the links worked out, so proceed to looking at what was there + # + link_histogram = {} + external_link_histogram = {} + max_link_node_name = None + max_links = 0 + max_external_link_node_name = None + max_external_links = 0 + for name,node in self.nodes.items(): + if node['link_count'] > max_links: + max_link_node_name = name + max_links = node['link_count'] + if node['link_count'] in link_histogram: + link_histogram[node['link_count']] += 1 + else: + link_histogram[node['link_count']] = 1 + if node['external_connections'] > max_external_links: + max_external_link_node_name = name + max_external_links = node['external_connections'] + if node['external_connections'] in external_link_histogram: + external_link_histogram[node['external_connections']] += 1 + else: + external_link_histogram[node['external_connections']] = 1 + + #print(max_link_node_name, max_external_link_node_name) + #print(len(self.nodes)) + + # + # For a simple brick zone, 6 multizone links would connect it to all neighbors. + # In real models, it's unlikely that 6 is a good number to test against, so let's + # hardcode this as roughly quadruple that, or 25 + # + large_links = 0 + too_many_links = 0 + way_too_many_links = 0 + for k,v in link_histogram.items(): + if k >= 25: + large_links += v + if k >= 50: + too_many_links += v + if k >= 100: + way_too_many_links += v + #print(large_links, too_many_links, way_too_many_links) + + # Do the same thing for external connections, but using 2 as the ideal, quadruple that + # would be ~8 + large_external_links = 0 + too_many_external_links = 0 + way_too_many_external_links = 0 + for k,v in external_link_histogram.items(): + if k >= 8: + large_external_links += v + if k >= 16: + too_many_external_links += v + if k >= 32: + way_too_many_external_links += v + #print(large_external_links, too_many_external_links, way_too_many_external_links) + + # + # Machine-readable output + # + self.json['multizone_link_histogram'] = link_histogram + self.json['max_multizone_links'] = {'zone' : self.nodes[max_link_node_name]['zone_name'], + 'afn_zone' : max_link_node_name, + 'count' : max_links} + self.json['external_link_histogram'] = external_link_histogram + self.json['max_external_links'] = {'zone' : self.nodes[max_external_link_node_name]['zone_name'], + 'afn_zone' : max_external_link_node_name, + 'count' : max_external_links} + self.json['messages'] = [] + if large_links > 0: + mesg = '%d zone(s) with greater than 25 links' % large_links + if too_many_links > 0: + mesg += ', %d with greater than 50 links' % too_many_links + if way_too_many_links > 0: + mesg += ', %d with greater than 100 links' % way_too_many_links + mesg += ', model performance may suffer' + self.json['messages'].append(mesg) + if large_external_links > 0: + mesg = '%d zone(s) with greater than 8 external links' % large_external_links + if too_many_external_links > 0: + mesg += ', %d with greater than 16 external links' % too_many_external_links + if way_too_many_external_links > 0: + mesg += ', %d with greater than 32 external links' % way_too_many_external_links + mesg += ', model performance may suffer' + self.json['messages'].append(mesg) + + +if __name__ == '__main__': + # + # The main body of the script, do argument processing first + # + parser = argparse.ArgumentParser(description='AirflowNetwork model audit script') + #args.add_argument('-g', '--graph', help='Generate a graphviz graph', + # default=False, action='store_true') + parser.add_argument('-g', '--graph', help='generate a graphviz .dot output file', + dest='graph', metavar='dotfile', default=None, + type=argparse.FileType('w')) + parser.add_argument('-p', '--pretty', help='write pretty JSON output', + default=False, action='store_true') + parser.add_argument("json_file") + + args = parser.parse_args() + + fp = open(args.json_file, 'r') + model = json.load(fp) + fp.close() + + auditor = AFN_Auditor(model) + + auditor.audit() + + # + # Now write it all out + # + indent = None + if args.pretty: + indent = 2 + + json.dump(auditor.json, sys.stdout, indent=indent) + + if args.graph: + # + # Generate a graph + # + # Give nodes names for displaying + count = 0 + for name, node in external_nodes.items(): + node['display_name'] = 'E%d' % count + count += 1 + + count = 0 + for name, node in nodes.items(): + node['display_name'] = 'I%d' % count + count += 1 + + args.graph.write('graph linkages {\n') + for name, surf in surfs.items(): + args.graph.write('%s -- %s\n' % (surf.nodes[0]['display_name'], + surf.nodes[1]['display_name'])) + args.graph.write('}\n') + args.graph.close() diff --git a/scripts/diagnostics/auditor.py b/scripts/diagnostics/auditor.py new file mode 100644 index 00000000000..47a3fca2a24 --- /dev/null +++ b/scripts/diagnostics/auditor.py @@ -0,0 +1,14 @@ +# Base class of model auditors and exceptions + + +class BadModel(Exception): + pass + + +class Auditor: + def __init__(self, model): + self.model = model # The model + self.json = {} # JSON output dictionary + + def audit(self, **kwargs): + return True diff --git a/src/EnergyPlus/AirLoopHVACDOAS.cc b/src/EnergyPlus/AirLoopHVACDOAS.cc new file mode 100644 index 00000000000..fda79cce4cd --- /dev/null +++ b/src/EnergyPlus/AirLoopHVACDOAS.cc @@ -0,0 +1,1157 @@ +// EnergyPlus, Copyright (c) 1996-2019, The Board of Trustees of the University of Illinois, +// The Regents of the University of California, through Lawrence Berkeley National Laboratory +// (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge +// National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other +// contributors. All rights reserved. +// +// NOTICE: This Software was developed under funding from the U.S. Department of Energy and the +// U.S. Government consequently retains certain rights. As such, the U.S. Government has been +// granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, +// worldwide license in the Software to reproduce, distribute copies to the public, prepare +// derivative works, and perform publicly and display publicly, and to permit others to do so. +// +// Redistribution and use in source and binary forms, with or without modification, are permitted +// provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, this list of +// conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, this list of +// conditions and the following disclaimer in the documentation and/or other materials +// provided with the distribution. +// +// (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, +// the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be +// used to endorse or promote products derived from this software without specific prior +// written permission. +// +// (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form +// without changes from the version obtained under this License, or (ii) Licensee makes a +// reference solely to the software portion of its product, Licensee must refer to the +// software as "EnergyPlus version X" software, where "X" is the version number Licensee +// obtained under this License and may not use a different name for the software. Except as +// specifically required in this Section (4), Licensee shall not use in a company name, a +// product name, in advertising, publicity, or other promotional activities any name, trade +// name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly +// similar designation, without the U.S. Department of Energy's prior written consent. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR +// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include // std::string, std::to_string + +namespace EnergyPlus { +namespace AirLoopHVACDOAS { + + int numAirLoopDOAS(0); + + bool GetInputOnceFlag(true); + bool getAirLoopMixerInputOnceFlag(true); + bool getAirLoopSplitterInputOnceFlag(true); + + std::vector airloopDOAS; + std::vector airloopMixer; + std::vector airloopSplitter; + + AirLoopMixer::AirLoopMixer() : numOfInletNodes(0), m_AirLoopMixer_Num(0), OutletNodeNum(0), OutletTemp(0.0) + { + } + + AirLoopSplitter::AirLoopSplitter() : numOfOutletNodes(0), m_AirLoopSplitter_Num(0), InletTemp(0.0) + { + } + + AirLoopDOAS::AirLoopDOAS() // constructor + : SumMassFlowRate(0.0), PreheatTemp(-999.0), PrecoolTemp(-999.0), PreheatHumRat(-999.0), PrecoolHumRat(-999.0), SizingMassFlow(0.0), + SizingCoolOATemp(-999.0), SizingCoolOAHumRat(-999.0), HeatOutTemp(0.0), HeatOutHumRat(0.0), m_OASystemNum(0), m_AvailManagerSchedPtr(0), + m_AirLoopMixerIndex(-1), m_AirLoopSplitterIndex(-1), NumOfAirLoops(0), m_InletNodeNum(0), m_OutletNodeNum(0), m_FanIndex(-1), + m_FanInletNodeNum(0), m_FanOutletNodeNum(0), m_FanTypeNum(0), m_HeatCoilNum(0), m_CoolCoilNum(0), ConveCount(0), ConveIndex(0), + m_HeatExchangerFlag(false), SizingOnceFlag(true), DXCoilFlag(false), FanBlowTroughFlag(false), HWLoopNum(0), HWLoopSide(0), HWBranchNum(0), + HWCompNum(0), HWCtrlNodeNum(0), CWLoopNum(0), CWLoopSide(0), CWBranchNum(0), CWCompNum(0), CWCtrlNodeNum(0) + + { + } + + // Clears the global data in AirLoopDOAS. + void clear_state() + { + GetInputOnceFlag = true; + getAirLoopMixerInputOnceFlag = true; + getAirLoopSplitterInputOnceFlag = true; + + airloopDOAS.clear(); + airloopMixer.clear(); + airloopSplitter.clear(); + + numAirLoopDOAS = 0; + } + + void AirLoopDOAS::SimAirLoopHVACDOAS(bool const FirstHVACIteration, int &CompIndex) + { + + // Obtains and Allocates unitary system related parameters from input file + if (GetInputOnceFlag) { + // Get the AirLoopHVACDOAS input + getAirLoopDOASInput(); + GetInputOnceFlag = false; + } + + if (CompIndex == -1) { + CompIndex = this->m_AirLoopDOASNum; + } + + if (this->SizingOnceFlag) { + this->SizingAirLoopDOAS(); + this->SizingOnceFlag = false; + } + + this->initAirLoopDOAS(FirstHVACIteration); + + if (this->SumMassFlowRate == 0.0 && !DataGlobals::BeginEnvrnFlag) { + DataLoopNode::Node(this->m_CompPointerAirLoopMixer->OutletNodeNum).MassFlowRate = 0.0; + return; + } + + this->CalcAirLoopDOAS(FirstHVACIteration); + } + + AirLoopMixer *AirLoopMixer::factory(int object_num, std::string const objectName) + { + + if (getAirLoopMixerInputOnceFlag) { + AirLoopMixer::getAirLoopMixer(); + getAirLoopMixerInputOnceFlag = false; + } + + int MixerNum = -1; + for (auto &dSpec : airloopMixer) { + ++MixerNum; + if (UtilityRoutines::SameString(dSpec.name, objectName) && dSpec.m_AirLoopMixer_Num == object_num) { + return &dSpec; + } + } + + ShowSevereError("AirLoopMixer factory: Error getting inputs for system named: " + objectName); + return nullptr; + } + + void AirLoopMixer::getAirLoopMixer() + { + using DataLoopNode::NodeID; + + bool errorsFound(false); + + std::string cCurrentModuleObject = "AirLoopHVAC:Mixer"; + std::string cFieldName; + + auto const instances = inputProcessor->epJSON.find(cCurrentModuleObject); + if (instances == inputProcessor->epJSON.end()) { + errorsFound = true; + } else { + int AirLoopMixerNum = 0; + auto &instancesValue = instances.value(); + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + + auto const &fields = instance.value(); + auto const &thisObjectName = instance.key(); + inputProcessor->markObjectAsUsed(cCurrentModuleObject, thisObjectName); + ++AirLoopMixerNum; + AirLoopMixer thisMixer; + + thisMixer.name = UtilityRoutines::MakeUPPERCase(thisObjectName); + thisMixer.OutletNodeName = UtilityRoutines::MakeUPPERCase(fields.at("outlet_node_name")); + thisMixer.m_AirLoopMixer_Num = AirLoopMixerNum - 1; + thisMixer.OutletNodeNum = NodeInputManager::GetOnlySingleNode(thisMixer.OutletNodeName, + errorsFound, + cCurrentModuleObject, + thisObjectName, + DataLoopNode::NodeType_Air, + DataLoopNode::NodeConnectionType_Outlet, + 1, + DataLoopNode::ObjectIsParent); + + auto NodeNames = fields.find("nodes"); + if (NodeNames != fields.end()) { + auto NodeArray = NodeNames.value(); + thisMixer.numOfInletNodes = NodeArray.size(); + int num = 0; + for (auto NodeDOASName : NodeArray) { + num += 1; + std::string name = UtilityRoutines::MakeUPPERCase(NodeDOASName.at("inlet_node_name")); + int NodeNum = UtilityRoutines::FindItemInList(name, NodeID); + if (NodeNum > 0 && num <= thisMixer.numOfInletNodes) { + thisMixer.InletNodeName.push_back(name); + thisMixer.InletNodeNum.push_back(NodeNum); + } else { + cFieldName = "Inlet Node Name"; + ShowSevereError(cCurrentModuleObject + ", \"" + thisMixer.name + "\" " + name + " not found: " + cFieldName); + errorsFound = true; + } + } + } + + airloopMixer.push_back(thisMixer); + } + if (errorsFound) { + ShowFatalError("getAirLoopMixer: Previous errors cause termination."); + } + } + } // namespace AirLoopMixer + + void AirLoopMixer::CalcAirLoopMixer() + { + Real64 OutletTemp = 0.0; + Real64 OutletHumRat = 0.0; + Real64 MassSum = 0.0; + int InletNum; + + for (int i = 1; i <= this->numOfInletNodes; i++) { + InletNum = this->InletNodeNum[i - 1]; + MassSum += DataLoopNode::Node(InletNum).MassFlowRate; + OutletTemp += DataLoopNode::Node(InletNum).MassFlowRate * DataLoopNode::Node(InletNum).Temp; + OutletHumRat += DataLoopNode::Node(InletNum).MassFlowRate * DataLoopNode::Node(InletNum).HumRat; + } + if (MassSum > 0.0) { + DataLoopNode::Node(this->OutletNodeNum).Temp = OutletTemp / MassSum; + DataLoopNode::Node(this->OutletNodeNum).HumRat = OutletHumRat / MassSum; + DataLoopNode::Node(this->OutletNodeNum).MassFlowRate = MassSum; + DataLoopNode::Node(this->OutletNodeNum).Enthalpy = Psychrometrics::PsyHFnTdbW(OutletTemp / MassSum, OutletHumRat / MassSum); + this->OutletTemp = DataLoopNode::Node(this->OutletNodeNum).Temp; + } else { + DataLoopNode::Node(this->OutletNodeNum).Temp = DataLoopNode::Node(this->InletNodeNum[0]).Temp; + DataLoopNode::Node(this->OutletNodeNum).HumRat = DataLoopNode::Node(this->InletNodeNum[0]).HumRat; + DataLoopNode::Node(this->OutletNodeNum).MassFlowRate = 0.0; + DataLoopNode::Node(this->OutletNodeNum).Enthalpy = DataLoopNode::Node(this->InletNodeNum[0]).Enthalpy; + this->OutletTemp = DataLoopNode::Node(this->InletNodeNum[0]).Temp; + } + } + + int getAirLoopMixerIndex( // lookup vector index for AirLoopHVAC:Mixer object name + std::string const &objectName // IDF name in input + ) + { + if (getAirLoopMixerInputOnceFlag) { + AirLoopMixer::getAirLoopMixer(); + getAirLoopMixerInputOnceFlag = false; + } + + int index = -1; + for (std::size_t loop = 0; loop < airloopMixer.size(); ++loop) { + AirLoopMixer *thisAirLoopMixerObjec = &airloopMixer[loop]; + if (UtilityRoutines::SameString(objectName, thisAirLoopMixerObjec->name)) { + index = loop; + return index; + } + } + ShowSevereError("getAirLoopMixer: did not find AirLoopHVAC:Mixer name =" + objectName + ". Check inputs"); + return index; + } + + AirLoopSplitter *AirLoopSplitter::factory(int object_num, std::string const objectName) + { + + if (getAirLoopSplitterInputOnceFlag) { + AirLoopSplitter::getAirLoopSplitter(); + getAirLoopSplitterInputOnceFlag = false; + } + + int SplitterNum = -1; + for (auto &dSpec : airloopSplitter) { + SplitterNum++; + if (UtilityRoutines::SameString(dSpec.name, objectName) && dSpec.m_AirLoopSplitter_Num == object_num) { + return &dSpec; + } + } + ShowSevereError("AirLoopSplitter factory: Error getting inputs for system named: " + objectName); + return nullptr; + } + + void AirLoopSplitter::CalcAirLoopSplitter(Real64 Temp, Real64 HumRat) + { + for (int i = 0; i < this->numOfOutletNodes; i++) { + DataLoopNode::Node(this->OutletNodeNum[i]).Temp = Temp; + DataLoopNode::Node(this->OutletNodeNum[i]).HumRat = HumRat; + DataLoopNode::Node(this->OutletNodeNum[i]).Enthalpy = Psychrometrics::PsyHFnTdbW(Temp, HumRat); + } + this->InletTemp = Temp; + } + + int getAirLoopSplitterIndex( // lookup vector index for AirLoopHVAC:Splitter object name + std::string const &objectName // IDF name in input + ) + { + if (getAirLoopSplitterInputOnceFlag) { + AirLoopSplitter::getAirLoopSplitter(); + getAirLoopSplitterInputOnceFlag = false; + } + + int index = -1; + for (std::size_t loop = 0; loop < airloopSplitter.size(); ++loop) { + AirLoopSplitter *thisAirLoopSplitterObjec = &airloopSplitter[loop]; + if (UtilityRoutines::SameString(objectName, thisAirLoopSplitterObjec->name)) { + index = loop; + return index; + } + } + ShowSevereError("getAirLoopSplitter: did not find AirLoopSplitter name =" + objectName + ". Check inputs"); + return index; + } + + void AirLoopSplitter::getAirLoopSplitter() + { + using DataLoopNode::NodeID; + + bool errorsFound(false); + + std::string cCurrentModuleObject = "AirLoopHVAC:Splitter"; + std::string cFieldName; + + auto const instances = inputProcessor->epJSON.find(cCurrentModuleObject); + if (instances == inputProcessor->epJSON.end()) { + errorsFound = true; + } else { + int AirLoopSplitterNum = 0; + auto &instancesValue = instances.value(); + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + + auto const &fields = instance.value(); + auto const &thisObjectName = instance.key(); + inputProcessor->markObjectAsUsed(cCurrentModuleObject, thisObjectName); + + ++AirLoopSplitterNum; + AirLoopSplitter thisSplitter; + + thisSplitter.name = UtilityRoutines::MakeUPPERCase(thisObjectName); + thisSplitter.InletNodeName = UtilityRoutines::MakeUPPERCase(fields.at("inlet_node_name")); + thisSplitter.m_AirLoopSplitter_Num = AirLoopSplitterNum - 1; + + auto NodeNames = fields.find("nodes"); + if (NodeNames != fields.end()) { + auto NodeArray = NodeNames.value(); + thisSplitter.numOfOutletNodes = NodeArray.size(); + int num = 0; + for (auto NodeDOASName : NodeArray) { + num += 1; + std::string name = UtilityRoutines::MakeUPPERCase(NodeDOASName.at("outlet_node_name")); + int NodeNum = UtilityRoutines::FindItemInList(name, NodeID); + if (NodeNum > 0 && num <= thisSplitter.numOfOutletNodes) { + thisSplitter.OutletNodeName.push_back(name); + thisSplitter.OutletNodeNum.push_back(NodeNum); + } else { + cFieldName = "Outlet Node Name"; + ShowSevereError(cCurrentModuleObject + ", \"" + thisSplitter.name + "\" " + cFieldName + + " not found: " + name); + errorsFound = true; + } + } + } + + airloopSplitter.push_back(thisSplitter); + } + if (errorsFound) { + ShowFatalError("getAirLoopSplitter: Previous errors cause termination."); + } + } + } // namespace AirLoopSplitter + + void AirLoopDOAS::getAirLoopDOASInput() + { + + using DataAirLoop::OutsideAirSys; + using DataAirSystems::PrimaryAirSystem; + using ScheduleManager::GetScheduleIndex; + + bool errorsFound(false); + + std::string cCurrentModuleObject = "AirLoopHVAC:DedicatedOutdoorAirSystem"; + std::string cFieldName; + + auto const instances = inputProcessor->epJSON.find(cCurrentModuleObject); + if (instances == inputProcessor->epJSON.end()) { + errorsFound = true; + } else { + int AirLoopDOASNum = 0; + auto &instancesValue = instances.value(); + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + + auto const &fields = instance.value(); + auto const &thisObjectName = instance.key(); + inputProcessor->markObjectAsUsed(cCurrentModuleObject, thisObjectName); + ++AirLoopDOASNum; + AirLoopDOAS thisDOAS; + + thisDOAS.Name = UtilityRoutines::MakeUPPERCase(thisObjectName); + // get OA and avail num + thisDOAS.OASystemName = UtilityRoutines::MakeUPPERCase(fields.at("airloophvac_outdoorairsystem_name")); + thisDOAS.m_OASystemNum = UtilityRoutines::FindItemInList(thisDOAS.OASystemName, OutsideAirSys); + if (thisDOAS.m_OASystemNum == 0) { + cFieldName = "AirLoopHVAC:OutdoorAirSystem Name"; + ShowSevereError(cCurrentModuleObject + ", \"" + thisDOAS.Name + "\" " + cFieldName + " not found: " + thisDOAS.OASystemName); + errorsFound = true; + } + // Check controller type + std::string CurrentModuleObject = "AirLoopHVAC:OutdoorAirSystem"; + for (int InListNum = 1; InListNum <= OutsideAirSys(thisDOAS.m_OASystemNum).NumControllers; ++InListNum) { + if (UtilityRoutines::SameString(OutsideAirSys(thisDOAS.m_OASystemNum).ControllerType(InListNum), "Controller:OutdoorAir")) { + ShowSevereError("When " + CurrentModuleObject + " = " + OutsideAirSys(thisDOAS.m_OASystemNum).ControllerName(InListNum) + + " is used in AirLoopHVAC:DedicatedOutdoorAirSystem,"); + ShowContinueError("The Controller:OutdoorAir can not be used as a controller. Please remove it"); + errorsFound = true; + } + } + + // get inlet and outlet node number from equipment list + CurrentModuleObject = "AirLoopHVAC:OutdoorAirSystem:EquipmentList"; + for (int CompNum = 1; CompNum <= OutsideAirSys(thisDOAS.m_OASystemNum).NumComponents; ++CompNum) { + std::string CompType = OutsideAirSys(thisDOAS.m_OASystemNum).ComponentType(CompNum); + std::string CompName = OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum); + bool InletNodeErrFlag = false; + bool OutletNodeErrFlag = false; + + auto const SELECT_CASE_var(UtilityRoutines::MakeUPPERCase(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentType(CompNum))); + + if (SELECT_CASE_var == "OUTDOORAIR:MIXER") { + ShowSevereError("When " + CurrentModuleObject + " = " + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum) + + " is used in AirLoopHVAC:DedicatedOutdoorAirSystem,"); + ShowContinueError(" the OUTDOORAIR:MIXER can not be used as a component. Please remove it"); + errorsFound = true; + + } else if (SELECT_CASE_var == "FAN:CONSTANTVOLUME") { + ShowSevereError("When " + CurrentModuleObject + " = " + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum) + + " is used in AirLoopHVAC:DedicatedOutdoorAirSystem,"); + ShowContinueError(" the FAN:CONSTANTVOLUME can not be used as a component. The alllowed fan types are FAN:SYSTEMMODEL and " + "FAN:COMPONENTMODEL. Please change it"); + errorsFound = true; + } else if (SELECT_CASE_var == "FAN:VARIABLEVOLUME") { + ShowSevereError("When " + CurrentModuleObject + " = " + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum) + + " is used in AirLoopHVAC:DedicatedOutdoorAirSystem,"); + ShowContinueError(" the FAN:VARIABLEVOLUME can not be used as a component. The alllowed fan types are FAN:SYSTEMMODEL and " + "FAN:COMPONENTMODEL. Please change it"); + errorsFound = true; + } else if (SELECT_CASE_var == "FAN:SYSTEMMODEL") { + thisDOAS.FanName = CompName; + thisDOAS.m_FanTypeNum = SimAirServingZones::Fan_System_Object; + thisDOAS.m_FanIndex = HVACFan::getFanObjectVectorIndex(CompName); + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = HVACFan::fanObjs[thisDOAS.m_FanIndex]->inletNodeNum; + if (OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) == 0) { + InletNodeErrFlag = true; + errorsFound = true; + } + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = HVACFan::fanObjs[thisDOAS.m_FanIndex]->outletNodeNum; + if (OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) == 0) { + OutletNodeErrFlag = true; + errorsFound = true; + } + thisDOAS.m_FanInletNodeNum = OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum); + thisDOAS.m_FanOutletNodeNum = OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum); + if (CompNum == 1) { + thisDOAS.FanBlowTroughFlag = true; + } + if (!(CompNum == 1 || CompNum == OutsideAirSys(thisDOAS.m_OASystemNum).NumComponents)) { + ShowSevereError("The fan placement is either first as blow through or last as draw through in" + CurrentModuleObject + + " = " + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + ShowContinueError("The current position is number " + General::RoundSigDigits(CompNum)); + errorsFound = true; + } + } else if (SELECT_CASE_var == "FAN:COMPONENTMODEL") { + thisDOAS.m_FanTypeNum = SimAirServingZones::Fan_ComponentModel; + Fans::GetFanIndex(CompName, thisDOAS.m_FanIndex, errorsFound); + thisDOAS.FanName = CompName; + if (CompNum == 1) { + thisDOAS.FanBlowTroughFlag = true; + } + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + Fans::GetFanInletNode(SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + Fans::GetFanOutletNode(SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + thisDOAS.m_FanInletNodeNum = OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum); + thisDOAS.m_FanOutletNodeNum = OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum); + if (!(CompNum == 1 || CompNum == OutsideAirSys(thisDOAS.m_OASystemNum).NumComponents)) { + ShowSevereError("The fan placement is either first as blow through or last as draw through in" + CurrentModuleObject + + " = " + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + ShowContinueError("The current position is number " + General::RoundSigDigits(CompNum)); + errorsFound = true; + } + } else if (SELECT_CASE_var == "COIL:COOLING:WATER") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + WaterCoils::GetCoilInletNode(SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + WaterCoils::GetCoilOutletNode(SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + thisDOAS.CWCtrlNodeNum = WaterCoils::GetCoilWaterInletNode("COIL:COOLING:WATER", CompName, errorsFound); + if (errorsFound) { + ShowContinueError("The control node number is not found in " + CurrentModuleObject + " = " + + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + } + PlantUtilities::ScanPlantLoopsForObject(CompName, + DataPlant::TypeOf_CoilWaterCooling, + thisDOAS.CWLoopNum, + thisDOAS.CWLoopSide, + thisDOAS.CWBranchNum, + thisDOAS.CWCompNum, + errorsFound, + _, + _, + _, + _, + _); + if (errorsFound) { + ShowFatalError("GetAirLoopDOASInput: Program terminated for previous conditions."); + } + } else if (SELECT_CASE_var == "COIL:HEATING:WATER") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + WaterCoils::GetCoilInletNode(SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + WaterCoils::GetCoilOutletNode(SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + thisDOAS.HWCtrlNodeNum = WaterCoils::GetCoilWaterInletNode("Coil:Heating:Water", CompName, errorsFound); + if (errorsFound) { + ShowContinueError("The control node number is not found in " + CurrentModuleObject + " = " + + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + } + PlantUtilities::ScanPlantLoopsForObject(CompName, + DataPlant::TypeOf_CoilWaterSimpleHeating, + thisDOAS.HWLoopNum, + thisDOAS.HWLoopSide, + thisDOAS.HWBranchNum, + thisDOAS.HWCompNum, + errorsFound, + _, + _, + _, + _, + _); + if (errorsFound) { + ShowFatalError("GetAirLoopDOASInput: Program terminated for previous conditions."); + } + + } else if (SELECT_CASE_var == "COIL:HEATING:STEAM") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + SteamCoils::GetCoilSteamInletNode(CompType, CompName, errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + SteamCoils::GetCoilSteamOutletNode(CompType, CompName, errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "COIL:COOLING:WATER:DETAILEDGEOMETRY") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + WaterCoils::GetCoilInletNode(SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + WaterCoils::GetCoilOutletNode(SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + thisDOAS.CWCtrlNodeNum = WaterCoils::GetCoilWaterInletNode("Coil:Cooling:Water:DetailedGeometry", CompName, errorsFound); + if (errorsFound) { + ShowContinueError("The control node number is not found in " + CurrentModuleObject + " = " + + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + } + PlantUtilities::ScanPlantLoopsForObject(CompName, + DataPlant::TypeOf_CoilWaterDetailedFlatCooling, + thisDOAS.CWLoopNum, + thisDOAS.CWLoopSide, + thisDOAS.CWBranchNum, + thisDOAS.CWCompNum, + errorsFound, + _, + _, + _, + _, + _); + if (errorsFound) { + ShowFatalError("GetAirLoopDOASInput: Program terminated for previous conditions."); + } + } else if (SELECT_CASE_var == "COIL:HEATING:ELECTRIC") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = HeatingCoils::GetCoilInletNode( + SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = HeatingCoils::GetCoilOutletNode( + SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "COIL:HEATING:FUEL") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = HeatingCoils::GetCoilInletNode( + SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = HeatingCoils::GetCoilOutletNode( + SELECT_CASE_var, OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "COILSYSTEM:COOLING:WATER:HEATEXCHANGERASSISTED") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + HVACHXAssistedCoolingCoil::GetCoilInletNode(CompType, CompName, errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + HVACHXAssistedCoolingCoil::GetCoilOutletNode(CompType, CompName, errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "COILSYSTEM:COOLING:DX") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + HVACDXSystem::GetCoolingCoilInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + if (OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) == 0) { + InletNodeErrFlag = true; + errorsFound = true; + } + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + HVACDXSystem::GetCoolingCoilOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + if (OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) == 0) { + OutletNodeErrFlag = true; + errorsFound = true; + } + OutsideAirSys(thisDOAS.m_OASystemNum).DXCoolingCoilFlag = true; + } else if (SELECT_CASE_var == "COILSYSTEM:HEATING:DX") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + HVACDXHeatPumpSystem::GetHeatingCoilInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + if (OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) == 0) { + InletNodeErrFlag = true; + errorsFound = true; + } + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + HVACDXHeatPumpSystem::GetHeatingCoilOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + if (OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) == 0) { + OutletNodeErrFlag = true; + errorsFound = true; + } + + } else if (SELECT_CASE_var == "AIRLOOPHVAC:UNITARYSYSTEM") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + OutsideAirSys(thisDOAS.m_OASystemNum).compPointer[CompNum]->AirInNode; + if (OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) == 0) { + InletNodeErrFlag = true; + errorsFound = true; + } + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + OutsideAirSys(thisDOAS.m_OASystemNum).compPointer[CompNum]->AirOutNode; + if (OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) == 0) { + OutletNodeErrFlag = true; + errorsFound = true; + } + } else if (SELECT_CASE_var == "COIL:USERDEFINED") { + ShowSevereError("When " + CurrentModuleObject + " = " + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum) + + " is used in AirLoopHVAC:DedicatedOutdoorAirSystem,"); + ShowContinueError(" the COIL:USERDEFINED can not be used as a component. Please change it"); + errorsFound = true; + // Heat recovery + } else if (SELECT_CASE_var == "HEATEXCHANGER:AIRTOAIR:FLATPLATE") { + OutsideAirSys(thisDOAS.m_OASystemNum).HeatExchangerFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + HeatRecovery::GetSupplyInletNode(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + HeatRecovery::GetSupplyOutletNode(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) { + ShowContinueError("Node number is not found in " + CurrentModuleObject + " = " + + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum)); + } + } else if (SELECT_CASE_var == "HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT") { + OutsideAirSys(thisDOAS.m_OASystemNum).HeatExchangerFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + HeatRecovery::GetSupplyInletNode(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + HeatRecovery::GetSupplyOutletNode(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "HEATEXCHANGER:DESICCANT:BALANCEDFLOW") { + OutsideAirSys(thisDOAS.m_OASystemNum).HeatExchangerFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + HeatRecovery::GetSupplyInletNode(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(CompNum) = + HeatRecovery::GetSupplyOutletNode(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + // Desiccant Dehumidifier + } else if (SELECT_CASE_var == "DEHUMIDIFIER:DESICCANT:NOFANS") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + DesiccantDehumidifiers::GetProcAirInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = DesiccantDehumidifiers::GetProcAirOutletNodeNum( + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "DEHUMIDIFIER:DESICCANT:SYSTEM") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + DesiccantDehumidifiers::GetProcAirInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = DesiccantDehumidifiers::GetProcAirOutletNodeNum( + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + // Humidifiers: Humidifier:Steam:Electric and Humidifier:Steam:Gas + } else if (SELECT_CASE_var == "HUMIDIFIER:STEAM:ELECTRIC") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + Humidifiers::GetAirInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + Humidifiers::GetAirOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "HUMIDIFIER:STEAM:GAS") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + Humidifiers::GetAirInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + Humidifiers::GetAirOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + + // Unglazed Transpired Solar Collector + } else if (SELECT_CASE_var == "SOLARCOLLECTOR:UNGLAZEDTRANSPIRED") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + TranspiredCollector::GetAirInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + TranspiredCollector::GetAirOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + // PVT air heater + } else if (SELECT_CASE_var == "SOLARCOLLECTOR:FLATPLATE:PHOTOVOLTAICTHERMAL") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = PhotovoltaicThermalCollectors::GetAirInletNodeNum( + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = PhotovoltaicThermalCollectors::GetAirOutletNodeNum( + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + // Evaporative Cooler Types + } else if (SELECT_CASE_var == "EVAPORATIVECOOLER:DIRECT:CELDEKPAD") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "EVAPORATIVECOOLER:INDIRECT:CELDEKPAD") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "EVAPORATIVECOOLER:INDIRECT:WETCOIL") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "EVAPORATIVECOOLER:INDIRECT:RESEARCHSPECIAL") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else if (SELECT_CASE_var == "EVAPORATIVECOOLER:DIRECT:RESEARCHSPECIAL") { + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetInletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) InletNodeErrFlag = true; + OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(CompNum) = + EvaporativeCoolers::GetOutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).ComponentName(CompNum), errorsFound); + if (errorsFound) OutletNodeErrFlag = true; + } else { + ShowSevereError(CurrentModuleObject + " = \"" + CompName + "\" invalid Outside Air Component=\"" + + OutsideAirSys(thisDOAS.m_OASystemNum).ComponentType(CompNum) + "\"."); + errorsFound = true; + } + if (InletNodeErrFlag) { + ShowSevereError("Inlet node number is not found in " + CurrentModuleObject + " = " + CompName); + } + if (OutletNodeErrFlag) { + ShowSevereError("Outlet node number is not found in " + CurrentModuleObject + " = " + CompName); + } + + } + + thisDOAS.m_InletNodeNum = OutsideAirSys(thisDOAS.m_OASystemNum).InletNodeNum(1); + thisDOAS.m_OutletNodeNum = OutsideAirSys(thisDOAS.m_OASystemNum).OutletNodeNum(OutsideAirSys(thisDOAS.m_OASystemNum).NumComponents); + OutsideAirSys(thisDOAS.m_OASystemNum).AirLoopDOASNum = AirLoopDOASNum - 1; + // Set up parent-child connection + BranchNodeConnections::SetUpCompSets(cCurrentModuleObject, + thisDOAS.Name, + "AIRLOOPHVAC:OUTDOORAIRSYSTEM", + thisDOAS.OASystemName, + DataLoopNode::NodeID(thisDOAS.m_InletNodeNum), + DataLoopNode::NodeID(thisDOAS.m_OutletNodeNum)); + + if (OutsideAirSys(thisDOAS.m_OASystemNum).HeatExchangerFlag) { + thisDOAS.m_HeatExchangerFlag = true; + } + + thisDOAS.AvailManagerSchedName = UtilityRoutines::MakeUPPERCase(fields.at("availability_schedule_name")); + thisDOAS.m_AvailManagerSchedPtr = GetScheduleIndex(thisDOAS.AvailManagerSchedName); + if (thisDOAS.m_AvailManagerSchedPtr == 0) { + cFieldName = "Availability Schedule Name"; + ShowSevereError(cCurrentModuleObject + ", \"" + thisDOAS.Name + "\" " + cFieldName + + " not found: " + thisDOAS.AvailManagerSchedName); + errorsFound = true; + } + + thisDOAS.AirLoopMixerName = UtilityRoutines::MakeUPPERCase(fields.at("airloophvac_mixer_name")); // + thisDOAS.m_AirLoopMixerIndex = getAirLoopMixerIndex(thisDOAS.AirLoopMixerName); + if (thisDOAS.m_AirLoopMixerIndex < 0) { + cFieldName = "AirLoopHVAC:Mixer Name"; + ShowSevereError(cCurrentModuleObject + ", \"" + thisDOAS.Name + "\" " + cFieldName + " not found: " + thisDOAS.AirLoopMixerName); + errorsFound = true; + } + AirLoopMixer thisAirLoopMixer; + thisDOAS.m_CompPointerAirLoopMixer = thisAirLoopMixer.factory(thisDOAS.m_AirLoopMixerIndex, thisDOAS.AirLoopMixerName); + thisDOAS.AirLoopSplitterName = UtilityRoutines::MakeUPPERCase(fields.at("airloophvac_splitter_name")); // + thisDOAS.m_AirLoopSplitterIndex = getAirLoopSplitterIndex(thisDOAS.AirLoopSplitterName); + if (thisDOAS.m_AirLoopSplitterIndex < 0) { + cFieldName = "AirLoopHVAC:Splitter Name"; + ShowSevereError(cCurrentModuleObject + ", \"" + thisDOAS.Name + "\" " + cFieldName + + " not found: " + thisDOAS.AirLoopSplitterName); + errorsFound = true; + } + AirLoopSplitter thisAirLoopSplitter; + thisDOAS.m_CompPointerAirLoopSplitter = thisAirLoopSplitter.factory(thisDOAS.m_AirLoopSplitterIndex, thisDOAS.AirLoopSplitterName); + + // get pretreated desing conditions + thisDOAS.PreheatTemp = fields.at("preheat_design_temperature"); + thisDOAS.PreheatHumRat = fields.at("preheat_design_humidity_ratio"); + thisDOAS.PrecoolTemp = fields.at("precool_design_temperature"); + thisDOAS.PrecoolHumRat = fields.at("precool_design_humidity_ratio"); + + // get info on AirLoops + thisDOAS.NumOfAirLoops = fields.at("number_of_airloophvac"); // + if (thisDOAS.NumOfAirLoops < 1) { + cFieldName = "Number of AirLoopHVAC"; + ShowSevereError(cCurrentModuleObject + ", \"" + thisDOAS.Name + "\" " + cFieldName + " = " + + General::TrimSigDigits(thisDOAS.NumOfAirLoops)); + ShowContinueError(" The minimum value should be 1."); + errorsFound = true; + } + + auto AirLoopNames = fields.find("airloophvacs"); + if (AirLoopNames != fields.end()) { + auto AirLoopArray = AirLoopNames.value(); + int num = 0; + for (auto AirLoopHAVCName : AirLoopArray) { + std::string name = AirLoopHAVCName.at("airloophvac_name"); + int LoopNum = UtilityRoutines::FindItemInList(name, PrimaryAirSystem); + num += 1; + if (LoopNum > 0 && num <= thisDOAS.NumOfAirLoops) { + thisDOAS.AirLoopName.push_back(name); + thisDOAS.m_AirLoopNum.push_back(LoopNum); + } else { + cFieldName = "AirLoopHVAC Name"; + ShowSevereError(cCurrentModuleObject + ", \"" + thisDOAS.Name + "\" " + cFieldName + + " not found: " + name); + errorsFound = true; + } + } + } + + thisDOAS.m_AirLoopDOASNum = AirLoopDOASNum - 1; + airloopDOAS.push_back(thisDOAS); + } + + // Check valid OA controller + for (int OASysNum = 1; OASysNum <= DataAirLoop::NumOASystems; OASysNum++) { + if (UtilityRoutines::SameString(OutsideAirSys(OASysNum).ControllerListName, "")) { + if (OutsideAirSys(OASysNum).AirLoopDOASNum == -1) { + ShowSevereError("AirLoopHVAC:OutdoorAirSystem = \"" + OutsideAirSys(OASysNum).Name + + "\" invalid Controller List Name = \" not found."); + errorsFound = true; + } + } + } + if (errorsFound) { + ShowFatalError("getAirLoopHVACDOAS: Previous errors cause termination."); + } + } + } + + void AirLoopDOAS::initAirLoopDOAS(bool const FirstHVACIteration) + { + int LoopOA; + int NodeNum; + Real64 SchAvailValue; + static Array1D_bool MyEnvrnFlag; // Used for initializations each begin environment flag + static bool MyOneTimeFlag(true); // Initialization flag + std::string RoutineName = "AirLoopDOAS::initAirLoopDOAS"; + bool ErrorsFound = false; + + if (MyOneTimeFlag) { + MyEnvrnFlag.allocate(numAirLoopDOAS); + MyEnvrnFlag = true; + MyOneTimeFlag = false; + } + + if (DataGlobals::BeginEnvrnFlag && MyEnvrnFlag(this->m_AirLoopDOASNum + 1)) { + Real64 rho; + DataSizing::CurSysNum = this->m_OASystemNum; + for (int CompNum = 1; CompNum <= DataAirLoop::OutsideAirSys(this->m_OASystemNum).NumComponents; ++CompNum) { + std::string CompType = DataAirLoop::OutsideAirSys(this->m_OASystemNum).ComponentType(CompNum); + std::string CompName = DataAirLoop::OutsideAirSys(this->m_OASystemNum).ComponentName(CompNum); + if (UtilityRoutines::SameString(CompType, "FAN:SYSTEMMODEL")) { + HVACFan::fanObjs[this->m_FanIndex]->simulate(); + } + if (UtilityRoutines::SameString(CompType, "FAN:COMPONENTMODEL")) { + Fans::SimulateFanComponents(CompName, FirstHVACIteration, this->m_FanIndex); + } + + if (UtilityRoutines::SameString(CompType, "COIL:HEATING:WATER")) { + WaterCoils::SimulateWaterCoilComponents(CompName, FirstHVACIteration, this->m_HeatCoilNum); + Real64 CoilMaxVolFlowRate = WaterCoils::GetCoilMaxWaterFlowRate("Coil:Heating:Water", CompName, ErrorsFound); + rho = FluidProperties::GetDensityGlycol(DataPlant::PlantLoop(this->HWLoopNum).FluidName, + DataGlobals::HWInitConvTemp, + DataPlant::PlantLoop(this->HWLoopNum).FluidIndex, + RoutineName); + PlantUtilities::InitComponentNodes(0.0, + CoilMaxVolFlowRate * rho, + this->HWCtrlNodeNum, + DataAirLoop::OutsideAirSys(this->m_OASystemNum).OutletNodeNum(CompNum), + this->HWLoopNum, + this->HWLoopSide, + this->HWBranchNum, + this->HWCompNum); + } + if (UtilityRoutines::SameString(CompType, "COIL:COOLING:WATER")) { + WaterCoils::SimulateWaterCoilComponents(CompName, FirstHVACIteration, this->m_CoolCoilNum); + Real64 CoilMaxVolFlowRate = WaterCoils::GetCoilMaxWaterFlowRate("Coil:Cooling:Water", CompName, ErrorsFound); + rho = FluidProperties::GetDensityGlycol(DataPlant::PlantLoop(this->CWLoopNum).FluidName, + DataGlobals::CWInitConvTemp, + DataPlant::PlantLoop(this->CWLoopNum).FluidIndex, + RoutineName); + PlantUtilities::InitComponentNodes(0.0, + CoilMaxVolFlowRate * rho, + this->CWCtrlNodeNum, + DataAirLoop::OutsideAirSys(this->m_OASystemNum).OutletNodeNum(CompNum), + this->CWLoopNum, + this->CWLoopSide, + this->CWBranchNum, + this->CWCompNum); + } + if (UtilityRoutines::SameString(CompType, "COIL:COOLING:WATER:DETAILEDGEOMETRY")) { + WaterCoils::SimulateWaterCoilComponents(CompName, FirstHVACIteration, this->m_CoolCoilNum); + Real64 CoilMaxVolFlowRate = WaterCoils::GetCoilMaxWaterFlowRate("Coil:Cooling:Water:DetailedGeometry", CompName, ErrorsFound); + rho = FluidProperties::GetDensityGlycol(DataPlant::PlantLoop(this->CWLoopNum).FluidName, + DataGlobals::CWInitConvTemp, + DataPlant::PlantLoop(this->CWLoopNum).FluidIndex, + RoutineName); + PlantUtilities::InitComponentNodes(0.0, + CoilMaxVolFlowRate * rho, + this->CWCtrlNodeNum, + DataAirLoop::OutsideAirSys(this->m_OASystemNum).OutletNodeNum(CompNum), + this->CWLoopNum, + this->CWLoopSide, + this->CWBranchNum, + this->CWCompNum); + } + } + + MyEnvrnFlag(this->m_AirLoopDOASNum + 1) = false; + if (ErrorsFound) { + ShowFatalError("initAirLoopDOAS: Previous errors cause termination."); + } + } + + if (!DataGlobals::BeginEnvrnFlag) { + MyEnvrnFlag(this->m_AirLoopDOASNum + 1) = true; + } + + this->SumMassFlowRate = 0.0; + + for (LoopOA = 0; LoopOA < this->m_CompPointerAirLoopSplitter->numOfOutletNodes; LoopOA++) { + NodeNum = this->m_CompPointerAirLoopSplitter->OutletNodeNum[LoopOA]; + this->SumMassFlowRate += DataLoopNode::Node(NodeNum).MassFlowRate; + } + + SchAvailValue = ScheduleManager::GetCurrentScheduleValue(this->m_AvailManagerSchedPtr); + if (SchAvailValue < 1.0) { + this->SumMassFlowRate = 0.0; + } + DataLoopNode::Node(this->m_InletNodeNum).MassFlowRate = this->SumMassFlowRate; + + if (this->SumMassFlowRate == 0.0) { + for (int CompNum = 1; CompNum <= DataAirLoop::OutsideAirSys(this->m_OASystemNum).NumComponents; CompNum++) { + DataLoopNode::Node(DataAirLoop::OutsideAirSys(this->m_OASystemNum).OutletNodeNum(CompNum)) = DataLoopNode::Node(this->m_InletNodeNum); + } + } + } + + void AirLoopDOAS::CalcAirLoopDOAS(bool const FirstHVACIteration) + { + using DataAirLoop::OutsideAirSys; + using MixedAir::ManageOutsideAirSystem; + + this->m_CompPointerAirLoopMixer->CalcAirLoopMixer(); + if (this->m_FanIndex > -1) { + DataLoopNode::Node(this->m_FanInletNodeNum).MassFlowRateMaxAvail = this->SumMassFlowRate; + DataLoopNode::Node(this->m_FanOutletNodeNum).MassFlowRateMaxAvail = this->SumMassFlowRate; + DataLoopNode::Node(this->m_FanOutletNodeNum).MassFlowRateMax = this->SumMassFlowRate; + if (!this->FanBlowTroughFlag) { + DataLoopNode::Node(OutsideAirSys(this->m_OASystemNum).InletNodeNum(1)).MassFlowRateMaxAvail = this->SumMassFlowRate; + } + } + ManageOutsideAirSystem(this->OASystemName, FirstHVACIteration, 0, this->m_OASystemNum); + Real64 Temp = DataLoopNode::Node(this->m_OutletNodeNum).Temp; + Real64 HumRat = DataLoopNode::Node(this->m_OutletNodeNum).HumRat; + DataLoopNode::Node(this->m_OutletNodeNum).Enthalpy = Psychrometrics::PsyHFnTdbW(Temp, HumRat); + + this->m_CompPointerAirLoopSplitter->CalcAirLoopSplitter(Temp, HumRat); + } + + void AirLoopDOAS::SizingAirLoopDOAS() + { + Real64 SizingMassFlow = 0; + int AirLoopNum; + + for (int AirLoop = 1; AirLoop <= this->NumOfAirLoops; AirLoop++) { + AirLoopNum = this->m_AirLoopNum[AirLoop - 1]; + this->m_OACtrlNum.push_back(DataAirLoop::AirLoopControlInfo(AirLoopNum).OACtrlNum); + + if (this->m_OACtrlNum[AirLoop - 1] > 0) { + SizingMassFlow += MixedAir::OAController(this->m_OACtrlNum[AirLoop - 1]).MaxOA; + } + } + this->SizingMassFlow = SizingMassFlow; + this->GetDesignDayConditions(); + + if (this->m_FanIndex > -1 && this->m_FanTypeNum == SimAirServingZones::Fan_System_Object) { + HVACFan::fanObjs[this->m_FanIndex]->designAirVolFlowRate = SizingMassFlow / DataEnvironment::StdRhoAir; + DataLoopNode::Node(this->m_FanInletNodeNum).MassFlowRateMaxAvail = SizingMassFlow; + DataLoopNode::Node(this->m_FanOutletNodeNum).MassFlowRateMaxAvail = SizingMassFlow; + DataLoopNode::Node(this->m_FanOutletNodeNum).MassFlowRateMax = SizingMassFlow; + } + bool errorsFound = false; + if (this->m_FanIndex > 0 && this->m_FanTypeNum == SimAirServingZones::Fan_ComponentModel) { + Fans::SetFanData(this->m_FanIndex, errorsFound, Name, SizingMassFlow / DataEnvironment::StdRhoAir, 0); + Fans::Fan(this->m_FanIndex).MaxAirMassFlowRate = SizingMassFlow; + DataLoopNode::Node(this->m_FanInletNodeNum).MassFlowRateMaxAvail = SizingMassFlow; + DataLoopNode::Node(this->m_FanOutletNodeNum).MassFlowRateMaxAvail = SizingMassFlow; + DataLoopNode::Node(this->m_FanOutletNodeNum).MassFlowRateMax = SizingMassFlow; + } + if (errorsFound) { + ShowFatalError("Preceding sizing errors cause program termination"); + } + DataSizing::CurSysNum = DataHVACGlobals::NumPrimaryAirSys + this->m_AirLoopDOASNum + 1; + DataSizing::CurOASysNum = this->m_OASystemNum; + } + + void getAirLoopHVACDOASInput() + { + if (GetInputOnceFlag) { + AirLoopDOAS::getAirLoopDOASInput(); + GetInputOnceFlag = false; + } + } + + void AirLoopDOAS::GetDesignDayConditions() + { + // Using/Aliasing + using WeatherManager::DesDayInput; + + int const summerDesignDayTypeIndex(9); + int const winterDesignDayTypeIndex(10); + bool static SummerDesignDayFlag = true; + bool static WinterDesignDayFlag = true; + + for (size_t i = 1; i <= DesDayInput.size(); i++) { + // Summer design day + if (DesDayInput(i).DayType == summerDesignDayTypeIndex && SummerDesignDayFlag) { + this->SizingCoolOATemp = DesDayInput(i).MaxDryBulb; + if (DesDayInput(i).HumIndType == 0) { // wet bulb temperature + this->SizingCoolOAHumRat = + Psychrometrics::PsyWFnTdbTwbPb(this->SizingCoolOATemp, DesDayInput(i).HumIndValue, DataEnvironment::StdPressureSeaLevel); + } else if (DesDayInput(i).HumIndType == 1) { // dewpoint + this->SizingCoolOAHumRat = Psychrometrics::PsyWFnTdpPb(DesDayInput(i).HumIndValue, DataEnvironment::StdPressureSeaLevel); + } else if (DesDayInput(i).HumIndType == 3) { + this->SizingCoolOAHumRat = DesDayInput(i).HumIndValue; + } + SummerDesignDayFlag = false; + } + // Winter design day + if (DesDayInput(i).DayType == winterDesignDayTypeIndex && WinterDesignDayFlag) { + this->HeatOutTemp = DesDayInput(i).MaxDryBulb; + if (DesDayInput(i).HumIndType == 0) { // wet bulb temperature + this->HeatOutHumRat = + Psychrometrics::PsyWFnTdbTwbPb(this->HeatOutTemp, DesDayInput(i).HumIndValue, DataEnvironment::StdPressureSeaLevel); + } else if (DesDayInput(i).HumIndType == 1) { // dewpoint + this->HeatOutHumRat = Psychrometrics::PsyWFnTdpPb(DesDayInput(i).HumIndValue, DataEnvironment::StdPressureSeaLevel); + } else if (DesDayInput(i).HumIndType == 3) { + this->HeatOutHumRat = DesDayInput(i).HumIndValue; + } + WinterDesignDayFlag = false; + } + } + } + + void CheckConvergence() + { + + Real64 maxDiff; + Real64 Diff; + Real64 OldTemp; + for (std::size_t loop = 0; loop < airloopDOAS.size(); ++loop) { + maxDiff = 0.0; + Diff = abs(airloopDOAS[loop].m_CompPointerAirLoopSplitter->InletTemp - + DataLoopNode::Node(airloopDOAS[loop].m_CompPointerAirLoopSplitter->OutletNodeNum[0]).Temp); + if (Diff > maxDiff) { + maxDiff = Diff; + } + if (airloopDOAS[loop].m_HeatExchangerFlag) { + OldTemp = airloopDOAS[loop].m_CompPointerAirLoopMixer->OutletTemp; + airloopDOAS[loop].m_CompPointerAirLoopMixer->CalcAirLoopMixer(); + Diff = abs(OldTemp - airloopDOAS[loop].m_CompPointerAirLoopMixer->OutletTemp); + if (Diff > maxDiff) { + maxDiff = Diff; + } + } + if (maxDiff > 1.0e-6) { + if (airloopDOAS[loop].ConveCount == 0) { + ++airloopDOAS[loop].ConveCount; + ShowWarningError("Convergence limit is above 1.0e-6 for unit=" + airloopDOAS[loop].Name); + ShowContinueErrorTimeStamp("The max difference of node temperatures between AirLoopDOAS outlet and OA mixer inlet =" + + General::RoundSigDigits(maxDiff, 6)); + } else { + ++airloopDOAS[loop].ConveCount; + ShowRecurringWarningErrorAtEnd(airloopDOAS[loop].Name + + "\": The max difference of node temperatures exceeding 1.0e-6 continues...", + airloopDOAS[loop].ConveIndex, + maxDiff, + maxDiff); + } + } + } + } + +} // namespace AirLoopHVACDOAS +} // namespace EnergyPlus diff --git a/src/EnergyPlus/AirLoopHVACDOAS.hh b/src/EnergyPlus/AirLoopHVACDOAS.hh new file mode 100644 index 00000000000..041c6f92dcc --- /dev/null +++ b/src/EnergyPlus/AirLoopHVACDOAS.hh @@ -0,0 +1,207 @@ +// EnergyPlus, Copyright (c) 1996-2019, The Board of Trustees of the University of Illinois, +// The Regents of the University of California, through Lawrence Berkeley National Laboratory +// (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge +// National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other +// contributors. All rights reserved. +// +// NOTICE: This Software was developed under funding from the U.S. Department of Energy and the +// U.S. Government consequently retains certain rights. As such, the U.S. Government has been +// granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, +// worldwide license in the Software to reproduce, distribute copies to the public, prepare +// derivative works, and perform publicly and display publicly, and to permit others to do so. +// +// Redistribution and use in source and binary forms, with or without modification, are permitted +// provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, this list of +// conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, this list of +// conditions and the following disclaimer in the documentation and/or other materials +// provided with the distribution. +// +// (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, +// the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be +// used to endorse or promote products derived from this software without specific prior +// written permission. +// +// (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form +// without changes from the version obtained under this License, or (ii) Licensee makes a +// reference solely to the software portion of its product, Licensee must refer to the +// software as "EnergyPlus version X" software, where "X" is the version number Licensee +// obtained under this License and may not use a different name for the software. Except as +// specifically required in this Section (4), Licensee shall not use in a company name, a +// product name, in advertising, publicity, or other promotional activities any name, trade +// name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly +// similar designation, without the U.S. Department of Energy's prior written consent. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR +// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. + +#ifndef ENERGYPLUS_AIRLOOPHVACDOAS_HH +#define ENERGYPLUS_AIRLOOPHVACDOAS_HH + +#include +#include +#include + +namespace EnergyPlus { + +namespace AirLoopHVACDOAS { + + void clear_state(); + + extern int numAirLoopDOAS; + + void CheckConvergence(); + + struct AirLoopMixer + { + + public: + AirLoopMixer(); // constructor + ~AirLoopMixer() // destructor + { + } + + std::string name; + static AirLoopMixer *factory(int object_type_of_num, std::string const objectName); + int numOfInletNodes; + + // private: + int m_AirLoopMixer_Num; + int OutletNodeNum; + std::string OutletNodeName; + std::vector InletNodeName; + std::vector InletNodeNum; + Real64 OutletTemp; + + static void getAirLoopMixer(); + void CalcAirLoopMixer(); + }; + + struct AirLoopSplitter + { + + public: + AirLoopSplitter(); // constructor + ~AirLoopSplitter() // destructor + { + } + + std::string name; + static AirLoopSplitter *factory(int object_type_of_num, std::string const objectName); + int numOfOutletNodes; + + // private: + int m_AirLoopSplitter_Num; + std::string InletNodeName; + std::vector OutletNodeName; + std::vector OutletNodeNum; + Real64 InletTemp; + + static void getAirLoopSplitter(); + void CalcAirLoopSplitter(Real64 Temp, Real64 Humrat); + }; + + struct AirLoopDOAS + { + + // friend class AirLoopMixer and AirLoopSplitter; + // members + Real64 SumMassFlowRate; + Real64 PreheatTemp; + Real64 PrecoolTemp; + Real64 PreheatHumRat; + Real64 PrecoolHumRat; + Real64 SizingMassFlow; + Real64 SizingCoolOATemp; + Real64 SizingCoolOAHumRat; + Real64 HeatOutTemp; // outdoor air temperature for heating sizing calculation + Real64 HeatOutHumRat; // outdoor air humidity ratio for heating sizing calculation + + int m_AirLoopDOASNum; + int m_OASystemNum; + int m_AvailManagerSchedPtr; + int m_AirLoopMixerIndex; + int m_AirLoopSplitterIndex; + int NumOfAirLoops; + int m_InletNodeNum; + int m_OutletNodeNum; + int m_FanIndex; + int m_FanInletNodeNum; + int m_FanOutletNodeNum; + int m_FanTypeNum; + int m_HeatCoilNum; + int m_CoolCoilNum; + int ConveCount; + int ConveIndex; + + bool m_HeatExchangerFlag; + bool SizingOnceFlag; + bool DXCoilFlag; + bool FanBlowTroughFlag; + + AirLoopMixer *m_CompPointerAirLoopMixer; + AirLoopSplitter *m_CompPointerAirLoopSplitter; + + std::string Name; + std::string AvailManagerSchedName; + std::string OASystemName; + std::string AirLoopMixerName; + std::string AirLoopSplitterName; + std::string FanName; + + std::vector m_AirLoopNum; // array of AirLoop number + std::vector AirLoopName; + std::vector m_OACtrlNum; // array of OA controller number + + int HWLoopNum; + int HWLoopSide; + int HWBranchNum; + int HWCompNum; + int HWCtrlNodeNum; + int CWLoopNum; + int CWLoopSide; + int CWBranchNum; + int CWCompNum; + int CWCtrlNodeNum; + + // private: + // private members not initialized in constructor + + public: + AirLoopDOAS(); // constructor + + ~AirLoopDOAS() // destructor + { + } + + static void getAirLoopDOASInput(); + + void SimAirLoopHVACDOAS(bool const firstHVACIteration, int &CompIndex); + + void initAirLoopDOAS(bool const FirstHVACIteration); + + void CalcAirLoopDOAS(bool const FirstHVACIteration); + + void SizingAirLoopDOAS(); + + void GetDesignDayConditions(); + }; + + extern std::vector airloopDOAS; + int getAirLoopMixerIndex(std::string const &objectName); + int getAirLoopSplitterIndex(std::string const &objectName); + void getAirLoopHVACDOASInput(); + extern bool GetInputOnceFlag; +} // namespace AirLoopHVACDOAS +} // namespace EnergyPlus +#endif // ENERGYPLUS_UNITARYSYSTEM_HH diff --git a/src/EnergyPlus/AirflowNetworkBalanceManager.cc b/src/EnergyPlus/AirflowNetworkBalanceManager.cc index d0c3e5c6a86..2f4f23c23d6 100644 --- a/src/EnergyPlus/AirflowNetworkBalanceManager.cc +++ b/src/EnergyPlus/AirflowNetworkBalanceManager.cc @@ -233,6 +233,14 @@ namespace AirflowNetworkBalanceManager { // Report variables // MODULE VARIABLE DECLARATIONS: + + namespace { + // These are purposefully not in the header file as an extern variable. No one outside of this should + // use these. They are cleared by clear_state() for use by unit tests, but normal simulations should be unaffected. + // This is purposefully in an anonymous namespace so nothing outside this implementation file can use it. + bool ValidateDistributionSystemFlag(true); + } + // Report variables Array1D PZ; // Inverse matrix @@ -313,6 +321,7 @@ namespace AirflowNetworkBalanceManager { IVEC.deallocate(); SplitterNodeNumbers.deallocate(); AirflowNetworkGetInputFlag = true; + ValidateDistributionSystemFlag = true; VentilationCtrl = 0; NumOfExhaustFans = 0; NumAirflowNetwork = 0; @@ -486,7 +495,11 @@ namespace AirflowNetworkBalanceManager { if (present(FirstHVACIteration) && FirstHVACIteration) VAVTerminalRatio = 0.0; if (AirflowNetworkFanActivated && SimulateAirflowNetwork > AirflowNetworkControlMultizone) { - ValidateDistributionSystem(); + if (ValidateDistributionSystemFlag) { + ValidateDistributionSystem(); + ValidateFanFlowRate(); + ValidateDistributionSystemFlag = false; + } } CalcAirflowNetworkAirBalance(); @@ -6187,59 +6200,29 @@ namespace AirflowNetworkBalanceManager { return AFNPressureResidual; } - static int makeTable(const std::string &name, const std::vector &x, const std::vector &y) + static int makeTable(const std::string &name, const int gridIndex, const std::vector &y) { // Add a new table and performance curve - int N = std::min(x.size(), y.size()); - int TableNum = CurveManager::TableData.size() + 1; - CurveManager::TableData.push_back(CurveManager::TableDataStruct()); - CurveManager::TableLookup.push_back(CurveManager::TableLookupData()); - CurveManager::PerfCurveTableData.push_back(CurveManager::PerfCurveTableDataStruct()); + std::string contextString = "CalcWindPressureCoeffs: Creating table \"" + name + "\""; + Btwxt::setMessageCallback(CurveManager::BtwxtMessageCallback, &contextString); + int CurveNum = CurveManager::PerfCurve.size() + 1; CurveManager::PerfCurve.push_back(CurveManager::PerfomanceCurveData()); - CurveManager::TableData(TableNum).X1.allocate(N); - CurveManager::TableData(TableNum).Y.allocate(N); - CurveManager::PerfCurve(CurveNum).Name = name; - CurveManager::PerfCurve(CurveNum).ObjectType = "Table:OneIndependentVariable"; + CurveManager::PerfCurve(CurveNum).ObjectType = "Table:Lookup"; CurveManager::PerfCurve(CurveNum).NumDims = 1; - CurveManager::PerfCurve(CurveNum).TableIndex = TableNum; - CurveManager::PerfCurve(CurveNum).CurveType = CurveManager::Linear; - CurveManager::TableLookup(TableNum).InterpolationOrder = 2; - CurveManager::PerfCurve(CurveNum).InterpolationType = CurveManager::LinearInterpolationOfTable; + CurveManager::PerfCurve(CurveNum).InterpolationType = CurveManager::BtwxtMethod; CurveManager::PerfCurve(CurveNum).Var1Min = 0.0; CurveManager::PerfCurve(CurveNum).Var1MinPresent = true; CurveManager::PerfCurve(CurveNum).Var1Max = 360.0; CurveManager::PerfCurve(CurveNum).Var1MaxPresent = true; - CurveManager::TableData(TableNum).NormalPoint = 1.0; - - CurveManager::PerfCurve(CurveNum).CurveMin = -1.0; - CurveManager::PerfCurve(CurveNum).CurveMinPresent = true; - - CurveManager::PerfCurve(CurveNum).CurveMax = 1.0; - CurveManager::PerfCurve(CurveNum).CurveMaxPresent = true; - - for (int TableDataIndex = 1; TableDataIndex <= N; ++TableDataIndex) { - CurveManager::TableData(TableNum).X1(TableDataIndex) = x[TableDataIndex - 1]; - CurveManager::TableData(TableNum).Y(TableDataIndex) = y[TableDataIndex - 1]; - } - - // Move table data to performance curve table data structure - // CurveManager::PerfCurveTableData( TableNum ).X1.allocate( N - 1 ); - CurveManager::PerfCurveTableData(TableNum).Y.allocate(1, N); - CurveManager::PerfCurveTableData(TableNum).X1 = CurveManager::TableData(TableNum).X1; - for (int VarIndex = 1; VarIndex <= N; ++VarIndex) { - CurveManager::PerfCurveTableData(TableNum).Y(1, VarIndex) = CurveManager::TableData(TableNum).Y(VarIndex); - } + CurveManager::PerfCurve(CurveNum).TableIndex = gridIndex; + CurveManager::PerfCurve(CurveNum).GridValueIndex = CurveManager::btwxtManager.addOutputValues(gridIndex, y); - // move table data to more compact array to allow interpolation using multivariable lookup table method - CurveManager::TableLookup(TableNum).NumX1Vars = N; - CurveManager::TableLookup(TableNum).X1Var = CurveManager::PerfCurveTableData(TableNum).X1; - // CurveManager::TableLookup( TableNum ).TableLookupZData( 1, 1, 1, 1, _ ) = CurveManager::PerfCurveTableData( TableNum ).Y( 1, _ ); CurveManager::NumCurves += 1; return CurveNum; } @@ -6403,8 +6386,10 @@ namespace AirflowNetworkBalanceManager { } std::vector dirs30 = {0, 30, 60, 90, 120, 150, 180, 210, 240, 270, 300, 330, 360}; - std::vector dirs10 = {0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, - 190, 200, 210, 220, 230, 240, 250, 260, 270, 280, 290, 300, 310, 320, 330, 340, 350, 360}; + std::vector dirs30Axes; + dirs30Axes.emplace_back(dirs30, Btwxt::Method::LINEAR, Btwxt::Method::LINEAR, std::pair {0.0, 360.0}); + + auto dirs30GridIndex = CurveManager::btwxtManager.addGrid("30 Degree Increments", Btwxt::GriddedData(dirs30Axes)); if (AirflowNetworkNumOfSingleSideZones == 0) { // do the standard surface average coefficient calculation // Create the array of wind directions @@ -6476,7 +6461,7 @@ namespace AirflowNetworkBalanceManager { } // End of wind direction loop // Add new table vals[12] = vals[0]; // Enforce periodicity - curveIndex[FacadeNum - 1] = makeTable("!WPCTABLE" + std::to_string(FacadeNum), dirs30, vals); + curveIndex[FacadeNum - 1] = makeTable("!WPCTABLE" + std::to_string(FacadeNum), dirs30GridIndex, vals); } // End of facade number loop } else { //-calculate the advanced single sided wind pressure coefficients @@ -6543,16 +6528,25 @@ namespace AirflowNetworkBalanceManager { // Resize the curve index array curveIndex.resize(valsByFacade.size()); // Create the curves + + std::vector dirs10 = {0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, + 190, 200, 210, 220, 230, 240, 250, 260, 270, 280, 290, 300, 310, 320, 330, 340, 350, 360}; + + std::vector dirs10Axes; + dirs10Axes.emplace_back(dirs10, Btwxt::Method::LINEAR, Btwxt::Method::LINEAR, std::pair {0.0, 360.0}); + + auto dirs10GridIndex = CurveManager::btwxtManager.addGrid("10 Degree Increments", Btwxt::GriddedData(dirs10Axes)); + for (FacadeNum = 1; FacadeNum <= 4; ++FacadeNum) { valsByFacade[FacadeNum - 1].push_back(valsByFacade[FacadeNum - 1][0]); // Enforce periodicity - curveIndex[FacadeNum - 1] = makeTable("!SSWPCTABLEFACADE" + std::to_string(FacadeNum), dirs10, valsByFacade[FacadeNum - 1]); + curveIndex[FacadeNum - 1] = makeTable("!SSWPCTABLEFACADE" + std::to_string(FacadeNum), dirs10GridIndex, valsByFacade[FacadeNum - 1]); } FacadeNum = 5; valsByFacade[FacadeNum - 1].push_back(valsByFacade[FacadeNum - 1][0]); // Enforce periodicity - curveIndex[FacadeNum - 1] = makeTable("!SSWPCTABLEFACADE" + std::to_string(FacadeNum), dirs30, valsByFacade[FacadeNum - 1]); + curveIndex[FacadeNum - 1] = makeTable("!SSWPCTABLEFACADE" + std::to_string(FacadeNum), dirs30GridIndex, valsByFacade[FacadeNum - 1]); for (unsigned facadeNum = 6; facadeNum <= valsByFacade.size(); ++facadeNum) { valsByFacade[facadeNum - 1].push_back(valsByFacade[facadeNum - 1][0]); // Enforce periodicity - curveIndex[facadeNum - 1] = makeTable("!SSWPCTABLE" + std::to_string(facadeNum), dirs10, valsByFacade[facadeNum - 1]); + curveIndex[facadeNum - 1] = makeTable("!SSWPCTABLE" + std::to_string(facadeNum), dirs10GridIndex, valsByFacade[facadeNum - 1]); } } // Connect the external nodes to the new curves @@ -9619,6 +9613,7 @@ namespace AirflowNetworkBalanceManager { // PURPOSE OF THIS SUBROUTINE: // This subroutine validates the inputs of distribution system, since node data from a primary airloop // are not available in the first call during reading input data of airflownetwork objects. + // Note: this routine shouldn't be called more than once // Using/Aliasing using BranchNodeConnections::GetNodeConnectionType; @@ -9652,737 +9647,734 @@ namespace AirflowNetworkBalanceManager { int S2; int R1; int R2; - static bool OneTimeFlag(true); - static bool ErrorsFound(false); bool LocalError; Array1D_bool NodeFound; - Real64 FanFlow; - static bool IsNotOK(false); - static bool errFlag(false); + + bool ErrorsFound(false); + bool IsNotOK(false); + bool errFlag(false); Array1D_int NodeConnectionType; // Specifies the type of node connection std::string CurrentModuleObject; // Validate supply and return connections - if (OneTimeFlag) { - NodeFound.dimension(NumOfNodes, false); - // Validate inlet and outlet nodes for zone exhaust fans - for (i = 1; i <= AirflowNetworkNumOfExhFan; ++i) { - NodeFound(MultizoneCompExhaustFanData(i).InletNode) = true; - NodeFound(MultizoneCompExhaustFanData(i).OutletNode) = true; - } - // Validate EPlus Node names and types - for (i = 1; i <= DisSysNumOfNodes; ++i) { - if (UtilityRoutines::SameString(DisSysNodeData(i).EPlusName, "") || UtilityRoutines::SameString(DisSysNodeData(i).EPlusName, "Other")) - continue; - LocalError = false; - for (j = 1; j <= NumOfNodes; ++j) { // NodeID - if (DisSysNodeData(i).EPlusName == NodeID(j)) { - DisSysNodeData(i).AirLoopNum = GetAirLoopNumber(j); - if (DisSysNodeData(i).AirLoopNum == 0) { - ShowSevereError(RoutineName + "The Node or Component Name defined in " + DisSysNodeData(i).Name + - " is not found in the AirLoopHVAC."); - ShowContinueError("The entered name is " + DisSysNodeData(i).EPlusName + - " in an AirflowNetwork:Distribution:Node object."); - ErrorsFound = true; - } - DisSysNodeData(i).EPlusNodeNum = j; - AirflowNetworkNodeData(NumOfNodesMultiZone + i).EPlusNodeNum = j; - AirflowNetworkNodeData(NumOfNodesMultiZone + i).AirLoopNum = DisSysNodeData(i).AirLoopNum; - NodeFound(j) = true; - LocalError = true; - break; - } - } - // Check outdoor air node - if (UtilityRoutines::SameString(DisSysNodeData(i).EPlusType, "OutdoorAir:NodeList") || - UtilityRoutines::SameString(DisSysNodeData(i).EPlusType, "OutdoorAir:Node")) { - if (!LocalError) { - ShowSevereError(RoutineName + "The Node or Component Name defined in " + DisSysNodeData(i).Name + " is not found in the " + - DisSysNodeData(i).EPlusType); - ShowContinueError("The entered name is " + DisSysNodeData(i).EPlusName + " in an AirflowNetwork:Distribution:Node object."); + NodeFound.dimension(NumOfNodes, false); + // Validate inlet and outlet nodes for zone exhaust fans + for (i = 1; i <= AirflowNetworkNumOfExhFan; ++i) { + NodeFound(MultizoneCompExhaustFanData(i).InletNode) = true; + NodeFound(MultizoneCompExhaustFanData(i).OutletNode) = true; + } + // Validate EPlus Node names and types + for (i = 1; i <= DisSysNumOfNodes; ++i) { + if (UtilityRoutines::SameString(DisSysNodeData(i).EPlusName, "") || UtilityRoutines::SameString(DisSysNodeData(i).EPlusName, "Other")) + continue; + LocalError = false; + for (j = 1; j <= NumOfNodes; ++j) { // NodeID + if (DisSysNodeData(i).EPlusName == NodeID(j)) { + DisSysNodeData(i).AirLoopNum = GetAirLoopNumber(j); + if (DisSysNodeData(i).AirLoopNum == 0) { + ShowSevereError(RoutineName + "The Node or Component Name defined in " + DisSysNodeData(i).Name + + " is not found in the AirLoopHVAC."); + ShowContinueError("The entered name is " + DisSysNodeData(i).EPlusName + + " in an AirflowNetwork:Distribution:Node object."); ErrorsFound = true; } + DisSysNodeData(i).EPlusNodeNum = j; + AirflowNetworkNodeData(NumOfNodesMultiZone + i).EPlusNodeNum = j; + AirflowNetworkNodeData(NumOfNodesMultiZone + i).AirLoopNum = DisSysNodeData(i).AirLoopNum; + NodeFound(j) = true; + LocalError = true; + break; } - if (DisSysNodeData(i).EPlusNodeNum == 0) { - ShowSevereError(RoutineName + - "Primary Air Loop Node is not found in AIRFLOWNETWORK:DISTRIBUTION:NODE = " + DisSysNodeData(i).Name); + } + // Check outdoor air node + if (UtilityRoutines::SameString(DisSysNodeData(i).EPlusType, "OutdoorAir:NodeList") || + UtilityRoutines::SameString(DisSysNodeData(i).EPlusType, "OutdoorAir:Node")) { + if (!LocalError) { + ShowSevereError(RoutineName + "The Node or Component Name defined in " + DisSysNodeData(i).Name + " is not found in the " + + DisSysNodeData(i).EPlusType); + ShowContinueError("The entered name is " + DisSysNodeData(i).EPlusName + " in an AirflowNetwork:Distribution:Node object."); ErrorsFound = true; } } + if (DisSysNodeData(i).EPlusNodeNum == 0) { + ShowSevereError(RoutineName + + "Primary Air Loop Node is not found in AIRFLOWNETWORK:DISTRIBUTION:NODE = " + DisSysNodeData(i).Name); + ErrorsFound = true; + } + } - // Determine node numbers for zone inlets - for (i = 1; i <= NumOfZones; ++i) { - if (!ZoneEquipConfig(i).IsControlled) continue; - for (j = 1; j <= ZoneEquipConfig(i).NumInletNodes; ++j) { - for (k = 1; k <= AirflowNetworkNumOfNodes; ++k) { - if (ZoneEquipConfig(i).InletNode(j) == AirflowNetworkNodeData(k).EPlusNodeNum) { - AirflowNetworkNodeData(k).EPlusTypeNum = EPlusTypeNum_ZIN; - break; - } + // Determine node numbers for zone inlets + for (i = 1; i <= NumOfZones; ++i) { + if (!ZoneEquipConfig(i).IsControlled) continue; + for (j = 1; j <= ZoneEquipConfig(i).NumInletNodes; ++j) { + for (k = 1; k <= AirflowNetworkNumOfNodes; ++k) { + if (ZoneEquipConfig(i).InletNode(j) == AirflowNetworkNodeData(k).EPlusNodeNum) { + AirflowNetworkNodeData(k).EPlusTypeNum = EPlusTypeNum_ZIN; + break; } } } + } - // Eliminate node not related to AirLoopHVAC - for (k = 1; k <= NumOfNodeConnections; ++k) { - if (NodeFound(NodeConnections(k).NodeNumber)) continue; - if (NodeConnections(k).FluidStream == 2) { - NodeFound(NodeConnections(k).NodeNumber) = true; - } + // Eliminate node not related to AirLoopHVAC + for (k = 1; k <= NumOfNodeConnections; ++k) { + if (NodeFound(NodeConnections(k).NodeNumber)) continue; + if (NodeConnections(k).FluidStream == 2) { + NodeFound(NodeConnections(k).NodeNumber) = true; } + } - // Eliminate nodes with fluidtype = water - for (k = 1; k <= NumOfNodes; ++k) { - if (NodeFound(k)) continue; - if (Node(k).FluidType == 2) { - NodeFound(k) = true; - } + // Eliminate nodes with fluidtype = water + for (k = 1; k <= NumOfNodes; ++k) { + if (NodeFound(k)) continue; + if (Node(k).FluidType == 2) { + NodeFound(k) = true; } + } - // Eliminate local external air node for network - for (k = 1; k <= NumOfNodes; ++k) { - if (NodeFound(k)) continue; - if (Node(k).IsLocalNode) NodeFound(k) = true; - } + // Eliminate local external air node for network + for (k = 1; k <= NumOfNodes; ++k) { + if (NodeFound(k)) continue; + if (Node(k).IsLocalNode) NodeFound(k) = true; + } - // Ensure all the nodes used in Eplus are a subset of AirflowNetwork Nodes - for (i = 1; i <= NumOfNodes; ++i) { - if (NodeFound(i)) continue; - // Skip the inlet and outlet nodes of zone dehumidifiers - if (GetZoneDehumidifierNodeNumber(i)) NodeFound(i) = true; + // Ensure all the nodes used in Eplus are a subset of AirflowNetwork Nodes + for (i = 1; i <= NumOfNodes; ++i) { + if (NodeFound(i)) continue; + // Skip the inlet and outlet nodes of zone dehumidifiers + if (GetZoneDehumidifierNodeNumber(i)) NodeFound(i) = true; - for (j = 1; j <= NumOfZones; ++j) { - if (!ZoneEquipConfig(j).IsControlled) continue; - if (ZoneEquipConfig(j).ZoneNode == i) { - if (ZoneEquipConfig(j).ActualZoneNum > AirflowNetworkNumOfNodes) { - ShowSevereError(RoutineName + "'" + NodeID(i) + "' is not defined as an AirflowNetwork:Distribution:Node object."); - ShowContinueError("This Node is the zone air node for Zone '" + ZoneEquipConfig(j).ZoneName + "'."); - ErrorsFound = true; - } else { - NodeFound(i) = true; - AirflowNetworkNodeData(ZoneEquipConfig(j).ActualZoneNum).EPlusNodeNum = i; - } - break; + for (j = 1; j <= NumOfZones; ++j) { + if (!ZoneEquipConfig(j).IsControlled) continue; + if (ZoneEquipConfig(j).ZoneNode == i) { + if (ZoneEquipConfig(j).ActualZoneNum > AirflowNetworkNumOfNodes) { + ShowSevereError(RoutineName + "'" + NodeID(i) + "' is not defined as an AirflowNetwork:Distribution:Node object."); + ShowContinueError("This Node is the zone air node for Zone '" + ZoneEquipConfig(j).ZoneName + "'."); + ErrorsFound = true; + } else { + NodeFound(i) = true; + AirflowNetworkNodeData(ZoneEquipConfig(j).ActualZoneNum).EPlusNodeNum = i; } + break; } + } - // skip nodes that are not part of an airflow network - - // DX COIL CONDENSER NODE TEST: - // Outside air nodes are used for DX coil condenser inlet nodes, these are specified in an outside air node or - // OutdoorAir:NodeList object (and classified with NodeConnectionType as OutsideAir). In addition, - // this same node is specified in a Coil:DX:CoolingBypassFactorEmpirical object (and classified with - // NodeConnectionType as OutsideAirReference). In the NodeConnectionType structure, both of these nodes have a - // unique index but have the same node number. The Outside Air Node will usually be listed first. Search for all - // indexes with the same node number and check if it is classified as NodeConnectionType = OutsideAirReference. - // Mark this node as found since it is not used in an airflownetwork simulation. - // Example (using AirflowNetwork_MultiZone_SmallOffice.idf with a single OA Mixer): - // (the example shown below is identical to AirflowNetwork_SimpleHouse.idf with no OA Mixer except - // that the NodeConnections indexes are (7) and (31), respectively and the NodeNumber = 6) - // The GetNodeConnectionType CALL below returns NodeConnectionType_OutsideAir = 7 and NodeConnectionType_OutsideAirReference = 14. - // NodeConnections info from OUTSIDE AIR NODE object read: - // NodeConnections(9)NodeNumber = 10 - // NodeConnections(9)NodeName = ACDXCOIL 1 CONDENSER NODE - // NodeConnections(9)ObjectType = OUTSIDE AIR NODE - // NodeConnections(9)ObjectName = OUTSIDE AIR NODE - // NodeConnections(9)ConnectionType = OutsideAir - // NodeConnections info from Coil:DX:CoolingBypassFactorEmpirical object read: - // NodeConnections(64)NodeNumber = 10 - // NodeConnections(64)NodeName = ACDXCOIL 1 CONDENSER NODE - // NodeConnections(64)ObjectType = COIL:DX:COOLINGBYPASSFACTOREMPIRICAL - // NodeConnections(64)ObjectName = ACDXCOIL 1 - // NodeConnections(64)ConnectionType = OutsideAirReference - - errFlag = false; - GetNodeConnectionType(i, NodeConnectionType, errFlag); // Gets all connection types for a given node number - if (errFlag) { - ShowContinueError("...occurs in Airflow Network simulation."); - } else { - // skip nodes for air cooled condensers - for (j = 1; j <= isize(NodeConnectionType); ++j) { - if (NodeConnectionType(j) == NodeConnectionType_OutsideAirReference) { - NodeFound(i) = true; - } + // skip nodes that are not part of an airflow network + + // DX COIL CONDENSER NODE TEST: + // Outside air nodes are used for DX coil condenser inlet nodes, these are specified in an outside air node or + // OutdoorAir:NodeList object (and classified with NodeConnectionType as OutsideAir). In addition, + // this same node is specified in a Coil:DX:CoolingBypassFactorEmpirical object (and classified with + // NodeConnectionType as OutsideAirReference). In the NodeConnectionType structure, both of these nodes have a + // unique index but have the same node number. The Outside Air Node will usually be listed first. Search for all + // indexes with the same node number and check if it is classified as NodeConnectionType = OutsideAirReference. + // Mark this node as found since it is not used in an airflownetwork simulation. + // Example (using AirflowNetwork_MultiZone_SmallOffice.idf with a single OA Mixer): + // (the example shown below is identical to AirflowNetwork_SimpleHouse.idf with no OA Mixer except + // that the NodeConnections indexes are (7) and (31), respectively and the NodeNumber = 6) + // The GetNodeConnectionType CALL below returns NodeConnectionType_OutsideAir = 7 and NodeConnectionType_OutsideAirReference = 14. + // NodeConnections info from OUTSIDE AIR NODE object read: + // NodeConnections(9)NodeNumber = 10 + // NodeConnections(9)NodeName = ACDXCOIL 1 CONDENSER NODE + // NodeConnections(9)ObjectType = OUTSIDE AIR NODE + // NodeConnections(9)ObjectName = OUTSIDE AIR NODE + // NodeConnections(9)ConnectionType = OutsideAir + // NodeConnections info from Coil:DX:CoolingBypassFactorEmpirical object read: + // NodeConnections(64)NodeNumber = 10 + // NodeConnections(64)NodeName = ACDXCOIL 1 CONDENSER NODE + // NodeConnections(64)ObjectType = COIL:DX:COOLINGBYPASSFACTOREMPIRICAL + // NodeConnections(64)ObjectName = ACDXCOIL 1 + // NodeConnections(64)ConnectionType = OutsideAirReference + + errFlag = false; + GetNodeConnectionType(i, NodeConnectionType, errFlag); // Gets all connection types for a given node number + if (errFlag) { + ShowContinueError("...occurs in Airflow Network simulation."); + } else { + // skip nodes for air cooled condensers + for (j = 1; j <= isize(NodeConnectionType); ++j) { + if (NodeConnectionType(j) == NodeConnectionType_OutsideAirReference) { + NodeFound(i) = true; } } + } - if (!NodeFound(i)) { - // Check if this node is the OA relief node. For the time being, OA relief node is not used - if (GetNumOAMixers() > 1) { - // ShowSevereError( RoutineName + "Only one OutdoorAir:Mixer is allowed in the - // AirflowNetwork model." ); ErrorsFound = true; - int OAFanNum; - int OARelNum; - int OAMixerNum; + if (!NodeFound(i)) { + // Check if this node is the OA relief node. For the time being, OA relief node is not used + if (GetNumOAMixers() > 1) { + // ShowSevereError( RoutineName + "Only one OutdoorAir:Mixer is allowed in the + // AirflowNetwork model." ); ErrorsFound = true; + int OAFanNum; + int OARelNum; + int OAMixerNum; - for (OAFanNum = 1; OAFanNum <= NumOfOAFans; ++OAFanNum) { - DisSysCompOutdoorAirData(OAFanNum).InletNode = GetOAMixerInletNodeNumber(DisSysCompOutdoorAirData(OAFanNum).OAMixerNum); - // NodeFound( DisSysCompOutdoorAirData( OAFanNum ).InletNode ) = true; - } - for (OARelNum = 1; OARelNum <= NumOfReliefFans; ++OARelNum) { - DisSysCompReliefAirData(OARelNum).OutletNode = GetOAMixerInletNodeNumber(DisSysCompReliefAirData(OARelNum).OAMixerNum); - // NodeFound( DisSysCompOutdoorAirData( OAFanNum ).InletNode ) = true; - } - // Check NodeFound status - for (OAMixerNum = 1; OAMixerNum <= GetNumOAMixers(); ++OAMixerNum) { - if (i == GetOAMixerReliefNodeNumber(OAMixerNum)) { - NodeFound(i) = true; - break; - } else if (i == GetOAMixerInletNodeNumber(OAMixerNum)) { - NodeFound(i) = true; - break; - } else { - if (OAMixerNum == GetNumOAMixers()) { - ShowSevereError(RoutineName + "'" + NodeID(i) + "' is not defined as an AirflowNetwork:Distribution:Node object."); - ErrorsFound = true; - } - } - } - } else if (GetNumOAMixers() == 0) { - ShowSevereError(RoutineName + "'" + NodeID(i) + "' is not defined as an AirflowNetwork:Distribution:Node object."); - ErrorsFound = true; - } else { - // TODO: I fail to see how you could enter this block given than NumOAMixers (returned by GetNumOAMixers()) - // is initialized to zero, and we check above if '> 0' or '== 0' - if (NumOfOAFans == 1 && DisSysCompOutdoorAirData(1).InletNode == 0) { - DisSysCompOutdoorAirData(1).InletNode = GetOAMixerInletNodeNumber(1); - } - if (NumOfReliefFans == 1 && DisSysCompReliefAirData(1).OutletNode == 0) { - DisSysCompReliefAirData(1).OutletNode = GetOAMixerInletNodeNumber(1); - } - if (i == GetOAMixerReliefNodeNumber(1)) { + for (OAFanNum = 1; OAFanNum <= NumOfOAFans; ++OAFanNum) { + DisSysCompOutdoorAirData(OAFanNum).InletNode = GetOAMixerInletNodeNumber(DisSysCompOutdoorAirData(OAFanNum).OAMixerNum); + // NodeFound( DisSysCompOutdoorAirData( OAFanNum ).InletNode ) = true; + } + for (OARelNum = 1; OARelNum <= NumOfReliefFans; ++OARelNum) { + DisSysCompReliefAirData(OARelNum).OutletNode = GetOAMixerInletNodeNumber(DisSysCompReliefAirData(OARelNum).OAMixerNum); + // NodeFound( DisSysCompOutdoorAirData( OAFanNum ).InletNode ) = true; + } + // Check NodeFound status + for (OAMixerNum = 1; OAMixerNum <= GetNumOAMixers(); ++OAMixerNum) { + if (i == GetOAMixerReliefNodeNumber(OAMixerNum)) { NodeFound(i) = true; - } else if (i == GetOAMixerInletNodeNumber(1)) { + break; + } else if (i == GetOAMixerInletNodeNumber(OAMixerNum)) { NodeFound(i) = true; + break; } else { - ShowSevereError(RoutineName + "'" + NodeID(i) + "' is not defined as an AirflowNetwork:Distribution:Node object."); - ErrorsFound = true; + if (OAMixerNum == GetNumOAMixers()) { + ShowSevereError(RoutineName + "'" + NodeID(i) + "' is not defined as an AirflowNetwork:Distribution:Node object."); + ErrorsFound = true; + } } } - } - } - NodeFound.deallocate(); - - // Assign AirLoop Number to every node and linkage - // Zone first - for (i = 1; i <= AirflowNetworkNumOfZones; i++) { - for (j = 1; j <= NumOfZones; j++) { - if (!ZoneEquipConfig(j).IsControlled) continue; - if ((MultizoneZoneData(i).ZoneNum == j) && (ZoneEquipConfig(j).NumInletNodes > 0)) { - // No multiple Airloop - AirflowNetworkNodeData(i).AirLoopNum = ZoneEquipConfig(j).InletNodeAirLoopNum(1); - } - } - } - // Air Distribution system - for (i = AirflowNetworkNumOfSurfaces + 1; i <= AirflowNetworkNumOfLinks; ++i) { - j = AirflowNetworkLinkageData(i).NodeNums[0]; - k = AirflowNetworkLinkageData(i).NodeNums[1]; - if (AirflowNetworkNodeData(j).AirLoopNum == 0 && AirflowNetworkNodeData(k).AirLoopNum == 0) { - // Error messaage - ShowSevereError("ValidateDistributionSystem: AIRFLOWNETWORK:DISTRIBUTION:LINKAGE = " + AirflowNetworkLinkageData(i).Name + - " is not valid for AirLoopNum assignment"); - ShowContinueError("AirLoopNum is not found in both nodes for the linkage: " + AirflowNetworkLinkageData(i).NodeNames[0] + - " and " + AirflowNetworkLinkageData(i).NodeNames[1]); - ShowContinueError("Please ensure one of two AIRFLOWNETWORK:DISTRIBUTION:NODEs in the first AIRFLOWNETWORK:DISTRIBUTION:LINKAGE " - "object should be defined as EnergyPlus NodeID."); - ErrorsFound = true; - } - if (AirflowNetworkNodeData(j).AirLoopNum > 0 && AirflowNetworkNodeData(k).AirLoopNum == 0) { - AirflowNetworkNodeData(k).AirLoopNum = AirflowNetworkNodeData(j).AirLoopNum; - } - if (AirflowNetworkNodeData(j).AirLoopNum == 0 && AirflowNetworkNodeData(k).AirLoopNum > 0) { - AirflowNetworkNodeData(j).AirLoopNum = AirflowNetworkNodeData(k).AirLoopNum; - } - if (AirflowNetworkNodeData(j).AirLoopNum == AirflowNetworkNodeData(k).AirLoopNum) { - AirflowNetworkLinkageData(i).AirLoopNum = AirflowNetworkNodeData(j).AirLoopNum; - } - if (AirflowNetworkNodeData(j).AirLoopNum != AirflowNetworkNodeData(k).AirLoopNum && AirflowNetworkNodeData(j).AirLoopNum > 0 && - AirflowNetworkNodeData(k).AirLoopNum > 0) { - AirflowNetworkLinkageData(i).AirLoopNum = AirflowNetworkNodeData(j).AirLoopNum; - ShowSevereError("The AirLoopNum defined in both AIRFLOWNETWORK:DISTRIBUTION:NODE objects in " + - AirflowNetworkLinkageData(i).Name + - " are not the same. Please make sure both nodes should be listed in the same AirLoop as a valid linkage."); - ShowContinueError("AirLoop defined in " + AirflowNetworkNodeData(j).Name + " is " + - PrimaryAirSystem(AirflowNetworkNodeData(j).AirLoopNum).Name + ", and AirLoop defined in " + - AirflowNetworkNodeData(k).Name + " is " + PrimaryAirSystem(AirflowNetworkNodeData(k).AirLoopNum).Name); + } else if (GetNumOAMixers() == 0) { + ShowSevereError(RoutineName + "'" + NodeID(i) + "' is not defined as an AirflowNetwork:Distribution:Node object."); ErrorsFound = true; - } - // Set AirLoopNum to fans and coils - if (AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).EPlusTypeNum == EPlusTypeNum_FAN) { - n = DisSysCompCVFData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).FanIndex; - DisSysCompCVFData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).AirLoopNum = - AirflowNetworkLinkageData(i).AirLoopNum; - if (DisSysCompCVFData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).FanModelFlag) { - HVACFan::fanObjs[DisSysCompCVFData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).FanIndex]->AirLoopNum = AirflowNetworkLinkageData(i).AirLoopNum; + } else { + // TODO: I fail to see how you could enter this block given than NumOAMixers (returned by GetNumOAMixers()) + // is initialized to zero, and we check above if '> 0' or '== 0' + if (NumOfOAFans == 1 && DisSysCompOutdoorAirData(1).InletNode == 0) { + DisSysCompOutdoorAirData(1).InletNode = GetOAMixerInletNodeNumber(1); + } + if (NumOfReliefFans == 1 && DisSysCompReliefAirData(1).OutletNode == 0) { + DisSysCompReliefAirData(1).OutletNode = GetOAMixerInletNodeNumber(1); + } + if (i == GetOAMixerReliefNodeNumber(1)) { + NodeFound(i) = true; + } else if (i == GetOAMixerInletNodeNumber(1)) { + NodeFound(i) = true; } else { - SetFanAirLoopNumber(n, AirflowNetworkLinkageData(i).AirLoopNum); + ShowSevereError(RoutineName + "'" + NodeID(i) + "' is not defined as an AirflowNetwork:Distribution:Node object."); + ErrorsFound = true; } } - if (AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).EPlusTypeNum == EPlusTypeNum_COI) { - DisSysCompCoilData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).AirLoopNum = - AirflowNetworkLinkageData(i).AirLoopNum; - } } + } + NodeFound.deallocate(); - // Validate coil name and type - CurrentModuleObject = "AirflowNetwork:Distribution:Component:Coil"; - MultiSpeedHPIndicator = 0; - for (i = 1; i <= DisSysNumOfCoils; ++i) { - { - auto const SELECT_CASE_var(UtilityRoutines::MakeUPPERCase(DisSysCompCoilData(i).EPlusType)); + // Assign AirLoop Number to every node and linkage + // Zone first + for (i = 1; i <= AirflowNetworkNumOfZones; i++) { + for (j = 1; j <= NumOfZones; j++) { + if (!ZoneEquipConfig(j).IsControlled) continue; + if ((MultizoneZoneData(i).ZoneNum == j) && (ZoneEquipConfig(j).NumInletNodes > 0)) { + // No multiple Airloop + AirflowNetworkNodeData(i).AirLoopNum = ZoneEquipConfig(j).InletNodeAirLoopNum(1); + } + } + } + // Air Distribution system + for (i = AirflowNetworkNumOfSurfaces + 1; i <= AirflowNetworkNumOfLinks; ++i) { + j = AirflowNetworkLinkageData(i).NodeNums[0]; + k = AirflowNetworkLinkageData(i).NodeNums[1]; + if (AirflowNetworkNodeData(j).AirLoopNum == 0 && AirflowNetworkNodeData(k).AirLoopNum == 0) { + // Error messaage + ShowSevereError("ValidateDistributionSystem: AIRFLOWNETWORK:DISTRIBUTION:LINKAGE = " + AirflowNetworkLinkageData(i).Name + + " is not valid for AirLoopNum assignment"); + ShowContinueError("AirLoopNum is not found in both nodes for the linkage: " + AirflowNetworkLinkageData(i).NodeNames[0] + + " and " + AirflowNetworkLinkageData(i).NodeNames[1]); + ShowContinueError("Please ensure one of two AIRFLOWNETWORK:DISTRIBUTION:NODEs in the first AIRFLOWNETWORK:DISTRIBUTION:LINKAGE " + "object should be defined as EnergyPlus NodeID."); + ErrorsFound = true; + } + if (AirflowNetworkNodeData(j).AirLoopNum > 0 && AirflowNetworkNodeData(k).AirLoopNum == 0) { + AirflowNetworkNodeData(k).AirLoopNum = AirflowNetworkNodeData(j).AirLoopNum; + } + if (AirflowNetworkNodeData(j).AirLoopNum == 0 && AirflowNetworkNodeData(k).AirLoopNum > 0) { + AirflowNetworkNodeData(j).AirLoopNum = AirflowNetworkNodeData(k).AirLoopNum; + } + if (AirflowNetworkNodeData(j).AirLoopNum == AirflowNetworkNodeData(k).AirLoopNum) { + AirflowNetworkLinkageData(i).AirLoopNum = AirflowNetworkNodeData(j).AirLoopNum; + } + if (AirflowNetworkNodeData(j).AirLoopNum != AirflowNetworkNodeData(k).AirLoopNum && AirflowNetworkNodeData(j).AirLoopNum > 0 && + AirflowNetworkNodeData(k).AirLoopNum > 0) { + AirflowNetworkLinkageData(i).AirLoopNum = AirflowNetworkNodeData(j).AirLoopNum; + ShowSevereError("The AirLoopNum defined in both AIRFLOWNETWORK:DISTRIBUTION:NODE objects in " + + AirflowNetworkLinkageData(i).Name + + " are not the same. Please make sure both nodes should be listed in the same AirLoop as a valid linkage."); + ShowContinueError("AirLoop defined in " + AirflowNetworkNodeData(j).Name + " is " + + PrimaryAirSystem(AirflowNetworkNodeData(j).AirLoopNum).Name + ", and AirLoop defined in " + + AirflowNetworkNodeData(k).Name + " is " + PrimaryAirSystem(AirflowNetworkNodeData(k).AirLoopNum).Name); + ErrorsFound = true; + } + // Set AirLoopNum to fans and coils + if (AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).EPlusTypeNum == EPlusTypeNum_FAN) { + n = DisSysCompCVFData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).FanIndex; + DisSysCompCVFData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).AirLoopNum = + AirflowNetworkLinkageData(i).AirLoopNum; + if (DisSysCompCVFData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).FanModelFlag) { + HVACFan::fanObjs[DisSysCompCVFData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).FanIndex]->AirLoopNum = AirflowNetworkLinkageData(i).AirLoopNum; + } else { + SetFanAirLoopNumber(n, AirflowNetworkLinkageData(i).AirLoopNum); + } + } + if (AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).EPlusTypeNum == EPlusTypeNum_COI) { + DisSysCompCoilData(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum).AirLoopNum = + AirflowNetworkLinkageData(i).AirLoopNum; + } + } - if (SELECT_CASE_var == "COIL:COOLING:DX:SINGLESPEED") { - ValidateComponent("Coil:Cooling:DX:SingleSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } else { - SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); - } + // Validate coil name and type + CurrentModuleObject = "AirflowNetwork:Distribution:Component:Coil"; + MultiSpeedHPIndicator = 0; + for (i = 1; i <= DisSysNumOfCoils; ++i) { + { + auto const SELECT_CASE_var(UtilityRoutines::MakeUPPERCase(DisSysCompCoilData(i).EPlusType)); - } else if (SELECT_CASE_var == "COIL:HEATING:DX:SINGLESPEED") { - ValidateComponent("Coil:Heating:DX:SingleSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } else { - SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); - } + if (SELECT_CASE_var == "COIL:COOLING:DX:SINGLESPEED") { + ValidateComponent("Coil:Cooling:DX:SingleSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } else { + SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); + } - } else if (SELECT_CASE_var == "COIL:HEATING:FUEL") { - ValidateComponent("Coil:Heating:Fuel", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } else { - SetHeatingCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum, ErrorsFound); - } + } else if (SELECT_CASE_var == "COIL:HEATING:DX:SINGLESPEED") { + ValidateComponent("Coil:Heating:DX:SingleSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } else { + SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); + } - } else if (SELECT_CASE_var == "COIL:HEATING:ELECTRIC") { - ValidateComponent("Coil:Heating:Electric", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } else { - SetHeatingCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum, ErrorsFound); - } + } else if (SELECT_CASE_var == "COIL:HEATING:FUEL") { + ValidateComponent("Coil:Heating:Fuel", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } else { + SetHeatingCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum, ErrorsFound); + } - } else if (SELECT_CASE_var == "COIL:COOLING:WATER") { - ValidateComponent("Coil:Cooling:Water", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } + } else if (SELECT_CASE_var == "COIL:HEATING:ELECTRIC") { + ValidateComponent("Coil:Heating:Electric", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } else { + SetHeatingCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum, ErrorsFound); + } - } else if (SELECT_CASE_var == "COIL:HEATING:WATER") { - ValidateComponent("Coil:Heating:Water", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } + } else if (SELECT_CASE_var == "COIL:COOLING:WATER") { + ValidateComponent("Coil:Cooling:Water", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } - } else if (SELECT_CASE_var == "COIL:COOLING:WATER:DETAILEDGEOMETRY") { - ValidateComponent( - "Coil:Cooling:Water:DetailedGeometry", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } + } else if (SELECT_CASE_var == "COIL:HEATING:WATER") { + ValidateComponent("Coil:Heating:Water", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } - } else if (SELECT_CASE_var == "COIL:COOLING:DX:TWOSTAGEWITHHUMIDITYCONTROLMODE") { - ValidateComponent("Coil:Cooling:DX:TwoStageWithHumidityControlMode", - DisSysCompCoilData(i).Name, - IsNotOK, - RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } else { - SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); - } + } else if (SELECT_CASE_var == "COIL:COOLING:WATER:DETAILEDGEOMETRY") { + ValidateComponent( + "Coil:Cooling:Water:DetailedGeometry", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } - } else if (SELECT_CASE_var == "COIL:COOLING:DX:MULTISPEED") { - ValidateComponent("Coil:Cooling:DX:MultiSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - ++MultiSpeedHPIndicator; - if (IsNotOK) { - ErrorsFound = true; - } else { - SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); - } + } else if (SELECT_CASE_var == "COIL:COOLING:DX:TWOSTAGEWITHHUMIDITYCONTROLMODE") { + ValidateComponent("Coil:Cooling:DX:TwoStageWithHumidityControlMode", + DisSysCompCoilData(i).Name, + IsNotOK, + RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } else { + SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); + } - } else if (SELECT_CASE_var == "COIL:HEATING:DX:MULTISPEED") { - ValidateComponent("Coil:Heating:DX:MultiSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - ++MultiSpeedHPIndicator; - if (IsNotOK) { - ErrorsFound = true; - } else { - SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); - } + } else if (SELECT_CASE_var == "COIL:COOLING:DX:MULTISPEED") { + ValidateComponent("Coil:Cooling:DX:MultiSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + ++MultiSpeedHPIndicator; + if (IsNotOK) { + ErrorsFound = true; + } else { + SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); + } - } else if (SELECT_CASE_var == "COIL:HEATING:DESUPERHEATER") { - ValidateComponent("Coil:Heating:Desuperheater", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } + } else if (SELECT_CASE_var == "COIL:HEATING:DX:MULTISPEED") { + ValidateComponent("Coil:Heating:DX:MultiSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + ++MultiSpeedHPIndicator; + if (IsNotOK) { + ErrorsFound = true; + } else { + SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); + } - } else if (SELECT_CASE_var == "COIL:COOLING:DX:TWOSPEED") { - ValidateComponent("Coil:Cooling:DX:TwoSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } else { - SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); - } + } else if (SELECT_CASE_var == "COIL:HEATING:DESUPERHEATER") { + ValidateComponent("Coil:Heating:Desuperheater", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } - } else { - ShowSevereError(RoutineName + CurrentModuleObject + " Invalid coil type = " + DisSysCompCoilData(i).Name); + } else if (SELECT_CASE_var == "COIL:COOLING:DX:TWOSPEED") { + ValidateComponent("Coil:Cooling:DX:TwoSpeed", DisSysCompCoilData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { ErrorsFound = true; + } else { + SetDXCoilAirLoopNumber(DisSysCompCoilData(i).Name, DisSysCompCoilData(i).AirLoopNum); } + + } else { + ShowSevereError(RoutineName + CurrentModuleObject + " Invalid coil type = " + DisSysCompCoilData(i).Name); + ErrorsFound = true; } } + } - // Validate terminal unit name and type - for (i = 1; i <= DisSysNumOfTermUnits; ++i) { - if (UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:ConstantVolume:Reheat") || - UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:VAV:Reheat")) { - LocalError = false; - if (UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:ConstantVolume:Reheat")) - GetHVACSingleDuctSysIndex( - DisSysCompTermUnitData(i).Name, n, LocalError, "AirflowNetwork:Distribution:Component:TerminalUnit"); - if (UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:VAV:Reheat")) - GetHVACSingleDuctSysIndex(DisSysCompTermUnitData(i).Name, - n, - LocalError, - "AirflowNetwork:Distribution:Component:TerminalUnit", - DisSysCompTermUnitData(i).DamperInletNode, - DisSysCompTermUnitData(i).DamperOutletNode); - if (LocalError) ErrorsFound = true; - if (VAVSystem) { - for (j = 1; j <= DisSysNumOfCVFs; j++) { - if (DisSysCompCVFData(j).FanTypeNum == FanType_SimpleVAV) { - if (DisSysCompCVFData(j).AirLoopNum == DisSysCompTermUnitData(i).AirLoopNum && - !UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:VAV:Reheat")) { - ShowSevereError(RoutineName + CurrentModuleObject + - " Invalid terminal type for a VAV system = " + DisSysCompTermUnitData(i).Name); - ShowContinueError("The input type = " + DisSysCompTermUnitData(i).EPlusType); - ShowContinueError("A VAV system requires all terminal units with type = AirTerminal:SingleDuct:VAV:Reheat"); - ErrorsFound = true; - } + // Validate terminal unit name and type + for (i = 1; i <= DisSysNumOfTermUnits; ++i) { + if (UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:ConstantVolume:Reheat") || + UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:VAV:Reheat")) { + LocalError = false; + if (UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:ConstantVolume:Reheat")) + GetHVACSingleDuctSysIndex( + DisSysCompTermUnitData(i).Name, n, LocalError, "AirflowNetwork:Distribution:Component:TerminalUnit"); + if (UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:VAV:Reheat")) + GetHVACSingleDuctSysIndex(DisSysCompTermUnitData(i).Name, + n, + LocalError, + "AirflowNetwork:Distribution:Component:TerminalUnit", + DisSysCompTermUnitData(i).DamperInletNode, + DisSysCompTermUnitData(i).DamperOutletNode); + if (LocalError) ErrorsFound = true; + if (VAVSystem) { + for (j = 1; j <= DisSysNumOfCVFs; j++) { + if (DisSysCompCVFData(j).FanTypeNum == FanType_SimpleVAV) { + if (DisSysCompCVFData(j).AirLoopNum == DisSysCompTermUnitData(i).AirLoopNum && + !UtilityRoutines::SameString(DisSysCompTermUnitData(i).EPlusType, "AirTerminal:SingleDuct:VAV:Reheat")) { + ShowSevereError(RoutineName + CurrentModuleObject + + " Invalid terminal type for a VAV system = " + DisSysCompTermUnitData(i).Name); + ShowContinueError("The input type = " + DisSysCompTermUnitData(i).EPlusType); + ShowContinueError("A VAV system requires all terminal units with type = AirTerminal:SingleDuct:VAV:Reheat"); + ErrorsFound = true; } } } - } else { - ShowSevereError(RoutineName + "AIRFLOWNETWORK:DISTRIBUTION:COMPONENT TERMINAL UNIT: Invalid Terminal unit type = " + - DisSysCompTermUnitData(i).Name); - ErrorsFound = true; } + } else { + ShowSevereError(RoutineName + "AIRFLOWNETWORK:DISTRIBUTION:COMPONENT TERMINAL UNIT: Invalid Terminal unit type = " + + DisSysCompTermUnitData(i).Name); + ErrorsFound = true; } + } - // Validate heat exchanger name and type - CurrentModuleObject = "AirflowNetwork:Distribution:Component:HeatExchanger"; - for (i = 1; i <= DisSysNumOfHXs; ++i) { - { - auto const SELECT_CASE_var(UtilityRoutines::MakeUPPERCase(DisSysCompHXData(i).EPlusType)); - - if (SELECT_CASE_var == "HEATEXCHANGER:AIRTOAIR:FLATPLATE") { - ValidateComponent("HeatExchanger:AirToAir:FlatPlate", DisSysCompHXData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } + // Validate heat exchanger name and type + CurrentModuleObject = "AirflowNetwork:Distribution:Component:HeatExchanger"; + for (i = 1; i <= DisSysNumOfHXs; ++i) { + { + auto const SELECT_CASE_var(UtilityRoutines::MakeUPPERCase(DisSysCompHXData(i).EPlusType)); - } else if (SELECT_CASE_var == "HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT") { - ValidateComponent( - "HeatExchanger:AirToAir:SensibleAndLatent", DisSysCompHXData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } + if (SELECT_CASE_var == "HEATEXCHANGER:AIRTOAIR:FLATPLATE") { + ValidateComponent("HeatExchanger:AirToAir:FlatPlate", DisSysCompHXData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } - } else if (SELECT_CASE_var == "HEATEXCHANGER:DESICCANT:BALANCEDFLOW") { - ValidateComponent( - "HeatExchanger:Desiccant:BalancedFlow", DisSysCompHXData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); - if (IsNotOK) { - ErrorsFound = true; - } + } else if (SELECT_CASE_var == "HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT") { + ValidateComponent( + "HeatExchanger:AirToAir:SensibleAndLatent", DisSysCompHXData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { + ErrorsFound = true; + } - } else { - ShowSevereError(RoutineName + CurrentModuleObject + " Invalid heat exchanger type = " + DisSysCompHXData(i).EPlusType); + } else if (SELECT_CASE_var == "HEATEXCHANGER:DESICCANT:BALANCEDFLOW") { + ValidateComponent( + "HeatExchanger:Desiccant:BalancedFlow", DisSysCompHXData(i).Name, IsNotOK, RoutineName + CurrentModuleObject); + if (IsNotOK) { ErrorsFound = true; } + + } else { + ShowSevereError(RoutineName + CurrentModuleObject + " Invalid heat exchanger type = " + DisSysCompHXData(i).EPlusType); + ErrorsFound = true; } } + } - // Assign supply and return connection - for (j = 1; j <= NumPrimaryAirSys; ++j) { - S1 = 0; - S2 = 0; - R1 = 0; - R2 = 0; - for (i = 1; i <= AirflowNetworkNumOfNodes; ++i) { - if (AirflowNetworkNodeData(i).EPlusNodeNum == AirToZoneNodeInfo(j).AirLoopSupplyNodeNum(1)) S1 = i; - if (AirflowNetworkNodeData(i).EPlusNodeNum == AirToZoneNodeInfo(j).ZoneEquipSupplyNodeNum(1)) S2 = i; - if (AirflowNetworkNodeData(i).EPlusNodeNum == AirToZoneNodeInfo(j).ZoneEquipReturnNodeNum(1)) R1 = i; - if (AirflowNetworkNodeData(i).EPlusNodeNum == AirToZoneNodeInfo(j).AirLoopReturnNodeNum(1)) R2 = i; + // Assign supply and return connection + for (j = 1; j <= NumPrimaryAirSys; ++j) { + S1 = 0; + S2 = 0; + R1 = 0; + R2 = 0; + for (i = 1; i <= AirflowNetworkNumOfNodes; ++i) { + if (AirflowNetworkNodeData(i).EPlusNodeNum == AirToZoneNodeInfo(j).AirLoopSupplyNodeNum(1)) S1 = i; + if (AirflowNetworkNodeData(i).EPlusNodeNum == AirToZoneNodeInfo(j).ZoneEquipSupplyNodeNum(1)) S2 = i; + if (AirflowNetworkNodeData(i).EPlusNodeNum == AirToZoneNodeInfo(j).ZoneEquipReturnNodeNum(1)) R1 = i; + if (AirflowNetworkNodeData(i).EPlusNodeNum == AirToZoneNodeInfo(j).AirLoopReturnNodeNum(1)) R2 = i; + } + for (i = 1; i <= AirflowNetworkNumOfLinks; ++i) { + if (AirflowNetworkLinkageData(i).NodeNums[0] == R1 && AirflowNetworkLinkageData(i).NodeNums[1] == R2) { + AirflowNetworkLinkageData(i).ConnectionFlag = EPlusTypeNum_RCN; } - for (i = 1; i <= AirflowNetworkNumOfLinks; ++i) { - if (AirflowNetworkLinkageData(i).NodeNums[0] == R1 && AirflowNetworkLinkageData(i).NodeNums[1] == R2) { - AirflowNetworkLinkageData(i).ConnectionFlag = EPlusTypeNum_RCN; - } - if (AirflowNetworkLinkageData(i).NodeNums[0] == S1 && AirflowNetworkLinkageData(i).NodeNums[1] == S2) { - AirflowNetworkLinkageData(i).ConnectionFlag = EPlusTypeNum_SCN; - } + if (AirflowNetworkLinkageData(i).NodeNums[0] == S1 && AirflowNetworkLinkageData(i).NodeNums[1] == S2) { + AirflowNetworkLinkageData(i).ConnectionFlag = EPlusTypeNum_SCN; } } + } - // Assign fan inlet and outlet node, and coil outlet - for (i = 1; i <= AirflowNetworkNumOfLinks; ++i) { - j = AirflowNetworkLinkageData(i).CompNum; - if (AirflowNetworkCompData(j).CompTypeNum == CompTypeNum_CVF) { - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum == 0) - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum = EPlusTypeNum_FIN; - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum = EPlusTypeNum_FOU; - } - if (AirflowNetworkCompData(j).EPlusTypeNum == EPlusTypeNum_COI) { - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum = EPlusTypeNum_COU; - } - if (AirflowNetworkCompData(j).EPlusTypeNum == EPlusTypeNum_HEX) { - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum = EPlusTypeNum_HXO; - } - if (AirflowNetworkCompData(j).CompTypeNum == CompTypeNum_TMU) { - if (DisSysCompTermUnitData(AirflowNetworkCompData(j).TypeNum).DamperInletNode > 0) { - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusNodeNum == - DisSysCompTermUnitData(AirflowNetworkCompData(j).TypeNum).DamperInletNode && - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusNodeNum == - DisSysCompTermUnitData(AirflowNetworkCompData(j).TypeNum).DamperOutletNode) { - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum = EPlusTypeNum_DIN; - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum = EPlusTypeNum_DOU; - AirflowNetworkLinkageData(i).VAVTermDamper = true; - } + // Assign fan inlet and outlet node, and coil outlet + for (i = 1; i <= AirflowNetworkNumOfLinks; ++i) { + j = AirflowNetworkLinkageData(i).CompNum; + if (AirflowNetworkCompData(j).CompTypeNum == CompTypeNum_CVF) { + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum == 0) + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum = EPlusTypeNum_FIN; + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum = EPlusTypeNum_FOU; + } + if (AirflowNetworkCompData(j).EPlusTypeNum == EPlusTypeNum_COI) { + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum = EPlusTypeNum_COU; + } + if (AirflowNetworkCompData(j).EPlusTypeNum == EPlusTypeNum_HEX) { + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum = EPlusTypeNum_HXO; + } + if (AirflowNetworkCompData(j).CompTypeNum == CompTypeNum_TMU) { + if (DisSysCompTermUnitData(AirflowNetworkCompData(j).TypeNum).DamperInletNode > 0) { + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusNodeNum == + DisSysCompTermUnitData(AirflowNetworkCompData(j).TypeNum).DamperInletNode && + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusNodeNum == + DisSysCompTermUnitData(AirflowNetworkCompData(j).TypeNum).DamperOutletNode) { + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum = EPlusTypeNum_DIN; + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum = EPlusTypeNum_DOU; + AirflowNetworkLinkageData(i).VAVTermDamper = true; } } } + } - // Validate the position of constant pressure drop component - CurrentModuleObject = "AirflowNetwork:Distribution:Component:ConstantPressureDrop"; - for (i = 1; i <= AirflowNetworkNumOfLinks; ++i) { - if (AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).CompTypeNum == CompTypeNum_CPD) { - for (j = 1; j <= AirflowNetworkNumOfLinks; ++j) { - if (AirflowNetworkLinkageData(i).NodeNums[0] == AirflowNetworkLinkageData(j).NodeNums[1]) { - if (AirflowNetworkCompData(AirflowNetworkLinkageData(j).CompNum).CompTypeNum != CompTypeNum_DWC) { - ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + - ')'); - ShowContinueError("must connect a duct component upstream and not " + AirflowNetworkLinkageData(j).Name); - ErrorsFound = true; - } + // Validate the position of constant pressure drop component + CurrentModuleObject = "AirflowNetwork:Distribution:Component:ConstantPressureDrop"; + for (i = 1; i <= AirflowNetworkNumOfLinks; ++i) { + if (AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).CompTypeNum == CompTypeNum_CPD) { + for (j = 1; j <= AirflowNetworkNumOfLinks; ++j) { + if (AirflowNetworkLinkageData(i).NodeNums[0] == AirflowNetworkLinkageData(j).NodeNums[1]) { + if (AirflowNetworkCompData(AirflowNetworkLinkageData(j).CompNum).CompTypeNum != CompTypeNum_DWC) { + ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + + ')'); + ShowContinueError("must connect a duct component upstream and not " + AirflowNetworkLinkageData(j).Name); + ErrorsFound = true; } } - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum == EPlusTypeNum_SPL) { - ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); - ShowContinueError("does not allow a AirLoopHVAC:ZoneSplitter node = " + - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).Name); - ErrorsFound = true; - } - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum == EPlusTypeNum_SPL) { - ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); - ShowContinueError("does not allow a AirLoopHVAC:ZoneSplitter node = " + - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).Name); - ErrorsFound = true; - } - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum == EPlusTypeNum_MIX) { - ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); - ShowContinueError("does not allow a AirLoopHVAC:ZoneMixer node = " + - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).Name); - ErrorsFound = true; - } - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum == EPlusTypeNum_MIX) { - ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); - ShowContinueError("does not allow a AirLoopHVAC:ZoneMixer node = " + - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).Name); - ErrorsFound = true; - } - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusNodeNum > 0) { - ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); - ShowContinueError("does not allow to connect an EnergyPlus node = " + - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).Name); - ErrorsFound = true; - } - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusNodeNum > 0) { - ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); - ShowContinueError("does not allow to connect an EnergyPlus node = " + - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).Name); - ErrorsFound = true; - } - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusZoneNum > 0) { - ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); - ShowContinueError("does not allow to connect an EnergyPlus zone = " + - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).Name); - ErrorsFound = true; - } - if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusZoneNum > 0) { - ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); - ShowContinueError("does not allow to connect an EnergyPlus zone = " + - AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).Name); - ErrorsFound = true; - } } - } - - for (i = NumOfNodesMultiZone + 1; i <= AirflowNetworkNumOfNodes; ++i) { - if (AirflowNetworkNodeData(i).EPlusTypeNum == EPlusTypeNum_SPL) { - LocalError = false; - j = GetSplitterOutletNumber("", 1, LocalError); - SplitterNodeNumbers.allocate(j + 2); - SplitterNodeNumbers = GetSplitterNodeNumbers("", 1, LocalError); - if (LocalError) ErrorsFound = true; + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum == EPlusTypeNum_SPL) { + ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); + ShowContinueError("does not allow a AirLoopHVAC:ZoneSplitter node = " + + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).Name); + ErrorsFound = true; } - } - - // Assigning inlet and outlet nodes for a splitter - for (i = 1; i <= AirflowNetworkNumOfNodes; ++i) { - if (AirflowNetworkNodeData(i).EPlusNodeNum == SplitterNodeNumbers(1)) { - if (AirflowNetworkNodeData(i).EPlusTypeNum == 0) AirflowNetworkNodeData(i).EPlusTypeNum = EPlusTypeNum_SPI; + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum == EPlusTypeNum_SPL) { + ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); + ShowContinueError("does not allow a AirLoopHVAC:ZoneSplitter node = " + + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).Name); + ErrorsFound = true; } - for (j = 1; j <= SplitterNodeNumbers(2); ++j) { - if (AirflowNetworkNodeData(i).EPlusNodeNum == SplitterNodeNumbers(j + 2)) { - if (AirflowNetworkNodeData(i).EPlusTypeNum == 0) AirflowNetworkNodeData(i).EPlusTypeNum = EPlusTypeNum_SPO; - } + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusTypeNum == EPlusTypeNum_MIX) { + ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); + ShowContinueError("does not allow a AirLoopHVAC:ZoneMixer node = " + + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).Name); + ErrorsFound = true; + } + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusTypeNum == EPlusTypeNum_MIX) { + ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); + ShowContinueError("does not allow a AirLoopHVAC:ZoneMixer node = " + + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).Name); + ErrorsFound = true; + } + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusNodeNum > 0) { + ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); + ShowContinueError("does not allow to connect an EnergyPlus node = " + + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).Name); + ErrorsFound = true; + } + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusNodeNum > 0) { + ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); + ShowContinueError("does not allow to connect an EnergyPlus node = " + + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).Name); + ErrorsFound = true; + } + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusZoneNum > 0) { + ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); + ShowContinueError("does not allow to connect an EnergyPlus zone = " + + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).Name); + ErrorsFound = true; + } + if (AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusZoneNum > 0) { + ShowSevereError(RoutineName + "An " + CurrentModuleObject + " object (" + AirflowNetworkLinkageData(i).CompName + ')'); + ShowContinueError("does not allow to connect an EnergyPlus zone = " + + AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).Name); + ErrorsFound = true; } } + } - // Add additional output variables - if (DisSysNumOfCVFs > 1) { - bool OnOffFanFlag = false; - for (i = 1; i <= DisSysNumOfCVFs; i++) { - if (DisSysCompCVFData(i).FanTypeNum == FanType_SimpleOnOff && !DisSysCompCVFData(i).FanModelFlag) { - OnOffFanFlag = true; - break; - } - if (DisSysCompCVFData(i).FanModelFlag && DisSysCompCVFData(i).FanTypeNum == FanType_SimpleOnOff) { - int fanIndex = HVACFan::getFanObjectVectorIndex(DisSysCompCVFData(i).Name); - if ( HVACFan::fanObjs[fanIndex]->AirPathFlag) { - DisSysCompCVFData(i).FanTypeNum = FanType_SimpleConstVolume; - } else { - OnOffFanFlag = true; - break; - } - } - } - if (OnOffFanFlag) { - for (j = 1; j <= AirflowNetworkNumOfZones; ++j) { - if (!ZoneEquipConfig(AirflowNetworkNodeData(j).EPlusZoneNum).IsControlled) continue; - for (i = 1; i <= DisSysNumOfCVFs; i++) { - if (DisSysCompCVFData(i).AirLoopNum == AirflowNetworkNodeData(j).AirLoopNum && - DisSysCompCVFData(i).FanTypeNum != FanType_SimpleOnOff) { - SetupOutputVariable("AFN Node Total Pressure", - OutputProcessor::Unit::Pa, - AirflowNetworkNodeSimu(j).PZ, - "System", - "Average", - AirflowNetworkNodeData(j).Name); - } - } - } - for (i = 1; i <= NumOfLinksMultiZone; ++i) { - if (!ZoneEquipConfig(AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusZoneNum).IsControlled) continue; - for (j = 1; j <= DisSysNumOfCVFs; j++) { - if (DisSysCompCVFData(j).AirLoopNum == AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).AirLoopNum && - DisSysCompCVFData(j).FanTypeNum != FanType_SimpleOnOff) { - SetupOutputVariable("AFN Linkage Node 1 to Node 2 Mass Flow Rate", - OutputProcessor::Unit::kg_s, - AirflowNetworkLinkReport(i).FLOW, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - SetupOutputVariable("AFN Linkage Node 2 to Node 1 Mass Flow Rate", - OutputProcessor::Unit::kg_s, - AirflowNetworkLinkReport(i).FLOW2, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - SetupOutputVariable("AFN Linkage Node 1 to Node 2 Volume Flow Rate", - OutputProcessor::Unit::m3_s, - AirflowNetworkLinkReport(i).VolFLOW, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - SetupOutputVariable("AFN Linkage Node 2 to Node 1 Volume Flow Rate", - OutputProcessor::Unit::m3_s, - AirflowNetworkLinkReport(i).VolFLOW2, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - SetupOutputVariable("AFN Linkage Node 1 to Node 2 Pressure Difference", - OutputProcessor::Unit::Pa, - AirflowNetworkLinkSimu(i).DP, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - } - } - } + for (i = NumOfNodesMultiZone + 1; i <= AirflowNetworkNumOfNodes; ++i) { + if (AirflowNetworkNodeData(i).EPlusTypeNum == EPlusTypeNum_SPL) { + LocalError = false; + j = GetSplitterOutletNumber("", 1, LocalError); + SplitterNodeNumbers.allocate(j + 2); + SplitterNodeNumbers = GetSplitterNodeNumbers("", 1, LocalError); + if (LocalError) ErrorsFound = true; + } + } + + // Assigning inlet and outlet nodes for a splitter + for (i = 1; i <= AirflowNetworkNumOfNodes; ++i) { + if (AirflowNetworkNodeData(i).EPlusNodeNum == SplitterNodeNumbers(1)) { + if (AirflowNetworkNodeData(i).EPlusTypeNum == 0) AirflowNetworkNodeData(i).EPlusTypeNum = EPlusTypeNum_SPI; + } + for (j = 1; j <= SplitterNodeNumbers(2); ++j) { + if (AirflowNetworkNodeData(i).EPlusNodeNum == SplitterNodeNumbers(j + 2)) { + if (AirflowNetworkNodeData(i).EPlusTypeNum == 0) AirflowNetworkNodeData(i).EPlusTypeNum = EPlusTypeNum_SPO; } } - bool FanModelConstFlag = false; + } + + // Add additional output variables + if (DisSysNumOfCVFs > 1) { + bool OnOffFanFlag = false; for (i = 1; i <= DisSysNumOfCVFs; i++) { - if (DisSysCompCVFData(i).FanModelFlag) { + if (DisSysCompCVFData(i).FanTypeNum == FanType_SimpleOnOff && !DisSysCompCVFData(i).FanModelFlag) { + OnOffFanFlag = true; + break; + } + if (DisSysCompCVFData(i).FanModelFlag && DisSysCompCVFData(i).FanTypeNum == FanType_SimpleOnOff) { int fanIndex = HVACFan::getFanObjectVectorIndex(DisSysCompCVFData(i).Name); - if (DisSysCompCVFData(i).FanTypeNum == FanType_SimpleOnOff && HVACFan::fanObjs[fanIndex]->AirPathFlag) { + if ( HVACFan::fanObjs[fanIndex]->AirPathFlag) { DisSysCompCVFData(i).FanTypeNum = FanType_SimpleConstVolume; - SupplyFanType = FanType_SimpleConstVolume; - FanModelConstFlag = true; + } else { + OnOffFanFlag = true; break; } } } - if (FanModelConstFlag) { - for (i = 1; i <= AirflowNetworkNumOfSurfaces; ++i) { - if (SupplyFanType == FanType_SimpleConstVolume) { - SetupOutputVariable("AFN Linkage Node 1 to Node 2 Mass Flow Rate", - OutputProcessor::Unit::kg_s, - AirflowNetworkLinkReport(i).FLOW, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - SetupOutputVariable("AFN Linkage Node 2 to Node 1 Mass Flow Rate", - OutputProcessor::Unit::kg_s, - AirflowNetworkLinkReport(i).FLOW2, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - SetupOutputVariable("AFN Linkage Node 1 to Node 2 Volume Flow Rate", - OutputProcessor::Unit::m3_s, - AirflowNetworkLinkReport(i).VolFLOW, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - SetupOutputVariable("AFN Linkage Node 2 to Node 1 Volume Flow Rate", - OutputProcessor::Unit::m3_s, - AirflowNetworkLinkReport(i).VolFLOW2, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - SetupOutputVariable("AFN Linkage Node 1 to Node 2 Pressure Difference", - OutputProcessor::Unit::Pa, - AirflowNetworkLinkSimu(i).DP, - "System", - "Average", - AirflowNetworkLinkageData(i).Name); - } - } - } - - // Add AirLoopNum to pressure control object - for (i = 1; i <= NumOfPressureControllers; ++i) { - for (j = 1; j <= NumOfZones; ++j) { - if (PressureControllerData(i).ZoneNum == j) { - for (k = 1; k <= ZoneEquipConfig(j).NumInletNodes; ++k) { - if (ZoneEquipConfig(j).InletNodeAirLoopNum(k) > 0) { - PressureControllerData(i).AirLoopNum = ZoneEquipConfig(j).InletNodeAirLoopNum(k); - if (PressureControllerData(i).ControlTypeSet == PressureCtrlRelief) { - PressureControllerData(i).OANodeNum = PrimaryAirSystem(PressureControllerData(i).AirLoopNum).OAMixOAInNodeNum; - for (n = 1; n <= NumOfReliefFans; ++n) { - if (DisSysCompReliefAirData(n).OutletNode == PressureControllerData(i).OANodeNum) { - DisSysCompReliefAirData(n).PressCtrlNum = i; - } + if (OnOffFanFlag) { + for (j = 1; j <= AirflowNetworkNumOfZones; ++j) { + if (!ZoneEquipConfig(AirflowNetworkNodeData(j).EPlusZoneNum).IsControlled) continue; + for (i = 1; i <= DisSysNumOfCVFs; i++) { + if (DisSysCompCVFData(i).AirLoopNum == AirflowNetworkNodeData(j).AirLoopNum && + DisSysCompCVFData(i).FanTypeNum != FanType_SimpleOnOff) { + SetupOutputVariable("AFN Node Total Pressure", + OutputProcessor::Unit::Pa, + AirflowNetworkNodeSimu(j).PZ, + "System", + "Average", + AirflowNetworkNodeData(j).Name); + } + } + } + for (i = 1; i <= NumOfLinksMultiZone; ++i) { + if (!ZoneEquipConfig(AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).EPlusZoneNum).IsControlled) continue; + for (j = 1; j <= DisSysNumOfCVFs; j++) { + if (DisSysCompCVFData(j).AirLoopNum == AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[0]).AirLoopNum && + DisSysCompCVFData(j).FanTypeNum != FanType_SimpleOnOff) { + SetupOutputVariable("AFN Linkage Node 1 to Node 2 Mass Flow Rate", + OutputProcessor::Unit::kg_s, + AirflowNetworkLinkReport(i).FLOW, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + SetupOutputVariable("AFN Linkage Node 2 to Node 1 Mass Flow Rate", + OutputProcessor::Unit::kg_s, + AirflowNetworkLinkReport(i).FLOW2, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + SetupOutputVariable("AFN Linkage Node 1 to Node 2 Volume Flow Rate", + OutputProcessor::Unit::m3_s, + AirflowNetworkLinkReport(i).VolFLOW, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + SetupOutputVariable("AFN Linkage Node 2 to Node 1 Volume Flow Rate", + OutputProcessor::Unit::m3_s, + AirflowNetworkLinkReport(i).VolFLOW2, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + SetupOutputVariable("AFN Linkage Node 1 to Node 2 Pressure Difference", + OutputProcessor::Unit::Pa, + AirflowNetworkLinkSimu(i).DP, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + } + } + } + } + } + bool FanModelConstFlag = false; + for (i = 1; i <= DisSysNumOfCVFs; i++) { + if (DisSysCompCVFData(i).FanModelFlag) { + int fanIndex = HVACFan::getFanObjectVectorIndex(DisSysCompCVFData(i).Name); + if (DisSysCompCVFData(i).FanTypeNum == FanType_SimpleOnOff && HVACFan::fanObjs[fanIndex]->AirPathFlag) { + DisSysCompCVFData(i).FanTypeNum = FanType_SimpleConstVolume; + SupplyFanType = FanType_SimpleConstVolume; + FanModelConstFlag = true; + break; + } + } + } + if (FanModelConstFlag) { + for (i = 1; i <= AirflowNetworkNumOfSurfaces; ++i) { + if (SupplyFanType == FanType_SimpleConstVolume) { + SetupOutputVariable("AFN Linkage Node 1 to Node 2 Mass Flow Rate", + OutputProcessor::Unit::kg_s, + AirflowNetworkLinkReport(i).FLOW, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + SetupOutputVariable("AFN Linkage Node 2 to Node 1 Mass Flow Rate", + OutputProcessor::Unit::kg_s, + AirflowNetworkLinkReport(i).FLOW2, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + SetupOutputVariable("AFN Linkage Node 1 to Node 2 Volume Flow Rate", + OutputProcessor::Unit::m3_s, + AirflowNetworkLinkReport(i).VolFLOW, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + SetupOutputVariable("AFN Linkage Node 2 to Node 1 Volume Flow Rate", + OutputProcessor::Unit::m3_s, + AirflowNetworkLinkReport(i).VolFLOW2, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + SetupOutputVariable("AFN Linkage Node 1 to Node 2 Pressure Difference", + OutputProcessor::Unit::Pa, + AirflowNetworkLinkSimu(i).DP, + "System", + "Average", + AirflowNetworkLinkageData(i).Name); + } + } + } + + // Add AirLoopNum to pressure control object + for (i = 1; i <= NumOfPressureControllers; ++i) { + for (j = 1; j <= NumOfZones; ++j) { + if (PressureControllerData(i).ZoneNum == j) { + for (k = 1; k <= ZoneEquipConfig(j).NumInletNodes; ++k) { + if (ZoneEquipConfig(j).InletNodeAirLoopNum(k) > 0) { + PressureControllerData(i).AirLoopNum = ZoneEquipConfig(j).InletNodeAirLoopNum(k); + if (PressureControllerData(i).ControlTypeSet == PressureCtrlRelief) { + PressureControllerData(i).OANodeNum = PrimaryAirSystem(PressureControllerData(i).AirLoopNum).OAMixOAInNodeNum; + for (n = 1; n <= NumOfReliefFans; ++n) { + if (DisSysCompReliefAirData(n).OutletNode == PressureControllerData(i).OANodeNum) { + DisSysCompReliefAirData(n).PressCtrlNum = i; } } - if (PressureControllerData(i).ControlTypeSet == PressureCtrlExhaust) { - PressureControllerData(i).OANodeNum = ZoneEquipConfig(PressureControllerData(i).ZoneNum).ExhaustNode(1); - for (n = 1; n <= AirflowNetworkNumOfExhFan; ++n) { - if (MultizoneCompExhaustFanData(n).EPlusZoneNum == PressureControllerData(i).ZoneNum) { - MultizoneCompExhaustFanData(n).PressCtrlNum = i; - } + } + if (PressureControllerData(i).ControlTypeSet == PressureCtrlExhaust) { + PressureControllerData(i).OANodeNum = ZoneEquipConfig(PressureControllerData(i).ZoneNum).ExhaustNode(1); + for (n = 1; n <= AirflowNetworkNumOfExhFan; ++n) { + if (MultizoneCompExhaustFanData(n).EPlusZoneNum == PressureControllerData(i).ZoneNum) { + MultizoneCompExhaustFanData(n).PressCtrlNum = i; } } } @@ -10390,58 +10382,60 @@ namespace AirflowNetworkBalanceManager { } } } + } - // Check number of fans specified in an AirLoop #6748 - int BranchNum; - int CompNum; - int NumOfFans; - std::string FanNames; - for (BranchNum = 1; BranchNum <= PrimaryAirSystem(1).NumBranches; ++BranchNum) { - NumOfFans = 0; - FanNames = ""; - for (CompNum = 1; CompNum <= PrimaryAirSystem(1).Branch(BranchNum).TotalComponents; ++CompNum) { - if (UtilityRoutines::SameString(PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).TypeOf, "Fan:ConstantVolume") || - UtilityRoutines::SameString(PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).TypeOf, "Fan:OnOff") || - UtilityRoutines::SameString(PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).TypeOf, "Fan:VariableVolume")) { - NumOfFans++; - if (NumOfFans > 1) { - FanNames += PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).Name; - break; - } else { - FanNames += PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).Name + ","; - } + // Check number of fans specified in an AirLoop #6748 + int BranchNum; + int CompNum; + int NumOfFans; + std::string FanNames; + for (BranchNum = 1; BranchNum <= PrimaryAirSystem(1).NumBranches; ++BranchNum) { + NumOfFans = 0; + FanNames = ""; + for (CompNum = 1; CompNum <= PrimaryAirSystem(1).Branch(BranchNum).TotalComponents; ++CompNum) { + if (UtilityRoutines::SameString(PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).TypeOf, "Fan:ConstantVolume") || + UtilityRoutines::SameString(PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).TypeOf, "Fan:OnOff") || + UtilityRoutines::SameString(PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).TypeOf, "Fan:VariableVolume")) { + NumOfFans++; + if (NumOfFans > 1) { + FanNames += PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).Name; + break; + } else { + FanNames += PrimaryAirSystem(1).Branch(BranchNum).Comp(CompNum).Name + ","; } } - if (NumOfFans > 1) break; - } - if (NumOfFans > 1) { - ShowSevereError(RoutineName + "An AirLoop branch, " + PrimaryAirSystem(1).Branch(BranchNum).Name + - ", has two or more fans: " + FanNames); - ShowContinueError( - "The AirflowNetwork model allows a single supply fan in an AirLoop only. Please make changes in the input file accordingly."); - ErrorsFound = true; } + if (NumOfFans > 1) break; + } + if (NumOfFans > 1) { + ShowSevereError(RoutineName + "An AirLoop branch, " + PrimaryAirSystem(1).Branch(BranchNum).Name + + ", has two or more fans: " + FanNames); + ShowContinueError( + "The AirflowNetwork model allows a single supply fan in an AirLoop only. Please make changes in the input file accordingly."); + ErrorsFound = true; + } - OneTimeFlag = false; - if (ErrorsFound) { - ShowFatalError(RoutineName + "Program terminates for preceding reason(s)."); - } + if (ErrorsFound) { + ShowFatalError(RoutineName + "Program terminates for preceding reason(s)."); } + } + + void ValidateFanFlowRate() { + // Catch a fan flow rate from EPlus input file and add a flag for VAV terminal damper - for (i = 1; i <= AirflowNetworkNumOfLinks; ++i) { + for (int i = 1; i <= AirflowNetworkNumOfLinks; ++i) { { auto const SELECT_CASE_var(AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).CompTypeNum); if (SELECT_CASE_var == CompTypeNum_CVF) { // 'CVF' - j = AirflowNetworkNodeData(AirflowNetworkLinkageData(i).NodeNums[1]).EPlusNodeNum; - k = AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum; - FanFlow = Node(j).MassFlowRate; - if (DisSysCompCVFData(k).FanTypeNum == FanType_SimpleVAV) { - if (DisSysCompCVFData(k).FanModelFlag) { - DisSysCompCVFData(k).MaxAirMassFlowRate = HVACFan::fanObjs[DisSysCompCVFData(k).FanIndex]->designAirVolFlowRate * StdRhoAir; + int typeNum = AirflowNetworkCompData(AirflowNetworkLinkageData(i).CompNum).TypeNum; + if (DisSysCompCVFData(typeNum).FanTypeNum == FanType_SimpleVAV) { + if (DisSysCompCVFData(typeNum).FanModelFlag) { + DisSysCompCVFData(typeNum).MaxAirMassFlowRate = HVACFan::fanObjs[DisSysCompCVFData(typeNum).FanIndex]->designAirVolFlowRate * StdRhoAir; } else { - GetFanVolFlow(DisSysCompCVFData(k).FanIndex, FanFlow); - DisSysCompCVFData(k).MaxAirMassFlowRate = FanFlow * StdRhoAir; + Real64 FanFlow; // Return type + GetFanVolFlow(DisSysCompCVFData(typeNum).FanIndex, FanFlow); + DisSysCompCVFData(typeNum).MaxAirMassFlowRate = FanFlow * StdRhoAir; } } } else if (SELECT_CASE_var == CompTypeNum_FAN) { //'FAN' @@ -10573,7 +10567,7 @@ namespace AirflowNetworkBalanceManager { if (ErrorsFound) { ShowFatalError(RoutineName + "Program terminates for preceding reason(s)."); } - } + } // End if OneTimeFlag } void HybridVentilationControl() diff --git a/src/EnergyPlus/AirflowNetworkBalanceManager.hh b/src/EnergyPlus/AirflowNetworkBalanceManager.hh index ffe7dc896e9..790f0fd0be0 100644 --- a/src/EnergyPlus/AirflowNetworkBalanceManager.hh +++ b/src/EnergyPlus/AirflowNetworkBalanceManager.hh @@ -228,6 +228,8 @@ namespace AirflowNetworkBalanceManager { void ValidateDistributionSystem(); + void ValidateFanFlowRate(); // Catch a fan flow rate from EPlus input file and add a flag for VAV terminal damper + void ValidateExhaustFanInput(); void HybridVentilationControl(); diff --git a/src/EnergyPlus/BranchNodeConnections.cc b/src/EnergyPlus/BranchNodeConnections.cc index 3a609577bf5..0b5e71fb884 100644 --- a/src/EnergyPlus/BranchNodeConnections.cc +++ b/src/EnergyPlus/BranchNodeConnections.cc @@ -1418,11 +1418,15 @@ namespace BranchNodeConnections { if (InletNode != "UNDEFINED") { if (CompSets(Count).InletNodeName != "UNDEFINED") { if (InletNode != CompSets(Count).InletNodeName) continue; + } else { + CompSets(Count).InletNodeName = InletNode; } } if (OutletNode != "UNDEFINED") { if (CompSets(Count).OutletNodeName != "UNDEFINED") { if (OutletNode != CompSets(Count).OutletNodeName) continue; + } else { + CompSets(Count).OutletNodeName = OutletNode; } } // See if something undefined and set here diff --git a/src/EnergyPlus/CMakeLists.txt b/src/EnergyPlus/CMakeLists.txt index 60a9c4b5682..336490bddb6 100644 --- a/src/EnergyPlus/CMakeLists.txt +++ b/src/EnergyPlus/CMakeLists.txt @@ -19,6 +19,8 @@ SET( SRC "${CMAKE_SOURCE_DIR}/third_party/milo/ieee754.h" AirflowNetworkBalanceManager.cc AirflowNetworkBalanceManager.hh + AirLoopHVACDOAS.cc + AirLoopHVACDOAS.hh AirTerminalUnit.hh BaseboardElectric.cc BaseboardElectric.hh @@ -651,7 +653,7 @@ add_subdirectory(AirflowNetwork) # first we will create a static library of EnergyPlus # this will be linked statically to create the DLL and also the unit tests add_library( energypluslib STATIC ${SRC} ) -target_link_libraries( energypluslib objexx sqlite bcvtb epexpat epfmiimport re2 DElight libkiva Windows-CalcEngine airflownetworklib ) +target_link_libraries( energypluslib objexx sqlite bcvtb epexpat epfmiimport re2 DElight libkiva btwxt Windows-CalcEngine airflownetworklib ) add_dependencies( energypluslib GenerateEmbeddedEpJSONSchema ) if(BUILD_GROUND_PLOT) set_source_files_properties(HeatBalanceKivaManager.cc PROPERTIES COMPILE_DEFINITIONS GROUND_PLOT) diff --git a/src/EnergyPlus/ChilledCeilingPanelSimple.cc b/src/EnergyPlus/ChilledCeilingPanelSimple.cc index f966669b8d1..74f9a4ec838 100644 --- a/src/EnergyPlus/ChilledCeilingPanelSimple.cc +++ b/src/EnergyPlus/ChilledCeilingPanelSimple.cc @@ -69,6 +69,7 @@ #include #include #include +#include #include #include #include @@ -595,16 +596,28 @@ namespace CoolingPanelSimple { ThisCP.FracDistribToSurf.allocate(ThisCP.TotSurfToDistrib); ThisCP.FracDistribToSurf = 0.0; + // search zone equipment list structure for zone index + for (int ctrlZone = 1; ctrlZone <= DataGlobals::NumOfZones; ++ctrlZone) { + for (int zoneEquipTypeNum = 1; zoneEquipTypeNum <= DataZoneEquipment::ZoneEquipList(ctrlZone).NumOfEquipTypes; ++zoneEquipTypeNum) { + if (DataZoneEquipment::ZoneEquipList(ctrlZone).EquipType_Num(zoneEquipTypeNum) == DataZoneEquipment::CoolingPanel_Num && + DataZoneEquipment::ZoneEquipList(ctrlZone).EquipName(zoneEquipTypeNum) == ThisCP.EquipID) { + ThisCP.ZonePtr = ctrlZone; + } + } + } + if (ThisCP.ZonePtr <= 0) { + ShowSevereError(RoutineName + cCMO_CoolingPanel_Simple + "=\"" + ThisCP.EquipID + + "\" is not on any ZoneHVAC:EquipmentList."); + ErrorsFound = true; + continue; + } + AllFracsSummed = ThisCP.FracDistribPerson; for (SurfNum = 1; SurfNum <= ThisCP.TotSurfToDistrib; ++SurfNum) { ThisCP.SurfaceName(SurfNum) = cAlphaArgs(SurfNum + 8); - ThisCP.SurfacePtr(SurfNum) = UtilityRoutines::FindItemInList(cAlphaArgs(SurfNum + 8), Surface); + ThisCP.SurfacePtr(SurfNum) = HeatBalanceIntRadExchange::GetRadiantSystemSurface( + cCMO_CoolingPanel_Simple, ThisCP.EquipID, ThisCP.ZonePtr, ThisCP.SurfaceName(SurfNum), ErrorsFound); ThisCP.FracDistribToSurf(SurfNum) = rNumericArgs(SurfNum + 11); - if (ThisCP.SurfacePtr(SurfNum) == 0) { - ShowSevereError(RoutineName + cCMO_CoolingPanel_Simple + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(SurfNum + 8) + "=\"" + - cAlphaArgs(SurfNum + 8) + "\" invalid - not found."); - ErrorsFound = true; - } if (ThisCP.FracDistribToSurf(SurfNum) > MaxFraction) { ShowWarningError(RoutineName + cCMO_CoolingPanel_Simple + "=\"" + cAlphaArgs(1) + "\", " + cNumericFieldNames(SurfNum + 8) + "was greater than the allowable maximum."); diff --git a/src/EnergyPlus/CondenserLoopTowers.cc b/src/EnergyPlus/CondenserLoopTowers.cc index daa7afab90f..f266d355708 100644 --- a/src/EnergyPlus/CondenserLoopTowers.cc +++ b/src/EnergyPlus/CondenserLoopTowers.cc @@ -3246,9 +3246,9 @@ namespace CondenserLoopTowers { ShowSevereError("Error when autosizing the UA value for cooling tower = " + SimpleTower(TowerNum).Name + ". Design Loop Exit Temperature must be greater than " + TrimSigDigits(SimpleTower(TowerNum).DesInletAirWBTemp, 2) + " C when autosizing the tower UA."); - ShowContinueError("The Design Loop Exit Temperature specified in Sizing:Plant object = " + - PlantSizData(PltSizCondNum).PlantLoopName - + " (" + TrimSigDigits(PlantSizData(PltSizCondNum).ExitTemp, 2) + " C)"); + ShowContinueError( + "The Design Loop Exit Temperature specified in Sizing:Plant object = " + PlantSizData(PltSizCondNum).PlantLoopName + + " (" + TrimSigDigits(PlantSizData(PltSizCondNum).ExitTemp, 2) + " C)"); ShowContinueError("is less than or equal to the design inlet air wet-bulb temperature of " + TrimSigDigits(SimpleTower(TowerNum).DesInletAirWBTemp, 2) + " C."); ShowContinueError( @@ -3346,14 +3346,17 @@ namespace CondenserLoopTowers { ShowContinueError("is less than or equal to the design inlet air wet-bulb temperature of " + TrimSigDigits(SimpleTower(TowerNum).DesInletAirWBTemp, 2) + " C."); - if ( SimpleTower(TowerNum).TowerInletCondsAutoSize ) { - ShowContinueError("Because you did not specify the Design Approach Temperature, and you do not have a Sizing:Plant object, " - "it was defaulted to " + TrimSigDigits(DesTowerExitWaterTemp, 2) + " C."); + if (SimpleTower(TowerNum).TowerInletCondsAutoSize) { + ShowContinueError( + "Because you did not specify the Design Approach Temperature, and you do not have a Sizing:Plant object, " + "it was defaulted to " + + TrimSigDigits(DesTowerExitWaterTemp, 2) + " C."); } else { // Should never get there... - ShowContinueError("The Design Loop Exit Temperature is the sum of the design air inlet wet-bulb temperature= " - + TrimSigDigits(SimpleTower(TowerNum).DesInletAirWBTemp, 2) + - " C plus the cooling tower design approach temperature = " + TrimSigDigits(SimpleTower(TowerNum).DesApproach, 2) + "C."); + ShowContinueError("The Design Loop Exit Temperature is the sum of the design air inlet wet-bulb temperature= " + + TrimSigDigits(SimpleTower(TowerNum).DesInletAirWBTemp, 2) + + " C plus the cooling tower design approach temperature = " + + TrimSigDigits(SimpleTower(TowerNum).DesApproach, 2) + "C."); } ShowContinueError( "If using HVACTemplate:Plant:ChilledWaterLoop, then check that input field Condenser Water Design Setpoint must be > " + @@ -6549,8 +6552,13 @@ namespace CondenserLoopTowers { NumTransferUnits = UAactual / CapacityRatioMin; // calculate heat exchanger effectiveness if (CapacityRatio <= 0.995) { - effectiveness = (1.0 - std::exp(-1.0 * NumTransferUnits * (1.0 - CapacityRatio))) / - (1.0 - CapacityRatio * std::exp(-1.0 * NumTransferUnits * (1.0 - CapacityRatio))); + Real64 Exponent = NumTransferUnits * (1.0 - CapacityRatio); + if (Exponent >= 700.0) { + effectiveness = NumTransferUnits / (1.0 + NumTransferUnits); + } else { + effectiveness = (1.0 - std::exp(-1.0 * NumTransferUnits * (1.0 - CapacityRatio))) / + (1.0 - CapacityRatio * std::exp(-1.0 * NumTransferUnits * (1.0 - CapacityRatio))); + } } else { effectiveness = NumTransferUnits / (1.0 + NumTransferUnits); } diff --git a/src/EnergyPlus/ConvectionCoefficients.cc b/src/EnergyPlus/ConvectionCoefficients.cc index a66aad2c83e..806e2d2d269 100644 --- a/src/EnergyPlus/ConvectionCoefficients.cc +++ b/src/EnergyPlus/ConvectionCoefficients.cc @@ -1454,12 +1454,31 @@ namespace ConvectionCoefficients { } } + // Reserve space for air boundary IRT inside convection override + if (DataHeatBalance::AnyAirBoundary) ++TotIntConvCoeff; + UserIntConvectionCoeffs.allocate(TotIntConvCoeff); UserExtConvectionCoeffs.allocate(TotExtConvCoeff); TotIntConvCoeff = 0; TotExtConvCoeff = 0; + // Preset inside convection coefficient override for air boundary IRT surfaces + // Doing this here rather than try to add a new convection type for this + if (DataHeatBalance::AnyAirBoundary) { + ++TotIntConvCoeff; + UserIntConvectionCoeffs(TotIntConvCoeff).OverrideType = ConvCoefValue; + UserIntConvectionCoeffs(TotIntConvCoeff).OverrideValue = LowHConvLimit; + UserIntConvectionCoeffs(TotIntConvCoeff).SurfaceName = "Air Boundary IRT Surfaces"; + UserIntConvectionCoeffs(TotIntConvCoeff).WhichSurface = -999; + for (int surfNum : DataSurfaces::AllHTSurfaceList) { + auto & surf = Surface(surfNum); + if (DataHeatBalance::Construct(surf.Construction).TypeIsAirBoundaryIRTSurface) { + surf.IntConvCoeff = TotIntConvCoeff; + } + } + } + // Now, get for real and check for consistency CurrentModuleObject = "SurfaceProperty:ConvectionCoefficients"; Count = inputProcessor->getNumObjectsFound(CurrentModuleObject); diff --git a/src/EnergyPlus/CurveManager.cc b/src/EnergyPlus/CurveManager.cc index 13aa20df1d2..16b55658d8b 100644 --- a/src/EnergyPlus/CurveManager.cc +++ b/src/EnergyPlus/CurveManager.cc @@ -48,6 +48,9 @@ // C++ Headers #include #include +#include +#include +#include // ObjexxFCL Headers #include @@ -88,13 +91,7 @@ namespace CurveManager { // August 2010, Richard Raustad, FSEC, added Table:* objects // August 2014, Rick Strand, added a curve type (cubic-linear) // Future Improvements: - // 1) Merge TableData and TableLookup arrays. Care is needed here since the - // Table:OneIndependentVariable (and Two) use different data patterns. - // For Table:One - a one-to-one correspondence between X and Z - // For Table:Multi - not a one-to-one correspondence between X and Z - // Code does show examples of the translation so each Table object can use - // either interpolation technique. - // 2) Subroutine PerformanceTableObject is not really needed (and is probably slower) + // Subroutine PerformanceTableObject is not really needed (and is probably slower) // since Subroutine TableLookupObject can do the same thing. The difference // is that Sub PerformanceTableObject does a linear interpolation without extrapolation. // More math is also involved. Sub TableLookupObject can also do this if a) the limits @@ -133,6 +130,9 @@ namespace CurveManager { // MODULE PARAMETER DEFINITIONS static std::string const BlankString; + using json = nlohmann::json; + + // Curve Type parameters, these can differ from object types (e.g. a CurveType_TableOneIV can be linear, quadratic, etc) int const Linear(1); int const BiLinear(2); @@ -156,16 +156,14 @@ namespace CurveManager { int const ChillerPartLoadWithLift(20); // Interpolation Types - int const LinearInterpolationOfTable(1); - int const LagrangeInterpolationLinearExtrapolation(2); - int const EvaluateCurveToLimits(3); + int const EvaluateCurveToLimits(1); + int const BtwxtMethod(2); - // Data Format - int const SINGLELINEINDEPENDENTVARIABLEWITHMATRIX(1); + std::map BtwxtManager::interpMethods = + {{"Linear", Btwxt::Method::LINEAR}, {"Cubic", Btwxt::Method::CUBIC}}; - // Sort Order - int const ASCENDING(1); - int const DESCENDING(2); + std::map BtwxtManager::extrapMethods = + {{"Linear", Btwxt::Method::LINEAR}, {"Constant", Btwxt::Method::CONSTANT}}; // DERIVED TYPE DEFINITIONS @@ -178,16 +176,33 @@ namespace CurveManager { // Object Data Array1D PerfCurve; - Array1D PerfCurveTableData; - Array1D TableData; - Array1D TempTableData; - Array1D Temp2TableData; - Array1D TableLookup; + BtwxtManager btwxtManager; std::unordered_map UniqueCurveNames; // Functions + void BtwxtMessageCallback( + const Btwxt::MsgLevel messageType, + const std::string message, + void *contextPtr + ) { + std::string fullMessage = *(std::string*)contextPtr + ": " + message; + if (messageType == Btwxt::MsgLevel::MSG_ERR) { + ShowSevereError(fullMessage); + ShowFatalError("Btwxt: Errors discovered, program terminates."); + } else { + if (static_cast(messageType) >= Btwxt::LOG_LEVEL) { + if (messageType == Btwxt::MsgLevel::MSG_WARN) { + ShowWarningError(fullMessage); + } else if (messageType == Btwxt::MsgLevel::MSG_INFO) { + ShowMessage(fullMessage); + } else { + ShowMessage(fullMessage); + } + } + } + } - // Clears the global data in CurveManager. +// Clears the global data in CurveManager. // Needed for unit tests, should not be normally called. void clear_state() { @@ -195,11 +210,7 @@ namespace CurveManager { GetCurvesInputFlag = true; UniqueCurveNames.clear(); PerfCurve.deallocate(); - PerfCurveTableData.deallocate(); - TableData.deallocate(); - TempTableData.deallocate(); - Temp2TableData.deallocate(); - TableLookup.deallocate(); + btwxtManager.clear(); } void ResetPerformanceCurveOutput() @@ -314,10 +325,8 @@ namespace CurveManager { auto const SELECT_CASE_var(PerfCurve(CurveIndex).InterpolationType); if (SELECT_CASE_var == EvaluateCurveToLimits) { CurveValue = PerformanceCurveObject(CurveIndex, Var1, Var2, Var3); - } else if (SELECT_CASE_var == LinearInterpolationOfTable) { - CurveValue = PerformanceTableObject(CurveIndex, Var1, Var2, Var3); - } else if (SELECT_CASE_var == LagrangeInterpolationLinearExtrapolation) { - CurveValue = TableLookupObject(CurveIndex, Var1, Var2, Var3, Var4, Var5, Var6); + } else if (SELECT_CASE_var == BtwxtMethod) { + CurveValue = BtwxtTableInterpolation(CurveIndex, Var1, Var2, Var3, Var4, Var5, Var6); } else { ShowFatalError("CurveValue: Invalid Interpolation Type"); } @@ -389,12 +398,8 @@ namespace CurveManager { int NumBicubic; // Number of bicubic curve objects in the input data file int NumTriQuad; // Number of triquadratic curve objects in the input file int NumExponent; // Number of exponent curve objects in the input file - int NumOneVarTab; // Number of one variable table objects in the input file int NumWPCValTab; // Number of wind pressure coefficient value table objects in the input file - int NumTwoVarTab; // Number of two variable table objects in the input file int NumChillerPartLoadWithLift; // Number of ChillerPartLoadWithLift curve objects in the input data file - int NumMultVarLookup; // Number of multivariable tables - int NumLookupTables; // total number of one, two, and multivariable tables int NumFanPressRise; // cpw22Aug2010 Number of fan pressure rise curve objects in the input file int NumExpSkewNorm; // cpw22Aug2010 Number of exponential skew normal curve objects in the input file int NumSigmoid; // cpw22Aug2010 Number of sigmoid curve objects in the input file @@ -402,7 +407,6 @@ namespace CurveManager { int NumRectHyper2; // cpw22Aug2010 Number of rectangular hyperbola Type 2 curve objects in the input file int NumExpDecay; // cpw22Aug2010 Number of exponential decay curve objects in the input file int NumDoubleExpDecay; // ykt July 2011 - int NumTables; // Total tables in the input file int CurveIndex; // do loop index int CurveNum; // current curve number Array1D_string Alphas(14); // Alpha items for object @@ -412,29 +416,9 @@ namespace CurveManager { int IOStatus; // Used in GetObjectItem std::string CurrentModuleObject; // for ease in renaming. static int MaxTableNums(0); // Maximum number of numeric input fields in Tables - static int MaxTableData(0); // Maximum number of numeric input field pairs in Tables - static int TotalArgs(0); // Total number of alpha and numeric arguments (max) for a // certain object in the input file - static int TableNum(0); // Index to TableData structure - static int TableDataIndex(0); // Loop counter for table data - static int NumTableEntries(0); // Number of data pairs in table data - int NumXVar; - int NumX2Var; - Array1D XVar; - Array1D X2Var; - int VarIndex; - int TempVarIndex; - int TempVarIndex1; - Real64 MinTableData(999999.0); - Real64 MaxTableDataValue; - int NextXVar; - bool FoundNewData; - Array1D TempArray1; - Array1D TempArray2; - Array1D TempArray3; std::string FileName; // name of external table data file - bool ReadFromFile; // True if external data file exists // Find the number of each type of curve (note: Current Module object not used here, must rename manually) @@ -449,7 +433,7 @@ namespace CurveManager { NumBicubic = inputProcessor->getNumObjectsFound("Curve:Bicubic"); NumTriQuad = inputProcessor->getNumObjectsFound("Curve:Triquadratic"); NumExponent = inputProcessor->getNumObjectsFound("Curve:Exponent"); - NumMultVarLookup = inputProcessor->getNumObjectsFound("Table:MultiVariableLookup"); + int NumTableLookup = inputProcessor->getNumObjectsFound("Table:Lookup"); NumFanPressRise = inputProcessor->getNumObjectsFound("Curve:FanPressureRise"); // cpw22Aug2010 NumExpSkewNorm = inputProcessor->getNumObjectsFound("Curve:ExponentialSkewNormal"); // cpw22Aug2010 NumSigmoid = inputProcessor->getNumObjectsFound("Curve:Sigmoid"); // cpw22Aug2010 @@ -459,43 +443,15 @@ namespace CurveManager { NumDoubleExpDecay = inputProcessor->getNumObjectsFound("Curve:DoubleExponentialDecay"); // ykt July 2011 NumChillerPartLoadWithLift = inputProcessor->getNumObjectsFound("Curve:ChillerPartLoadWithLift"); // zrp_Aug2014 - NumOneVarTab = inputProcessor->getNumObjectsFound("Table:OneIndependentVariable"); NumWPCValTab = inputProcessor->getNumObjectsFound("AirflowNetwork:MultiZone:WindPressureCoefficientValues"); - NumTwoVarTab = inputProcessor->getNumObjectsFound("Table:TwoIndependentVariables"); NumCurves = NumBiQuad + NumCubic + NumQuad + NumQuadLinear + NumCubicLinear + NumLinear + NumBicubic + NumTriQuad + NumExponent + NumQuartic + - NumOneVarTab + NumTwoVarTab + NumMultVarLookup + NumFanPressRise + NumExpSkewNorm + NumSigmoid + NumRectHyper1 + NumRectHyper2 + + NumTableLookup + NumFanPressRise + NumExpSkewNorm + NumSigmoid + NumRectHyper1 + NumRectHyper2 + NumExpDecay + NumDoubleExpDecay + NumQLinear + NumChillerPartLoadWithLift + NumWPCValTab; - // intermediate count for one and two variable performance tables - NumTables = NumOneVarTab + NumTwoVarTab + NumWPCValTab; - // final count for all tables - NumLookupTables = NumOneVarTab + NumTwoVarTab + NumMultVarLookup + NumWPCValTab; - if (NumLookupTables > 0) TableLookup.allocate(NumLookupTables); - - if (NumOneVarTab > 0) { - inputProcessor->getObjectDefMaxArgs("Table:OneIndependentVariable", TotalArgs, NumAlphas, NumNumbers); - MaxTableNums = max(MaxTableNums, NumNumbers); - MaxTableData = max(MaxTableData, MaxTableNums); - } - if (NumWPCValTab > 0) { - inputProcessor->getObjectDefMaxArgs("AirflowNetwork:MultiZone:WindPressureCoefficientValues", TotalArgs, NumAlphas, NumNumbers); - MaxTableNums = max(MaxTableNums, NumNumbers); - MaxTableData = max(MaxTableData, MaxTableNums); - } - if (NumTwoVarTab > 0) { - inputProcessor->getObjectDefMaxArgs("Table:TwoIndependentVariables", TotalArgs, NumAlphas, NumNumbers); - MaxTableNums = max(MaxTableNums, NumNumbers); - MaxTableData = max(MaxTableData, MaxTableNums); - } - // allocate the data structure PerfCurve.allocate(NumCurves); UniqueCurveNames.reserve(NumCurves); - PerfCurveTableData.allocate(NumLookupTables); - TableData.allocate(NumLookupTables); - TempTableData.allocate(NumTables); - Temp2TableData.allocate(NumTables); // initialize the array CurveNum = 0; @@ -1704,235 +1660,6 @@ namespace CurveManager { } } } // Exponential Decay - TableNum = 0; - - // Loop over one variable tables and load data - CurrentModuleObject = "Table:OneIndependentVariable"; - for (CurveIndex = 1; CurveIndex <= NumOneVarTab; ++CurveIndex) { - inputProcessor->getObjectItem(CurrentModuleObject, - CurveIndex, - Alphas, - NumAlphas, - Numbers, - NumNumbers, - IOStatus, - lNumericFieldBlanks, - _, - cAlphaFieldNames, - cNumericFieldNames); - ++CurveNum; - ++TableNum; - NumTableEntries = (NumNumbers - 5) / 2; - TableData(TableNum).X1.allocate(NumTableEntries); - TableData(TableNum).Y.allocate(NumTableEntries); - GlobalNames::VerifyUniqueInterObjectName(UniqueCurveNames, Alphas(1), CurrentModuleObject, cAlphaFieldNames(1), ErrorsFound); - PerfCurve(CurveNum).Name = Alphas(1); - PerfCurve(CurveNum).ObjectType = CurrentModuleObject; - PerfCurve(CurveNum).NumDims = 1; - PerfCurve(CurveNum).TableIndex = TableNum; - { - auto const SELECT_CASE_var(Alphas(2)); - if (SELECT_CASE_var == "LINEAR") { - PerfCurve(CurveNum).CurveType = Linear; - TableLookup(TableNum).InterpolationOrder = 2; - } else if (SELECT_CASE_var == "QUADRATIC") { - PerfCurve(CurveNum).CurveType = Quadratic; - TableLookup(TableNum).InterpolationOrder = 3; - } else if (SELECT_CASE_var == "CUBIC") { - PerfCurve(CurveNum).CurveType = Cubic; - TableLookup(TableNum).InterpolationOrder = 4; - } else if (SELECT_CASE_var == "QUARTIC") { - PerfCurve(CurveNum).CurveType = Quartic; - TableLookup(TableNum).InterpolationOrder = 5; - } else { - if (Alphas(3) == "EVALUATECURVETOLIMITS") { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(2) + " [" + Alphas(2) + "] is not a valid choice. "); - ErrorsFound = true; - } - } - } - - { - auto const SELECT_CASE_var(Alphas(3)); - if (SELECT_CASE_var == "LINEARINTERPOLATIONOFTABLE") { - PerfCurve(CurveNum).InterpolationType = LinearInterpolationOfTable; - } else if (SELECT_CASE_var == "LAGRANGEINTERPOLATIONLINEAREXTRAPOLATION") { - PerfCurve(CurveNum).InterpolationType = LagrangeInterpolationLinearExtrapolation; - } else if (SELECT_CASE_var == "EVALUATECURVETOLIMITS") { - PerfCurve(CurveNum).InterpolationType = EvaluateCurveToLimits; - } else { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(2) + " [" + Alphas(2) + "] is not a valid choice. "); - ErrorsFound = true; - } - } - - if (lNumericFieldBlanks(1)) { - PerfCurve(CurveNum).Var1Min = -99999999999.0; - } else { - PerfCurve(CurveNum).Var1Min = Numbers(1); - PerfCurve(CurveNum).Var1MinPresent = true; - } - if (lNumericFieldBlanks(2)) { - PerfCurve(CurveNum).Var1Max = 99999999999.0; - } else { - PerfCurve(CurveNum).Var1Max = Numbers(2); - PerfCurve(CurveNum).Var1MaxPresent = true; - } - - if (Numbers(1) > Numbers(2)) { // error - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(1) + " [" + RoundSigDigits(Numbers(1), 2) + "] > " + cNumericFieldNames(2) + " [" + - RoundSigDigits(Numbers(2), 2) + ']'); - ErrorsFound = true; - } - if (NumAlphas >= 4) { - if (!IsCurveInputTypeValid(Alphas(4))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(4) + " [" + Alphas(4) + "] is invalid"); - } - } - if (NumAlphas >= 5) { - if (!IsCurveOutputTypeValid(Alphas(5))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(5) + " [" + Alphas(5) + "] is invalid"); - } - } - - // read this value first to allow normalization of min/max table output fields - if (!lNumericFieldBlanks(5)) { - TableData(TableNum).NormalPoint = Numbers(5); - if (Numbers(5) == 0.0) { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("..." + cNumericFieldNames(5) + " [" + RoundSigDigits(Numbers(5), 6) + "] is not a valid choice."); - ShowContinueError("...Setting Normalization Reference to 1 and the simulation continues."); - TableData(TableNum).NormalPoint = 1.0; - } - } else { - TableData(TableNum).NormalPoint = 1.0; - } - - if (!lNumericFieldBlanks(3)) { - PerfCurve(CurveNum).CurveMin = Numbers(3) / TableData(TableNum).NormalPoint; - PerfCurve(CurveNum).CurveMinPresent = true; - } - if (!lNumericFieldBlanks(4)) { - PerfCurve(CurveNum).CurveMax = Numbers(4) / TableData(TableNum).NormalPoint; - PerfCurve(CurveNum).CurveMaxPresent = true; - } - - MaxTableNums = (NumNumbers - 5) / 2; - if (mod((NumNumbers - 5), 2) != 0) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("The number of data entries must be evenly divisable by 2. Number of data entries = " + - RoundSigDigits(NumNumbers - 5)); - ErrorsFound = true; - } else { - for (TableDataIndex = 1; TableDataIndex <= MaxTableNums; ++TableDataIndex) { - TableData(TableNum).X1(TableDataIndex) = Numbers((TableDataIndex - 1) * 2 + 5 + 1); - TableData(TableNum).Y(TableDataIndex) = Numbers((TableDataIndex - 1) * 2 + 5 + 2) / TableData(TableNum).NormalPoint; - } - } - - // convert raw table data to multidimensional array - // find number of x variables - NumXVar = 1; - NextXVar = 1; - TempTableData = TableData; - while (NumXVar <= MaxTableNums) { - - MinTableData = minval(TempTableData(TableNum).X1); - for (VarIndex = 1; VarIndex <= MaxTableNums; ++VarIndex) { - if (TempTableData(TableNum).X1(VarIndex) == MinTableData) { - TableData(TableNum).X1(NumXVar) = TempTableData(TableNum).X1(VarIndex); - TableData(TableNum).Y(NumXVar) = TempTableData(TableNum).Y(VarIndex); - TempTableData(TableNum).X1(VarIndex) = 999999.0; - ++NumXVar; - } - } - - NextXVar = NumXVar; - } - - // move table data to performance curve table data structure - PerfCurveTableData(TableNum).X1.allocate(NumXVar - 1); - PerfCurveTableData(TableNum).Y.allocate(1, NumXVar - 1); - PerfCurveTableData(TableNum).X1 = TableData(TableNum).X1; - for (VarIndex = 1; VarIndex <= NumXVar - 1; ++VarIndex) { - PerfCurveTableData(TableNum).Y(1, VarIndex) = TableData(TableNum).Y(VarIndex); - } - - // create curve objects when regression analysis is required - if (PerfCurve(CurveNum).InterpolationType == EvaluateCurveToLimits) { - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if ((SELECT_CASE_var == Linear) || (SELECT_CASE_var == Quadratic) || (SELECT_CASE_var == Cubic) || (SELECT_CASE_var == Quartic)) { - TempArray1 = PerfCurveTableData(TableNum).X1; - TempArray2.allocate(size(PerfCurveTableData(TableNum).Y)); - for (VarIndex = 1; VarIndex <= isize(PerfCurveTableData(TableNum).Y); ++VarIndex) { - TempArray2(VarIndex) = PerfCurveTableData(TableNum).Y(1, VarIndex); - } - SolveRegression(CurveNum, CurrentModuleObject, PerfCurve(CurveNum).Name, TempArray1, TempArray2); - TempArray1.deallocate(); - TempArray2.deallocate(); - } else { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("The requested regression analysis is not available at this time. Curve type = " + Alphas(2)); - PerfCurve(CurveIndex).InterpolationType = LinearInterpolationOfTable; - } - } - if (!PerfCurve(CurveNum).Var1MinPresent) { - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); - } - if (!PerfCurve(CurveNum).Var1MaxPresent) { - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); - } - } - - // if user enters limits that exceed data range, warn that limits are based on table data - if (PerfCurve(CurveNum).InterpolationType == LinearInterpolationOfTable) { - if (PerfCurve(CurveNum).Var1MinPresent) { - if (PerfCurve(CurveNum).Var1Min < minval(TableData(TableNum).X1)) { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(1) + " exceeds the data range and will not be used."); - ShowContinueError(" Entered value = " + RoundSigDigits(Numbers(1), 6) + - ", Minimum data range = " + RoundSigDigits(minval(TableData(TableNum).X1), 6)); - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); - } - } else { - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); - } - if (PerfCurve(CurveNum).Var1MaxPresent) { - if (PerfCurve(CurveNum).Var1Max > maxval(TableData(TableNum).X1)) { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(2) + " exceeds the data range and will not be used."); - ShowContinueError(" Entered value = " + RoundSigDigits(Numbers(2), 6) + - ", Maximum data range = " + RoundSigDigits(maxval(TableData(TableNum).X1), 6)); - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); - } - } else { - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); - } - } - - // if user does not enter limits, set to min/max in table - if (PerfCurve(CurveNum).InterpolationType == LagrangeInterpolationLinearExtrapolation) { - if (!PerfCurve(CurveNum).Var1MinPresent) { - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); - } - if (!PerfCurve(CurveNum).Var1MaxPresent) { - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); - } - } - - // move table data to more compact array to allow interpolation using multivariable lookup table method - TableLookup(TableNum).NumX1Vars = size(PerfCurveTableData(TableNum).X1); - TableLookup(TableNum).X1Var.allocate(TableLookup(TableNum).NumX1Vars); - TableLookup(TableNum).TableLookupZData.allocate(1, 1, 1, 1, 1, size(PerfCurveTableData(TableNum).Y)); - TableLookup(TableNum).X1Var = PerfCurveTableData(TableNum).X1; - TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, 1, _) = PerfCurveTableData(TableNum).Y(1, _); - } // Loop over wind pressure coefficient tables and load data if (NumWPCValTab > 0) { @@ -2002,10 +1729,6 @@ namespace CurveManager { cAlphaFieldNames, cNumericFieldNames); ++CurveNum; - ++TableNum; - NumTableEntries = NumNumbers; - TableData(TableNum).X1.allocate(NumTableEntries + 1); - TableData(TableNum).Y.allocate(NumTableEntries + 1); GlobalNames::VerifyUniqueInterObjectName(UniqueCurveNames, Alphas(1), CurrentModuleObject, cAlphaFieldNames(1), ErrorsFound); // Ensure the CP array name should be the same as the name of AirflowNetwork:MultiZone:WindPressureCoefficientArray @@ -2019,19 +1742,17 @@ namespace CurveManager { PerfCurve(CurveNum).Name = Alphas(1); PerfCurve(CurveNum).ObjectType = CurrentModuleObject; PerfCurve(CurveNum).NumDims = 1; - PerfCurve(CurveNum).TableIndex = TableNum; - PerfCurve(CurveNum).CurveType = Linear; - TableLookup(TableNum).InterpolationOrder = 2; - PerfCurve(CurveNum).InterpolationType = LinearInterpolationOfTable; + PerfCurve(CurveNum).InterpolationType = BtwxtMethod; + + std::string contextString = CurrentModuleObject + " \"" + Alphas(1) + "\""; + Btwxt::setMessageCallback(CurveManager::BtwxtMessageCallback, &contextString); PerfCurve(CurveNum).Var1Min = 0.0; PerfCurve(CurveNum).Var1MinPresent = true; PerfCurve(CurveNum).Var1Max = 360.0; PerfCurve(CurveNum).Var1MaxPresent = true; - TableData(TableNum).NormalPoint = 1.0; - PerfCurve(CurveNum).CurveMin = -1.0; PerfCurve(CurveNum).CurveMinPresent = true; @@ -2046,1054 +1767,450 @@ namespace CurveManager { RoundSigDigits(NumNumbers)); ErrorsFound = true; } else { - for (TableDataIndex = 1; TableDataIndex <= MaxTableNums; ++TableDataIndex) { - TableData(TableNum).X1(TableDataIndex) = windDirs[TableDataIndex - 1]; - TableData(TableNum).Y(TableDataIndex) = Numbers(TableDataIndex); - } - TableData(TableNum).X1(MaxTableNums + 1) = 360.0; - TableData(TableNum).Y(MaxTableNums + 1) = Numbers(1); - } + std::vector axis; + std::vector lookupValues; - // Convert raw table data to multidimensional array - // Find number of x variables - MaxTableNums += 1; - NumXVar = 1; - NextXVar = 1; - TempTableData = TableData; - while (NumXVar <= MaxTableNums) { - - MinTableData = minval(TempTableData(TableNum).X1); - for (VarIndex = 1; VarIndex <= MaxTableNums; ++VarIndex) { - if (TempTableData(TableNum).X1(VarIndex) == MinTableData) { - TableData(TableNum).X1(NumXVar) = TempTableData(TableNum).X1(VarIndex); - TableData(TableNum).Y(NumXVar) = TempTableData(TableNum).Y(VarIndex); - TempTableData(TableNum).X1(VarIndex) = 999999.0; - ++NumXVar; - } + for (int TableDataIndex = 1; TableDataIndex <= MaxTableNums; ++TableDataIndex) { + axis.push_back(windDirs[TableDataIndex - 1]); + lookupValues.push_back(Numbers(TableDataIndex)); + } + if (axis[axis.size() - 1] < 360.0) { + axis.push_back(360.0); + lookupValues.push_back(Numbers(1)); } - NextXVar = NumXVar; - } + std::vector gridAxes; + gridAxes.emplace_back(axis, Btwxt::Method::LINEAR, Btwxt::Method::LINEAR, std::pair {0.0, 360.0}); - // Move table data to performance curve table data structure - PerfCurveTableData(TableNum).X1.allocate(NumXVar - 1); - PerfCurveTableData(TableNum).Y.allocate(1, NumXVar - 1); - PerfCurveTableData(TableNum).X1 = TableData(TableNum).X1; - for (VarIndex = 1; VarIndex <= NumXVar - 1; ++VarIndex) { - PerfCurveTableData(TableNum).Y(1, VarIndex) = TableData(TableNum).Y(VarIndex); + auto gridIndex = btwxtManager.addGrid(Alphas(1), Btwxt::GriddedData(gridAxes)); + PerfCurve(CurveNum).TableIndex = gridIndex; + PerfCurve(CurveNum).GridValueIndex = btwxtManager.addOutputValues(gridIndex, lookupValues); } - - // move table data to more compact array to allow interpolation using multivariable lookup table method - TableLookup(TableNum).NumX1Vars = size(PerfCurveTableData(TableNum).X1); - TableLookup(TableNum).X1Var.allocate(TableLookup(TableNum).NumX1Vars); - TableLookup(TableNum).TableLookupZData.allocate(1, 1, 1, 1, 1, size(PerfCurveTableData(TableNum).Y)); - TableLookup(TableNum).X1Var = PerfCurveTableData(TableNum).X1; - TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, 1, _) = PerfCurveTableData(TableNum).Y(1, _); } } } - /* - for (CurveIndex = 1; CurveIndex <= NumOneVarTab; ++CurveIndex) { - inputProcessor->getObjectItem(CurrentModuleObject, CurveIndex, Alphas, NumAlphas, Numbers, NumNumbers, IOStatus, lNumericFieldBlanks, - _, cAlphaFieldNames, cNumericFieldNames); - ++CurveNum; - ++TableNum; - NumTableEntries = (NumNumbers - 5) / 2; - TableData(TableNum).X1.allocate(NumTableEntries); - TableData(TableNum).Y.allocate(NumTableEntries); - IsNotOK = false; - IsBlank = false; - VerifyName(Alphas(1), PerfCurve, CurveNum - 1, IsNotOK, IsBlank, CurrentModuleObject + " Name"); - if (IsNotOK) { - ErrorsFound = true; - if (IsBlank) Alphas(1) = "xxxxx"; - } - // Need to verify that this name isn't used in Pressure Curves as well. - if (NumPressureCurves > 0) { - CurveFound = UtilityRoutines::FindItemInList(Alphas(1), PressureCurve); - if (CurveFound != 0) { - ShowSevereError("GetCurveInput: " + CurrentModuleObject + "=\"" + Alphas(1) + "\", duplicate curve name."); - ShowContinueError("...Curve name duplicates one of the Pressure Curves. Names must be unique across all curves."); - ErrorsFound = true; - } - } - PerfCurve(CurveNum).Name = Alphas(1); - PerfCurve(CurveNum).ObjectType = CurveType_TableOneIV; - PerfCurve(CurveNum).TableIndex = TableNum; - { auto const SELECT_CASE_var(Alphas(2)); - if (SELECT_CASE_var == "LINEAR") { - PerfCurve(CurveNum).CurveType = Linear; - TableLookup(TableNum).InterpolationOrder = 2; - } - else if (SELECT_CASE_var == "QUADRATIC") { - PerfCurve(CurveNum).CurveType = Quadratic; - TableLookup(TableNum).InterpolationOrder = 3; - } - else if (SELECT_CASE_var == "CUBIC") { - PerfCurve(CurveNum).CurveType = Cubic; - TableLookup(TableNum).InterpolationOrder = 4; - } - else if (SELECT_CASE_var == "QUARTIC") { - PerfCurve(CurveNum).CurveType = Quartic; - TableLookup(TableNum).InterpolationOrder = 5; - } - else if (SELECT_CASE_var == "EXPONENT") { - PerfCurve(CurveNum).CurveType = Exponent; - TableLookup(TableNum).InterpolationOrder = 4; - } - else { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(2) + " [" + Alphas(2) + "] is not a valid choice. "); - ErrorsFound = true; - }} - { auto const SELECT_CASE_var(Alphas(3)); - if (SELECT_CASE_var == "LINEARINTERPOLATIONOFTABLE") { - PerfCurve(CurveNum).InterpolationType = LinearInterpolationOfTable; - } - else if (SELECT_CASE_var == "LAGRANGEINTERPOLATIONLINEAREXTRAPOLATION") { - PerfCurve(CurveNum).InterpolationType = LagrangeInterpolationLinearExtrapolation; - } - else if (SELECT_CASE_var == "EVALUATECURVETOLIMITS") { - PerfCurve(CurveNum).InterpolationType = EvaluateCurveToLimits; - } - else { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(2) + " [" + Alphas(2) + "] is not a valid choice. "); - ErrorsFound = true; - }} + // Create case insensitive references to independent variable input data + int numIndVars = inputProcessor->getNumObjectsFound("Table:IndependentVariable"); + if (numIndVars > 0) { + // Set Btwxt Message Callback + auto const &indVarInstances = inputProcessor->getObjectInstances("Table:IndependentVariable"); + for (auto &instance : indVarInstances.items()) { + auto const &fields = instance.value(); + auto const &thisObjectName = instance.key(); + inputProcessor->markObjectAsUsed("Table:IndependentVariable", thisObjectName); + btwxtManager.independentVarRefs.emplace(UtilityRoutines::MakeUPPERCase(thisObjectName),fields); + } + } - if (lNumericFieldBlanks(1)) { - PerfCurve(CurveNum).Var1Min = -99999999999.0; - } - else { - PerfCurve(CurveNum).Var1Min = Numbers(1); - PerfCurve(CurveNum).Var1MinPresent = true; - } - if (lNumericFieldBlanks(2)) { - PerfCurve(CurveNum).Var1Max = 99999999999.0; - } - else { - PerfCurve(CurveNum).Var1Max = Numbers(2); - PerfCurve(CurveNum).Var1MaxPresent = true; - } + // Create GridSpaces from Independent Variable List + int numIndVarLists = inputProcessor->getNumObjectsFound("Table:IndependentVariableList"); + std::map>> + varListLimits; // ugly, but this is needed for legacy behavior (otherwise limits are reset by Btwxt if they are within bounds). + std::map> varListNormalizeTargets; + if (numIndVarLists > 0) { + auto const indVarListInstances = inputProcessor->getObjectInstances("Table:IndependentVariableList"); + for (auto instance : indVarListInstances.items()) { - if (Numbers(1) > Numbers(2)) { // error - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(1) + " [" + RoundSigDigits(Numbers(1), 2) + "] > " + cNumericFieldNames(2) + " [" + - RoundSigDigits(Numbers(2), 2) + ']'); ErrorsFound = true; - } - if (NumAlphas >= 4) { - if (!IsCurveInputTypeValid(Alphas(4))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(4) + " [" + Alphas(4) + "] is invalid"); - } - } - if (NumAlphas >= 5) { - if (!IsCurveOutputTypeValid(Alphas(5))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(5) + " [" + Alphas(5) + "] is invalid"); - } - } + auto const &fields = instance.value(); + auto const &thisObjectName = instance.key(); + inputProcessor->markObjectAsUsed("Table:IndependentVariableList", thisObjectName); + std::string varListName = UtilityRoutines::MakeUPPERCase(thisObjectName); - // read this value first to allow normalization of min/max table output fields - if (!lNumericFieldBlanks(5)) { - TableData(TableNum).NormalPoint = Numbers(5); - if (Numbers(5) == 0.0) { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("..." + cNumericFieldNames(5) + " [" + RoundSigDigits(Numbers(5), 6) + "] is not a valid choice."); - ShowContinueError("...Setting Normalization Reference to 1 and the simulation continues."); - TableData(TableNum).NormalPoint = 1.0; - } - } - else { - TableData(TableNum).NormalPoint = 1.0; - } + std::vector gridAxes; - if (!lNumericFieldBlanks(3)) { - PerfCurve(CurveNum).CurveMin = Numbers(3) / TableData(TableNum).NormalPoint; - PerfCurve(CurveNum).CurveMinPresent = true; - } - if (!lNumericFieldBlanks(4)) { - PerfCurve(CurveNum).CurveMax = Numbers(4) / TableData(TableNum).NormalPoint; - PerfCurve(CurveNum).CurveMaxPresent = true; - } + // Loop through independent variables in list and add them to the grid + for (auto indVar : fields.at("independent_variables")) { + std::string indVarName = UtilityRoutines::MakeUPPERCase(indVar.at("independent_variable_name")); + std::string contextString = "Table:IndependentVariable \"" + indVarName + "\""; + Btwxt::setMessageCallback(BtwxtMessageCallback, &contextString); - MaxTableNums = (NumNumbers - 5) / 2; - if (mod((NumNumbers - 5), 2) != 0) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("The number of data entries must be evenly divisable by 2. Number of data entries = " + - RoundSigDigits(NumNumbers - 5)); ErrorsFound = true; - } - else { - for (TableDataIndex = 1; TableDataIndex <= MaxTableNums; ++TableDataIndex) { - TableData(TableNum).X1(TableDataIndex) = Numbers((TableDataIndex - 1) * 2 + 5 + 1); - TableData(TableNum).Y(TableDataIndex) = Numbers((TableDataIndex - 1) * 2 + 5 + 2) / TableData(TableNum).NormalPoint; - } - } + // Find independent variable input data + if (btwxtManager.independentVarRefs.count(indVarName)) { + // If found, read data + auto const &indVarInstance = btwxtManager.independentVarRefs.at(indVarName); - // convert raw table data to multidimensional array - // find number of x variables - NumXVar = 1; - NextXVar = 1; - TempTableData = TableData; - while (NumXVar <= MaxTableNums) { - - MinTableData = minval(TempTableData(TableNum).X1); - for (VarIndex = 1; VarIndex <= MaxTableNums; ++VarIndex) { - if (TempTableData(TableNum).X1(VarIndex) == MinTableData) { - TableData(TableNum).X1(NumXVar) = TempTableData(TableNum).X1(VarIndex); - TableData(TableNum).Y(NumXVar) = TempTableData(TableNum).Y(VarIndex); - TempTableData(TableNum).X1(VarIndex) = 999999.0; - ++NumXVar; - } + // TODO: Actually use this to define output variable units + if (indVarInstance.count("unit_type")) { + std::string unitType = indVarInstance.at("unit_type"); + if (!IsCurveOutputTypeValid(unitType)) { + ShowSevereError(contextString + ": Unit Type [" + unitType + "] is invalid"); + } } - NextXVar = NumXVar; + std::vector axis; - } + if (indVarInstance.count("external_file_name")) { + std::string filePath = indVarInstance.at("external_file_name"); + if (!indVarInstance.count("external_file_column_number")) { + ShowSevereError(contextString + ": No column number defined for external file \"" + filePath + "\""); + ErrorsFound = true; + } + if (!indVarInstance.count("external_file_starting_row_number")) { + ShowSevereError(contextString + ": No starting row number defined for external file \"" + filePath + "\""); + ErrorsFound = true; + } - // move table data to performance curve table data structure - PerfCurveTableData(TableNum).X1.allocate(NumXVar - 1); - PerfCurveTableData(TableNum).Y.allocate(1, NumXVar - 1); - PerfCurveTableData(TableNum).X1 = TableData(TableNum).X1; - for (VarIndex = 1; VarIndex <= NumXVar - 1; ++VarIndex) { - PerfCurveTableData(TableNum).Y(1, VarIndex) = TableData(TableNum).Y(VarIndex); - } + std::size_t colNum = indVarInstance.at("external_file_column_number").get() - 1; + std::size_t rowNum = indVarInstance.at("external_file_starting_row_number").get() - 1; - // create curve objects when regression analysis is required - if (PerfCurve(CurveNum).InterpolationType == EvaluateCurveToLimits) { - { auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if ((SELECT_CASE_var == Linear) || (SELECT_CASE_var == Quadratic) || (SELECT_CASE_var == Cubic) || (SELECT_CASE_var == - Quartic) || (SELECT_CASE_var == Exponent)) { TempArray1 = PerfCurveTableData(TableNum).X1; - TempArray2.allocate(size(PerfCurveTableData(TableNum).Y)); - for (VarIndex = 1; VarIndex <= isize(PerfCurveTableData(TableNum).Y); ++VarIndex) { - TempArray2(VarIndex) = PerfCurveTableData(TableNum).Y(1, VarIndex); - } - SolveRegression(CurveNum, CurrentModuleObject, PerfCurve(CurveNum).Name, TempArray1, TempArray2); - TempArray1.deallocate(); - TempArray2.deallocate(); - } - else { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("The requested regression analysis is not available at this time. Curve type = " + Alphas(2)); - PerfCurve(CurveIndex).InterpolationType = LinearInterpolationOfTable; - }} - if (!PerfCurve(CurveNum).Var1MinPresent) { - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); - } - if (!PerfCurve(CurveNum).Var1MaxPresent) { - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); - } - } + if (!btwxtManager.tableFiles.count(filePath)) { + btwxtManager.tableFiles.emplace(filePath, filePath); + } + + axis = btwxtManager.tableFiles[filePath].getArray({colNum, rowNum}); + + // remove NANs + axis.erase(std::remove_if(axis.begin(), axis.end(), [](const double &x){return std::isnan(x);}), axis.end()); + + // sort + std::sort(axis.begin(), axis.end()); + + // remove duplicates + axis.erase(std::unique(axis.begin(), axis.end()), axis.end()); - // if user enters limits that exceed data range, warn that limits are based on table data - if (PerfCurve(CurveNum).InterpolationType == LinearInterpolationOfTable) { - if (PerfCurve(CurveNum).Var1MinPresent) { - if (PerfCurve(CurveNum).Var1Min < minval(TableData(TableNum).X1)) { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(1) + " exceeds the data range and will not be used."); - ShowContinueError(" Entered value = " + RoundSigDigits(Numbers(1), 6) + ", Minimum data range = " + - RoundSigDigits(minval(TableData(TableNum).X1), 6)); PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); - } + } else if (indVarInstance.count("values")) { + for (auto value : indVarInstance.at("values")) { + axis.push_back(value.at("value")); + } + } else { + ShowSevereError(contextString + ": No values defined."); + ErrorsFound = true; } - else { - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); + + Btwxt::Method interpMethod, extrapMethod; + if (indVarInstance.count("interpolation_method")){ + interpMethod = BtwxtManager::interpMethods.at(indVarInstance.at("interpolation_method")); + } else { + interpMethod = Btwxt::Method::CUBIC; } - if (PerfCurve(CurveNum).Var1MaxPresent) { - if (PerfCurve(CurveNum).Var1Max > maxval(TableData(TableNum).X1)) { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(2) + " exceeds the data range and will not be used."); - ShowContinueError(" Entered value = " + RoundSigDigits(Numbers(2), 6) + ", Maximum data range = " + - RoundSigDigits(maxval(TableData(TableNum).X1), 6)); PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); - } + + if (indVarInstance.count("extrapolation_method")) { + if (indVarInstance.at("extrapolation_method") == "Unavailable") { + ShowSevereError(contextString + ": Extrapolation method \"Unavailable\" is not yet available."); + ErrorsFound = true; + } + extrapMethod = BtwxtManager::extrapMethods.at(indVarInstance.at("extrapolation_method")); + } else { + extrapMethod = Btwxt::Method::LINEAR; } - else { - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); + + double min_grid_value = *std::min_element(axis.begin(), axis.end()); + double max_grid_value = *std::max_element(axis.begin(), axis.end()); + + double min_val, max_val; + if (indVarInstance.count("minimum_value")) { + min_val = indVarInstance.at("minimum_value"); + } else { + min_val = min_grid_value; } - } - // if user does not enter limits, set to min/max in table - if (PerfCurve(CurveNum).InterpolationType == LagrangeInterpolationLinearExtrapolation) { - if (!PerfCurve(CurveNum).Var1MinPresent) { - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); + if (indVarInstance.count("maximum_value")) { + max_val = indVarInstance.at("maximum_value"); + } else { + max_val = max_grid_value; } - if (!PerfCurve(CurveNum).Var1MaxPresent) { - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); + + varListLimits[varListName].push_back({min_val,max_val}); + + Real64 normalizationRefValue; + if (indVarInstance.count("normalization_reference_value")) { + normalizationRefValue = indVarInstance.at("normalization_reference_value"); + } else { + normalizationRefValue = std::numeric_limits::quiet_NaN(); } - } - // move table data to more compact array to allow interpolation using multivariable lookup table method - TableLookup(TableNum).NumIndependentVars = 1; - TableLookup(TableNum).NumX1Vars = size(PerfCurveTableData(TableNum).X1); - TableLookup(TableNum).X1Var.allocate(TableLookup(TableNum).NumX1Vars); - TableLookup(TableNum).TableLookupZData.allocate(1, 1, 1, 1, size(PerfCurveTableData(TableNum).Y)); - TableLookup(TableNum).X1Var = PerfCurveTableData(TableNum).X1; - TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, _) = PerfCurveTableData(TableNum).Y(1, _); - } - */ + varListNormalizeTargets[varListName].push_back(normalizationRefValue); - // Loop over two variable tables and load data - CurrentModuleObject = "Table:TwoIndependentVariables"; - for (CurveIndex = 1; CurveIndex <= NumTwoVarTab; ++CurveIndex) { - inputProcessor->getObjectItem(CurrentModuleObject, - CurveIndex, - Alphas, - NumAlphas, - Numbers, - NumNumbers, - IOStatus, - lNumericFieldBlanks, - lAlphaFieldBlanks, - cAlphaFieldNames, - cNumericFieldNames); - ++CurveNum; - ++TableNum; - if (lAlphaFieldBlanks(7)) { - NumTableEntries = (NumNumbers - 7) / 3; - TableData(TableNum).X1.allocate(NumTableEntries); - TableData(TableNum).X2.allocate(NumTableEntries); - TableData(TableNum).Y.allocate(NumTableEntries); - } - GlobalNames::VerifyUniqueInterObjectName(UniqueCurveNames, Alphas(1), CurrentModuleObject, cAlphaFieldNames(1), ErrorsFound); - PerfCurve(CurveNum).Name = Alphas(1); - PerfCurve(CurveNum).ObjectType = CurrentModuleObject; - PerfCurve(CurveNum).NumDims = 2; - PerfCurve(CurveNum).TableIndex = TableNum; - { - auto const SELECT_CASE_var(Alphas(2)); - if (SELECT_CASE_var == "BICUBIC") { - PerfCurve(CurveNum).CurveType = BiCubic; - TableLookup(TableNum).InterpolationOrder = 4; - } else if (SELECT_CASE_var == "BIQUADRATIC") { - PerfCurve(CurveNum).CurveType = BiQuadratic; - TableLookup(TableNum).InterpolationOrder = 3; - } else if (SELECT_CASE_var == "QUADRATICLINEAR") { - PerfCurve(CurveNum).CurveType = QuadraticLinear; - TableLookup(TableNum).InterpolationOrder = 3; - } else { - if (Alphas(3) == "EVALUATECURVETOLIMITS") { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(2) + " [" + Alphas(2) + "] is not a valid choice. "); + // reset limits passed to Btwxt to avoid warnings related to different handling of limits + min_val = min(min_val, min_grid_value); + max_val = max(max_val, max_grid_value); + + gridAxes.emplace_back(axis, extrapMethod, interpMethod, std::pair {min_val, max_val}); + + } else { + // Independent variable does not exist + ShowSevereError(contextString + ": No Table:IndependentVariable found."); ErrorsFound = true; } + } + // Add grid to btwxtManager + btwxtManager.addGrid(UtilityRoutines::MakeUPPERCase(thisObjectName), Btwxt::GriddedData(gridAxes)); } - { - auto const SELECT_CASE_var(Alphas(3)); - if (SELECT_CASE_var == "LINEARINTERPOLATIONOFTABLE") { - PerfCurve(CurveNum).InterpolationType = LinearInterpolationOfTable; - } else if (SELECT_CASE_var == "LAGRANGEINTERPOLATIONLINEAREXTRAPOLATION") { - PerfCurve(CurveNum).InterpolationType = LagrangeInterpolationLinearExtrapolation; - } else if (SELECT_CASE_var == "EVALUATECURVETOLIMITS") { - PerfCurve(CurveNum).InterpolationType = EvaluateCurveToLimits; + } + + int numTblLookups = inputProcessor->getNumObjectsFound("Table:Lookup"); + if (numTblLookups > 0) { + auto const lookupInstances = inputProcessor->getObjectInstances("Table:Lookup"); + for (auto instance : lookupInstances.items()) { + + auto const &fields = instance.value(); + auto const &thisObjectName = instance.key(); + inputProcessor->markObjectAsUsed("Table:Lookup", thisObjectName); + ++CurveNum; + PerfCurve(CurveNum).Name = UtilityRoutines::MakeUPPERCase(thisObjectName); + PerfCurve(CurveNum).ObjectType = "Table:Lookup"; + PerfCurve(CurveNum).InterpolationType = BtwxtMethod; + + std::string + indVarListName = UtilityRoutines::MakeUPPERCase(fields.at("independent_variable_list_name")); + + std::string contextString = "Table:Lookup \"" + PerfCurve(CurveNum).Name + "\""; + Btwxt::setMessageCallback(BtwxtMessageCallback, &contextString); + + // TODO: Actually use this to define output variable units + if (fields.count("output_unit_type")) { + std::string unitType = fields.at("output_unit_type"); + if (!IsCurveOutputTypeValid(unitType)) { + ShowSevereError(contextString + ": Output Unit Type [" + unitType + "] is invalid"); + } + } + + int gridIndex = btwxtManager.getGridIndex(indVarListName, ErrorsFound); + PerfCurve(CurveNum).TableIndex = gridIndex; + int numDims = btwxtManager.getNumGridDims(gridIndex); + PerfCurve(CurveNum).NumDims = numDims; + + for (int i = 1; i <= std::min(6, numDims); ++i) { + double vMin, vMax; + std::tie(vMin, vMax) = varListLimits.at(indVarListName)[i - 1]; + if (i==1) { + PerfCurve(CurveNum).Var1Min = vMin; + PerfCurve(CurveNum).Var1Max = vMax; + } else if (i==2) { + PerfCurve(CurveNum).Var2Min = vMin; + PerfCurve(CurveNum).Var2Max = vMax; + } else if (i==3) { + PerfCurve(CurveNum).Var3Min = vMin; + PerfCurve(CurveNum).Var3Max = vMax; + } else if (i==4) { + PerfCurve(CurveNum).Var4Min = vMin; + PerfCurve(CurveNum).Var4Max = vMax; + } else if (i==5) { + PerfCurve(CurveNum).Var5Min = vMin; + PerfCurve(CurveNum).Var5Max = vMax; + } else if (i==6) { + PerfCurve(CurveNum).Var6Min = vMin; + PerfCurve(CurveNum).Var6Max = vMax; + } + } + + if (fields.count("minimum_output")) { + PerfCurve(CurveNum).CurveMin = fields.at("minimum_output"); + PerfCurve(CurveNum).CurveMinPresent = true; } else { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(2) + " [" + Alphas(2) + "] is not a valid choice. "); - ErrorsFound = true; + PerfCurve(CurveNum).CurveMin = -DBL_MAX; + PerfCurve(CurveNum).CurveMinPresent = false; } - } - - if (lNumericFieldBlanks(1)) { - PerfCurve(CurveNum).Var1Min = -99999999999.0; - } else { - PerfCurve(CurveNum).Var1Min = Numbers(1); - PerfCurve(CurveNum).Var1MinPresent = true; - } - if (lNumericFieldBlanks(2)) { - PerfCurve(CurveNum).Var1Max = 99999999999.0; - } else { - PerfCurve(CurveNum).Var1Max = Numbers(2); - PerfCurve(CurveNum).Var1MaxPresent = true; - } - if (lNumericFieldBlanks(3)) { - PerfCurve(CurveNum).Var2Min = -99999999999.0; - } else { - PerfCurve(CurveNum).Var2Min = Numbers(3); - PerfCurve(CurveNum).Var2MinPresent = true; - } - if (lNumericFieldBlanks(4)) { - PerfCurve(CurveNum).Var2Max = 99999999999.0; - } else { - PerfCurve(CurveNum).Var2Max = Numbers(4); - PerfCurve(CurveNum).Var2MaxPresent = true; - } - if (Numbers(1) > Numbers(2)) { // error - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(1) + " [" + RoundSigDigits(Numbers(1), 2) + "] > " + cNumericFieldNames(2) + " [" + - RoundSigDigits(Numbers(2), 2) + ']'); - ErrorsFound = true; - } - if (Numbers(3) > Numbers(4)) { // error - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(3) + " [" + RoundSigDigits(Numbers(3), 2) + "] > " + cNumericFieldNames(4) + " [" + - RoundSigDigits(Numbers(4), 2) + ']'); - ErrorsFound = true; - } - if (NumAlphas >= 4) { - if (!IsCurveInputTypeValid(Alphas(4))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(4) + " [" + Alphas(4) + "] is invalid"); + if (fields.count("maximum_output")) { + PerfCurve(CurveNum).CurveMax = fields.at("maximum_output"); + PerfCurve(CurveNum).CurveMaxPresent = true; + } else { + PerfCurve(CurveNum).CurveMax = DBL_MAX; + PerfCurve(CurveNum).CurveMaxPresent = false; } - } - if (NumAlphas >= 5) { - if (!IsCurveInputTypeValid(Alphas(5))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(5) + " [" + Alphas(5) + "] is invalid"); + + // Normalize data + Real64 normalizationDivisor = 1.0; + enum NormalizationMethod {NM_NONE, NM_DIVISOR_ONLY, NM_AUTO_WITH_DIVISOR}; + NormalizationMethod normalizeMethod = NM_NONE; + if (fields.count("normalization_method")) { + if (UtilityRoutines::SameString(fields.at("normalization_method"), "DIVISORONLY")) { + normalizeMethod = NM_DIVISOR_ONLY; + } else if (UtilityRoutines::SameString(fields.at("normalization_method"), "AUTOMATICWITHDIVISOR")) { + normalizeMethod = NM_AUTO_WITH_DIVISOR; + } } - } - if (NumAlphas >= 6) { - if (!IsCurveOutputTypeValid(Alphas(6))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(6) + " [" + Alphas(6) + "] is invalid"); + + if (normalizeMethod != NM_NONE && fields.count("normalization_divisor")) { + normalizationDivisor = fields.at("normalization_divisor"); } - } - if (UtilityRoutines::SameString(Alphas(4), "WAVELENGTH")) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1) + ": "); - ShowContinueError(cAlphaFieldNames(4) + " = WAVELENGTH, and " + cAlphaFieldNames(5) + " = " + Alphas(5)); - ShowContinueError("In order to input correct variable type for optical properties, " + cAlphaFieldNames(4) + - " should be ANGLE, and " + cAlphaFieldNames(5) + " should be WAVELENGTH "); - ErrorsFound = true; - } - if (UtilityRoutines::SameString(Alphas(4), "ANGLE") && !UtilityRoutines::SameString(Alphas(5), "WAVELENGTH")) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1) + ": "); - ShowContinueError(cAlphaFieldNames(4) + " = ANGLE, and " + cAlphaFieldNames(5) + " = " + Alphas(5)); - ShowContinueError("In order to input correct variable type for optical properties, " + cAlphaFieldNames(4) + - " should be ANGLE, and " + cAlphaFieldNames(5) + " should be WAVELENGTH "); - ErrorsFound = true; - } - if (UtilityRoutines::SameString(Alphas(4), "ANGLE") && UtilityRoutines::SameString(Alphas(5), "WAVELENGTH")) { - PerfCurve(CurveNum).OpticalProperty = true; - } + PerfCurve(CurveNum).NormalizationValue = normalizationDivisor; // TODO: Remove/Fix use in Hybrid Unitary - if (!lNumericFieldBlanks(7)) { - TableData(TableNum).NormalPoint = Numbers(7); - if (Numbers(7) == 0.0) { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("..." + cNumericFieldNames(7) + " [" + RoundSigDigits(Numbers(7), 6) + "] is not a valid choice."); - ShowContinueError("...Setting Normalization Reference to 1 and the simulation continues."); - TableData(TableNum).NormalPoint = 1.0; - } - } else { - TableData(TableNum).NormalPoint = 1.0; - } - - if (!lNumericFieldBlanks(5)) { - PerfCurve(CurveNum).CurveMin = Numbers(5) / TableData(TableNum).NormalPoint; - PerfCurve(CurveNum).CurveMinPresent = true; - } - if (!lNumericFieldBlanks(6)) { - PerfCurve(CurveNum).CurveMax = Numbers(6) / TableData(TableNum).NormalPoint; - PerfCurve(CurveNum).CurveMaxPresent = true; - } + std::vector lookupValues; + if (fields.count("external_file_name")) { + std::string filePath = fields.at("external_file_name"); - if (!lAlphaFieldBlanks(7)) { - ReadFromFile = true; - FileName = Alphas(7); - ReadTwoVarTableDataFromFile(CurveNum, FileName, MaxTableNums); - } else { - ReadFromFile = false; - FileName = ""; - - MaxTableNums = (NumNumbers - 7) / 3; - if (MaxTableNums < 4) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("When data is read from input, the minimum number of data entries must be equal or greater than 12. The " - "current input number is " + - RoundSigDigits(NumNumbers - 7)); - ErrorsFound = true; - } else { - for (TableDataIndex = 1; TableDataIndex <= 4; ++TableDataIndex) { - if (lNumericFieldBlanks((TableDataIndex - 1) * 3 + 7 + 1)) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("When data is read from input, this field is required and cannot be blank: " + - cNumericFieldNames((TableDataIndex - 1) * 3 + 7 + 1)); - ErrorsFound = true; - } - if (lNumericFieldBlanks((TableDataIndex - 1) * 3 + 7 + 2)) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("When data is read from input, this field is required and cannot be blank: " + - cNumericFieldNames((TableDataIndex - 1) * 3 + 7 + 2)); - ErrorsFound = true; - } - if (lNumericFieldBlanks((TableDataIndex - 1) * 3 + 7 + 3)) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("When data is read from input, this field is required and cannot be blank: " + - cNumericFieldNames((TableDataIndex - 1) * 3 + 7 + 3)); - ErrorsFound = true; - } + if (!fields.count("external_file_column_number")) { + ShowSevereError(contextString + ": No column number defined for external file \"" + filePath + "\""); + ErrorsFound = true; } - } - if (mod((NumNumbers - 7), 3) != 0) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("The number of data entries must be evenly divisable by 3. Number of data entries = " + - RoundSigDigits(NumNumbers - 7)); - ErrorsFound = true; - TableData(TableNum).X1 = 0.; - TableData(TableNum).X2 = 0.; - TableData(TableNum).Y = 0.; - } else { - for (TableDataIndex = 1; TableDataIndex <= MaxTableNums; ++TableDataIndex) { - TableData(TableNum).X1(TableDataIndex) = Numbers((TableDataIndex - 1) * 3 + 7 + 1); - TableData(TableNum).X2(TableDataIndex) = Numbers((TableDataIndex - 1) * 3 + 7 + 2); - TableData(TableNum).Y(TableDataIndex) = Numbers((TableDataIndex - 1) * 3 + 7 + 3) / TableData(TableNum).NormalPoint; + if (!fields.count("external_file_starting_row_number")) { + ShowSevereError(contextString + ": No starting row number defined for external file \"" + filePath + "\""); + ErrorsFound = true; } - } - } - // convert raw table data to multidimensional array - // find number of x variables - XVar.allocate(MaxTableNums); - X2Var.allocate(MaxTableNums); - NumXVar = 1; - NextXVar = 1; - XVar(1) = 1.0; - TempTableData = TableData; - Temp2TableData = TableData; - while (NumXVar <= MaxTableNums) { - - MinTableData = minval(TempTableData(TableNum).X1); - for (VarIndex = 1; VarIndex <= MaxTableNums; ++VarIndex) { - if (TempTableData(TableNum).X1(VarIndex) == MinTableData) { - TableData(TableNum).X1(NumXVar) = TempTableData(TableNum).X1(VarIndex); - TableData(TableNum).X2(NumXVar) = TempTableData(TableNum).X2(VarIndex); - TableData(TableNum).Y(NumXVar) = TempTableData(TableNum).Y(VarIndex); - TempTableData(TableNum).X1(VarIndex) = 999999.0; - ++NumXVar; - } - } - Temp2TableData(TableNum).X2({NextXVar, NumXVar - 1}) = TableData(TableNum).X2({NextXVar, NumXVar - 1}); - Temp2TableData(TableNum).Y({NextXVar, NumXVar - 1}) = TableData(TableNum).Y({NextXVar, NumXVar - 1}); - - for (TempVarIndex = NumXVar - 1; TempVarIndex >= NextXVar; --TempVarIndex) { - MaxTableDataValue = -999999.0; - for (TempVarIndex1 = NextXVar; TempVarIndex1 <= NumXVar - 1; ++TempVarIndex1) { - if (Temp2TableData(TableNum).X2(TempVarIndex1) > MaxTableDataValue) { - MaxTableDataValue = Temp2TableData(TableNum).X2(TempVarIndex1); - } - } + std::size_t colNum = fields.at("external_file_column_number").get() - 1; + std::size_t rowNum = fields.at("external_file_starting_row_number").get() - 1; - for (TempVarIndex1 = NextXVar; TempVarIndex1 <= NumXVar - 1; ++TempVarIndex1) { - if (Temp2TableData(TableNum).X2(TempVarIndex1) != MaxTableDataValue) continue; - TableData(TableNum).X2(TempVarIndex) = Temp2TableData(TableNum).X2(TempVarIndex1); - TableData(TableNum).Y(TempVarIndex) = Temp2TableData(TableNum).Y(TempVarIndex1); - Temp2TableData(TableNum).X2(TempVarIndex1) = -999999.0; - break; + if (!btwxtManager.tableFiles.count(filePath)) { + btwxtManager.tableFiles.emplace(filePath, filePath); } - } - NextXVar = NumXVar; - } - // reorganize table data - NumXVar = 1; - NumX2Var = 1; - XVar(1) = TableData(TableNum).X1(1); - for (VarIndex = 2; VarIndex <= MaxTableNums; ++VarIndex) { - if (TableData(TableNum).X1(VarIndex) != TableData(TableNum).X1(VarIndex - 1)) { - ++NumXVar; - XVar(NumXVar) = TableData(TableNum).X1(VarIndex); - } - } - X2Var(1) = TableData(TableNum).X2(1); - for (VarIndex = 2; VarIndex <= MaxTableNums; ++VarIndex) { - FoundNewData = true; - for (TempVarIndex = 1; TempVarIndex <= NumX2Var; ++TempVarIndex) { - if (TableData(TableNum).X2(VarIndex) == X2Var(TempVarIndex)) { - FoundNewData = false; - } - } - if (FoundNewData) { - ++NumX2Var; - X2Var(NumX2Var) = TableData(TableNum).X2(VarIndex); - } - } + lookupValues = btwxtManager.tableFiles[filePath].getArray({colNum, rowNum}); - // move table data to performance curve table data structure - PerfCurveTableData(TableNum).X1.allocate(NumXVar); - PerfCurveTableData(TableNum).X2.allocate(NumX2Var); - PerfCurveTableData(TableNum).Y.allocate(NumX2Var, NumXVar); - PerfCurveTableData(TableNum).X1 = -9999999.0; - PerfCurveTableData(TableNum).X2 = -9999999.0; - PerfCurveTableData(TableNum).Y = -9999999.0; - for (VarIndex = 1; VarIndex <= NumXVar; ++VarIndex) { - PerfCurveTableData(TableNum).X1(VarIndex) = XVar(VarIndex); - for (TempVarIndex = 1; TempVarIndex <= NumX2Var; ++TempVarIndex) { - PerfCurveTableData(TableNum).X2(TempVarIndex) = X2Var(TempVarIndex); - for (TempVarIndex1 = 1; TempVarIndex1 <= MaxTableNums; ++TempVarIndex1) { - if ((TableData(TableNum).X1(TempVarIndex1) == PerfCurveTableData(TableNum).X1(VarIndex)) && - (TableData(TableNum).X2(TempVarIndex1) == PerfCurveTableData(TableNum).X2(TempVarIndex))) { - PerfCurveTableData(TableNum).Y(TempVarIndex, VarIndex) = TableData(TableNum).Y(TempVarIndex1); - } - } - } - } - XVar.deallocate(); - X2Var.deallocate(); - - // create curve objects when regression analysis is required - if (PerfCurve(CurveNum).InterpolationType == EvaluateCurveToLimits) { - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if ((SELECT_CASE_var == BiQuadratic) || (SELECT_CASE_var == QuadraticLinear)) { - TempArray1 = TableData(TableNum).X1; - TempArray3 = TableData(TableNum).X2; - TempArray2.allocate(size(TableData(TableNum).Y)); - for (VarIndex = 1; VarIndex <= isize(TableData(TableNum).Y); ++VarIndex) { - TempArray2(VarIndex) = TableData(TableNum).Y(VarIndex); - } - SolveRegression(CurveNum, CurrentModuleObject, PerfCurve(CurveNum).Name, TempArray1, TempArray2, TempArray3); - TempArray1.deallocate(); - TempArray2.deallocate(); - TempArray3.deallocate(); - } else { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("The requested regression analysis is not available at this time. Curve type = " + Alphas(2)); - PerfCurve(CurveIndex).InterpolationType = LinearInterpolationOfTable; - } - } - if (!PerfCurve(CurveNum).Var1MinPresent) { - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); - } - if (!PerfCurve(CurveNum).Var1MaxPresent) { - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); - } - if (!PerfCurve(CurveNum).Var2MinPresent) { - PerfCurve(CurveNum).Var2Min = minval(TableData(TableNum).X2); - } - if (!PerfCurve(CurveNum).Var2MaxPresent) { - PerfCurve(CurveNum).Var2Max = maxval(TableData(TableNum).X2); - } - } + // remove NANs + lookupValues.erase(std::remove_if(lookupValues.begin(), lookupValues.end(), [](const double &x){return std::isnan(x);}), lookupValues.end()); - // if user enters limits that exceed data range, warn that limits are based on table data - if (PerfCurve(CurveNum).InterpolationType == LinearInterpolationOfTable) { - if (PerfCurve(CurveNum).Var1MinPresent) { - if (PerfCurve(CurveNum).Var1Min < minval(TableData(TableNum).X1)) { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(1) + " exceeds the data range and will not be used."); - ShowContinueError(" Entered value = " + RoundSigDigits(Numbers(1), 6) + - ", Minimum data range = " + RoundSigDigits(minval(TableData(TableNum).X1), 6)); - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); + } else if (fields.count("values")) { + for (auto value : fields.at("values")) { + lookupValues.push_back(value.at("output_value").get() / normalizationDivisor); } } else { - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); - } - if (PerfCurve(CurveNum).Var1MaxPresent) { - if (PerfCurve(CurveNum).Var1Max > maxval(TableData(TableNum).X1)) { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(2) + " exceeds the data range and will not be used."); - ShowContinueError(" Entered value = " + RoundSigDigits(Numbers(2), 6) + - ", Maximum data range = " + RoundSigDigits(maxval(TableData(TableNum).X1), 6)); - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); - } - } else { - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); + ShowSevereError(contextString + ": No values defined."); + ErrorsFound = true; } - if (PerfCurve(CurveNum).Var2MinPresent) { - if (PerfCurve(CurveNum).Var2Min < minval(TableData(TableNum).X2)) { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(3) + " exceeds the data range and will not be used."); - ShowContinueError(" Entered value = " + RoundSigDigits(Numbers(3), 6) + - ", Minimum data range = " + RoundSigDigits(minval(TableData(TableNum).X2), 6)); - PerfCurve(CurveNum).Var2Min = minval(TableData(TableNum).X2); + + PerfCurve(CurveNum).GridValueIndex = btwxtManager.addOutputValues(gridIndex, lookupValues); + + if (normalizeMethod == NM_AUTO_WITH_DIVISOR) { + auto const normalizeTarget = varListNormalizeTargets.at(indVarListName); + + bool pointsSpecified = false; + bool pointsUnspecified = false; + for (auto value : normalizeTarget) { + if (std::isnan(value)) { + pointsUnspecified = true; + } else { + pointsSpecified = true; + } } - } else { - PerfCurve(CurveNum).Var2Min = minval(TableData(TableNum).X2); - } - if (PerfCurve(CurveNum).Var2MaxPresent) { - if (PerfCurve(CurveNum).Var2Max > maxval(TableData(TableNum).X2)) { - ShowWarningError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(4) + " exceeds the data range and will not be used."); - ShowContinueError(" Entered value = " + RoundSigDigits(Numbers(4), 6) + - ", Maximum data range = " + RoundSigDigits(maxval(TableData(TableNum).X2), 6)); - PerfCurve(CurveNum).Var2Max = maxval(TableData(TableNum).X2); + if (pointsSpecified && pointsUnspecified) { + ShowSevereError( + contextString + + ": Table is to be normalized using AutomaticWithDivisor, but not all independent variables define a normalization reference value. Make sure either:"); + ShowContinueError(" Make sure either:"); + ShowContinueError(" a) a normalization reference value is defined for each independent variable, or"); + ShowContinueError(" b) no normalization reference values are defined."); + ErrorsFound = true; + } else if (pointsSpecified) { + // normalizeGridValues normalizes to 1.0 at the reference values. We must redivide by passing in the 1.0/normalizationDivisor as the scalar here. + btwxtManager.normalizeGridValues(gridIndex, PerfCurve(CurveNum).GridValueIndex, normalizeTarget, 1.0/normalizationDivisor); } - } else { - PerfCurve(CurveNum).Var2Max = maxval(TableData(TableNum).X2); - } - } - // if user does not enter limits, set to min/max in table - if (PerfCurve(CurveNum).InterpolationType == LagrangeInterpolationLinearExtrapolation) { - if (!PerfCurve(CurveNum).Var1MinPresent) { - PerfCurve(CurveNum).Var1Min = minval(TableData(TableNum).X1); - } - if (!PerfCurve(CurveNum).Var1MaxPresent) { - PerfCurve(CurveNum).Var1Max = maxval(TableData(TableNum).X1); - } - if (!PerfCurve(CurveNum).Var2MinPresent) { - PerfCurve(CurveNum).Var2Min = minval(TableData(TableNum).X2); - } - if (!PerfCurve(CurveNum).Var2MaxPresent) { - PerfCurve(CurveNum).Var2Max = maxval(TableData(TableNum).X2); - } + + } + } + } + btwxtManager.tableFiles.clear(); + } - // move table data to more compact array to allow interpolation using multivariable lookup table method - TableLookup(TableNum).NumX1Vars = size(PerfCurveTableData(TableNum).X1); - TableLookup(TableNum).NumX2Vars = size(PerfCurveTableData(TableNum).X2); - TableLookup(TableNum).X1Var.allocate(TableLookup(TableNum).NumX1Vars); - TableLookup(TableNum).X2Var.allocate(TableLookup(TableNum).NumX2Vars); - TableLookup(TableNum).TableLookupZData.allocate( - 1, 1, 1, 1, size(PerfCurveTableData(TableNum).Y(_, 1)), size(PerfCurveTableData(TableNum).Y(1, _))); - TableLookup(TableNum).X1Var = PerfCurveTableData(TableNum).X1; - TableLookup(TableNum).X2Var = PerfCurveTableData(TableNum).X2; - TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, _, _) = PerfCurveTableData(TableNum).Y(_, _); + int BtwxtManager::getGridIndex(std::string indVarListName, bool &ErrorsFound) { + int gridIndex = -1; + if (gridMap.count(indVarListName)) { + gridIndex = gridMap.at(indVarListName); + } else { + // Independent variable list does not exist + ShowSevereError("Table:Lookup \"" + indVarListName + "\" : No Table:IndependentVariableList found."); + ErrorsFound = true; } + return gridIndex; + } - // Loop over multiple variable tables and load data (strict lookup only - no curve creation - CurrentModuleObject = "Table:MultiVariableLookup"; - TableNum = NumTables; - for (CurveIndex = 1; CurveIndex <= NumMultVarLookup; ++CurveIndex) { - inputProcessor->getObjectItem(CurrentModuleObject, - CurveIndex, - Alphas, - NumAlphas, - Numbers, - NumNumbers, - IOStatus, - lNumericFieldBlanks, - lAlphaFieldBlanks, - cAlphaFieldNames, - cNumericFieldNames); - GlobalNames::VerifyUniqueInterObjectName(UniqueCurveNames, Alphas(1), CurrentModuleObject, cAlphaFieldNames(1), ErrorsFound); - ++CurveNum; - ++TableNum; - PerfCurve(CurveNum).Name = Alphas(1); - PerfCurve(CurveNum).ObjectType = CurrentModuleObject; - PerfCurve(CurveNum).TableIndex = TableNum; - { - auto const SELECT_CASE_var(Alphas(2)); - if (SELECT_CASE_var == "LINEARINTERPOLATIONOFTABLE") { - PerfCurve(CurveNum).InterpolationType = LinearInterpolationOfTable; - } else if (SELECT_CASE_var == "LAGRANGEINTERPOLATIONLINEAREXTRAPOLATION") { - PerfCurve(CurveNum).InterpolationType = LagrangeInterpolationLinearExtrapolation; - } else if (SELECT_CASE_var == "EVALUATECURVETOLIMITS") { - PerfCurve(CurveNum).InterpolationType = EvaluateCurveToLimits; - } else { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(2) + " [" + Alphas(2) + "] is not a valid choice. "); - ErrorsFound = true; - } - } + std::pair BtwxtManager::getGridAxisLimits(int gridIndex, int axisIndex) { + return grids[gridIndex].get_axis_limits(axisIndex); + } - { - auto const SELECT_CASE_var(Alphas(3)); - if (SELECT_CASE_var == "LINEAR") { - PerfCurve(CurveNum).CurveType = Linear; - } else if (SELECT_CASE_var == "QUADRATIC") { - PerfCurve(CurveNum).CurveType = Quadratic; - } else if (SELECT_CASE_var == "CUBIC") { - PerfCurve(CurveNum).CurveType = Cubic; - } else if (SELECT_CASE_var == "QUARTIC") { - PerfCurve(CurveNum).CurveType = Quartic; - } else if (SELECT_CASE_var == "BIQUADRATIC") { - PerfCurve(CurveNum).CurveType = BiQuadratic; - } else if (SELECT_CASE_var == "QUADRATICLINEAR") { - PerfCurve(CurveNum).CurveType = QuadraticLinear; - } else { - if (Alphas(2) == "EVALUATECURVETOLIMITS") { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(3) + " [" + Alphas(3) + "] is not a valid choice. "); - ErrorsFound = true; - } - } - } + int BtwxtManager::addOutputValues(int gridIndex, std::vector values) + { + return (int)grids[gridIndex].add_value_table(values); + } - { - auto const SELECT_CASE_var(Alphas(4)); - if (SELECT_CASE_var == "SINGLELINEINDEPENDENTVARIABLEWITHMATRIX") { - PerfCurve(CurveNum).DataFormat = SINGLELINEINDEPENDENTVARIABLEWITHMATRIX; - } else { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(4) + " [" + Alphas(4) + "] is not a valid choice. "); - ErrorsFound = true; - } - } + int BtwxtManager::getNumGridDims(int gridIndex) { + return (int)grids[gridIndex].get_ndims(); + } - TableLookup(TableNum).InterpolationOrder = Numbers(1); + double BtwxtManager::getGridValue(int gridIndex, int outputIndex, const std::vector target) { + return grids[gridIndex](target)[outputIndex]; + } - if (!lNumericFieldBlanks(2)) { - TableData(TableNum).NormalPoint = Numbers(2); - if (Numbers(2) == 0.0) { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("..." + cNumericFieldNames(2) + " [" + RoundSigDigits(Numbers(2), 6) + "] is not a valid choice."); - ShowContinueError("...Setting Normalization Reference to 1 and the simulation continues."); - TableData(TableNum).NormalPoint = 1.0; - } - } else { - TableData(TableNum).NormalPoint = 1.0; - } - if (lNumericFieldBlanks(3)) { - PerfCurve(CurveNum).Var1Min = -99999999999.0; - } else { - PerfCurve(CurveNum).Var1Min = Numbers(3); - PerfCurve(CurveNum).Var1MinPresent = true; - } - if (lNumericFieldBlanks(4)) { - PerfCurve(CurveNum).Var1Max = 99999999999.0; - } else { - PerfCurve(CurveNum).Var1Max = Numbers(4); - PerfCurve(CurveNum).Var1MaxPresent = true; - } - if (lNumericFieldBlanks(5)) { - PerfCurve(CurveNum).Var2Min = -99999999999.0; - } else { - PerfCurve(CurveNum).Var2Min = Numbers(5); - PerfCurve(CurveNum).Var2MinPresent = true; - } - if (lNumericFieldBlanks(6)) { - PerfCurve(CurveNum).Var2Max = 99999999999.0; - } else { - PerfCurve(CurveNum).Var2Max = Numbers(6); - PerfCurve(CurveNum).Var2MaxPresent = true; - } - if (lNumericFieldBlanks(7)) { - PerfCurve(CurveNum).Var3Min = -99999999999.0; - } else { - PerfCurve(CurveNum).Var3Min = Numbers(7); - PerfCurve(CurveNum).Var3MinPresent = true; - } - if (lNumericFieldBlanks(8)) { - PerfCurve(CurveNum).Var3Max = 99999999999.0; - } else { - PerfCurve(CurveNum).Var3Max = Numbers(8); - PerfCurve(CurveNum).Var3MaxPresent = true; - } - if (lNumericFieldBlanks(9)) { - PerfCurve(CurveNum).Var4Min = -99999999999.0; - } else { - PerfCurve(CurveNum).Var4Min = Numbers(9); - PerfCurve(CurveNum).Var4MinPresent = true; - } - if (lNumericFieldBlanks(10)) { - PerfCurve(CurveNum).Var4Max = 99999999999.0; - } else { - PerfCurve(CurveNum).Var4Max = Numbers(10); - PerfCurve(CurveNum).Var4MaxPresent = true; - } - if (lNumericFieldBlanks(11)) { - PerfCurve(CurveNum).Var5Min = -99999999999.0; - } else { - PerfCurve(CurveNum).Var5Min = Numbers(11); - PerfCurve(CurveNum).Var5MinPresent = true; - } - if (lNumericFieldBlanks(12)) { - PerfCurve(CurveNum).Var5Max = 99999999999.0; - } else { - PerfCurve(CurveNum).Var5Max = Numbers(12); - PerfCurve(CurveNum).Var5MaxPresent = true; - } - if (lNumericFieldBlanks(13)) { - PerfCurve(CurveNum).Var6Min = -99999999999.0; - } else { - PerfCurve(CurveNum).Var6Min = Numbers(13); - PerfCurve(CurveNum).Var6MinPresent = true; - } - if (lNumericFieldBlanks(14)) { - PerfCurve(CurveNum).Var6Max = 99999999999.0; - } else { - PerfCurve(CurveNum).Var6Max = Numbers(14); - PerfCurve(CurveNum).Var6MaxPresent = true; - } - if (Numbers(3) > Numbers(4)) { // error - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(3) + " [" + RoundSigDigits(Numbers(3), 2) + "] > " + cNumericFieldNames(4) + " [" + - RoundSigDigits(Numbers(4), 2) + ']'); - ErrorsFound = true; - } - if (Numbers(5) > Numbers(6)) { // error - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(5) + " [" + RoundSigDigits(Numbers(5), 2) + "] > " + cNumericFieldNames(6) + " [" + - RoundSigDigits(Numbers(6), 2) + ']'); - ErrorsFound = true; - } - if (Numbers(7) > Numbers(8)) { // error - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(7) + " [" + RoundSigDigits(Numbers(7), 2) + "] > " + cNumericFieldNames(8) + " [" + - RoundSigDigits(Numbers(8), 2) + ']'); - ErrorsFound = true; - } - if (Numbers(9) > Numbers(10)) { // error - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(9) + " [" + RoundSigDigits(Numbers(9), 2) + "] > " + cNumericFieldNames(10) + " [" + - RoundSigDigits(Numbers(10), 2) + ']'); - ErrorsFound = true; - } - if (Numbers(11) > Numbers(12)) { // error - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(11) + " [" + RoundSigDigits(Numbers(11), 2) + "] > " + cNumericFieldNames(12) + " [" + - RoundSigDigits(Numbers(12), 2) + ']'); - ErrorsFound = true; - } - if (Numbers(13) > Numbers(14)) { // error - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cNumericFieldNames(13) + " [" + RoundSigDigits(Numbers(13), 2) + "] > " + cNumericFieldNames(14) + " [" + - RoundSigDigits(Numbers(14), 2) + ']'); - ErrorsFound = true; - } - if (NumAlphas >= 8) { - if (!IsCurveInputTypeValid(Alphas(8))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(8) + " [" + Alphas(8) + "] is invalid"); - } - } - if (NumAlphas >= 9) { - if (!IsCurveInputTypeValid(Alphas(9))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(9) + " [" + Alphas(9) + "] is invalid"); - } - } - if (NumAlphas >= 10) { - if (!IsCurveInputTypeValid(Alphas(10))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(10) + " [" + Alphas(10) + "] is invalid"); - } - } - if (NumAlphas >= 11) { - if (!IsCurveInputTypeValid(Alphas(11))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(11) + " [" + Alphas(11) + "] is invalid"); - } - } - if (NumAlphas >= 12) { - if (!IsCurveInputTypeValid(Alphas(12))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(12) + " [" + Alphas(12) + "] is invalid"); - } - } - if (NumAlphas >= 13) { - if (!IsCurveInputTypeValid(Alphas(13))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(13) + " [" + Alphas(13) + "] is invalid"); - } - } - if (NumAlphas >= 14) { - if (!IsCurveOutputTypeValid(Alphas(14))) { - ShowSevereError("GetCurveInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError(cAlphaFieldNames(14) + " [" + Alphas(14) + "] is invalid"); - } - } + void BtwxtManager::normalizeGridValues(int gridIndex, int outputIndex, const std::vector target, const double scalar) { + grids[gridIndex].normalize_values_at_target(outputIndex, target, scalar); + } - if (!lNumericFieldBlanks(15)) { - PerfCurve(CurveNum).CurveMin = Numbers(15) / TableData(TableNum).NormalPoint; - PerfCurve(CurveNum).CurveMinPresent = true; - } - if (!lNumericFieldBlanks(16)) { - PerfCurve(CurveNum).CurveMax = Numbers(16) / TableData(TableNum).NormalPoint; - PerfCurve(CurveNum).CurveMaxPresent = true; - } + void BtwxtManager::clear() { + grids.clear(); + gridMap.clear(); + independentVarRefs.clear(); + tableFiles.clear(); + } - if (Alphas(6) == "ASCENDING") { - PerfCurve(CurveNum).X1SortOrder = ASCENDING; - } else if (Alphas(6) == "DESCENDING") { - PerfCurve(CurveNum).X1SortOrder = DESCENDING; - } else { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...Invalid " + cAlphaFieldNames(6) + " = " + Alphas(6)); - ErrorsFound = true; - } - if (Alphas(7) == "ASCENDING") { - PerfCurve(CurveNum).X2SortOrder = ASCENDING; - } else if (Alphas(7) == "DESCENDING") { - PerfCurve(CurveNum).X2SortOrder = DESCENDING; - } else { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...Invalid " + cAlphaFieldNames(7) + " = " + Alphas(7)); - ErrorsFound = true; + TableFile::TableFile(std::string path) { + load(path); + } + + void TableFile::load(std::string path) { + filePath = path; + bool fileFound; + std::string fullPath; + DataSystemVariables::CheckForActualFileName(path, fileFound, fullPath); + if (!fileFound) { + ShowFatalError("File \"" + filePath + "\" : File not found."); + } + std::ifstream file(fullPath); + std::string line(""); + numRows = 0; + numColumns = 0; + while (getline(file, line)) { + ++numRows; + std::size_t pos(0); + std::size_t colNum(1); + while ((pos = line.find(",")) != std::string::npos) { + if (colNum > numColumns) { + numColumns = colNum; + contents.resize(numColumns); + } + contents[colNum - 1].push_back(line.substr(0, pos)); + line.erase(0, pos + 1); + ++colNum; + } + // Anything after the last comma + if (line.size() > 0) { + if (colNum > numColumns) { + numColumns = colNum; + contents.resize(numColumns); + } + contents[colNum - 1].push_back(line); + ++colNum; + } + // flesh out columns if row ends early + while (colNum <= numColumns) { + contents[colNum - 1].push_back(""); + ++colNum; } + } + } - if (!lAlphaFieldBlanks(5)) { - ReadFromFile = true; - FileName = Alphas(5); - } else { - ReadFromFile = false; - FileName = ""; - } - - ReadTableData(CurveNum, CurrentModuleObject, ReadFromFile, FileName, Alphas, Numbers, NumNumbers, ErrorsFound); - - if (PerfCurve(CurveNum).InterpolationType == EvaluateCurveToLimits) { - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).NumDims); - if (SELECT_CASE_var == 1) { - TempArray1.allocate(size(TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, 1, _))); - TempArray2.allocate(size(TempArray1)); - TempArray1 = TableLookup(TableNum).X1Var; - TempArray2 = TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, 1, _); - SolveRegression(CurveNum, CurrentModuleObject, PerfCurve(CurveNum).Name, TempArray1, TempArray2); - TempArray1.deallocate(); - TempArray2.deallocate(); - - // Save array info in performance table arrays in case the performance table routine is selected in regression routine - PerfCurveTableData(TableNum).X1.allocate(size(TableLookup(TableNum).X1Var)); - PerfCurveTableData(TableNum).Y.allocate(1, size(TableLookup(TableNum).X1Var)); - PerfCurveTableData(TableNum).X1 = TableLookup(TableNum).X1Var; - PerfCurveTableData(TableNum).Y(1, _) = TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, 1, _); - - } else if (SELECT_CASE_var == 2) { - TempArray1.allocate(size(TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, _, _))); - TempArray2.allocate(size(TempArray1)); - TempArray3.allocate(size(TempArray1)); - TableDataIndex = 0; - for (VarIndex = 1; VarIndex <= TableLookup(TableNum).NumX1Vars; ++VarIndex) { - for (TempVarIndex = 1; TempVarIndex <= TableLookup(TableNum).NumX2Vars; ++TempVarIndex) { - ++TableDataIndex; - TempArray1(TableDataIndex) = TableLookup(TableNum).X1Var(VarIndex); - TempArray2(TableDataIndex) = TableLookup(TableNum).X2Var(TempVarIndex); - TempArray3(TableDataIndex) = TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, TempVarIndex, VarIndex); - } - } - SolveRegression(CurveNum, CurrentModuleObject, PerfCurve(CurveNum).Name, TempArray1, TempArray3, TempArray2); - TempArray1.deallocate(); - TempArray2.deallocate(); - TempArray3.deallocate(); - // Save array info in performance table arrays in case the performance table routine is selected in regression routine - PerfCurveTableData(TableNum).X1.allocate(size(TableLookup(TableNum).X1Var)); - PerfCurveTableData(TableNum).X2.allocate(size(TableLookup(TableNum).X2Var)); - PerfCurveTableData(TableNum).Y.allocate(size(TableLookup(TableNum).X2Var), size(TableLookup(TableNum).X1Var)); - PerfCurveTableData(TableNum).X1 = TableLookup(TableNum).X1Var; - PerfCurveTableData(TableNum).X2 = TableLookup(TableNum).X2Var; - PerfCurveTableData(TableNum).Y(_, _) = TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, _, _); - } else { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...Invalid " + cAlphaFieldNames(2) + " = " + Alphas(2)); - ShowContinueError("...Choice not allowed with more than 2 indpendent variables."); - ErrorsFound = true; - } - } - } else { - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).NumDims); - if (SELECT_CASE_var == 1) { - // Save array info in performance table arrays in case the performance table routine is selected in regression routine - PerfCurveTableData(TableNum).X1.allocate(size(TableLookup(TableNum).X1Var)); - PerfCurveTableData(TableNum).Y.allocate(1, size(TableLookup(TableNum).X1Var)); - PerfCurveTableData(TableNum).X1 = TableLookup(TableNum).X1Var; - PerfCurveTableData(TableNum).Y(1, _) = TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, 1, _); - // if linear interpolation of table is selected, switch interpolation type - } else if (SELECT_CASE_var == 2) { - // Save array info in performance table arrays in case the performance table routine is selected in regression routine - PerfCurveTableData(TableNum).X1.allocate(size(TableLookup(TableNum).X1Var)); - PerfCurveTableData(TableNum).X2.allocate(size(TableLookup(TableNum).X2Var)); - PerfCurveTableData(TableNum).Y.allocate(size(TableLookup(TableNum).X2Var), size(TableLookup(TableNum).X1Var)); - PerfCurveTableData(TableNum).X1 = TableLookup(TableNum).X1Var; - PerfCurveTableData(TableNum).X2 = TableLookup(TableNum).X2Var; - PerfCurveTableData(TableNum).Y(_, _) = TableLookup(TableNum).TableLookupZData(1, 1, 1, 1, _, _); - // if linear interpolation of table is selected, switch interpolation type - } else { - // if linear interpolation of table is selected, fatal if more than 2 independent variables - if (PerfCurve(CurveNum).InterpolationType == LinearInterpolationOfTable) { - ShowSevereError("GetTableInput: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...Invalid " + cAlphaFieldNames(2) + " = " + Alphas(2)); - ShowContinueError("...Choice not allowed with more than 2 indpendent variables."); - ErrorsFound = true; - } - } + std::vector& TableFile::getArray(std::pair colAndRow) { + if (!arrays.count(colAndRow)) { + // create the column from the data if it doesn't exist already + std::size_t col = colAndRow.first; // 0 indexed + std::size_t row = colAndRow.second; // 0 indexed + auto &content = contents[col]; + if (col >= numColumns) { + ShowFatalError("File \"" + filePath + "\" : Requested column (" + General::RoundSigDigits(col+1) + ") exceeds the number of columns (" + General::RoundSigDigits(numColumns) + ")."); + } + if (row >= numRows) { + ShowFatalError("File \"" + filePath + "\" : Requested starting row (" + General::RoundSigDigits(row+1) + ") exceeds the number of rows (" + General::RoundSigDigits(numRows) + ")."); + } + std::vector array(numRows - row); + std::transform(content.begin() + row, content.end(), array.begin(), [](const std::string &str) { + // Convert strings to double + // see https://stackoverflow.com/a/16575025/1344457 + char *pEnd; + double ret = std::strtod(&str[0], &pEnd); + if (*pEnd || str.size() == 0) { + return std::numeric_limits::quiet_NaN(); + } else { + return ret; } - } + }); + arrays[colAndRow] = array; } + return arrays.at(colAndRow); } void InitCurveReporting() @@ -3222,2535 +2339,35 @@ namespace CurveManager { SetupEMSActuator("Curve", PressureCurve(CurveIndex).Name, "Curve Result", - "[unknown]", - PressureCurve(CurveIndex).EMSOverrideOn, - PressureCurve(CurveIndex).EMSOverrideCurveValue); - } // All pressure curves - } - } - - void ReadTableData(int const CurveNum, - std::string &CurrentModuleObject, - bool const ReadFromFile, - std::string &FileName, - Array1S_string Alphas, - Array1S Numbers, - int const NumNumbers, - bool &ErrorsFound) - { - - // SUBROUTINE INFORMATION: - // AUTHOR Richard Raustad, FSEC - // DATE WRITTEN August 2010 - // MODIFIED na - // RE-ENGINEERED na - - // PURPOSE OF THIS SUBROUTINE: - // Given the curve index, read the table data. - - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // USE STATEMENTS: - - // Using/Aliasing - using DataGlobals::DisplayAdvancedReportVariables; - using DataGlobals::OutputFileInits; - using DataSystemVariables::CheckForActualFileName; - using DataSystemVariables::GoodIOStatValue; - using DataSystemVariables::iUnicode_end; - using DataSystemVariables::TempFullFileName; - using General::RoundSigDigits; - - // SUBROUTINE ARGUMENT DEFINITIONS: - - // Argument array dimensioning - - // Locals - // SUBROUTINE PARAMETER DEFINITIONS: - static ObjexxFCL::gio::Fmt fmtA("(A)"); - static ObjexxFCL::gio::Fmt fmtLD("*"); - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int FileNum(0); - int endcol; - int TableNum; - std::string NextLine; // Line of data - int DataSetCount(0); // counter for number of lines read (used in some error messages) - int ReadStat; // File read status - bool EOFonFile; // True if EOF during file read - int I; // Do loop indexes and data set counter - int J; - int NumDataSets; - Real64 Var3; // Temp variables for processing table lookup data - Real64 Var4; - Real64 Var5; - Real64 Var6; - int Var3Index; - int Var4Index; - int Var5Index; - int Var6Index; - int NumIVars; - int TotalDataSets; - int NumbersOffset; - int BaseOffset; - static bool WriteHeaderOnce(true); // eio header file write flag - std::string CharTableData; // used to echo each line of table data read in to eio file - bool EchoTableDataToEio; // logical set equal to global and used to report to eio file - bool FileExists; - IOFlags non_adv; - non_adv.na_on(); // For non-advancing list-directed output - - // Formats - static ObjexxFCL::gio::Fmt Format_140("('! Reading external file tabular data for ',A,' \"',A,'\"')"); - static ObjexxFCL::gio::Fmt Format_150("('! Reading tabular data for ',A,' \"',A,'\"')"); - static ObjexxFCL::gio::Fmt Format_110("('! ')"); - static ObjexxFCL::gio::Fmt Format_130("('READING LOOKUP TABLE DATA')"); - static ObjexxFCL::gio::Fmt Format_131("('END READING LOOKUP TABLE DATA')"); - static ObjexxFCL::gio::Fmt Format_160("(1X,10(I2,:,2X))"); - - // Autodesk:Uninit Initialize variables used uninitialized - TotalDataSets = 0; // Autodesk:Uninit Force default initialization - - EchoTableDataToEio = DisplayAdvancedReportVariables; - TableNum = PerfCurve(CurveNum).TableIndex; - - if (ReadFromFile) { - CheckForActualFileName(FileName, FileExists, TempFullFileName); - if (!FileExists) goto Label999; - FileNum = GetNewUnitNumber(); - { - IOFlags flags; - flags.ACTION("read"); - ObjexxFCL::gio::open(FileNum, TempFullFileName, flags); - if (flags.err()) goto Label999; - } - ObjexxFCL::gio::read(FileNum, fmtA) >> NextLine; - trim(NextLine); - endcol = len(NextLine); - if (endcol == 0) { - ShowWarningError("ReadTableData: Blank line found in external file = " + FileName); - ShowContinueError("...Blank lines are not allowed. Will try to read next line."); - ObjexxFCL::gio::read(FileNum, fmtA) >> NextLine; - trim(NextLine); - endcol = len(NextLine); - if (endcol == 0) { - ShowWarningError("ReadTableData: Data not found on second line in external file = " + FileName); - ShowContinueError("...Check that file is ASCII text and that file is not locked by other applications."); - ShowFatalError("External table data not found. Simulation will terminate."); - } else { - ShowWarningError("Second read attempt found data in external file = " + FileName); - ShowFatalError("...Blank lines are not allowed. Simulation will terminate."); - } - } - if (endcol > 0) { - if (int(NextLine[endcol - 1]) == iUnicode_end) { - ShowSevereError("ReadTableData: For Table:MultiVariableLookup \"" + PerfCurve(CurveNum).Name + - "\" external file, appears to be a Unicode or binary file."); - ShowContinueError("...This file cannot be read by this program. Please save as PC or Unix file and try again"); - ShowFatalError("Program terminates due to previous condition."); - } - } - - ObjexxFCL::gio::rewind(FileNum); - - { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> NumIVars; - ReadStat = flags.ios(); - } - if (NumIVars > 6 || NumIVars < 1) { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...Invalid number of independent variables found in external file = " + FileName); - ShowFatalError("...Only 1 to independent variables are allowed."); - } - - ObjexxFCL::gio::rewind(FileNum); - - if (NumIVars == 1) { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> NumIVars >> TableLookup(TableNum).NumX1Vars; - ReadStat = flags.ios(); - }; - if (NumIVars == 2) { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> NumIVars >> TableLookup(TableNum).NumX1Vars >> TableLookup(TableNum).NumX2Vars; - ReadStat = flags.ios(); - }; - if (NumIVars == 3) { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> NumIVars >> TableLookup(TableNum).NumX1Vars >> TableLookup(TableNum).NumX2Vars >> - TableLookup(TableNum).NumX3Vars; - ReadStat = flags.ios(); - }; - if (NumIVars == 4) { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> NumIVars >> TableLookup(TableNum).NumX1Vars >> TableLookup(TableNum).NumX2Vars >> - TableLookup(TableNum).NumX3Vars >> TableLookup(TableNum).NumX4Vars; - ReadStat = flags.ios(); - }; - if (NumIVars == 5) { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> NumIVars >> TableLookup(TableNum).NumX1Vars >> TableLookup(TableNum).NumX2Vars >> - TableLookup(TableNum).NumX3Vars >> TableLookup(TableNum).NumX4Vars >> TableLookup(TableNum).NumX5Vars; - ReadStat = flags.ios(); - }; - if (NumIVars == 6) { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> NumIVars >> TableLookup(TableNum).NumX1Vars >> TableLookup(TableNum).NumX2Vars >> - TableLookup(TableNum).NumX3Vars >> TableLookup(TableNum).NumX4Vars >> TableLookup(TableNum).NumX5Vars >> - TableLookup(TableNum).NumX6Vars; - ReadStat = flags.ios(); - }; - - if (ReadStat < GoodIOStatValue) goto Label1000; // Autodesk:Uninit TotalDataSets was uninitialized after goto jump - - PerfCurve(CurveNum).NumDims = NumIVars; - // Echo table data for user verification - if (EchoTableDataToEio) { - if (WriteHeaderOnce) { - ObjexxFCL::gio::write(OutputFileInits, Format_110); - WriteHeaderOnce = false; - } - ObjexxFCL::gio::write(OutputFileInits, Format_130); - ObjexxFCL::gio::write(OutputFileInits, Format_140) << CurrentModuleObject << Alphas(1); - } - } else { - if (EchoTableDataToEio) { - if (WriteHeaderOnce) { - ObjexxFCL::gio::write(OutputFileInits, Format_110); - WriteHeaderOnce = false; - } - ObjexxFCL::gio::write(OutputFileInits, Format_130); - ObjexxFCL::gio::write(OutputFileInits, Format_150) << CurrentModuleObject << Alphas(1); - } - NumIVars = Numbers(17); - if (NumIVars > 6 || NumIVars < 1) { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...Invalid number of independent variables."); - ShowFatalError("...Only 1 to 5 independent variables are allowed."); - } - - BaseOffset = 17; - PerfCurve(CurveNum).NumDims = NumIVars; - TableLookup(TableNum).NumX1Vars = Numbers(18); - if (NumIVars > 1) TableLookup(TableNum).NumX2Vars = Numbers(19); - if (NumIVars > 2) TableLookup(TableNum).NumX3Vars = Numbers(20); - if (NumIVars > 3) TableLookup(TableNum).NumX4Vars = Numbers(21); // were these right before? - if (NumIVars > 4) TableLookup(TableNum).NumX5Vars = Numbers(22); - if (NumIVars > 5) TableLookup(TableNum).NumX6Vars = Numbers(23); - } - - if (EchoTableDataToEio) { - if (NumIVars == 1) { - ObjexxFCL::gio::write(CharTableData, Format_160) << NumIVars << TableLookup(TableNum).NumX1Vars; - } else if (NumIVars == 2) { - ObjexxFCL::gio::write(CharTableData, Format_160) << NumIVars << TableLookup(TableNum).NumX1Vars << TableLookup(TableNum).NumX2Vars; - } else if (NumIVars == 3) { - ObjexxFCL::gio::write(CharTableData, Format_160) - << NumIVars << TableLookup(TableNum).NumX1Vars << TableLookup(TableNum).NumX2Vars << TableLookup(TableNum).NumX3Vars; - } else if (NumIVars == 4) { - ObjexxFCL::gio::write(CharTableData, Format_160) << NumIVars << TableLookup(TableNum).NumX1Vars << TableLookup(TableNum).NumX2Vars - << TableLookup(TableNum).NumX3Vars << TableLookup(TableNum).NumX4Vars; - } else if (NumIVars == 5) { - ObjexxFCL::gio::write(CharTableData, Format_160) - << NumIVars << TableLookup(TableNum).NumX1Vars << TableLookup(TableNum).NumX2Vars << TableLookup(TableNum).NumX3Vars - << TableLookup(TableNum).NumX4Vars << TableLookup(TableNum).NumX5Vars; - } else if (NumIVars == 6) { - ObjexxFCL::gio::write(CharTableData, Format_160) - << NumIVars << TableLookup(TableNum).NumX1Vars << TableLookup(TableNum).NumX2Vars << TableLookup(TableNum).NumX3Vars - << TableLookup(TableNum).NumX4Vars << TableLookup(TableNum).NumX5Vars << TableLookup(TableNum).NumX6Vars; - } - - ObjexxFCL::gio::write(OutputFileInits, fmtA) << trim(CharTableData); - } - - TableLookup(TableNum).X1Var.allocate(TableLookup(TableNum).NumX1Vars); - TableLookup(TableNum).X2Var.allocate(TableLookup(TableNum).NumX2Vars); - TableLookup(TableNum).X3Var.allocate(TableLookup(TableNum).NumX3Vars); - TableLookup(TableNum).X4Var.allocate(TableLookup(TableNum).NumX4Vars); - TableLookup(TableNum).X5Var.allocate(TableLookup(TableNum).NumX5Vars); - TableLookup(TableNum).X6Var.allocate(TableLookup(TableNum).NumX6Vars); - - if (NumIVars > 0) { - if (ReadFromFile) { - - { - IOFlags flags; - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> TableLookup(TableNum).X1Var(I); - } - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X1Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - - if (NumNumbers >= BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars) { - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - TableLookup(TableNum).X1Var(I) = Numbers(BaseOffset + NumIVars + I); - } - std::vector x1values(TableLookup(TableNum).X1Var.begin(), TableLookup(TableNum).X1Var.end()); - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X1Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - } else { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The number of numeric inputs is less than expected."); - ErrorsFound = true; - } - } - - // check to make sure XVars are in increaseing (ascending) order - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - if (I == 1) continue; - if (TableLookup(TableNum).X1Var(I) <= TableLookup(TableNum).X1Var(I - 1)) { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The values for the independent variable X1 must be in increasing (ascending) order."); - ErrorsFound = true; - break; - } - } - - if (NumIVars > 1) { - if (ReadFromFile) { - { - IOFlags flags; - for (I = 1; I <= TableLookup(TableNum).NumX2Vars; ++I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> TableLookup(TableNum).X2Var(I); - } - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX2Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X2Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - if (NumNumbers >= BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + TableLookup(TableNum).NumX2Vars) { - for (I = 1; I <= TableLookup(TableNum).NumX2Vars; ++I) { - TableLookup(TableNum).X2Var(I) = Numbers(BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + I); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX2Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X2Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - } else { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The number of numeric inputs is less than expected."); - ErrorsFound = true; - } - } - - // check to make sure XVars are in increasing (ascending) order - for (I = 1; I <= TableLookup(TableNum).NumX2Vars; ++I) { - if (I == 1) continue; - if (TableLookup(TableNum).X2Var(I) <= TableLookup(TableNum).X2Var(I - 1)) { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The values for the independent variable X2 must be in increasing (ascending) order."); - ErrorsFound = true; - break; - } - } - - if (NumIVars > 2) { - if (ReadFromFile) { - { - IOFlags flags; - for (I = 1; I <= TableLookup(TableNum).NumX3Vars; ++I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> TableLookup(TableNum).X3Var(I); - } - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX3Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X3Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - if (NumNumbers >= BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + TableLookup(TableNum).NumX2Vars + - TableLookup(TableNum).NumX3Vars) { - - for (I = 1; I <= TableLookup(TableNum).NumX3Vars; ++I) { - TableLookup(TableNum).X3Var(I) = - Numbers(BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + TableLookup(TableNum).NumX2Vars + I); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX3Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X3Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - } else { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The number of numeric inputs is less than expected."); - ErrorsFound = true; - } - } - - // check to make sure XVars are in increasing (ascending) order - for (I = 1; I <= TableLookup(TableNum).NumX3Vars; ++I) { - if (I == 1) continue; - if (TableLookup(TableNum).X3Var(I) <= TableLookup(TableNum).X3Var(I - 1)) { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The values for the independent variable X3 must be in increasing (ascending) order."); - ErrorsFound = true; - break; - } - } - - if (NumIVars > 3) { - if (ReadFromFile) { - - { - IOFlags flags; - - for (I = 1; I <= TableLookup(TableNum).NumX4Vars; ++I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> TableLookup(TableNum).X4Var(I); - } - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - TableLookup(TableNum).X4Var(I); - for (I = 1; I <= TableLookup(TableNum).NumX4Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X4Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - if (NumNumbers >= BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + TableLookup(TableNum).NumX2Vars + - TableLookup(TableNum).NumX3Vars + TableLookup(TableNum).NumX4Vars) { - - for (I = 1; I <= TableLookup(TableNum).NumX4Vars; ++I) { - TableLookup(TableNum).X4Var(I) = Numbers(BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + - TableLookup(TableNum).NumX2Vars + TableLookup(TableNum).NumX3Vars + I); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX4Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X4Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - } else { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The number of numeric inputs is less than expected."); - ErrorsFound = true; - } - } - - // check to make sure XVars are in increaseing (ascending) order - for (I = 1; I <= TableLookup(TableNum).NumX4Vars; ++I) { - if (I == 1) continue; - if (TableLookup(TableNum).X4Var(I) <= TableLookup(TableNum).X4Var(I - 1)) { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The values for the independent variable X4 must be in increasing (ascending) order."); - ErrorsFound = true; - break; - } - } - - if (NumIVars > 4) { - if (ReadFromFile) { - { - IOFlags flags; - for (I = 1; I <= TableLookup(TableNum).NumX5Vars; ++I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> TableLookup(TableNum).X5Var(I); - } - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX5Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X5Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - if (NumNumbers >= BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + TableLookup(TableNum).NumX2Vars + - TableLookup(TableNum).NumX3Vars + TableLookup(TableNum).NumX4Vars + - TableLookup(TableNum).NumX5Vars) { - - for (I = 1; I <= TableLookup(TableNum).NumX5Vars; ++I) { - TableLookup(TableNum).X5Var(I) = - Numbers(BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + TableLookup(TableNum).NumX2Vars + - TableLookup(TableNum).NumX3Vars + TableLookup(TableNum).NumX4Vars + I); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX5Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X5Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - } else { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The number of numeric inputs is less than expected."); - ErrorsFound = true; - } - } - // check to make sure XVars are in increaseing (ascending) order - for (I = 1; I <= TableLookup(TableNum).NumX5Vars; ++I) { - if (I == 1) continue; - if (TableLookup(TableNum).X5Var(I) <= TableLookup(TableNum).X5Var(I - 1)) { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The values for the independent variable X5 must be in increasing (ascending) order."); - ErrorsFound = true; - break; - } - } - - if (NumIVars > 5) { // something is wrong with this structure here... - if (ReadFromFile) { - { - IOFlags flags; - for (I = 1; I <= TableLookup(TableNum).NumX6Vars; ++I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> TableLookup(TableNum).X6Var(I); - } - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX6Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X6Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - if (NumNumbers >= BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + TableLookup(TableNum).NumX2Vars + - TableLookup(TableNum).NumX3Vars + TableLookup(TableNum).NumX4Vars + - TableLookup(TableNum).NumX5Vars + TableLookup(TableNum).NumX6Vars) { - - for (I = 1; I <= TableLookup(TableNum).NumX6Vars; ++I) { - TableLookup(TableNum).X6Var(I) = - Numbers(BaseOffset + NumIVars + TableLookup(TableNum).NumX1Vars + TableLookup(TableNum).NumX2Vars + - TableLookup(TableNum).NumX3Vars + TableLookup(TableNum).NumX4Vars + - TableLookup(TableNum).NumX5Vars + I); - } - - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX6Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) << TableLookup(TableNum).X6Var(I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - } else { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The number of numeric inputs is less than expected."); - ErrorsFound = true; - } - } - // check to make sure XVars are in increaseing (ascending) order - for (I = 1; I <= TableLookup(TableNum).NumX6Vars; ++I) { - if (I == 1) continue; - if (TableLookup(TableNum).X6Var(I) <= TableLookup(TableNum).X6Var(I - 1)) { - ShowSevereError("ReadTableData: For " + CurrentModuleObject + ": " + Alphas(1)); - ShowContinueError("...The values for the independent variable X6 must be in increasing (ascending) order."); - ErrorsFound = true; - break; - } - } - TableLookup(TableNum).TableLookupZData.allocate(TableLookup(TableNum).NumX6Vars, - TableLookup(TableNum).NumX5Vars, - TableLookup(TableNum).NumX4Vars, - TableLookup(TableNum).NumX3Vars, - TableLookup(TableNum).NumX2Vars, - TableLookup(TableNum).NumX1Vars); - } else { - TableLookup(TableNum).TableLookupZData.allocate(1, - TableLookup(TableNum).NumX5Vars, - TableLookup(TableNum).NumX4Vars, - TableLookup(TableNum).NumX3Vars, - TableLookup(TableNum).NumX2Vars, - TableLookup(TableNum).NumX1Vars); - } - } else { - TableLookup(TableNum).TableLookupZData.allocate(1, - 1, - TableLookup(TableNum).NumX4Vars, - TableLookup(TableNum).NumX3Vars, - TableLookup(TableNum).NumX2Vars, - TableLookup(TableNum).NumX1Vars); - } - } else { - TableLookup(TableNum).TableLookupZData.allocate( - 1, 1, 1, TableLookup(TableNum).NumX3Vars, TableLookup(TableNum).NumX2Vars, TableLookup(TableNum).NumX1Vars); - } - } else { - TableLookup(TableNum).TableLookupZData.allocate(1, 1, 1, 1, TableLookup(TableNum).NumX2Vars, TableLookup(TableNum).NumX1Vars); - } - } else { - TableLookup(TableNum).TableLookupZData.allocate(1, 1, 1, 1, 1, TableLookup(TableNum).NumX1Vars); - } - } - - TotalDataSets = 1; - DataSetCount = 0; - if (NumIVars == 3) TotalDataSets = TableLookup(TableNum).NumX3Vars; - if (NumIVars == 4) TotalDataSets = TableLookup(TableNum).NumX3Vars * TableLookup(TableNum).NumX4Vars; - if (NumIVars == 5) TotalDataSets = TableLookup(TableNum).NumX3Vars * TableLookup(TableNum).NumX4Vars * TableLookup(TableNum).NumX5Vars; - if (NumIVars == 6) - TotalDataSets = - TableLookup(TableNum).NumX3Vars * TableLookup(TableNum).NumX4Vars * TableLookup(TableNum).NumX5Vars * TableLookup(TableNum).NumX6Vars; - - NumbersOffset = 17 + NumIVars + TableLookup(TableNum).NumX1Vars + TableLookup(TableNum).NumX2Vars + TableLookup(TableNum).NumX3Vars + - TableLookup(TableNum).NumX4Vars + TableLookup(TableNum).NumX5Vars + TableLookup(TableNum).NumX6Vars + 1; - - // initialize NumX2Vars to 1 so the DO loops work correctly - if (NumIVars == 1) TableLookup(TableNum).NumX2Vars = 1; - - for (NumDataSets = 1; NumDataSets <= TotalDataSets; ++NumDataSets) { - - if (NumIVars == 3) { - if (ReadFromFile) { - - { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> Var3; - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - ObjexxFCL::gio::write(CharTableData, fmtLD) << Var3; - ObjexxFCL::gio::write(OutputFileInits, fmtA) << trim(CharTableData); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - Var3 = Numbers(NumbersOffset); - ++NumbersOffset; - - if (EchoTableDataToEio) { - ObjexxFCL::gio::write(CharTableData, fmtLD) << Var3; - ObjexxFCL::gio::write(OutputFileInits, fmtA) << trim(CharTableData); - } - } - } else if (NumIVars == 4) { - if (ReadFromFile) { - - { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> Var3 >> Var4; - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - ObjexxFCL::gio::write(CharTableData, fmtLD) << Var3 << " " << Var4; - ObjexxFCL::gio::write(OutputFileInits, fmtA) << trim(CharTableData); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - Var3 = Numbers(NumbersOffset); - Var4 = Numbers(NumbersOffset + 1); - NumbersOffset += 2; - - if (EchoTableDataToEio) { - ObjexxFCL::gio::write(CharTableData, fmtLD) << Var3 << " " << Var4; - ObjexxFCL::gio::write(OutputFileInits, fmtA) << trim(CharTableData); - } - } - } else if (NumIVars == 5) { - if (ReadFromFile) { - - { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> Var3 >> Var4 >> Var5; - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - ObjexxFCL::gio::write(CharTableData, fmtLD) << Var3 << " " << Var4 << " " << Var5; - ObjexxFCL::gio::write(OutputFileInits, fmtA) << trim(CharTableData); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - Var3 = Numbers(NumbersOffset); - Var4 = Numbers(NumbersOffset + 1); - Var5 = Numbers(NumbersOffset + 2); - NumbersOffset += 3; - - if (EchoTableDataToEio) { - ObjexxFCL::gio::write(CharTableData, fmtLD) << Var3 << " " << Var4 << " " << Var5; - ObjexxFCL::gio::write(OutputFileInits, fmtA) << trim(CharTableData); - } - } - } else if (NumIVars == 6) { - if (ReadFromFile) { - - { - IOFlags flags; - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> Var3 >> Var4 >> Var5 >> Var6; - ReadStat = flags.ios(); - } - - if (EchoTableDataToEio) { - ObjexxFCL::gio::write(CharTableData, fmtLD) << Var3 << " " << Var4 << " " << Var5 << " " << Var6; - ObjexxFCL::gio::write(OutputFileInits, fmtA) << trim(CharTableData); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - Var3 = Numbers(NumbersOffset); - Var4 = Numbers(NumbersOffset + 1); - Var5 = Numbers(NumbersOffset + 2); - Var6 = Numbers(NumbersOffset + 3); - NumbersOffset += 4; - - if (EchoTableDataToEio) { - ObjexxFCL::gio::write(CharTableData, fmtLD) << Var3 << " " << Var4 << " " << Var5 << " " << Var6; - ObjexxFCL::gio::write(OutputFileInits, fmtA) << trim(CharTableData); - } - } - } - - if (NumIVars > 2) { - Var3Index = 0; - // match the independent variable values to the allowed values to find the index. Input must match allowed values. - for (I = 1; I <= TableLookup(TableNum).NumX3Vars; ++I) { - if (Var3 != TableLookup(TableNum).X3Var(I)) continue; - Var3Index = I; - break; - } - if (Var3Index == 0) { - ShowSevereError("GetTableDataFile: For Table:MultiVariableLookup \"" + PerfCurve(CurveNum).Name + "\""); - ShowContinueError("...The value of the 3rd independent variable (" + RoundSigDigits(Var3, 9) + - ") does not match the values listed as valid entries for this independent variable."); - ShowContinueError("...Valid entries are: "); - if (TableLookup(TableNum).NumX3Vars >= 1) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(1), 9)); - if (TableLookup(TableNum).NumX3Vars >= 2) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(2), 9)); - if (TableLookup(TableNum).NumX3Vars >= 3) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(3), 9)); - if (TableLookup(TableNum).NumX3Vars >= 4) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(4), 9)); - if (TableLookup(TableNum).NumX3Vars >= 5) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(5), 9)); - if (TableLookup(TableNum).NumX3Vars >= 6) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(6), 9)); - if (TableLookup(TableNum).NumX3Vars >= 7) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(7), 9)); - if (TableLookup(TableNum).NumX3Vars >= 8) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(8), 9)); - if (TableLookup(TableNum).NumX3Vars >= 9) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(9), 9)); - if (TableLookup(TableNum).NumX3Vars >= 10) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X3Var(10), 9)); - ShowContinueError("...This occurs for data set = " + RoundSigDigits(DataSetCount + 1) + " in data file = " + FileName); - ErrorsFound = true; - Var3Index = 1; - } - } else { - Var3Index = 1; - } - - if (NumIVars > 3) { - Var4Index = 0; - // match the independent variable values to the allowed values to find the index. Input must match allowed values. - for (I = 1; I <= TableLookup(TableNum).NumX4Vars; ++I) { - if (Var4 != TableLookup(TableNum).X4Var(I)) continue; - Var4Index = I; - break; - } - if (Var4Index == 0) { - ShowSevereError("GetTableDataFile: For Table:MultiVariableLookup \"" + PerfCurve(CurveNum).Name + "\""); - ShowContinueError("...The value of the 4th independent variable (" + RoundSigDigits(Var4, 9) + - ") does not match the values listed as valid entries for this independent variable."); - ShowContinueError("...Valid entries are: "); - if (TableLookup(TableNum).NumX4Vars >= 1) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(1), 9)); - if (TableLookup(TableNum).NumX4Vars >= 2) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(2), 9)); - if (TableLookup(TableNum).NumX4Vars >= 3) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(3), 9)); - if (TableLookup(TableNum).NumX4Vars >= 4) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(4), 9)); - if (TableLookup(TableNum).NumX4Vars >= 5) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(5), 9)); - if (TableLookup(TableNum).NumX4Vars >= 6) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(6), 9)); - if (TableLookup(TableNum).NumX4Vars >= 7) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(7), 9)); - if (TableLookup(TableNum).NumX4Vars >= 8) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(8), 9)); - if (TableLookup(TableNum).NumX4Vars >= 9) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(9), 9)); - if (TableLookup(TableNum).NumX4Vars >= 10) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X4Var(10), 9)); - ShowContinueError("...This occurs for data set = " + RoundSigDigits(DataSetCount + 1) + " in data file = " + FileName); - ErrorsFound = true; - Var4Index = 1; - } - } else { - Var4Index = 1; - } - - if (NumIVars > 4) { - Var5Index = 0; - // match the independent variable values to the allowed values to find the index. Input must match allowed values. - for (I = 1; I <= TableLookup(TableNum).NumX5Vars; ++I) { - if (Var5 != TableLookup(TableNum).X5Var(I)) continue; - Var5Index = I; - break; - } - if (Var5Index == 0 && NumIVars > 4) { - ShowSevereError("GetTableDataFile: For Table:MultiVariableLookup \"" + PerfCurve(CurveNum).Name + "\""); - ShowContinueError("...The value of the 5th independent variable (" + RoundSigDigits(Var5, 9) + - ") does not match the values listed as valid entries for this independent variable."); - ShowContinueError("...Valid entries are: "); - if (TableLookup(TableNum).NumX5Vars >= 1) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(1), 9)); - if (TableLookup(TableNum).NumX5Vars >= 2) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(2), 9)); - if (TableLookup(TableNum).NumX5Vars >= 3) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(3), 9)); - if (TableLookup(TableNum).NumX5Vars >= 4) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(4), 9)); - if (TableLookup(TableNum).NumX5Vars >= 5) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(5), 9)); - if (TableLookup(TableNum).NumX5Vars >= 6) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(6), 9)); - if (TableLookup(TableNum).NumX5Vars >= 7) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(7), 9)); - if (TableLookup(TableNum).NumX5Vars >= 8) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(8), 9)); - if (TableLookup(TableNum).NumX5Vars >= 9) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(9), 9)); - if (TableLookup(TableNum).NumX5Vars >= 10) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X5Var(10), 9)); - ShowContinueError("...This occurs for data set = " + RoundSigDigits(DataSetCount + 1) + " in data file = " + FileName); - ErrorsFound = true; - Var5Index = 1; - } - } else { - Var5Index = 1; - } - - if (NumIVars > 5) { - Var6Index = 0; - // match the independent variable values to the allowed values to find the index. Input must match allowed values. - for (I = 1; I <= TableLookup(TableNum).NumX6Vars; ++I) { - if (Var6 != TableLookup(TableNum).X6Var(I)) continue; - Var6Index = I; - break; - } - if (Var6Index == 0 && NumIVars > 5) { - ShowSevereError("GetTableDataFile: For Table:MultiVariableLookup \"" + PerfCurve(CurveNum).Name + "\""); - ShowContinueError("...The value of the 6th independent variable (" + RoundSigDigits(Var6, 9) + - ") does not match the values listed as valid entries for this independent variable."); - ShowContinueError("...Valid entries are: "); - if (TableLookup(TableNum).NumX6Vars >= 1) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(1), 9)); - if (TableLookup(TableNum).NumX6Vars >= 2) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(2), 9)); - if (TableLookup(TableNum).NumX6Vars >= 3) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(3), 9)); - if (TableLookup(TableNum).NumX6Vars >= 4) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(4), 9)); - if (TableLookup(TableNum).NumX6Vars >= 5) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(5), 9)); - if (TableLookup(TableNum).NumX6Vars >= 6) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(6), 9)); - if (TableLookup(TableNum).NumX6Vars >= 7) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(7), 9)); - if (TableLookup(TableNum).NumX6Vars >= 8) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(8), 9)); - if (TableLookup(TableNum).NumX6Vars >= 9) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(9), 9)); - if (TableLookup(TableNum).NumX6Vars >= 10) ShowContinueError("..." + RoundSigDigits(TableLookup(TableNum).X6Var(10), 9)); - ShowContinueError("...This occurs for data set = " + RoundSigDigits(DataSetCount + 1) + " in data file = " + FileName); - ErrorsFound = true; - Var6Index = 1; - } - } else { - Var6Index = 1; - } - - // now read in X1 | X2 matrix data set - if (PerfCurve(CurveNum).X1SortOrder == ASCENDING) { - if (PerfCurve(CurveNum).X2SortOrder == ASCENDING) { - for (J = 1; J <= TableLookup(TableNum).NumX2Vars; ++J) { - if (ReadFromFile) { - - { - IOFlags flags; - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> - TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I); - } - ReadStat = flags.ios(); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I) = Numbers(NumbersOffset); - ++NumbersOffset; - } - } - } - } else { // PerfCurve(CurveNum)%X2SortOrder == DESCENDING - - for (J = TableLookup(TableNum).NumX2Vars; J >= 1; --J) { - - if (ReadFromFile) { - - { - IOFlags flags; - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> - TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I); - } - ReadStat = flags.ios(); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I) = - Numbers(NumbersOffset) / TableData(TableNum).NormalPoint; - ++NumbersOffset; - } - } - } - } - } else { // PerfCurve(CurveNum)%X1SortOrder == DESCENDING - if (PerfCurve(CurveNum).X2SortOrder == ASCENDING) { - - for (J = 1; J <= TableLookup(TableNum).NumX2Vars; ++J) { - - if (ReadFromFile) { - - { - IOFlags flags; - for (I = TableLookup(TableNum).NumX1Vars; I >= 1; --I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> - TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I); - } - ReadStat = flags.ios(); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - - for (I = TableLookup(TableNum).NumX1Vars; I >= 1; --I) { - TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I) = Numbers(NumbersOffset); - ++NumbersOffset; - } - } - } - } else { - for (J = TableLookup(TableNum).NumX2Vars; J >= 1; --J) { - - if (ReadFromFile) { - - { - IOFlags flags; - for (I = TableLookup(TableNum).NumX1Vars; I >= 1; --I) { - ObjexxFCL::gio::read(FileNum, fmtLD, flags) >> - TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I); - } - ReadStat = flags.ios(); - } - - if (ReadStat < GoodIOStatValue) goto Label1000; - - } else { - - for (I = TableLookup(TableNum).NumX1Vars; I >= 1; --I) { - TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I) = Numbers(NumbersOffset); - ++NumbersOffset; - } - } - } - } - } - - for (J = 1; J <= TableLookup(TableNum).NumX2Vars; ++J) { - - // write data to eio file in ascending order - if (EchoTableDataToEio) { - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - ObjexxFCL::gio::write(OutputFileInits, fmtLD, non_adv) - << TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I); - } - ObjexxFCL::gio::write(OutputFileInits); - } - - // normalize the data according to the user entered normal point - for (I = 1; I <= TableLookup(TableNum).NumX1Vars; ++I) { - TableLookup(TableNum).TableLookupZData(Var6Index, Var5Index, Var4Index, Var3Index, J, I) /= TableData(TableNum).NormalPoint; - } - } - - ++DataSetCount; - } - - if (EchoTableDataToEio) { - ObjexxFCL::gio::write(OutputFileInits, Format_131); - } - - Label1000:; - EOFonFile = true; - if (ReadFromFile) ObjexxFCL::gio::close(FileNum); - - if (TotalDataSets < DataSetCount) { - ShowSevereError("GetTableDataFile: For Table:MultiVariableLookup \"" + PerfCurve(CurveNum).Name + "\""); - ShowContinueError("...The required number of data sets (" + RoundSigDigits(TotalDataSets) + - ") is less than the number determined by the number and count of independent variables (" + - RoundSigDigits(DataSetCount) + ")."); - } - - return; - - Label999:; - ShowSevereError("CurveManager: SearchTableDataFile: Could not open Table Data File, expecting it as file name = " + FileName); - ShowContinueError("Certain run environments require a full path to be included with the file name in the input field."); - ShowContinueError("Try again with putting full path and file name in the field."); - ShowFatalError("Program terminates due to these conditions."); - } - - Real64 DLAG(Real64 const XX, - Real64 const YY, - Array1S X, - Array1S Y, - Array2S Z, - int const NX, - int const NY, - int const M, - int &IEXTX, - int &IEXTY) - { - - // SUBROUTINE INFORMATION: - // AUTHOR AUTHOR: F.D.HAMMERLING, COMPUTING TECHNOLOGY CENTER, ORNL - // DATE WRITTEN 2010 - // MODIFIED Richard Raustad, FSEC - // RE-ENGINEERED na - - // PURPOSE OF THIS SUBROUTINE: - // DLAG IS A DOUBLE-PRECISION, TWO-DIMENSIONAL, - // LAGRANGIAN INTERPOLATION - // INPUT VARIABLES: - // XX X-COORDINATE OF THE DESIRED INTERPOLATED POINT - // YY Y-COORDINATE OF THE DESIRED INTERPOLATED POINT - // X SINGLY DIMENSIONED ARRAY OF X-COORDINATES - // Y SINGLY DIMENSIONED ARRAY OF Y-COORDINATES - // Z DOUBLY DIMENSIONED ARRAY OF FUNCTION VALUES, - // I.E. Z(I,J) = F( X(I), Y(J) ) - // NX NUMBER OF ELEMENTS IN THE X-ARRAY - // NY NUMBER OF ELEMENTS IN THE Y-ARRAY - // M THE SQUARE ROOT OF THE NUMBER OF POINTS TO BE - // CONSIDERED IN THE INTERPOLATION - NUMBER OF - // POINTS IN EACH DIRECTION - // ID THE FIRST DIMENSION OF THE Z-ARRAY (AT LEAST NX) - // OUTPUT VARIABLES: - // IEXTX =1, IF EXTRAPOLATION OCCURED ABOVE THE X-ARRAY - // =0, IF INTERPOLATION OCCURED - // =-1, IF EXTRAPOLATION OCCURED BELOW THE X-ARRAY - // IEXTY SAME FOR THE Y-ARRAY AS IEXTX IS FOR THE X-ARRAY - // THIS PROGRAM WAS MODIFIED AUGUST 1984 BY CJ EMERSON TO INSURE - // THAT ITERATIVE CALLS TO DLAG USE THE SAME POINTS FOR INTERPOLATION. - // ISXPT(ISYPT) ARE CHOSEN FROM THE UPPER END OF THE INTERVAL. - // ALSO THE PROGRAM WAS MODIFIED SO THAT EXTRAPOLATION ALWAYS USES - // AT MOST TWO POINTS. - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // USE STATEMENTS: - // na - - // Return value - Real64 DLAG; - - // Argument array dimensioning - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // DIMENSION Z(ID,NY),X(NX),Y(NY),XLAG(100) - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS:! - int I; - int ISXPT(0); - int IEXPT(0); - int J; - int ISYPT(0); - int IEYPT(0); - int K; - int M1; - Real64 MIDX; - Real64 MIDY; - - // INITIALIZE - bool QUITX = false; - bool QUITY = false; - IEXTX = 0; - IEXTY = 0; - // The following code has been upgraded to current Fortran standards - // See Starteam Revision 33, August 17, 2010 for legacy code if comparison is needed - // FIND THE RANGE OF INTERPOLATION ALONG X - M1 = M; // number of points to be interpolated (X direction is first) - if (M1 > NX) M1 = NX; // limit to number of X points if necessary - - // loop through X data and find the first x-coordinate less than the interpolated point - // if the interpolation point is less than or greater than the X data then linearly extrapolate - // linear extrapolation uses only 2 points (M1=2) - for (I = 1; I <= NX; ++I) { - if (XX - X(I) < 0.0) { - MIDX = I; // found X point just greater than interpolation point - if (MIDX == 1) { - IEXTX = -1; // extrapolating at the lower bound of x - if (M1 > 2) M1 = 2; // limit to linear extrapolation - } - ISXPT = MIDX - ((M1 + 1) / 2); // calculate starting point in X array - if (ISXPT <= 0) ISXPT = 1; // limit to first element in X array - IEXPT = ISXPT + M1 - 1; // calculate ending point in X array - if (IEXPT > NX) { - ISXPT = NX - M1 + 1; // if upper X array boundary exceeded, recalculate starting point - IEXPT = NX; // limit ending point to upper boundary of X array - } - break; - } else if (XX - X(I) == 0.0) { // interpolation point is equal to element in X array - QUITX = true; // exact interpolation point found in X array, do not interpolate - break; - } else if (I == NX) { // interpolation point is greater than max X value - IEXTX = 1; // extrapolating at the upper bound of X - if (M1 > 2) M1 = 2; // limit to linear extrapolation - ISXPT = NX - M1 + 1; // calculate starting point in X array - IEXPT = NX; // ending point equals upper bound of X array - break; - } - } - - M1 = M; // number of points to be interpolated (Y direction is second) - if (M1 > NY) M1 = NY; // limit to number of Y points if necessary - - for (J = 1; J <= NY; ++J) { - if (YY - Y(J) < 0.0) { - MIDY = J; // found Y point just greater than interpolation point - if (MIDY <= 1) { - IEXTY = -1; // extrapolating at the lower bound of y - if (M1 > 2) M1 = 2; // limit to linear extrapolation - } - ISYPT = MIDY - ((M1 + 1) / 2); // calculate starting point in Y array - if (ISYPT <= 0) ISYPT = 1; // limit to first element in array - IEYPT = ISYPT + M1 - 1; // calculate ending point in X array - if (IEYPT > NY) { - ISYPT = NY - M1 + 1; // if upper Y array boundary exceeded, recalculate starting point - IEYPT = NY; // limit ending point to upper boundary of Y array - } - break; - } else if (YY - Y(J) == 0.0) { // interpolation point is equal to element in Y array - QUITY = true; // exact interpolation point found in Y array, do not interpolate - break; - } else if (J == NY) { // interpolation point is greater than max Y value - IEXTY = 1; // extrapolating at the upper bound of Y - if (M1 > 2) M1 = 2; // limit to linear extrapolation - ISYPT = NY - M1 + 1; // calculate starting point in Y array - IEYPT = NY; // ending point equals upper bound of Y array - break; - } - } - - if (QUITX && QUITY) { - DLAG = Z(J, I); // found exact X and Y point in Z array - } else if (QUITX && !QUITY) { // only interpolate in Y direction - Array1D XLAG(IEYPT); - for (int l = ISYPT; l <= IEYPT; ++l) { - XLAG(l) = Z(l, I); // store X's at each Y (I = midpoint of array from above) - } - Interpolate_Lagrange(YY, XLAG, Y, ISYPT, IEYPT, DLAG); // now interpolate these X's - } else if (!QUITX && QUITY) { // only interpolate in X direction - Interpolate_Lagrange(XX, Z(J, _), X, ISXPT, IEXPT, DLAG); // (:,J) interpolate X array at fixed Y (J here) - } else { // else interpolate in X and Y directions - Array1D XLAG(IEYPT); - for (K = ISYPT; K <= IEYPT; ++K) { - Interpolate_Lagrange(XX, Z(K, _), X, ISXPT, IEXPT, XLAG(K)); // (:,K) interpolate X array at all Y's (K here) - } - Interpolate_Lagrange(YY, XLAG, Y, ISYPT, IEYPT, DLAG); // final interpolation of X array - } - - return DLAG; - } - - Real64 PerformanceCurveObject(int const CurveIndex, // index of curve in curve array - Real64 const Var1, // 1st independent variable - Optional Var2, // 2nd independent variable - Optional Var3, // 3rd independent variable - Optional Var4 // 4th independent variable - ) - { - - // FUNCTION INFORMATION: - // AUTHOR Fred Buhl - // DATE WRITTEN May 2000 - // MODIFIED Lixing Gu, July 2006; B. Griffith July 2006 - // 22Aug2010 Craig Wray, added new curves for fan component model: - // FanPressureRise, ExponentialSkewNormal, Sigmoid, RectangularHyperbola1, - // RectangularHyperbola2, ExponentialDecay - - // RE-ENGINEERED Autodesk: Performance tuning - - // PURPOSE OF THIS FUNCTION: - // Given the curve index and the values of 1 or 2 independent variables, - // returns the value of an equipment performance curve. - - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // USE STATEMENTS: - // na - - // Return value - Real64 CurveValue; - - // Locals - // FUNCTION ARGUMENT DEFINITIONS: - - // FUNCTION PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // FUNCTION LOCAL VARIABLE DECLARATIONS: - - static Real64 const sqrt_2_inv(1.0 / std::sqrt(2.0)); - - Real64 CoeffZ1; // cpw22Aug2010 Coefficient Z1 in exponential skew normal curve - Real64 CoeffZ2; // cpw22Aug2010 Coefficient Z2 in exponential skew normal curve - Real64 CoeffZ3; // cpw22Aug2010 Coefficient Z3 in exponential skew normal curve - Real64 CurveValueNumer; // cpw22Aug2010 Numerator in in exponential skew normal curve - Real64 CurveValueDenom; // cpw22Aug2010 Numerator in in exponential skew normal curve - Real64 CurveValueExp; // cpw22Aug2010 Exponential term in sigmoid curve - auto const &Curve(PerfCurve(CurveIndex)); - - Real64 const V1(max(min(Var1, Curve.Var1Max), Curve.Var1Min)); // 1st independent variable after limits imposed - Real64 const V2(Var2.present() ? max(min(Var2, Curve.Var2Max), Curve.Var2Min) : 0.0); // 2nd independent variable after limits imposed - Real64 const V3(Var3.present() ? max(min(Var3, Curve.Var3Max), Curve.Var3Min) : 0.0); // 3rd independent variable after limits imposed - Real64 const V4(Var4.present() ? max(min(Var4, Curve.Var4Max), Curve.Var4Min) : 0.0); // 4th independent variable after limits imposed - - { - auto const SELECT_CASE_var(Curve.CurveType); - if (SELECT_CASE_var == Linear) { - CurveValue = Curve.Coeff1 + V1 * Curve.Coeff2; - } else if (SELECT_CASE_var == Quadratic) { - CurveValue = Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * Curve.Coeff3); - } else if (SELECT_CASE_var == QuadLinear) { - CurveValue = Curve.Coeff1 + V1 * Curve.Coeff2 + V2 * Curve.Coeff3 + V3 * Curve.Coeff4 + V4 * Curve.Coeff5; - } else if (SELECT_CASE_var == Cubic) { - CurveValue = Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * (Curve.Coeff3 + V1 * Curve.Coeff4)); - } else if (SELECT_CASE_var == Quartic) { - CurveValue = Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * (Curve.Coeff3 + V1 * (Curve.Coeff4 + V1 * Curve.Coeff5))); - } else if (SELECT_CASE_var == BiQuadratic) { - CurveValue = - Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * Curve.Coeff3) + V2 * (Curve.Coeff4 + V2 * Curve.Coeff5) + V1 * V2 * Curve.Coeff6; - } else if (SELECT_CASE_var == QuadraticLinear) { - CurveValue = (Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * Curve.Coeff3)) + (Curve.Coeff4 + V1 * (Curve.Coeff5 + V1 * Curve.Coeff6)) * V2; - } else if (SELECT_CASE_var == CubicLinear) { - CurveValue = (Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * (Curve.Coeff3 + V1 * Curve.Coeff4))) + (Curve.Coeff5 + V1 * Curve.Coeff6) * V2; - } else if (SELECT_CASE_var == BiCubic) { - CurveValue = Curve.Coeff1 + V1 * Curve.Coeff2 + V1 * V1 * Curve.Coeff3 + V2 * Curve.Coeff4 + V2 * V2 * Curve.Coeff5 + - V1 * V2 * Curve.Coeff6 + V1 * V1 * V1 * Curve.Coeff7 + V2 * V2 * V2 * Curve.Coeff8 + V1 * V1 * V2 * Curve.Coeff9 + - V1 * V2 * V2 * Curve.Coeff10; - } else if (SELECT_CASE_var == ChillerPartLoadWithLift) { - CurveValue = Curve.Coeff1 + Curve.Coeff2 * V1 + Curve.Coeff3 * V1 * V1 + Curve.Coeff4 * V2 + Curve.Coeff5 * V2 * V2 + - Curve.Coeff6 * V1 * V2 + Curve.Coeff7 * V1 * V1 * V1 + Curve.Coeff8 * V2 * V2 * V2 + Curve.Coeff9 * V1 * V1 * V2 + - Curve.Coeff10 * V1 * V2 * V2 + Curve.Coeff11 * V1 * V1 * V2 * V2 + Curve.Coeff12 * V3 * V2 * V2 * V2; - } else if (SELECT_CASE_var == TriQuadratic) { - auto const &Tri2ndOrder(Curve.Tri2ndOrder(1)); - auto const V1s(V1 * V1); - auto const V2s(V2 * V2); - auto const V3s(V3 * V3); - CurveValue = Tri2ndOrder.CoeffA0 + Tri2ndOrder.CoeffA1 * V1s + Tri2ndOrder.CoeffA2 * V1 + Tri2ndOrder.CoeffA3 * V2s + - Tri2ndOrder.CoeffA4 * V2 + Tri2ndOrder.CoeffA5 * V3s + Tri2ndOrder.CoeffA6 * V3 + Tri2ndOrder.CoeffA7 * V1s * V2s + - Tri2ndOrder.CoeffA8 * V1 * V2 + Tri2ndOrder.CoeffA9 * V1 * V2s + Tri2ndOrder.CoeffA10 * V1s * V2 + - Tri2ndOrder.CoeffA11 * V1s * V3s + Tri2ndOrder.CoeffA12 * V1 * V3 + Tri2ndOrder.CoeffA13 * V1 * V3s + - Tri2ndOrder.CoeffA14 * V1s * V3 + Tri2ndOrder.CoeffA15 * V2s * V3s + Tri2ndOrder.CoeffA16 * V2 * V3 + - Tri2ndOrder.CoeffA17 * V2 * V3s + Tri2ndOrder.CoeffA18 * V2s * V3 + Tri2ndOrder.CoeffA19 * V1s * V2s * V3s + - Tri2ndOrder.CoeffA20 * V1s * V2s * V3 + Tri2ndOrder.CoeffA21 * V1s * V2 * V3s + Tri2ndOrder.CoeffA22 * V1 * V2s * V3s + - Tri2ndOrder.CoeffA23 * V1s * V2 * V3 + Tri2ndOrder.CoeffA24 * V1 * V2s * V3 + Tri2ndOrder.CoeffA25 * V1 * V2 * V3s + - Tri2ndOrder.CoeffA26 * V1 * V2 * V3; - } else if (SELECT_CASE_var == Exponent) { - CurveValue = Curve.Coeff1 + Curve.Coeff2 * std::pow(V1, Curve.Coeff3); - } else if (SELECT_CASE_var == FanPressureRise) { // cpw22Aug2010 Added Fan Pressure Rise curve - CurveValue = V1 * (Curve.Coeff1 * V1 + Curve.Coeff2 + Curve.Coeff3 * std::sqrt(V2)) + Curve.Coeff4 * V2; - } else if (SELECT_CASE_var == ExponentialSkewNormal) { // cpw22Aug2010 Added Exponential Skew Normal curve - CoeffZ1 = (V1 - Curve.Coeff1) / Curve.Coeff2; - CoeffZ2 = (Curve.Coeff4 * V1 * std::exp(Curve.Coeff3 * V1) - Curve.Coeff1) / Curve.Coeff2; - CoeffZ3 = -Curve.Coeff1 / Curve.Coeff2; - // CurveValueNumer = EXP(-0.5d0 * CoeffZ1**2) * (1.0d0 + SIGN(1.0d0,CoeffZ2) * ErfFunction(ABS(CoeffZ2)/SQRT(2.0d0))) - // CurveValueDenom = EXP(-0.5d0 * CoeffZ3**2) * (1.0d0 + SIGN(1.0d0,CoeffZ3) * ErfFunction(ABS(CoeffZ3)/SQRT(2.0d0))) - CurveValueNumer = std::exp(-0.5 * (CoeffZ1 * CoeffZ1)) * (1.0 + sign(1.0, CoeffZ2) * std::erf(std::abs(CoeffZ2) * sqrt_2_inv)); - CurveValueDenom = std::exp(-0.5 * (CoeffZ3 * CoeffZ3)) * (1.0 + sign(1.0, CoeffZ3) * std::erf(std::abs(CoeffZ3) * sqrt_2_inv)); - CurveValue = CurveValueNumer / CurveValueDenom; - } else if (SELECT_CASE_var == Sigmoid) { // cpw22Aug2010 Added Sigmoid curve - CurveValueExp = std::exp((Curve.Coeff3 - V1) / Curve.Coeff4); - CurveValue = Curve.Coeff1 + Curve.Coeff2 / std::pow(1.0 + CurveValueExp, Curve.Coeff5); - } else if (SELECT_CASE_var == RectangularHyperbola1) { // cpw22Aug2010 Added Rectangular Hyperbola Type 1 curve - CurveValueNumer = Curve.Coeff1 * V1; - CurveValueDenom = Curve.Coeff2 + V1; - CurveValue = (CurveValueNumer / CurveValueDenom) + Curve.Coeff3; - } else if (SELECT_CASE_var == RectangularHyperbola2) { // cpw22Aug2010 Added Rectangular Hyperbola Type 2 curve - CurveValueNumer = Curve.Coeff1 * V1; - CurveValueDenom = Curve.Coeff2 + V1; - CurveValue = (CurveValueNumer / CurveValueDenom) + (Curve.Coeff3 * V1); - } else if (SELECT_CASE_var == ExponentialDecay) { // cpw22Aug2010 Added Exponential Decay curve - CurveValue = Curve.Coeff1 + Curve.Coeff2 * std::exp(Curve.Coeff3 * V1); - } else if (SELECT_CASE_var == DoubleExponentialDecay) { // ykt Jul 2011 Added Double Exponential Decay curve - CurveValue = Curve.Coeff1 + Curve.Coeff2 * std::exp(Curve.Coeff3 * V1) + Curve.Coeff4 * std::exp(Curve.Coeff5 * V1); - } else { - CurveValue = 0.0; - } - } - - if (Curve.CurveMinPresent) CurveValue = max(CurveValue, Curve.CurveMin); - if (Curve.CurveMaxPresent) CurveValue = min(CurveValue, Curve.CurveMax); - - return CurveValue; - } - - Real64 PerformanceTableObject(int const CurveIndex, // index of curve in curve array - Real64 const Var1, // 1st independent variable - Optional Var2, // 2nd independent variable - Optional Var3 // 3rd independent variable - ) - { - - // FUNCTION INFORMATION: - // AUTHOR Richard Raustad, FSEC - // DATE WRITTEN May 2010 - // MODIFIED na - // RE-ENGINEERED na - - // PURPOSE OF THIS FUNCTION: - // Given the curve index and the values of 1 or 2 independent variables, - // returns the value of an equipment performance table lookup. - - // Return value - Real64 TableValue; - - // FUNCTION LOCAL VARIABLE DECLARATIONS: - - Real64 V1; // 1st independent variable after limits imposed - Real64 V2; // 2nd independent variable after limits imposed - Real64 V3; // 3rd independent variable after limits imposed - Real64 TempX1Low; - Real64 TempX1High; - Real64 TempX2Low; - Real64 TempX2High; - // INTEGER :: ATempX1LowPtr(1) - // INTEGER :: ATempX1HighPtr(1) - // INTEGER :: ATempX2LowPtr(1) - // INTEGER :: ATempX2HighPtr(1) - int TempX1LowPtr(0); - int TempX1HighPtr(0); - int TempX2LowPtr(0); - int TempX2HighPtr(0); - Real64 X1Frac; - Real64 X2Frac; - Real64 X1ValLow; - Real64 X1ValHigh; - // INTEGER :: MaxSizeArray - int X1Val; - int X2Val; - int TableIndex; - - TableIndex = PerfCurve(CurveIndex).TableIndex; - - V1 = max(min(Var1, PerfCurve(CurveIndex).Var1Max), PerfCurve(CurveIndex).Var1Min); - - if (present(Var2)) { - V2 = max(min(Var2, PerfCurve(CurveIndex).Var2Max), PerfCurve(CurveIndex).Var2Min); - } else { - V2 = 0.0; - } - - if (present(Var3)) { - V3 = max(min(Var3, PerfCurve(CurveIndex).Var3Max), PerfCurve(CurveIndex).Var3Min); - } else { - V3 = 0.0; - } - - { - auto const SELECT_CASE_var(PerfCurve(CurveIndex).NumDims); - if (SELECT_CASE_var == 1) { - - TempX1Low = minval(PerfCurveTableData(TableIndex).X1); - TempX1High = maxval(PerfCurveTableData(TableIndex).X1); - if (V1 <= TempX1Low) { - TempX1LowPtr = 1; - TempX1HighPtr = 1; - } else if (V1 >= TempX1High) { - TempX1LowPtr = size(PerfCurveTableData(TableIndex).X1); - TempX1HighPtr = TempX1LowPtr; - } else { - for (X1Val = 1; X1Val <= isize(PerfCurveTableData(TableIndex).X1); ++X1Val) { - if (V1 >= PerfCurveTableData(TableIndex).X1(X1Val)) TempX1LowPtr = X1Val; - } - if (V1 == PerfCurveTableData(TableIndex).X1(TempX1LowPtr)) { - TempX1HighPtr = TempX1LowPtr; - } else { - TempX1HighPtr = TempX1LowPtr + 1; - } - } - if (TempX1LowPtr == TempX1HighPtr) { - TableValue = PerfCurveTableData(TableIndex).Y(1, TempX1LowPtr); - } else { - X1Frac = (V1 - PerfCurveTableData(TableIndex).X1(TempX1LowPtr)) / - (PerfCurveTableData(TableIndex).X1(TempX1HighPtr) - PerfCurveTableData(TableIndex).X1(TempX1LowPtr)); - TableValue = X1Frac * PerfCurveTableData(TableIndex).Y(1, TempX1HighPtr) + - (1 - X1Frac) * PerfCurveTableData(TableIndex).Y(1, TempX1LowPtr); - } - - } else if (SELECT_CASE_var == 2) { - - TempX1Low = minval(PerfCurveTableData(TableIndex).X1); - TempX1High = maxval(PerfCurveTableData(TableIndex).X1); - if (V1 <= TempX1Low) { - TempX1LowPtr = 1; - TempX1HighPtr = 1; - } else if (V1 >= TempX1High) { - TempX1LowPtr = size(PerfCurveTableData(TableIndex).X1); - TempX1HighPtr = TempX1LowPtr; - } else { - for (X1Val = 1; X1Val <= isize(PerfCurveTableData(TableIndex).X1); ++X1Val) { - if (V1 >= PerfCurveTableData(TableIndex).X1(X1Val)) TempX1LowPtr = X1Val; - } - if (V1 == PerfCurveTableData(TableIndex).X1(TempX1LowPtr)) { - TempX1HighPtr = TempX1LowPtr; - } else { - TempX1HighPtr = TempX1LowPtr + 1; - } - } - TempX2Low = minval(PerfCurveTableData(TableIndex).X2); - TempX2High = maxval(PerfCurveTableData(TableIndex).X2); - - if (V2 <= TempX2Low) { - TempX2LowPtr = 1; - TempX2HighPtr = 1; - } else if (V2 >= TempX2High) { - TempX2LowPtr = size(PerfCurveTableData(TableIndex).X2); - TempX2HighPtr = TempX2LowPtr; - } else { - for (X2Val = 1; X2Val <= isize(PerfCurveTableData(TableIndex).X2); ++X2Val) { - if (V2 >= PerfCurveTableData(TableIndex).X2(X2Val)) TempX2LowPtr = X2Val; - } - if (V2 == PerfCurveTableData(TableIndex).X2(TempX2LowPtr)) { - TempX2HighPtr = TempX2LowPtr; - } else { - TempX2HighPtr = TempX2LowPtr + 1; - } - } - - if (TempX1LowPtr == TempX1HighPtr) { - if (TempX2LowPtr == TempX2HighPtr) { - TableValue = PerfCurveTableData(TableIndex).Y(TempX2LowPtr, TempX1LowPtr); - } else { - X2Frac = (V2 - PerfCurveTableData(TableIndex).X2(TempX2LowPtr)) / - (PerfCurveTableData(TableIndex).X2(TempX2HighPtr) - PerfCurveTableData(TableIndex).X2(TempX2LowPtr)); - TableValue = X2Frac * PerfCurveTableData(TableIndex).Y(TempX2HighPtr, TempX1LowPtr) + - (1 - X2Frac) * PerfCurveTableData(TableIndex).Y(TempX2LowPtr, TempX1LowPtr); - } - } else { - X1Frac = (V1 - PerfCurveTableData(TableIndex).X1(TempX1LowPtr)) / - (PerfCurveTableData(TableIndex).X1(TempX1HighPtr) - PerfCurveTableData(TableIndex).X1(TempX1LowPtr)); - if (TempX2LowPtr == TempX2HighPtr) { - TableValue = X1Frac * PerfCurveTableData(TableIndex).Y(TempX2LowPtr, TempX1HighPtr) + - (1 - X1Frac) * PerfCurveTableData(TableIndex).Y(TempX2LowPtr, TempX1LowPtr); - } else { - X1ValLow = X1Frac * PerfCurveTableData(TableIndex).Y(TempX2LowPtr, TempX1HighPtr) + - (1 - X1Frac) * PerfCurveTableData(TableIndex).Y(TempX2LowPtr, TempX1LowPtr); - X1ValHigh = X1Frac * PerfCurveTableData(TableIndex).Y(TempX2HighPtr, TempX1HighPtr) + - (1 - X1Frac) * PerfCurveTableData(TableIndex).Y(TempX2HighPtr, TempX1LowPtr); - X2Frac = (V2 - PerfCurveTableData(TableIndex).X2(TempX2LowPtr)) / - (PerfCurveTableData(TableIndex).X2(TempX2HighPtr) - PerfCurveTableData(TableIndex).X2(TempX2LowPtr)); - TableValue = X2Frac * X1ValHigh + (1 - X2Frac) * X1ValLow; - } - } - - } else { - TableValue = 0.0; - ShowSevereError("Errors found in table output calculation for " + PerfCurve(CurveIndex).Name); - ShowContinueError("...Possible causes are selection of Interpolation Method or Type or Number of Independent Variables or Points."); - ShowFatalError("PerformanceTableObject: Previous error causes program termination."); - } - } - - if (PerfCurve(CurveIndex).CurveMinPresent) TableValue = max(TableValue, PerfCurve(CurveIndex).CurveMin); - if (PerfCurve(CurveIndex).CurveMaxPresent) TableValue = min(TableValue, PerfCurve(CurveIndex).CurveMax); - - return TableValue; - } - - Real64 TableLookupObject(int const CurveIndex, // index of curve in curve array - Real64 const Var1, // 1st independent variable - Optional Var2, // 2nd independent variable - Optional Var3, // 3rd independent variable - Optional Var4, // 4th independent variable - Optional Var5, // 5th independent variable - Optional Var6 // 6th independent variable - ) - { - - // FUNCTION INFORMATION: - // AUTHOR Richard Raustad, FSEC - // DATE WRITTEN May 2010 - // MODIFIED na - // RE-ENGINEERED na - - // PURPOSE OF THIS FUNCTION: - // Given the curve index and the values of 1 or 2 independent variables, - // returns the value of an equipment performance table lookup. - - // Return value - Real64 TableValue; - - // FUNCTION LOCAL VARIABLE DECLARATIONS: - - Real64 V1; // 1st independent variable after limits imposed - Real64 V2; // 2nd independent variable after limits imposed - Real64 V3; // 3rd independent variable after limits imposed - Real64 V4; // 4th independent variable after limits imposed - Real64 V5; // 5th independent variable after limits imposed - Real64 V6; // 6th independent variable after limits imposed - int NX; - int NY; - int NV3; - int NV4; - int NV5; - int NV6; - int TableIndex; - // REAL(r64), ALLOCATABLE, DIMENSION(:) :: ONEDVALS - Array2D TWODVALS; - Array3D THREEDVALS; - Array4D FOURDVALS; - Array1D VALSX; - Array1D VALSY; - Array1D VALSV3; - Array1D VALSV4; - Array1D VALSV5; - Array1D VALSV6; - // REAL(r64), ALLOCATABLE, DIMENSION(:,:,:) :: HPVAL - // REAL(r64), ALLOCATABLE, DIMENSION(:,:,:,:) :: HPVALS - // REAL(r64), ALLOCATABLE, DIMENSION(:,:,:,:,:) :: DVLTRN - // REAL(r64), ALLOCATABLE, DIMENSION(:,:,:,:,:) :: FiveDArray - // REAL(r64), ALLOCATABLE, DIMENSION(:,:,:,:) :: FourDArray - // REAL(r64), ALLOCATABLE, DIMENSION(:,:,:) :: ThreeDArray - // REAL(r64), ALLOCATABLE, DIMENSION(:,:) :: TwoDArray - // REAL(r64), ALLOCATABLE, DIMENSION(:) :: OneDArray - int IV3; - int IV4; - int IV5; - int IV6; - int IEXTX; - int IEXTY; - int IEXTV3; - int IEXTV4; - int IEXTV5; - int IEXTV6; - int NUMPT; - - TableIndex = PerfCurve(CurveIndex).TableIndex; - - V1 = max(min(Var1, PerfCurve(CurveIndex).Var1Max), PerfCurve(CurveIndex).Var1Min); - - if (present(Var2)) { - V2 = max(min(Var2, PerfCurve(CurveIndex).Var2Max), PerfCurve(CurveIndex).Var2Min); - if (PerfCurve(CurveIndex).NumDims < 2) { - if (PerfCurve(CurveIndex).NumIVHighErrorIndex == 0) { - ShowWarningError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + - "\""); - ShowContinueError("...Excess number of independent variables (2) passed to subroutine when only 1 is required. The excess " - "arguments are ignored."); - PerfCurve(CurveIndex).NumIVHighErrorIndex += 1; - } - } - } else { - if (PerfCurve(CurveIndex).NumDims > 1) { - if (PerfCurve(CurveIndex).NumIVLowErrorIndex == 0) { - ShowSevereError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + "\""); - ShowContinueError("...Insufficient number of independent variables (1) passed to subroutine when at least 2 are required."); - } - ShowRecurringWarningErrorAtEnd(PerfCurve(CurveIndex).ObjectType + " \"" + PerfCurve(CurveIndex).Name + - "\": Insufficient number of independent variables warning continues...", - PerfCurve(CurveIndex).NumIVLowErrorIndex, - 1.0, - 1.0); - } - V2 = 0.0; - } - - if (present(Var3)) { - V3 = max(min(Var3, PerfCurve(CurveIndex).Var3Max), PerfCurve(CurveIndex).Var3Min); - if (PerfCurve(CurveIndex).NumDims < 3) { - if (PerfCurve(CurveIndex).NumIVHighErrorIndex == 0) { - ShowWarningError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + - "\""); - ShowContinueError("...Excess number of independent variables (3) passed to subroutine when 2 or less are required. The excess " - "arguments are ignored."); - PerfCurve(CurveIndex).NumIVHighErrorIndex += 1; - } - } - } else { - if (PerfCurve(CurveIndex).NumDims > 2) { - if (PerfCurve(CurveIndex).NumIVLowErrorIndex == 0) { - ShowSevereError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + "\""); - ShowContinueError("...Insufficient number of independent variables (2) passed to subroutine when at least 3 are required."); - } - ShowRecurringWarningErrorAtEnd(PerfCurve(CurveIndex).ObjectType + " \"" + PerfCurve(CurveIndex).Name + - "\": Insufficient number of independent variables warning continues...", - PerfCurve(CurveIndex).NumIVLowErrorIndex, - 2.0, - 2.0); - } - V3 = 0.0; - } - - if (present(Var4)) { - V4 = max(min(Var4, PerfCurve(CurveIndex).Var4Max), PerfCurve(CurveIndex).Var4Min); - if (PerfCurve(CurveIndex).NumDims < 4) { - if (PerfCurve(CurveIndex).NumIVHighErrorIndex == 0) { - ShowWarningError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + - "\""); - ShowContinueError("...Excess number of independent variables (4) passed to subroutine when 3 or less are required. The excess " - "arguments are ignored."); - PerfCurve(CurveIndex).NumIVHighErrorIndex += 1; - } - } - } else { - if (PerfCurve(CurveIndex).NumDims > 3) { - if (PerfCurve(CurveIndex).NumIVLowErrorIndex == 0) { - ShowSevereError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + "\""); - ShowContinueError("...Insufficient number of independent variables (3) passed to subroutine when at least 4 are required."); - } - ShowRecurringWarningErrorAtEnd(PerfCurve(CurveIndex).ObjectType + " \"" + PerfCurve(CurveIndex).Name + - "\": Insufficient number of independent variables warning continues...", - PerfCurve(CurveIndex).NumIVLowErrorIndex, - 3.0, - 3.0); - } - V4 = 0.0; - } - - if (present(Var5)) { - V5 = max(min(Var5, PerfCurve(CurveIndex).Var5Max), PerfCurve(CurveIndex).Var5Min); - if (PerfCurve(CurveIndex).NumDims < 5) { - if (PerfCurve(CurveIndex).NumIVHighErrorIndex == 0) { - ShowWarningError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + - "\""); - ShowContinueError("...Excess number of independent variables (5) passed to subroutine when 4 or less are required. The excess " - "arguments are ignored."); - PerfCurve(CurveIndex).NumIVHighErrorIndex += 1; - } - } - } else { - if (PerfCurve(CurveIndex).NumDims > 4) { - if (PerfCurve(CurveIndex).NumIVLowErrorIndex == 0) { - ShowSevereError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + "\""); - ShowContinueError("...Insufficient number of independent variables (4) passed to subroutine when at least 5 are required."); - } - ShowRecurringWarningErrorAtEnd(PerfCurve(CurveIndex).ObjectType + " \"" + PerfCurve(CurveIndex).Name + - "\": Insufficient number of independent variables warning continues...", - PerfCurve(CurveIndex).NumIVLowErrorIndex, - 4.0, - 4.0); - } - V5 = 0.0; - } - - if (present(Var6)) { - V6 = max(min(Var6, PerfCurve(CurveIndex).Var6Max), PerfCurve(CurveIndex).Var6Min); - if (PerfCurve(CurveIndex).NumDims < 6) { - if (PerfCurve(CurveIndex).NumIVHighErrorIndex == 0) { - ShowSevereError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + "\""); - ShowContinueError("...Excess number of independent variables (6) passed to subroutine when 5 or less are required."); - } - ShowRecurringWarningErrorAtEnd(PerfCurve(CurveIndex).ObjectType + " \"" + PerfCurve(CurveIndex).Name + - "\": Excess number of independent variables warning continues...", - PerfCurve(CurveIndex).NumIVHighErrorIndex, - 6.0, - 6.0); - } - } else { - if (PerfCurve(CurveIndex).NumDims > 5) { - if (PerfCurve(CurveIndex).NumIVLowErrorIndex == 0) { - ShowSevereError("TableLookupObject: " + PerfCurve(CurveIndex).ObjectType + "\"" + PerfCurve(CurveIndex).Name + "\""); - ShowContinueError("...Insufficient number of independent variables (5) passed to subroutine when at least 6 are required."); - } - ShowRecurringWarningErrorAtEnd(PerfCurve(CurveIndex).ObjectType + " \"" + PerfCurve(CurveIndex).Name + - "\": Insufficient number of independent variables warning continues...", - PerfCurve(CurveIndex).NumIVLowErrorIndex, - 5.0, - 5.0); - } - V6 = 0.0; - } - - { - auto const SELECT_CASE_var(PerfCurve(CurveIndex).NumDims); - if (SELECT_CASE_var == 1) { - NX = TableLookup(TableIndex).NumX1Vars; - NY = 1; - NUMPT = TableLookup(TableIndex).InterpolationOrder; - VALSX.allocate(NX); - VALSX = TableLookup(TableIndex).X1Var; - TableValue = - DLAG(V1, VALSX(1), VALSX, VALSX, TableLookup(TableIndex).TableLookupZData(1, 1, 1, 1, _, _), NX, NY, NUMPT, IEXTX, IEXTY); - VALSX.deallocate(); - } else if (SELECT_CASE_var == 2) { - NX = TableLookup(TableIndex).NumX1Vars; - NY = TableLookup(TableIndex).NumX2Vars; - NUMPT = TableLookup(TableIndex).InterpolationOrder; - VALSX.allocate(NX); - VALSX = TableLookup(TableIndex).X1Var; - VALSY.allocate(NY); - VALSY = TableLookup(TableIndex).X2Var; - TableValue = DLAG(V1, V2, VALSX, VALSY, TableLookup(TableIndex).TableLookupZData(1, 1, 1, 1, _, _), NX, NY, NUMPT, IEXTX, IEXTY); - VALSX.deallocate(); - VALSY.deallocate(); - } else if (SELECT_CASE_var == 3) { - NX = TableLookup(TableIndex).NumX1Vars; - NY = TableLookup(TableIndex).NumX2Vars; - NV3 = TableLookup(TableIndex).NumX3Vars; - NUMPT = TableLookup(TableIndex).InterpolationOrder; - VALSX.allocate(NX); - VALSX = TableLookup(TableIndex).X1Var; - VALSY.allocate(NY); - VALSY = TableLookup(TableIndex).X2Var; - VALSV3.allocate(NV3); - VALSV3 = TableLookup(TableIndex).X3Var; - TWODVALS.allocate(1, NV3); - // perform 2-D interpolation of X (V1) and Y (V2) and save in 2-D array - for (IV3 = 1; IV3 <= NV3; ++IV3) { - TWODVALS(1, IV3) = - DLAG(V1, V2, VALSX, VALSY, TableLookup(TableIndex).TableLookupZData(1, 1, 1, IV3, _, _), NX, NY, NUMPT, IEXTX, IEXTY); - } - if (NV3 == 1) { - TableValue = TWODVALS(1, 1); - } else { - TableValue = DLAG(V3, 1.0, VALSV3, VALSV3, TWODVALS, NV3, 1, NUMPT, IEXTV3, IEXTV4); - } - TWODVALS.deallocate(); - VALSX.deallocate(); - VALSY.deallocate(); - VALSV3.deallocate(); - } else if (SELECT_CASE_var == 4) { - NX = TableLookup(TableIndex).NumX1Vars; - NY = TableLookup(TableIndex).NumX2Vars; - NV3 = TableLookup(TableIndex).NumX3Vars; - NV4 = TableLookup(TableIndex).NumX4Vars; - NUMPT = TableLookup(TableIndex).InterpolationOrder; - VALSX.allocate(NX); - VALSX = TableLookup(TableIndex).X1Var; - VALSY.allocate(NY); - VALSY = TableLookup(TableIndex).X2Var; - VALSV3.allocate(NV3); - VALSV3 = TableLookup(TableIndex).X3Var; - VALSV4.allocate(NV4); - VALSV4 = TableLookup(TableIndex).X4Var; - TWODVALS.allocate(NV4, NV3); - // perform 2-D interpolation of X (V1) and Y (V2) and save in 2-D array - for (IV4 = 1; IV4 <= NV4; ++IV4) { - for (IV3 = 1; IV3 <= NV3; ++IV3) { - TWODVALS(IV4, IV3) = - DLAG(V1, V2, VALSX, VALSY, TableLookup(TableIndex).TableLookupZData(1, 1, IV4, IV3, _, _), NX, NY, NUMPT, IEXTX, IEXTY); - } - } - // final interpolation of 2-D array in V3 and V4 - TableValue = DLAG(V3, V4, VALSV3, VALSV4, TWODVALS, NV3, NV4, NUMPT, IEXTV3, IEXTV4); - TWODVALS.deallocate(); - VALSX.deallocate(); - VALSY.deallocate(); - VALSV3.deallocate(); - VALSV4.deallocate(); - } else if (SELECT_CASE_var == 5) { - NX = TableLookup(TableIndex).NumX1Vars; - NY = TableLookup(TableIndex).NumX2Vars; - NV3 = TableLookup(TableIndex).NumX3Vars; - NV4 = TableLookup(TableIndex).NumX4Vars; - NV5 = TableLookup(TableIndex).NumX5Vars; - NUMPT = TableLookup(TableIndex).InterpolationOrder; - VALSX.allocate(NX); - VALSX = TableLookup(TableIndex).X1Var; - VALSY.allocate(NY); - VALSY = TableLookup(TableIndex).X2Var; - VALSV3.allocate(NV3); - VALSV3 = TableLookup(TableIndex).X3Var; - VALSV4.allocate(NV4); - VALSV4 = TableLookup(TableIndex).X4Var; - VALSV5.allocate(NV5); - VALSV5 = TableLookup(TableIndex).X5Var; - THREEDVALS.allocate(NV5, NV4, NV3); - for (IV5 = 1; IV5 <= NV5; ++IV5) { - for (IV4 = 1; IV4 <= NV4; ++IV4) { - for (IV3 = 1; IV3 <= NV3; ++IV3) { - THREEDVALS(IV5, IV4, IV3) = DLAG( - V1, V2, VALSX, VALSY, TableLookup(TableIndex).TableLookupZData(1, IV5, IV4, IV3, _, _), NX, NY, NUMPT, IEXTX, IEXTY); - } - } - } - TWODVALS.allocate(1, NV5); - for (IV5 = 1; IV5 <= NV5; ++IV5) { - TWODVALS(1, IV5) = DLAG(V3, V4, VALSV3, VALSV4, THREEDVALS(IV5, _, _), NV3, NV4, NUMPT, IEXTX, IEXTY); - } - if (NV5 == 1) { - TableValue = TWODVALS(1, 1); - } else { - TableValue = DLAG(V5, 1.0, VALSV5, VALSV5, TWODVALS, NV5, 1, NUMPT, IEXTV5, IEXTV4); - } - TWODVALS.deallocate(); - THREEDVALS.deallocate(); - VALSX.deallocate(); - VALSY.deallocate(); - VALSV3.deallocate(); - VALSV4.deallocate(); - VALSV5.deallocate(); - } else if (SELECT_CASE_var == 6) { - NX = TableLookup(TableIndex).NumX1Vars; - NY = TableLookup(TableIndex).NumX2Vars; - NV3 = TableLookup(TableIndex).NumX3Vars; - NV4 = TableLookup(TableIndex).NumX4Vars; - NV5 = TableLookup(TableIndex).NumX5Vars; - NV6 = TableLookup(TableIndex).NumX6Vars; - NUMPT = TableLookup(TableIndex).InterpolationOrder; - VALSX.allocate(NX); - VALSX = TableLookup(TableIndex).X1Var; - VALSY.allocate(NY); - VALSY = TableLookup(TableIndex).X2Var; - VALSV3.allocate(NV3); - VALSV3 = TableLookup(TableIndex).X3Var; - VALSV4.allocate(NV4); - VALSV4 = TableLookup(TableIndex).X4Var; - VALSV5.allocate(NV5); - VALSV5 = TableLookup(TableIndex).X5Var; - VALSV6.allocate(NV6); - VALSV6 = TableLookup(TableIndex).X6Var; - // perform 2-D interpolation of 6D array at V1, V2, and store in 4D array - FOURDVALS.allocate(NV6, NV5, NV4, NV3); - for (IV6 = 1; IV6 <= NV6; ++IV6) { - for (IV5 = 1; IV5 <= NV5; ++IV5) { - for (IV4 = 1; IV4 <= NV4; ++IV4) { - for (IV3 = 1; IV3 <= NV3; ++IV3) { - FOURDVALS(IV6, IV5, IV4, IV3) = DLAG(V1, - V2, - VALSX, - VALSY, - TableLookup(TableIndex).TableLookupZData(IV6, IV5, IV4, IV3, _, _), - NX, - NY, - NUMPT, - IEXTX, - IEXTY); - } - } - } - } - // perform 2-D interpolation of 4D array at V3, V4, and store in 2D array - TWODVALS.allocate(NV6, NV5); - for (IV6 = 1; IV6 <= NV6; ++IV6) { - for (IV5 = 1; IV5 <= NV5; ++IV5) { - TWODVALS(IV6, IV5) = DLAG(V3, V4, VALSV3, VALSV4, FOURDVALS(IV6, IV5, _, _), NV3, NV4, NUMPT, IEXTV3, IEXTV4); - } - } - // perform 2-D interpolation of 2D array to find final value - TableValue = DLAG(V5, V6, VALSV5, VALSV6, TWODVALS, NV5, NV6, NUMPT, IEXTV5, IEXTV6); - TWODVALS.deallocate(); - FOURDVALS.deallocate(); - VALSX.deallocate(); - VALSY.deallocate(); - VALSV3.deallocate(); - VALSV4.deallocate(); - VALSV5.deallocate(); - } else { - TableValue = 0.0; - ShowSevereError("Errors found in table output calculation for " + PerfCurve(CurveIndex).Name); - ShowContinueError("...Possible causes are selection of Interpolation Method or Type or Number of Independent Variables or Points."); - ShowFatalError("PerformanceTableObject: Previous error causes program termination."); - } - } - - if (PerfCurve(CurveIndex).CurveMinPresent) TableValue = max(TableValue, PerfCurve(CurveIndex).CurveMin); - if (PerfCurve(CurveIndex).CurveMaxPresent) TableValue = min(TableValue, PerfCurve(CurveIndex).CurveMax); - - return TableValue; - } - - void SolveRegression(int &CurveNum, // index to performance curve - std::string &TableType, // tabular data object type - std::string &CurveName, // performance curve name - Array1S RawDataX, // table data X values (1st independent variable) - Array1S RawDataY, // table data Y values (dependent variables) - Optional> RawDataX2 // table data X2 values (2nd independent variable) - ) - { - - // SUBROUTINE INFORMATION: - // AUTHOR Richard Raustad, FSEC - // DATE WRITTEN June 2010 - // MODIFIED na - // RE-ENGINEERED na - - // PURPOSE OF THIS FUNCTION: - // Given the curve index and the values of 1 or 2 independent variables, - // calls the curve or table routine to return the value of an equipment performance curve or table. - // The solution requires use of linear algebra and forms a matrix of sums of the data set. - // For a linear equation of the form Z = a + bX + cX^2, the general solution is as follows. - // Phi = SUM1ToN[Zi - f(Xi)]^2 = SUM1ToN[Zi - (a+bX+cX^2)]^2 = minimum - // substitue Y = X^2 in the equations above. - // then set up the partials of Phi with respect to a, the partial of Phi with respect to b, etc. - // PartialPhiRespectToa = 2 * SUM1ToN[1*(Zi-(a+bXi+cYi))] = 0 - // PartialPhiRespectTob = 2 * SUM1ToN[Xi(Zi-(a+bXi+cYi))] = 0 - // PartialPhiRespectToc = 2 * SUM1ToN[Yi(Zi-(a+bXi+cYi))] = 0 - // then set up the square matrix by solving the above partials. - // SUM1ToN(Zi) = a * SUM1ToN(1) + b * SUM1ToN(Xi) + c * SUM1ToN(Yi) - // SUM1ToN(ZiXi) = a * SUM1ToN(Xi) + b * SUM1ToN(Xi)^2 + c * SUM1ToN(XiYi) - // SUM1ToN(ZiYi) = a * SUM1ToN(Yi) + b * SUM1ToN(XiYi) + c * SUM1ToN(Yi)^2 - // the matirx (A) is then the 3x3 matrix on the right, with a solution of the 1x3 matrix on the left - // Note symmetry about the diagonal. - // (i.e., A(1,2)=A(2,1), A(1,3)=A(3,1), A(3,2)=A(2,3), and diagonal are all squared terms) - // _ _ _ _ - // | SUM1ToN(1) SUM1ToN(Xi) SUM1ToN(Yi) | | SUM1ToN(Zi) | - // A = | SUM1ToN(Xi) SUM1ToN(Xi)^2 SUM1ToN(XiYi) | Results = | SUM1ToN(ZiXi) | - // |_ SUM1ToN(Yi) SUM1ToN(XiYi) SUM1ToN(Yi)^2 _| |_ SUM1ToN(ZiYi)_| - // The linear algebra equation is then solved using foward elimination and reverse substitution - // This solution (Results) provides the coefficients of the associated performance curve (a,b,and c in the eq. above). - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // Using/Aliasing - using DataGlobals::DisplayAdvancedReportVariables; - using DataGlobals::OutputFileInits; - using General::RoundSigDigits; - using General::TrimSigDigits; - - // Argument array dimensioning - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 X; // linear algebra equation coefficients - Real64 X2; - Real64 Y; - Real64 V; - Real64 U; - Real64 T; - Real64 Z; - int MatrixSize; // square matrix array size (MatrixSize,MatrixSize) - int LoopCount; // loop counter - int N; // loop variables - int i; - int j; - int k; - Real64 C; // intermediate calculation of a constant in matrix solution - Real64 sX; // sum of the X - Real64 sX2; // sum of the X^2 - Real64 sX3; // sum of the X^3 - Real64 sY; // sum of the Y - Real64 sY2; // sum of the Y^2 - Real64 sV; // sum of the V - Real64 sV2; // sum of the V^2 - Real64 sU; // sum of the U - Real64 sU2; // sum of the U^2 - Real64 sT; // sum of the T - Real64 sT2; // sum of the T^2 - Real64 sXY; // sum of the XY - Real64 sXV; // sum of the XV - Real64 sXU; // sum of the XU - Real64 sXT; // sum of the XT - Real64 sYV; // sum of the TV - Real64 sYU; // sum of the YU - Real64 sYT; // sum of the YT - Real64 sVU; // sum of the VU - Real64 sVT; // sum of the VT - Real64 sUT; // sum of the UT - Real64 Results1; // regression coefficient #1 - Real64 Results2; // regression coefficient #2 - Real64 Results3; // regression coefficient #3 - Real64 Results4; // regression coefficient #4 - Real64 Results5; // regression coefficient #5 - Real64 Results6; // regression coefficient #6 - Real64 MinX; // equation variable min/max statistics - Real64 MaxX; - Real64 MinX2; - Real64 MaxX2; - Real64 MinY; - Real64 MaxY; - Real64 Mean; // statistical parameters - Real64 RSquared; - Real64 StandardError; - Real64 Est(0.0); - Array1D Results; // performance curve coefficients - Array2D A; // linear algebra matrix - std::string StrCurve; // string representation of curve type - static bool WriteHeaderOnce(true); - bool EchoTableDataToEio; // logical set equal to global and used to report to eio file - - // Formats - static ObjexxFCL::gio::Fmt Format_110("('! ')"); - static ObjexxFCL::gio::Fmt Format_130("('CREATING NEW CURVE OBJECT')"); - static ObjexxFCL::gio::Fmt Format_140("('! Input as ',A,' \"',A,'\"')"); - static ObjexxFCL::gio::Fmt Format_150("('! RSquared = ',A)"); - static ObjexxFCL::gio::Fmt Format_160("('! Standard Error = ',A)"); - static ObjexxFCL::gio::Fmt Format_170("('! Sample Size = ',A)"); - static ObjexxFCL::gio::Fmt Format_180("('Curve:',A,',')"); - static ObjexxFCL::gio::Fmt Format_190("('FromTable_',A,', !- Name')"); - static ObjexxFCL::gio::Fmt Format_200("(' ',A,', !- Coefficient1 Constant')"); - static ObjexxFCL::gio::Fmt Format_210("(' ',A,', !- Coefficient2 x')"); - static ObjexxFCL::gio::Fmt Format_300("(' ',A,', !- Minimum Value of x')"); - static ObjexxFCL::gio::Fmt Format_310("(' ',A,', !- Maximum Value of x')"); - static ObjexxFCL::gio::Fmt Format_340("(' ',A,', !- Minimum Curve Output')"); - static ObjexxFCL::gio::Fmt Format_350("(' ',A,'; !- Maximum Curve Output')"); - static ObjexxFCL::gio::Fmt Format_360("('END CREATING NEW CURVE OBJECT')"); - static ObjexxFCL::gio::Fmt Format_220("(' ',A,', !- Coefficient3 x**2')"); - static ObjexxFCL::gio::Fmt Format_230("(' ',A,', !- !- Coefficient4 x**3')"); - static ObjexxFCL::gio::Fmt Format_240("(' ',A,', !- Coefficient4 y')"); - static ObjexxFCL::gio::Fmt Format_250("(' ',A,', !- !- Coefficient5 x**4')"); - static ObjexxFCL::gio::Fmt Format_260("(' ',A,', !- Coefficient5 y**2')"); - static ObjexxFCL::gio::Fmt Format_270("(' ',A,', !- Coefficient5 xy')"); - static ObjexxFCL::gio::Fmt Format_280("(' ',A,', !- Coefficient6 x*y')"); - static ObjexxFCL::gio::Fmt Format_290("(' ',A,', !- Coefficient6 x**2y')"); - static ObjexxFCL::gio::Fmt Format_320("(' ',A,', !- Minimum Value of y')"); - static ObjexxFCL::gio::Fmt Format_330("(' ',A,', !- Maximum Value of y')"); - - EchoTableDataToEio = DisplayAdvancedReportVariables; - - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if (SELECT_CASE_var == Linear) { - MatrixSize = 2; - StrCurve = "Linear"; - } else if (SELECT_CASE_var == Quadratic) { - MatrixSize = 3; - StrCurve = "Quadratic"; - } else if (SELECT_CASE_var == Cubic) { - MatrixSize = 4; - StrCurve = "Cubic"; - } else if (SELECT_CASE_var == Quartic) { - MatrixSize = 5; - StrCurve = "Quartic"; - } else if (SELECT_CASE_var == BiQuadratic) { - MatrixSize = 6; - StrCurve = "BiQuadratic"; - } else if (SELECT_CASE_var == QuadraticLinear) { - MatrixSize = 6; - StrCurve = "QuadraticLinear"; - } else { - ShowSevereError(PerfCurve(CurveNum).ObjectType + ": \"" + PerfCurve(CurveNum).Name + "\""); - ShowContinueError("Invalid curve type for regression."); - return; - } - } - - if (isize(RawDataX) < MatrixSize) { - ShowSevereError(PerfCurve(CurveNum).ObjectType + ": \"" + PerfCurve(CurveNum).Name + "\""); - ShowContinueError("Insufficient data to calculate regression coefficients."); - ShowContinueError("Required data pairs = " + RoundSigDigits(MatrixSize)); - ShowContinueError("Entered data pairs = " + RoundSigDigits(size(RawDataX))); - ShowContinueError("Setting interpolation type equal to LinearInterpolationOfTable and simulation continues."); - PerfCurve(CurveNum).InterpolationType = LinearInterpolationOfTable; - return; - } - - Results.dimension(MatrixSize, 0.0); - A.allocate(MatrixSize, MatrixSize); - // ' Sum data - N = 0; - sX = 0.0; - sX2 = 0.0; - sY = 0.0; - sY2 = 0.0; - sV = 0.0; - sV2 = 0.0; - sU = 0.0; - sU2 = 0.0; - sT = 0.0; - sT2 = 0.0; - sXY = 0.0; - sXV = 0.0; - sXU = 0.0; - sXT = 0.0; - sYV = 0.0; - sYU = 0.0; - sYT = 0.0; - sVU = 0.0; - sVT = 0.0; - sUT = 0.0; - Results = 0.0; - Results1 = 0.0; - Results2 = 0.0; - Results3 = 0.0; - Results4 = 0.0; - Results5 = 0.0; - Results6 = 0.0; - X2 = 0.0; - Y = 0.0; - V = 0.0; - U = 0.0; - T = 0.0; - for (LoopCount = 1; LoopCount <= isize(RawDataX); ++LoopCount) { - X = RawDataX(LoopCount); - if (present(RawDataX2)) X2 = RawDataX2()(LoopCount); - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if ((SELECT_CASE_var == Linear) || (SELECT_CASE_var == Quadratic) || (SELECT_CASE_var == Cubic) || (SELECT_CASE_var == Quartic)) { - Y = X * X; - V = X * Y; - U = X * V; - } else if (SELECT_CASE_var == BiQuadratic) { - Y = X * X; - V = X2; - U = V * V; - T = X * X2; - } else if (SELECT_CASE_var == QuadraticLinear) { - Y = X * X; - V = X2; - U = X * V; - T = Y * X2; - } else { - } - } - Z = RawDataY(LoopCount); - ++N; // Count - sX += X; // Sum X - sX2 += X * X; // Sum X*X - sY += Y; // Sum Y - sY2 += Y * Y; // Sum Y*Y - sV += V; // Sum V - sV2 += V * V; // Sum V*V - sU += U; // Sum U - sU2 += U * U; // Sum U*U - sT += T; // Sum T - sT2 += T * T; // Sum T*T - sXY += X * Y; // Sum XY - sXV += X * V; // Sum XV - sXU += X * U; // Sum XU - sXT += X * T; // Sum XT - sYV += Y * V; // Sum YV - sYU += Y * U; // Sum YU - sYT += Y * T; // Sum YT - sVU += V * U; // Sum VU - sVT += V * T; // Sum VT - sUT += U * T; // Sum UT - Results1 += Z; // Sum Z - Results2 += Z * X; // Sum ZX - Results3 += Z * Y; // Sum ZY - Results4 += Z * V; // Sum ZV - Results5 += Z * U; // Sum ZU - Results6 += Z * T; // Sum ZT - } - - Results(1) = Results1; - Results(2) = Results2; - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if (SELECT_CASE_var == Linear) { - } else if (SELECT_CASE_var == Quadratic) { - Results(3) = Results3; - } else if (SELECT_CASE_var == Cubic) { - Results(3) = Results3; - Results(4) = Results4; - } else if (SELECT_CASE_var == Quartic) { - Results(3) = Results3; - Results(4) = Results4; - Results(5) = Results5; - } else if ((SELECT_CASE_var == BiQuadratic) || (SELECT_CASE_var == QuadraticLinear)) { - Results(3) = Results3; - Results(4) = Results4; - Results(5) = Results5; - Results(6) = Results6; - } - } - - Mean = Results(1) / N; - - // ' Form "A" Matrix - A(1, 1) = double(N); - A(2, 1) = sX; - A(2, 2) = sX2; - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if (SELECT_CASE_var == Linear) { - } else if (SELECT_CASE_var == Quadratic) { - A(3, 1) = sY; - A(3, 2) = sXY; - A(3, 3) = sY2; - } else if (SELECT_CASE_var == Cubic) { - A(3, 1) = sY; - A(4, 1) = sV; - A(3, 2) = sXY; - A(4, 2) = sXV; - A(3, 3) = sY2; - A(4, 3) = sYV; - A(4, 4) = sV2; - } else if (SELECT_CASE_var == Quartic) { - A(3, 1) = sY; - A(4, 1) = sV; - A(5, 1) = sU; - A(3, 2) = sXY; - A(4, 2) = sXV; - A(5, 2) = sXU; - A(3, 3) = sY2; - A(4, 3) = sYV; - A(5, 3) = sYU; - A(4, 4) = sV2; - A(5, 4) = sVU; - A(5, 5) = sU2; - } else if ((SELECT_CASE_var == BiQuadratic) || (SELECT_CASE_var == QuadraticLinear)) { - A(3, 1) = sY; - A(4, 1) = sV; - A(5, 1) = sU; - A(6, 1) = sT; - A(3, 2) = sXY; - A(4, 2) = sXV; - A(5, 2) = sXU; - A(6, 2) = sXT; - A(3, 3) = sY2; - A(4, 3) = sYV; - A(5, 3) = sYU; - A(6, 3) = sYT; - A(4, 4) = sV2; - A(5, 4) = sVU; - A(6, 4) = sVT; - A(5, 5) = sU2; - A(6, 5) = sUT; - A(6, 6) = sT2; - } else { - } - } - - // copy elements to bottom half of symmetrical square matrix - for (i = 1; i <= MatrixSize - 1; ++i) { - for (j = i + 1; j <= MatrixSize; ++j) { - A(i, j) = A(j, i); - } - } - - // Forward Eliminiation - for (i = 1; i <= MatrixSize - 1; ++i) { - if (A(i, i) == 0.0) { - ShowSevereError("SolveRegression: Zero value on the diagonal."); - ShowContinueError("Setting interpolation type equal to LinearInterpolationOfTable and simulation continues."); - PerfCurve(CurveNum).InterpolationType = LinearInterpolationOfTable; - return; - } - for (j = i + 1; j <= MatrixSize; ++j) { - // find the ratio of the element to the one above it - C = A(i, j) / A(i, i); - // replace the element by reducing it by the ratio multiplied by the element above it - // this makes the bottom half of symmetrical square matix 0's - for (k = i; k <= MatrixSize; ++k) { - A(k, j) -= C * A(k, i); - } - Results(j) -= C * Results(i); - } - } - - // ' Back Substitution - if (A(MatrixSize, MatrixSize) == 0.0) { - ShowSevereError("SolveRegression: Zero value on the diagonal end point."); - ShowContinueError("Setting interpolation type equal to LinearInterpolationOfTable and simulation continues."); - PerfCurve(CurveNum).InterpolationType = LinearInterpolationOfTable; - return; - } - // now starting at the lower right corner of the matrix solve for the last coefficient - Results(MatrixSize) /= A(MatrixSize, MatrixSize); - // substitute that coefficient back into the equation above it and solve for the 2nd to last coefficient - // proceed until all coefficients are found - for (i = MatrixSize - 1; i >= 1; --i) { - C = Results(i); - for (j = 1; j <= MatrixSize - i; ++j) { - C -= A(i + j, i) * Results(i + j); - } - Results(i) = C / A(i, i); - } - - // calculate the regression statistics - sX = 0.0; - sX2 = 0.0; - sX3 = 0.0; - MinX = 9999999.0; - MaxX = -9999999.0; - MinX2 = 9999999.0; - MaxX2 = -9999999.0; - MinY = 9999999.0; - MaxY = -9999999.0; - for (LoopCount = 1; LoopCount <= N; ++LoopCount) { - X = RawDataX(LoopCount); - if (present(RawDataX2)) X2 = RawDataX2()(LoopCount); - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if ((SELECT_CASE_var == Linear) || (SELECT_CASE_var == Quadratic) || (SELECT_CASE_var == Cubic) || (SELECT_CASE_var == Quartic)) { - Y = X * X; - V = X * Y; - U = X * V; - } else if (SELECT_CASE_var == BiQuadratic) { - Y = X * X; - V = X2; - U = V * V; - T = X * X2; - } else if (SELECT_CASE_var == QuadraticLinear) { - Y = X * X; - V = X2; - U = X * V; - T = Y * X2; - } else { - } - } - Z = RawDataY(LoopCount); - if (MinX > X) MinX = X; - if (MaxX < X) MaxX = X; - if (MinX2 > X2) MinX2 = X2; - if (MaxX2 < X2) MaxX2 = X2; - if (MinY > Z) MinY = Z; - if (MaxY < Z) MaxY = Z; - - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if (SELECT_CASE_var == Linear) { - Est = Results(1) + X * Results(2); - } else if (SELECT_CASE_var == Quadratic) { - Est = Results(1) + X * Results(2) + Y * Results(3); - } else if (SELECT_CASE_var == Cubic) { - Est = Results(1) + X * Results(2) + Y * Results(3) + V * Results(4); - } else if (SELECT_CASE_var == Quartic) { - Est = Results(1) + X * Results(2) + Y * Results(3) + V * Results(4) + U * Results(5); - } else if ((SELECT_CASE_var == BiQuadratic) || (SELECT_CASE_var == QuadraticLinear)) { - Est = Results(1) + X * Results(2) + Y * Results(3) + V * Results(4) + U * Results(5) + T * Results(6); - } else { - } - } - sX += (Est - Mean) * (Est - Mean); - sX2 += (Z - Mean) * (Z - Mean); - sX3 += (Z - Est) * (Z - Est); - } - if (sX2 != 0.0) { - RSquared = sX / sX2; - } else { - RSquared = 0.0; - } - if (N > MatrixSize) { - StandardError = std::sqrt(sX3 / (N - MatrixSize)); - } else { - StandardError = 0.0; - } - - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).InterpolationType); - if (SELECT_CASE_var == LinearInterpolationOfTable) { - } else if (SELECT_CASE_var == EvaluateCurveToLimits) { - if (PerfCurve(CurveNum).Var1MinPresent) { - MinX = PerfCurve(CurveNum).Var1Min; - } - if (PerfCurve(CurveNum).Var1MaxPresent) { - MaxX = PerfCurve(CurveNum).Var1Max; - } - if (PerfCurve(CurveNum).Var2MinPresent) { - MinX2 = PerfCurve(CurveNum).Var2Min; - } - if (PerfCurve(CurveNum).Var2MaxPresent) { - MaxX2 = PerfCurve(CurveNum).Var2Max; - } - if (PerfCurve(CurveNum).CurveMinPresent) { - MinY = PerfCurve(CurveNum).CurveMin; - } - if (PerfCurve(CurveNum).CurveMaxPresent) { - MaxY = PerfCurve(CurveNum).CurveMax; - } - } else { - } - } - - // echo new curve object to eio file - if (EchoTableDataToEio) { - if (WriteHeaderOnce) { - ObjexxFCL::gio::write(OutputFileInits, Format_110); - WriteHeaderOnce = false; - } - - ObjexxFCL::gio::write(OutputFileInits, Format_130); - ObjexxFCL::gio::write(OutputFileInits, Format_140) << TableType << CurveName; - ObjexxFCL::gio::write(OutputFileInits, Format_150) << RoundSigDigits(RSquared, 10); - ObjexxFCL::gio::write(OutputFileInits, Format_160) << RoundSigDigits(StandardError, 10); - ObjexxFCL::gio::write(OutputFileInits, Format_170) << TrimSigDigits(N); - ObjexxFCL::gio::write(OutputFileInits, Format_180) << StrCurve; - ObjexxFCL::gio::write(OutputFileInits, Format_190) << CurveName; - ObjexxFCL::gio::write(OutputFileInits, Format_200) << RoundSigDigits(Results(1), 10); - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if ((SELECT_CASE_var == Linear) || (SELECT_CASE_var == Quadratic) || (SELECT_CASE_var == Cubic) || (SELECT_CASE_var == Quartic) || - (SELECT_CASE_var == BiQuadratic) || (SELECT_CASE_var == QuadraticLinear)) { - ObjexxFCL::gio::write(OutputFileInits, Format_210) << RoundSigDigits(Results(2), 10); - } else { - } - } - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if ((SELECT_CASE_var == Quadratic) || (SELECT_CASE_var == Cubic) || (SELECT_CASE_var == Quartic) || - (SELECT_CASE_var == BiQuadratic) || (SELECT_CASE_var == QuadraticLinear)) { - ObjexxFCL::gio::write(OutputFileInits, Format_220) << RoundSigDigits(Results(3), 10); - } else { - } - } - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if ((SELECT_CASE_var == Cubic) || (SELECT_CASE_var == Quartic)) { - ObjexxFCL::gio::write(OutputFileInits, Format_230) << RoundSigDigits(Results(4), 10); - } else if ((SELECT_CASE_var == BiQuadratic) || (SELECT_CASE_var == QuadraticLinear)) { - ObjexxFCL::gio::write(OutputFileInits, Format_240) << RoundSigDigits(Results(4), 10); - } else { - } - } - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if (SELECT_CASE_var == Quartic) { - ObjexxFCL::gio::write(OutputFileInits, Format_250) << RoundSigDigits(Results(5), 10); - } else if (SELECT_CASE_var == BiQuadratic) { - ObjexxFCL::gio::write(OutputFileInits, Format_260) << RoundSigDigits(Results(5), 10); - } else if (SELECT_CASE_var == QuadraticLinear) { - ObjexxFCL::gio::write(OutputFileInits, Format_270) << RoundSigDigits(Results(5), 10); - } else { - } - } - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if (SELECT_CASE_var == BiQuadratic) { - ObjexxFCL::gio::write(OutputFileInits, Format_280) << RoundSigDigits(Results(6), 10); - } else if (SELECT_CASE_var == QuadraticLinear) { - ObjexxFCL::gio::write(OutputFileInits, Format_290) << RoundSigDigits(Results(6), 10); - } else { - } - } - ObjexxFCL::gio::write(OutputFileInits, Format_300) << RoundSigDigits(MinX, 10); - ObjexxFCL::gio::write(OutputFileInits, Format_310) << RoundSigDigits(MaxX, 10); - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if (SELECT_CASE_var == Quartic) { - } else if ((SELECT_CASE_var == BiQuadratic) || (SELECT_CASE_var == QuadraticLinear)) { - ObjexxFCL::gio::write(OutputFileInits, Format_320) << RoundSigDigits(MinX2, 10); - ObjexxFCL::gio::write(OutputFileInits, Format_330) << RoundSigDigits(MaxX2, 10); - } else { - } - } - ObjexxFCL::gio::write(OutputFileInits, Format_340) << RoundSigDigits(MinY, 10); - ObjexxFCL::gio::write(OutputFileInits, Format_350) << RoundSigDigits(MaxY, 10); - ObjexxFCL::gio::write(OutputFileInits, Format_360); - } - - // save results in performance curve structure - { - auto const SELECT_CASE_var(PerfCurve(CurveNum).CurveType); - if (SELECT_CASE_var == Linear) { - PerfCurve(CurveNum).Coeff1 = Results(1); - PerfCurve(CurveNum).Coeff2 = Results(2); - } else if (SELECT_CASE_var == Quadratic) { - PerfCurve(CurveNum).Coeff1 = Results(1); - PerfCurve(CurveNum).Coeff2 = Results(2); - PerfCurve(CurveNum).Coeff3 = Results(3); - } else if (SELECT_CASE_var == Cubic) { - PerfCurve(CurveNum).Coeff1 = Results(1); - PerfCurve(CurveNum).Coeff2 = Results(2); - PerfCurve(CurveNum).Coeff3 = Results(3); - PerfCurve(CurveNum).Coeff4 = Results(4); - } else if (SELECT_CASE_var == Quartic) { - PerfCurve(CurveNum).Coeff1 = Results(1); - PerfCurve(CurveNum).Coeff2 = Results(2); - PerfCurve(CurveNum).Coeff3 = Results(3); - PerfCurve(CurveNum).Coeff4 = Results(4); - PerfCurve(CurveNum).Coeff5 = Results(5); - } else if ((SELECT_CASE_var == BiQuadratic) || (SELECT_CASE_var == QuadraticLinear)) { - PerfCurve(CurveNum).Coeff1 = Results(1); - PerfCurve(CurveNum).Coeff2 = Results(2); - PerfCurve(CurveNum).Coeff3 = Results(3); - PerfCurve(CurveNum).Coeff4 = Results(4); - PerfCurve(CurveNum).Coeff5 = Results(5); - PerfCurve(CurveNum).Coeff6 = Results(6); - } else { - } + "[unknown]", + PressureCurve(CurveIndex).EMSOverrideOn, + PressureCurve(CurveIndex).EMSOverrideCurveValue); + } // All pressure curves } - - PerfCurve(CurveNum).Var1Min = MinX; - PerfCurve(CurveNum).Var1Max = MaxX; - PerfCurve(CurveNum).Var2Min = MinX2; - PerfCurve(CurveNum).Var2Max = MaxX2; - - A.deallocate(); - Results.deallocate(); } - void Interpolate_Lagrange(Real64 const DataPoint, // point used for interpolating output (x) - Array1S FunctionArray, // array of output data (Y's) - Array1S Ordinate, // array of input data (X's) - int const ISPT, // the starting point in the interpolated array - int const IEPT, // the ending point in the interpolated array - Real64 &ALAG // the interpolated output (y or F(x) in equation above) + Real64 PerformanceCurveObject(int const CurveIndex, // index of curve in curve array + Real64 const Var1, // 1st independent variable + Optional Var2, // 2nd independent variable + Optional Var3, // 3rd independent variable + Optional Var4 // 4th independent variable ) { - // SUBROUTINE INFORMATION: - // AUTHOR Richard Raustad, FSEC - // DATE WRITTEN July 2010 - // MODIFIED na - // RE-ENGINEERED na - // PURPOSE OF THIS SUBROUTINE: - // Solves the lagrange polynomial equation for interpolation. For second-order: - // F(x) = y1 * ((x-x2)(x-x3) / (x1-x2)(x1-x3)) + - // y2 * ((x-x1)(x-x3) / (x2-x1)(x2-x3)) + - // y3 * ((x-x1)(x-x2) / (x3-x1)(x3-x2)) - // where xn, yn represent data points 1-n, and x represents the interpolation point. + // FUNCTION INFORMATION: + // AUTHOR Fred Buhl + // DATE WRITTEN May 2000 + // MODIFIED Lixing Gu, July 2006; B. Griffith July 2006 + // 22Aug2010 Craig Wray, added new curves for fan component model: + // FanPressureRise, ExponentialSkewNormal, Sigmoid, RectangularHyperbola1, + // RectangularHyperbola2, ExponentialDecay + + // RE-ENGINEERED Autodesk: Performance tuning + + // PURPOSE OF THIS FUNCTION: + // Given the curve index and the values of 1 or 2 independent variables, + // returns the value of an equipment performance curve. + // METHODOLOGY EMPLOYED: // na @@ -5760,12 +2377,13 @@ namespace CurveManager { // USE STATEMENTS: // na - // Argument array dimensioning + // Return value + Real64 CurveValue; // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // DIMENSION FunctionAry(IEPT),Ordinate(IEPT) - // SUBROUTINE PARAMETER DEFINITIONS: + // FUNCTION ARGUMENT DEFINITIONS: + + // FUNCTION PARAMETER DEFINITIONS: // na // INTERFACE BLOCK SPECIFICATIONS @@ -5774,20 +2392,150 @@ namespace CurveManager { // DERIVED TYPE DEFINITIONS // na - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 Lagrange; // intermediate variable - - ALAG = 0.0; - for (int J = ISPT; J <= IEPT; ++J) { - Lagrange = 1.0; - Real64 const Ordinate_J(Ordinate(J)); - for (int K = ISPT; K <= IEPT; ++K) { - if (K != J) { - Lagrange *= ((DataPoint - Ordinate(K)) / (Ordinate_J - Ordinate(K))); - } + // FUNCTION LOCAL VARIABLE DECLARATIONS: + + static Real64 const sqrt_2_inv(1.0 / std::sqrt(2.0)); + + Real64 CoeffZ1; // cpw22Aug2010 Coefficient Z1 in exponential skew normal curve + Real64 CoeffZ2; // cpw22Aug2010 Coefficient Z2 in exponential skew normal curve + Real64 CoeffZ3; // cpw22Aug2010 Coefficient Z3 in exponential skew normal curve + Real64 CurveValueNumer; // cpw22Aug2010 Numerator in in exponential skew normal curve + Real64 CurveValueDenom; // cpw22Aug2010 Numerator in in exponential skew normal curve + Real64 CurveValueExp; // cpw22Aug2010 Exponential term in sigmoid curve + auto const &Curve(PerfCurve(CurveIndex)); + + Real64 const V1(max(min(Var1, Curve.Var1Max), Curve.Var1Min)); // 1st independent variable after limits imposed + Real64 const V2(Var2.present() ? max(min(Var2, Curve.Var2Max), Curve.Var2Min) : 0.0); // 2nd independent variable after limits imposed + Real64 const V3(Var3.present() ? max(min(Var3, Curve.Var3Max), Curve.Var3Min) : 0.0); // 3rd independent variable after limits imposed + Real64 const V4(Var4.present() ? max(min(Var4, Curve.Var4Max), Curve.Var4Min) : 0.0); // 4th independent variable after limits imposed + + { + auto const SELECT_CASE_var(Curve.CurveType); + if (SELECT_CASE_var == Linear) { + CurveValue = Curve.Coeff1 + V1 * Curve.Coeff2; + } else if (SELECT_CASE_var == Quadratic) { + CurveValue = Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * Curve.Coeff3); + } else if (SELECT_CASE_var == QuadLinear) { + CurveValue = Curve.Coeff1 + V1 * Curve.Coeff2 + V2 * Curve.Coeff3 + V3 * Curve.Coeff4 + V4 * Curve.Coeff5; + } else if (SELECT_CASE_var == Cubic) { + CurveValue = Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * (Curve.Coeff3 + V1 * Curve.Coeff4)); + } else if (SELECT_CASE_var == Quartic) { + CurveValue = Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * (Curve.Coeff3 + V1 * (Curve.Coeff4 + V1 * Curve.Coeff5))); + } else if (SELECT_CASE_var == BiQuadratic) { + CurveValue = + Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * Curve.Coeff3) + V2 * (Curve.Coeff4 + V2 * Curve.Coeff5) + V1 * V2 * Curve.Coeff6; + } else if (SELECT_CASE_var == QuadraticLinear) { + CurveValue = (Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * Curve.Coeff3)) + (Curve.Coeff4 + V1 * (Curve.Coeff5 + V1 * Curve.Coeff6)) * V2; + } else if (SELECT_CASE_var == CubicLinear) { + CurveValue = (Curve.Coeff1 + V1 * (Curve.Coeff2 + V1 * (Curve.Coeff3 + V1 * Curve.Coeff4))) + (Curve.Coeff5 + V1 * Curve.Coeff6) * V2; + } else if (SELECT_CASE_var == BiCubic) { + CurveValue = Curve.Coeff1 + V1 * Curve.Coeff2 + V1 * V1 * Curve.Coeff3 + V2 * Curve.Coeff4 + V2 * V2 * Curve.Coeff5 + + V1 * V2 * Curve.Coeff6 + V1 * V1 * V1 * Curve.Coeff7 + V2 * V2 * V2 * Curve.Coeff8 + V1 * V1 * V2 * Curve.Coeff9 + + V1 * V2 * V2 * Curve.Coeff10; + } else if (SELECT_CASE_var == ChillerPartLoadWithLift) { + CurveValue = Curve.Coeff1 + Curve.Coeff2 * V1 + Curve.Coeff3 * V1 * V1 + Curve.Coeff4 * V2 + Curve.Coeff5 * V2 * V2 + + Curve.Coeff6 * V1 * V2 + Curve.Coeff7 * V1 * V1 * V1 + Curve.Coeff8 * V2 * V2 * V2 + Curve.Coeff9 * V1 * V1 * V2 + + Curve.Coeff10 * V1 * V2 * V2 + Curve.Coeff11 * V1 * V1 * V2 * V2 + Curve.Coeff12 * V3 * V2 * V2 * V2; + } else if (SELECT_CASE_var == TriQuadratic) { + auto const &Tri2ndOrder(Curve.Tri2ndOrder(1)); + auto const V1s(V1 * V1); + auto const V2s(V2 * V2); + auto const V3s(V3 * V3); + CurveValue = Tri2ndOrder.CoeffA0 + Tri2ndOrder.CoeffA1 * V1s + Tri2ndOrder.CoeffA2 * V1 + Tri2ndOrder.CoeffA3 * V2s + + Tri2ndOrder.CoeffA4 * V2 + Tri2ndOrder.CoeffA5 * V3s + Tri2ndOrder.CoeffA6 * V3 + Tri2ndOrder.CoeffA7 * V1s * V2s + + Tri2ndOrder.CoeffA8 * V1 * V2 + Tri2ndOrder.CoeffA9 * V1 * V2s + Tri2ndOrder.CoeffA10 * V1s * V2 + + Tri2ndOrder.CoeffA11 * V1s * V3s + Tri2ndOrder.CoeffA12 * V1 * V3 + Tri2ndOrder.CoeffA13 * V1 * V3s + + Tri2ndOrder.CoeffA14 * V1s * V3 + Tri2ndOrder.CoeffA15 * V2s * V3s + Tri2ndOrder.CoeffA16 * V2 * V3 + + Tri2ndOrder.CoeffA17 * V2 * V3s + Tri2ndOrder.CoeffA18 * V2s * V3 + Tri2ndOrder.CoeffA19 * V1s * V2s * V3s + + Tri2ndOrder.CoeffA20 * V1s * V2s * V3 + Tri2ndOrder.CoeffA21 * V1s * V2 * V3s + Tri2ndOrder.CoeffA22 * V1 * V2s * V3s + + Tri2ndOrder.CoeffA23 * V1s * V2 * V3 + Tri2ndOrder.CoeffA24 * V1 * V2s * V3 + Tri2ndOrder.CoeffA25 * V1 * V2 * V3s + + Tri2ndOrder.CoeffA26 * V1 * V2 * V3; + } else if (SELECT_CASE_var == Exponent) { + CurveValue = Curve.Coeff1 + Curve.Coeff2 * std::pow(V1, Curve.Coeff3); + } else if (SELECT_CASE_var == FanPressureRise) { // cpw22Aug2010 Added Fan Pressure Rise curve + CurveValue = V1 * (Curve.Coeff1 * V1 + Curve.Coeff2 + Curve.Coeff3 * std::sqrt(V2)) + Curve.Coeff4 * V2; + } else if (SELECT_CASE_var == ExponentialSkewNormal) { // cpw22Aug2010 Added Exponential Skew Normal curve + CoeffZ1 = (V1 - Curve.Coeff1) / Curve.Coeff2; + CoeffZ2 = (Curve.Coeff4 * V1 * std::exp(Curve.Coeff3 * V1) - Curve.Coeff1) / Curve.Coeff2; + CoeffZ3 = -Curve.Coeff1 / Curve.Coeff2; + // CurveValueNumer = EXP(-0.5d0 * CoeffZ1**2) * (1.0d0 + SIGN(1.0d0,CoeffZ2) * ErfFunction(ABS(CoeffZ2)/SQRT(2.0d0))) + // CurveValueDenom = EXP(-0.5d0 * CoeffZ3**2) * (1.0d0 + SIGN(1.0d0,CoeffZ3) * ErfFunction(ABS(CoeffZ3)/SQRT(2.0d0))) + CurveValueNumer = std::exp(-0.5 * (CoeffZ1 * CoeffZ1)) * (1.0 + sign(1.0, CoeffZ2) * std::erf(std::abs(CoeffZ2) * sqrt_2_inv)); + CurveValueDenom = std::exp(-0.5 * (CoeffZ3 * CoeffZ3)) * (1.0 + sign(1.0, CoeffZ3) * std::erf(std::abs(CoeffZ3) * sqrt_2_inv)); + CurveValue = CurveValueNumer / CurveValueDenom; + } else if (SELECT_CASE_var == Sigmoid) { // cpw22Aug2010 Added Sigmoid curve + CurveValueExp = std::exp((Curve.Coeff3 - V1) / Curve.Coeff4); + CurveValue = Curve.Coeff1 + Curve.Coeff2 / std::pow(1.0 + CurveValueExp, Curve.Coeff5); + } else if (SELECT_CASE_var == RectangularHyperbola1) { // cpw22Aug2010 Added Rectangular Hyperbola Type 1 curve + CurveValueNumer = Curve.Coeff1 * V1; + CurveValueDenom = Curve.Coeff2 + V1; + CurveValue = (CurveValueNumer / CurveValueDenom) + Curve.Coeff3; + } else if (SELECT_CASE_var == RectangularHyperbola2) { // cpw22Aug2010 Added Rectangular Hyperbola Type 2 curve + CurveValueNumer = Curve.Coeff1 * V1; + CurveValueDenom = Curve.Coeff2 + V1; + CurveValue = (CurveValueNumer / CurveValueDenom) + (Curve.Coeff3 * V1); + } else if (SELECT_CASE_var == ExponentialDecay) { // cpw22Aug2010 Added Exponential Decay curve + CurveValue = Curve.Coeff1 + Curve.Coeff2 * std::exp(Curve.Coeff3 * V1); + } else if (SELECT_CASE_var == DoubleExponentialDecay) { // ykt Jul 2011 Added Double Exponential Decay curve + CurveValue = Curve.Coeff1 + Curve.Coeff2 * std::exp(Curve.Coeff3 * V1) + Curve.Coeff4 * std::exp(Curve.Coeff5 * V1); + } else { + CurveValue = 0.0; } - ALAG += Lagrange * FunctionArray(J); } + + if (Curve.CurveMinPresent) CurveValue = max(CurveValue, Curve.CurveMin); + if (Curve.CurveMaxPresent) CurveValue = min(CurveValue, Curve.CurveMax); + + return CurveValue; + } + + Real64 BtwxtTableInterpolation(int const CurveIndex, // index of curve in curve array + Real64 const Var1, // 1st independent variable + Optional Var2, // 2nd independent variable + Optional Var3, // 3rd independent variable + Optional Var4, // 4th independent variable + Optional Var5, // 5th independent variable + Optional Var6 // 6th independent variable + ) + { + // TODO: Generalize for N-dims + Real64 var = Var1; + var = max(min(var, PerfCurve(CurveIndex).Var1Max), PerfCurve(CurveIndex).Var1Min); + std::vector target{var}; + if (present(Var2)) { + var = Var2; + var = max(min(var, PerfCurve(CurveIndex).Var2Max), PerfCurve(CurveIndex).Var2Min); + target.push_back(var); + } + if (present(Var3)) { + var = Var3; + var = max(min(var, PerfCurve(CurveIndex).Var3Max), PerfCurve(CurveIndex).Var3Min); + target.push_back(var); + } + if (present(Var4)) { + var = Var4; + var = max(min(var, PerfCurve(CurveIndex).Var4Max), PerfCurve(CurveIndex).Var4Min); + target.push_back(var); + } + if (present(Var5)) { + var = Var5; + var = max(min(var, PerfCurve(CurveIndex).Var5Max), PerfCurve(CurveIndex).Var5Min); + target.push_back(var); + } + if (present(Var6)) { + var = Var6; + var = max(min(var, PerfCurve(CurveIndex).Var6Max), PerfCurve(CurveIndex).Var6Min); + target.push_back(var); + } + + std::string contextString = "Table:Lookup \"" + PerfCurve(CurveIndex).Name + "\""; + Btwxt::setMessageCallback(BtwxtMessageCallback, &contextString); + Real64 TableValue = btwxtManager.getGridValue(PerfCurve(CurveIndex).TableIndex,PerfCurve(CurveIndex).GridValueIndex,target); + + if (PerfCurve(CurveIndex).CurveMinPresent) TableValue = max(TableValue, PerfCurve(CurveIndex).CurveMin); + if (PerfCurve(CurveIndex).CurveMaxPresent) TableValue = min(TableValue, PerfCurve(CurveIndex).CurveMax); + + return TableValue; } bool IsCurveInputTypeValid(std::string const &InInputType) // index of curve in curve array @@ -5942,14 +2690,18 @@ namespace CurveManager { double GetNormalPoint(int const CurveIndex) { - if (CurveIndex > 0 && CurveIndex <= NumCurves && PerfCurve(CurveIndex).TableIndex > 0) { - const int tableIndex = PerfCurve(CurveIndex).TableIndex; - return TableData(tableIndex).NormalPoint; - } else { - std::string s = std::to_string(CurveIndex); - ShowWarningError("GetNormalPoint: CurveIndex not in range of curves, CurveIndex requested " + s); - return -1; + std::string s = std::to_string(CurveIndex); + if (CurveIndex > 0 && CurveIndex <= NumCurves) { + if (PerfCurve(CurveIndex).InterpolationType == BtwxtMethod) { + return PerfCurve(CurveIndex).NormalizationValue; + } else { + ShowWarningError("GetNormalPoint: CurveIndex is not a table, CurveIndex requested " + s); + return -1; + } } + + ShowWarningError("GetNormalPoint: CurveIndex not in range of curves, CurveIndex requested " + s); + return -1; } int GetCurveIndex(std::string const &CurveName) // name of the curve @@ -6517,451 +3269,6 @@ namespace CurveManager { } } - int GetCurveInterpolationMethodNum(int const CurveIndex) // index of curve in curve array - { - - // PURPOSE OF THIS FUNCTION: - // get the interpolation type integer identifier for tables - - // Return value - int TableInterpolationMethodNum; - - if (CurveIndex > 0) { - TableInterpolationMethodNum = PerfCurve(CurveIndex).InterpolationType; - } else { - TableInterpolationMethodNum = 0; - } - - return TableInterpolationMethodNum; - } - - void ReadTwoVarTableDataFromFile(int const CurveNum, std::string &FileName, int &lineNum) - { - - // PURPOSE OF THIS FUNCTION: - // get data from an external file used to retrieve optical properties - - // METHODOLOGY EMPLOYED: - // Recommended by NREL to read data - - // Using/Aliasing - using DataSystemVariables::CheckForActualFileName; - using DataSystemVariables::TempFullFileName; - using General::splitString; - - int TableNum; - bool FileExists; - std::string line; - - CheckForActualFileName(FileName, FileExists, TempFullFileName); - if (!FileExists) { - ShowSevereError("CurveManager::ReadTwoVarTableDataFromFile: Could not open Table Data File, expecting it as file name = " + FileName); - ShowContinueError("Certain run environments require a full path to be included with the file name in the input field."); - ShowContinueError("Try again with putting full path and file name in the field."); - ShowFatalError("Program terminates due to these conditions."); - } - - TableNum = PerfCurve(CurveNum).TableIndex; - std::ifstream infile(TempFullFileName); - TableData(TableNum).X1.allocate(0); - TableData(TableNum).X2.allocate(0); - TableData(TableNum).Y.allocate(0); - lineNum = 0; - while (std::getline(infile, line)) { - std::vector strings = splitString(line, ','); - lineNum++; - if (strings.size() > 2) { - TableData(TableNum).X1.push_back(std::stod(strings[0])); - TableData(TableNum).X2.push_back(std::stod(strings[1])); - TableData(TableNum).Y.push_back(std::stod(strings[2])); - } - } - if (lineNum == 0) { - ShowSevereError("CurveManager::ReadTwoVarTableDataFromFile: The data file is empty as file name = " + FileName); - ShowFatalError("Program terminates due to these conditions."); - } - } - - void SetSameIndeVariableValues(int const TransCurveIndex, int const FRefleCurveIndex, int const BRefleCurveIndex) - { - - // PURPOSE OF THIS FUNCTION: - // Set up indenpendent varilable values the same in 3 table data - - // Using/Aliasing - int X1TableNum; - int X2TableNum; - Array1D XX1; - Array1D XX2; - int i; - int j; - int k; - int l; - int m; - Real64 XX; - Real64 X1; - Real64 X2; - Real64 YY; - Array1D Tables; - int TableNum; - - Tables.allocate(3); - const Real64 tol = 1.0e-5; - bool found; - - Tables(1) = PerfCurve(TransCurveIndex).TableIndex; - Tables(2) = PerfCurve(FRefleCurveIndex).TableIndex; - Tables(3) = PerfCurve(BRefleCurveIndex).TableIndex; - - // Set up independent variable size to cover all independent variable values in 3 tables - for (TableNum = 1; TableNum <= int(Tables.size()); TableNum++) { - if (TableNum == 1) { - X1TableNum = TableLookup(Tables(TableNum)).NumX1Vars; - X2TableNum = TableLookup(Tables(TableNum)).NumX2Vars; - - XX1.allocate(X1TableNum); - XX2.allocate(X2TableNum); - - for (i = 1; i <= X1TableNum; i++) { - XX1(i) = TableLookup(Tables(TableNum)).X1Var(i); - } - for (i = 1; i <= X2TableNum; i++) { - XX2(i) = TableLookup(Tables(TableNum)).X2Var(i); - } - - } else { - // Add common wavelengths and angles - X1TableNum = TableLookup(Tables(TableNum)).NumX1Vars; - X2TableNum = TableLookup(Tables(TableNum)).NumX2Vars; - for (i = 1; i <= X1TableNum; i++) { - XX = TableLookup(Tables(TableNum)).X1Var(i); - found = false; - for (j = 1; j <= int(XX1.size()); j++) { - if (fabs(XX1(j) - XX) < tol) { - found = true; - } - } - if (!found) { - XX1.push_back(XX); - } - } - for (i = 1; i <= X2TableNum; i++) { - XX = TableLookup(Tables(TableNum)).X2Var(i); - found = false; - for (j = 1; j <= int(XX2.size()); j++) { - if (fabs(XX2(j) - XX) < tol) { - found = true; - } - } - if (!found) { - XX2.push_back(XX); - } - } - } - } - - // ascend sort - std::sort(XX1.begin(), XX1.end()); - std::sort(XX2.begin(), XX2.end()); - - for (TableNum = 1; TableNum <= int(Tables.size()); TableNum++) { - if (int(XX2.size()) > TableLookup(Tables(TableNum)).NumX2Vars) { - l = 0; - for (i = 1; i <= int(XX2.size()); i++) { - if (fabs(XX2(i) - TableLookup(Tables(TableNum)).X2Var(i - l)) > tol) { - for (j = 2; j <= int(TableData(Tables(TableNum)).X2.size()); j++) { - if (TableData(Tables(TableNum)).X2(j - 1) < XX2(i) && TableData(Tables(TableNum)).X2(j) > XX2(i)) { - TableData(Tables(TableNum)).X1.push_back(TableData(Tables(TableNum)).X1(j)); - TableData(Tables(TableNum)).X2.push_back(XX2(i)); - YY = TableData(Tables(TableNum)).Y(j - 1) + - (XX2(i) - TableData(Tables(TableNum)).X2(j - 1)) / - (TableData(Tables(TableNum)).X2(j) - TableData(Tables(TableNum)).X2(j - 1)) * - (TableData(Tables(TableNum)).Y(j) - TableData(Tables(TableNum)).Y(j - 1)); - TableData(Tables(TableNum)).Y.push_back(YY); - X1 = TableData(Tables(TableNum)).X1(int(TableData(Tables(TableNum)).X2.size())); - X2 = TableData(Tables(TableNum)).X2(int(TableData(Tables(TableNum)).X2.size())); - YY = TableData(Tables(TableNum)).Y(int(TableData(Tables(TableNum)).X2.size())); - for (k = int(TableData(Tables(TableNum)).X2.size()) - 1; k >= j; k--) { - TableData(Tables(TableNum)).X1(k + 1) = TableData(Tables(TableNum)).X1(k); - TableData(Tables(TableNum)).X2(k + 1) = TableData(Tables(TableNum)).X2(k); - TableData(Tables(TableNum)).Y(k + 1) = TableData(Tables(TableNum)).Y(k); - } - TableData(Tables(TableNum)).X1(j) = X1; - TableData(Tables(TableNum)).X2(j) = X2; - TableData(Tables(TableNum)).Y(j) = YY; - } - } - l++; - } - } - } - - if (int(XX1.size()) > TableLookup(Tables(TableNum)).NumX1Vars) { - l = 0; - for (i = 1; i <= int(XX1.size()); i++) { - if (fabs(XX1(i) - TableLookup(Tables(TableNum)).X1Var(i - l)) > tol) { - m = int(TableData(Tables(TableNum)).X1.size()); - for (k = 1; k <= int(XX2.size()); k++) { - TableData(Tables(TableNum)).X1.push_back(TableData(Tables(TableNum)).X1(m - int(XX2.size()) + 1)); - TableData(Tables(TableNum)).X2.push_back(TableData(Tables(TableNum)).X2(m - int(XX2.size()) + 1)); - TableData(Tables(TableNum)).Y.push_back(TableData(Tables(TableNum)).Y(m - int(XX2.size()) + 1)); - } - for (j = m / int(XX2.size()); j >= i; j--) { - for (k = 1; k <= int(XX2.size()); k++) { - TableData(Tables(TableNum)).X1(j * int(XX2.size()) + k) = - TableData(Tables(TableNum)).X1((j - 1) * int(XX2.size()) + k); - TableData(Tables(TableNum)).X2(j * int(XX2.size() + k)) = - TableData(Tables(TableNum)).X2((j - 1) * int(XX2.size()) + k); - TableData(Tables(TableNum)).Y(j * int(XX2.size()) + k) = TableData(Tables(TableNum)).Y((j - 1) * int(XX2.size()) + k); - } - } - YY = (XX1(i) - TableLookup(Tables(TableNum)).X1Var(i - l - 1)) / - (TableLookup(Tables(TableNum)).X1Var(i - l) - TableLookup(Tables(TableNum)).X1Var(i - l - 1)); - for (k = 1; k <= int(XX2.size()); k++) { - TableData(Tables(TableNum)).X1((i - 1) * int(XX2.size()) + k) = XX1(i); - TableData(Tables(TableNum)).X2((i - 1) * int(XX2.size()) + k) = XX2(k); - TableData(Tables(TableNum)).Y((i - 1) * int(XX2.size()) + k) = - TableData(Tables(TableNum)).Y((i - 2) * int(XX2.size()) + k) + - YY * (TableData(Tables(TableNum)).Y(i * int(XX2.size()) + k) - - TableData(Tables(TableNum)).Y((i - 2) * int(XX2.size()) + k)); - } - l++; - } - } - } - } - - // Re-organize performance curve table data structure - for (TableNum = 1; TableNum <= int(Tables.size()); TableNum++) { - PerfCurveTableData(Tables(TableNum)).X1.allocate(int(XX1.size())); - PerfCurveTableData(Tables(TableNum)).X2.allocate(int(XX2.size())); - PerfCurveTableData(Tables(TableNum)).Y.allocate(int(XX2.size()), int(XX1.size())); - PerfCurveTableData(Tables(TableNum)).X1 = -9999999.0; - PerfCurveTableData(Tables(TableNum)).X2 = -9999999.0; - PerfCurveTableData(Tables(TableNum)).Y = -9999999.0; - for (i = 1; i <= int(XX1.size()); ++i) { - PerfCurveTableData(Tables(TableNum)).X1(i) = XX1(i); - for (j = 1; j <= int(XX2.size()); ++j) { - PerfCurveTableData(Tables(TableNum)).X2(j) = XX2(j); - for (k = 1; k <= int(XX1.size()) * int(XX2.size()); ++k) { - if ((TableData(Tables(TableNum)).X1(k) == PerfCurveTableData(Tables(TableNum)).X1(i)) && - (TableData(Tables(TableNum)).X2(k) == PerfCurveTableData(Tables(TableNum)).X2(j))) { - PerfCurveTableData(Tables(TableNum)).Y(j, i) = TableData(Tables(TableNum)).Y(k); - } - } - } - } - } - - // Re-organize TableLookup data structure - for (TableNum = 1; TableNum <= int(Tables.size()); TableNum++) { - TableLookup(Tables(TableNum)).NumX1Vars = size(PerfCurveTableData(Tables(TableNum)).X1); - TableLookup(Tables(TableNum)).NumX2Vars = size(PerfCurveTableData(Tables(TableNum)).X2); - TableLookup(Tables(TableNum)).X1Var.allocate(TableLookup(Tables(TableNum)).NumX1Vars); - TableLookup(Tables(TableNum)).X2Var.allocate(TableLookup(Tables(TableNum)).NumX2Vars); - TableLookup(Tables(TableNum)) - .TableLookupZData.allocate( - 1, 1, 1, 1, size(PerfCurveTableData(Tables(TableNum)).Y(_, 1)), size(PerfCurveTableData(Tables(TableNum)).Y(1, _))); - TableLookup(Tables(TableNum)).X1Var = PerfCurveTableData(Tables(TableNum)).X1; - TableLookup(Tables(TableNum)).X2Var = PerfCurveTableData(Tables(TableNum)).X2; - TableLookup(Tables(TableNum)).TableLookupZData(1, 1, 1, 1, _, _) = PerfCurveTableData(Tables(TableNum)).Y(_, _); - } - - XX1.deallocate(); - XX2.deallocate(); - } - - void SetCommonIncidentAngles(int const ConstrNum, int const NGlass, int &TotalIPhi, Array1A_int Tables) - { - - // SUBROUTINE INFORMATION: - // AUTHOR Lixing Gu, FSEC - // DATE WRITTEN Feb. 2017 - // MODIFIED na - // RE-ENGINEERED na - - // PURPOSE OF THIS FUNCTION: - // Set up common incident angle values in all materials with spectral and angular data in the same construction - - // Using/Aliasing`` - using DataHeatBalance::Construct; - using DataHeatBalance::Material; - - int X1Num; - Real64 XX; - Real64 YY; - int i; - int j; - int k; - int l; - int m; - int TabNum; - int TabOpt; - int waveSize; - Array1D XX1; - const Real64 tol = 1.0e-5; - bool found; - bool Anglefound; - int TableNum; - - Tables.dimension(NGlass); - - Anglefound = false; - - j = 0; - for (i = 1; i <= NGlass; i++) { - if (Tables(i) > 0) j++; - } - if (j == 0) return; - - if (TotalIPhi < 10) { - XX1.allocate(10); - for (k = 1; k <= 10; k++) { - XX1(k) = (k - 1) * 10.0; - } - } - - for (i = 1; i <= NGlass; i++) { - if (Tables(i) > 0) { - if (!XX1.allocated()) { - TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(i))).GlassSpecAngTransDataPtr; - X1Num = TableLookup(PerfCurve(TableNum).TableIndex).NumX1Vars; - XX1.allocate(X1Num); - for (j = 1; j <= int(XX1.size()); j++) { - XX1(j) = TableLookup(PerfCurve(TableNum).TableIndex).X1Var(j); - } - } else { - TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(i))).GlassSpecAngTransDataPtr; - X1Num = TableLookup(PerfCurve(TableNum).TableIndex).NumX1Vars; - if (int(XX1.size()) != X1Num) Anglefound = true; - for (j = 1; j <= X1Num; j++) { - XX = TableLookup(PerfCurve(TableNum).TableIndex).X1Var(j); - found = false; - for (k = 1; k <= int(XX1.size()); k++) { - if (fabs(XX1(k) - XX) < tol) { - found = true; - } - } - if (!found) { - XX1.push_back(XX); - Anglefound = true; - } - } - } - } - } - - if (!Anglefound) return; - - // ascend sort - std::sort(XX1.begin(), XX1.end()); - - for (TabNum = 1; TabNum <= int(Tables.size()); TabNum++) { - if (Tables(TabNum) == 0) continue; - for (TabOpt = 1; TabOpt <= 3; TabOpt++) { - if (TabOpt == 1) TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(TabNum))).GlassSpecAngTransDataPtr; - if (TabOpt == 2) TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(TabNum))).GlassSpecAngFRefleDataPtr; - if (TabOpt == 3) TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(TabNum))).GlassSpecAngBRefleDataPtr; - waveSize = TableLookup(PerfCurve(TableNum).TableIndex).NumX2Vars; - if (int(XX1.size()) > TableLookup(PerfCurve(TableNum).TableIndex).NumX1Vars) { - l = 0; - for (i = 1; i <= int(XX1.size()); i++) { - if (fabs(XX1(i) - TableLookup(PerfCurve(TableNum).TableIndex).X1Var(i - l)) > tol) { - m = int(TableData(PerfCurve(TableNum).TableIndex).X1.size()); - for (k = 1; k <= waveSize; k++) { - TableData(PerfCurve(TableNum).TableIndex) - .X1.push_back(TableData(PerfCurve(TableNum).TableIndex).X1(m - waveSize + 1)); - TableData(PerfCurve(TableNum).TableIndex) - .X2.push_back(TableData(PerfCurve(TableNum).TableIndex).X2(m - waveSize + 1)); - TableData(PerfCurve(TableNum).TableIndex).Y.push_back(TableData(PerfCurve(TableNum).TableIndex).Y(m - waveSize + 1)); - } - for (j = m / waveSize; j >= i; j--) { - for (k = 1; k <= waveSize; k++) { - TableData(PerfCurve(TableNum).TableIndex).X1(j * waveSize + k) = - TableData(PerfCurve(TableNum).TableIndex).X1((j - 1) * waveSize + k); - TableData(PerfCurve(TableNum).TableIndex).X2(j * waveSize + k) = - TableData(PerfCurve(TableNum).TableIndex).X2((j - 1) * waveSize + k); - TableData(PerfCurve(TableNum).TableIndex).Y(j * waveSize + k) = - TableData(PerfCurve(TableNum).TableIndex).Y((j - 1) * waveSize + k); - } - } - YY = (XX1(i) - TableLookup(PerfCurve(TableNum).TableIndex).X1Var(i - l - 1)) / - (TableLookup(PerfCurve(TableNum).TableIndex).X1Var(i - l) - - TableLookup(PerfCurve(TableNum).TableIndex).X1Var(i - l - 1)); - for (k = 1; k <= waveSize; k++) { - TableData(PerfCurve(TableNum).TableIndex).X1((i - 1) * waveSize + k) = XX1(i); - TableData(PerfCurve(TableNum).TableIndex).Y((i - 1) * waveSize + k) = - TableData(PerfCurve(TableNum).TableIndex).Y((i - 2) * waveSize + k) + - YY * (TableData(PerfCurve(TableNum).TableIndex).Y(i * waveSize + k) - - TableData(PerfCurve(TableNum).TableIndex).Y((i - 2) * waveSize + k)); - } - l++; - } - } - } - } - } - - // Re-organize performance curve table data structure - for (TabNum = 1; TabNum <= int(Tables.size()); TabNum++) { - if (Tables(TabNum) == 0) continue; - for (TabOpt = 1; TabOpt <= 3; TabOpt++) { - if (TabOpt == 1) TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(TabNum))).GlassSpecAngTransDataPtr; - if (TabOpt == 2) TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(TabNum))).GlassSpecAngFRefleDataPtr; - if (TabOpt == 3) TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(TabNum))).GlassSpecAngBRefleDataPtr; - if (int(XX1.size()) == TableLookup(PerfCurve(TableNum).TableIndex).NumX1Vars) continue; - waveSize = TableLookup(PerfCurve(TableNum).TableIndex).NumX2Vars; - PerfCurveTableData(PerfCurve(TableNum).TableIndex).X1.allocate(int(XX1.size())); - PerfCurveTableData(PerfCurve(TableNum).TableIndex).Y.allocate(waveSize, int(XX1.size())); - PerfCurveTableData(PerfCurve(TableNum).TableIndex).X1 = -9999999.0; - PerfCurveTableData(PerfCurve(TableNum).TableIndex).X2 = -9999999.0; - PerfCurveTableData(PerfCurve(TableNum).TableIndex).Y = -9999999.0; - for (i = 1; i <= int(XX1.size()); ++i) { - PerfCurveTableData(PerfCurve(TableNum).TableIndex).X1(i) = XX1(i); - for (j = 1; j <= waveSize; ++j) { - for (k = 1; k <= int(XX1.size()) * waveSize; ++k) { - if ((TableData(PerfCurve(TableNum).TableIndex).X1(k) == PerfCurveTableData(PerfCurve(TableNum).TableIndex).X1(i)) && - (TableData(PerfCurve(TableNum).TableIndex).X2(k) == PerfCurveTableData(PerfCurve(TableNum).TableIndex).X2(j))) { - PerfCurveTableData(PerfCurve(TableNum).TableIndex).Y(j, i) = TableData(PerfCurve(TableNum).TableIndex).Y(k); - } - } - } - } - } - } - - // Re-organize TableLookup data structure - for (TabNum = 1; TabNum <= int(Tables.size()); TabNum++) { - if (Tables(TabNum) == 0) continue; - for (TabOpt = 1; TabOpt <= 3; TabOpt++) { - if (TabOpt == 1) TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(TabNum))).GlassSpecAngTransDataPtr; - if (TabOpt == 2) TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(TabNum))).GlassSpecAngFRefleDataPtr; - if (TabOpt == 3) TableNum = Material(Construct(ConstrNum).LayerPoint(Tables(TabNum))).GlassSpecAngBRefleDataPtr; - if (int(XX1.size()) == TableLookup(PerfCurve(TableNum).TableIndex).NumX1Vars) continue; - TableLookup(PerfCurve(TableNum).TableIndex).NumX1Vars = size(PerfCurveTableData(PerfCurve(TableNum).TableIndex).X1); - TableLookup(PerfCurve(TableNum).TableIndex).NumX2Vars = size(PerfCurveTableData(PerfCurve(TableNum).TableIndex).X2); - TableLookup(PerfCurve(TableNum).TableIndex).X1Var.allocate(TableLookup(PerfCurve(TableNum).TableIndex).NumX1Vars); - TableLookup(PerfCurve(TableNum).TableIndex).X2Var.allocate(TableLookup(PerfCurve(TableNum).TableIndex).NumX2Vars); - TableLookup(PerfCurve(TableNum).TableIndex) - .TableLookupZData.allocate(1, - 1, - 1, - 1, - size(PerfCurveTableData(PerfCurve(TableNum).TableIndex).Y(_, 1)), - size(PerfCurveTableData(PerfCurve(TableNum).TableIndex).Y(1, _))); - TableLookup(PerfCurve(TableNum).TableIndex).X1Var = PerfCurveTableData(PerfCurve(TableNum).TableIndex).X1; - TableLookup(PerfCurve(TableNum).TableIndex).X2Var = PerfCurveTableData(PerfCurve(TableNum).TableIndex).X2; - TableLookup(PerfCurve(TableNum).TableIndex).TableLookupZData(1, 1, 1, 1, _, _) = - PerfCurveTableData(PerfCurve(TableNum).TableIndex).Y(_, _); - } - } - - if (TotalIPhi != int(XX1.size())) { - TotalIPhi = int(XX1.size()); - } - - XX1.deallocate(); - } //=================================================================================================! } // namespace CurveManager diff --git a/src/EnergyPlus/CurveManager.hh b/src/EnergyPlus/CurveManager.hh index 2a94ad1e83b..6ba5d7997af 100644 --- a/src/EnergyPlus/CurveManager.hh +++ b/src/EnergyPlus/CurveManager.hh @@ -48,6 +48,10 @@ #ifndef CurveManager_hh_INCLUDED #define CurveManager_hh_INCLUDED +// C++ Headers +#include +#include + // ObjexxFCL Headers #include #include @@ -58,6 +62,12 @@ #include #include +#include + +// Btwxt Headers +#include +#include + // EnergyPlus Headers #include #include @@ -95,18 +105,8 @@ namespace CurveManager { extern int const ChillerPartLoadWithLift; // Interpolation Types - extern int const LinearInterpolationOfTable; - extern int const LagrangeInterpolationLinearExtrapolation; extern int const EvaluateCurveToLimits; - - // Data Format - extern int const SINGLELINEINDEPENDENTVARIABLEWITHMATRIX; - - // Sort Order - extern int const ASCENDING; - extern int const DESCENDING; - - // DERIVED TYPE DEFINITIONS + extern int const BtwxtMethod; // MODULE VARIABLE DECLARATIONS: @@ -158,33 +158,6 @@ namespace CurveManager { } }; - struct TableDataStruct - { - // Members - Real64 NormalPoint; - Array1D X1; - Array1D X2; - Array1D Y; - - // Default Constructor - TableDataStruct() : NormalPoint(1.0) - { - } - }; - - struct PerfCurveTableDataStruct - { - // Members - Array1D X1; - Array1D X2; - Array2D Y; - - // Default Constructor - PerfCurveTableDataStruct() - { - } - }; - struct PerfomanceCurveData { // Members @@ -193,12 +166,14 @@ namespace CurveManager { int CurveType; // Curve type (see parameter definitions above) int InterpolationType; // table interpolation method int DataFormat; // format of tabular data - int TableIndex; // Index to tablular data (0 if a standard curve object) + int TableIndex; // Index to tablular data (0 if a standard curve object) OR Index of RGI for new Table:Lookup int NumDims; // Number of dimensions (AKA, independent variables) int NumIVLowErrorIndex; // Index to table object error message for too few IV's int NumIVHighErrorIndex; // Index to table object error message for too many IV's int X1SortOrder; // sort order for table data for X1 int X2SortOrder; // sort order for table data for X2 + int GridValueIndex; // Index of output within RGI for new Table:Lookup + Real64 NormalizationValue; // normalization value (TODO: Move from Table object) Real64 Coeff1; // constant coefficient Real64 Coeff2; // linear coeff (1st independent variable) Real64 Coeff3; // quadratic coeff (1st independent variable) @@ -242,8 +217,6 @@ namespace CurveManager { Array1D Tri2ndOrder; // structure for triquadratic curve data bool EMSOverrideOn; // if TRUE, then EMS is calling to override curve value Real64 EMSOverrideCurveValue; // Value of curve result EMS is directing to use - bool OpticalProperty; // if TRUE, this table is used to store optical property - // report variables Real64 CurveOutput; // curve output or result Real64 CurveInput1; // curve input #1 (e.g., x or X1 variable) Real64 CurveInput2; // curve input #2 (e.g., y or X2 variable) @@ -255,53 +228,73 @@ namespace CurveManager { // Default Constructor PerfomanceCurveData() : ObjectType(""), CurveType(0), InterpolationType(0), DataFormat(0), TableIndex(0), NumDims(0), NumIVLowErrorIndex(0), - NumIVHighErrorIndex(0), X1SortOrder(1), X2SortOrder(1), Coeff1(0.0), Coeff2(0.0), Coeff3(0.0), Coeff4(0.0), Coeff5(0.0), Coeff6(0.0), + NumIVHighErrorIndex(0), X1SortOrder(1), X2SortOrder(1), NormalizationValue(1.0), Coeff1(0.0), Coeff2(0.0), Coeff3(0.0), Coeff4(0.0), Coeff5(0.0), Coeff6(0.0), Coeff7(0.0), Coeff8(0.0), Coeff9(0.0), Coeff10(0.0), Coeff11(0.0), Coeff12(0.0), Var1Max(0.0), Var1Min(0.0), Var2Max(0.0), Var2Min(0.0), Var3Max(0.0), Var3Min(0.0), Var4Max(0.0), Var4Min(0.0), Var5Max(0.0), Var5Min(0.0), Var6Max(0.0), Var6Min(0.0), CurveMin(0.0), CurveMax(0.0), CurveMinPresent(false), CurveMaxPresent(false), Var1MinPresent(false), Var1MaxPresent(false), Var2MinPresent(false), Var2MaxPresent(false), Var3MinPresent(false), Var3MaxPresent(false), Var4MinPresent(false), Var4MaxPresent(false), Var5MinPresent(false), Var5MaxPresent(false), Var6MinPresent(false), Var6MaxPresent(false), EMSOverrideOn(false), - EMSOverrideCurveValue(0.0), OpticalProperty(false), CurveOutput(0.0), CurveInput1(0.0), CurveInput2(0.0), CurveInput3(0.0), + EMSOverrideCurveValue(0.0), CurveOutput(0.0), CurveInput1(0.0), CurveInput2(0.0), CurveInput3(0.0), CurveInput4(0.0), CurveInput5(0.0), CurveInput6(0.0) { } }; - struct TableLookupData + // Table file objects + class TableFile { - // Members - int InterpolationOrder; // number of points to interpolate (table data only) - int NumX1Vars; // Number of variables for independent variable #1 - Array1D X1Var; - int NumX2Vars; // Number of variables for independent variable #2 - Array1D X2Var; - int NumX3Vars; // Number of variables for independent variable #3 - Array1D X3Var; - int NumX4Vars; // Number of variables for independent variable #4 - Array1D X4Var; - int NumX5Vars; // Number of variables for independent variable #5 - Array1D X5Var; - int NumX6Vars; // Number of variables for independent variable #6 - Array1D X6Var; - Array6D TableLookupZData; + public: + TableFile() = default; + TableFile(std::string path); + std::string filePath; + std::vector> contents; + std::map, std::vector> arrays; + void load(std::string path); + std::vector& getArray(std::pair colAndRow); + + private: + std::size_t numRows; + std::size_t numColumns; + }; - // Default Constructor - TableLookupData() - : InterpolationOrder(4), NumX1Vars(0), NumX2Vars(0), NumX3Vars(0), NumX4Vars(0), NumX5Vars(0), NumX6Vars(0) - { - } + // Container for Btwxt N-d Objects + class BtwxtManager + { + public: + using json = nlohmann::json; + static std::map interpMethods; + static std::map extrapMethods; + // Map RGI collection to string name of independent variable list + int addGrid(std::string indVarListName, Btwxt::GriddedData grid) { + grids.emplace_back(Btwxt::RegularGridInterpolator(grid)); + gridMap.emplace(indVarListName,grids.size() - 1 ); + return grids.size() - 1; + }; + void normalizeGridValues(int gridIndex, int outputIndex, const std::vector target, const double scalar = 1.0); + int addOutputValues(int gridIndex, std::vector values); + int getGridIndex(std::string indVarListName, bool &ErrorsFound); + int getNumGridDims(int gridIndex); + std::pair getGridAxisLimits(int gridIndex, int axisIndex); + double getGridValue(int gridIndex, int outputIndex, const std::vector target); + std::map independentVarRefs; + std::map tableFiles; + void clear(); + private: + std::map gridMap; + std::vector grids; }; // Object Data extern Array1D PerfCurve; - extern Array1D PerfCurveTableData; - extern Array1D TableData; - extern Array1D TempTableData; - extern Array1D Temp2TableData; - extern Array1D TableLookup; - + extern BtwxtManager btwxtManager; // Functions + void BtwxtMessageCallback( + const Btwxt::MsgLevel messageType, + const std::string message, + void *contextPtr + ); + // Clears the global data in CurveManager. // Needed for unit tests, should not be normally called. void clear_state(); @@ -323,26 +316,6 @@ namespace CurveManager { void InitCurveReporting(); - void ReadTableData(int const CurveNum, - std::string &CurrentModuleObject, - bool const ReadFromFile, - std::string &FileName, - Array1S_string Alphas, - Array1S Numbers, - int const NumNumbers, - bool &ErrorsFound); - - Real64 DLAG(Real64 const XX, - Real64 const YY, - Array1S X, - Array1S Y, - Array2S Z, - int const NX, - int const NY, - int const M, - int &IEXTX, - int &IEXTY); - Real64 PerformanceCurveObject(int const CurveIndex, // index of curve in curve array Real64 const Var1, // 1st independent variable Optional Var2 = _, // 2nd independent variable @@ -350,35 +323,13 @@ namespace CurveManager { Optional Var4 = _ // 4th independent variable ); - Real64 PerformanceTableObject(int const CurveIndex, // index of curve in curve array - Real64 const Var1, // 1st independent variable - Optional Var2 = _, // 2nd independent variable - Optional Var3 = _ // 3rd independent variable - ); - - Real64 TableLookupObject(int const CurveIndex, // index of curve in curve array - Real64 const Var1, // 1st independent variable - Optional Var2 = _, // 2nd independent variable - Optional Var3 = _, // 3rd independent variable - Optional Var4 = _, // 4th independent variable - Optional Var5 = _, // 5th independent variable - Optional Var6 = _); - - void SolveRegression(int &CurveNum, // index to performance curve - std::string &TableType, // tabular data object type - std::string &CurveName, // performance curve name - Array1S RawDataX, // table data X values (1st independent variable) - Array1S RawDataY, // table data Y values (dependent variables) - Optional> RawDataX2 = _ // table data X2 values (2nd independent variable) - ); - - void Interpolate_Lagrange(Real64 const DataPoint, // point used for interpolating output (x) - Array1S FunctionArray, // array of output data (Y's) - Array1S Ordinate, // array of input data (X's) - int const ISPT, // the starting point in the interpolated array - int const IEPT, // the ending point in the interpolated array - Real64 &ALAG // the interpolated output (y or F(x) in equation above) - ); + Real64 BtwxtTableInterpolation(int const CurveIndex, // index of curve in curve array + Real64 const Var1, // 1st independent variable + Optional Var2 = _, // 2nd independent variable + Optional Var3 = _, // 3rd independent variable + Optional Var4 = _, // 4th independent variable + Optional Var5 = _, // 5th independent variable + Optional Var6 = _); bool IsCurveInputTypeValid(std::string const &InInputType); // index of curve in curve array @@ -442,19 +393,6 @@ namespace CurveManager { Optional Var5 = _ // 5th independent variable ); - int GetCurveInterpolationMethodNum(int const CurveIndex); // index of curve in curve array - - void ReadTwoVarTableDataFromFile(int const CurveNum, std::string &FileName, int &lineNum); - - void SetSameIndeVariableValues(int const TransCurveIndex, int const FRefleCurveIndex, int const BRefleCurveIndex); - - void SetCommonIncidentAngles( - int const ConstrNum, // Construction number - int const NGlass, // The number of glass layers in the construction with index = ConstrNum - int &TotalIPhi, // The number of incident angles - Array1A_int const Tables // Store construction layer number for SpectralAndAngleGlassLayer glass only. Otherwise = 0 for other layers. - ); - //=================================================================================================! } // namespace CurveManager diff --git a/src/EnergyPlus/DataAirLoop.hh b/src/EnergyPlus/DataAirLoop.hh index 0a2dfe7aa5f..1fffbce8d48 100644 --- a/src/EnergyPlus/DataAirLoop.hh +++ b/src/EnergyPlus/DataAirLoop.hh @@ -53,8 +53,8 @@ // EnergyPlus Headers #include -#include #include +#include namespace EnergyPlus { @@ -233,12 +233,13 @@ namespace DataAirLoop { Real64 OAFrac; // fraction of outside air to mixed air mass flow rate Real64 OAFlow; // oa flow rate this time step bool FlowError; // error flag for flow error message + Real64 BypassMassFlow; // air loop bypass mass flow NOT entering splitter but included in mixer or plenum // Default Constructor AirLoopFlowData() : DesSupply(0.0), DesReturnFrac(1.0), SysToZoneDesFlowRatio(0.0), ReqSupplyFrac(1.0), MinOutAir(0.0), MaxOutAir(0.0), OAMinFrac(0.0), Previous(0.0), SupFlow(0.0), ZoneRetFlow(0.0), ZoneRetFlowRatio(1.0), SysRetFlow(0.0), RecircFlow(0.0), LeakFlow(0.0), - ExcessZoneExhFlow(0.0), FanPLR(0.0), OAFrac(0.0), OAFlow(0.0), FlowError(false) + ExcessZoneExhFlow(0.0), FanPLR(0.0), OAFrac(0.0), OAFlow(0.0), FlowError(false), BypassMassFlow(0.0) { } }; @@ -260,13 +261,21 @@ namespace DataAirLoop { Array1D_int ComponentType_Num; // Parameterized (see above) Component Types this // module can address Array1D_int ComponentIndex; // Which one in list -- updated by routines called from here - std::vector compPointer; + std::vector compPointer; Array1D_string ControllerName; Array1D_string ControllerType; Array1D_int ControllerIndex; // Which one in list -- updated by routines called from here + Array1D_int InletNodeNum; // component inelt node number + Array1D_int OutletNodeNum; // component outelt node number + bool HeatExchangerFlag; // True to have a heat exchanger in the equipment list + int AirLoopDOASNum; // AirLoopHVAC:DedicatedOutdoorAirSystem number + bool DXCoolingCoilFlag; // True with DX cooling coil // Default Constructor - OutsideAirSysProps() : ControllerListNum(0), NumComponents(0), NumControllers(0), NumSimpleControllers(0), OAControllerIndex(0) + OutsideAirSysProps() + : ControllerListNum(0), NumComponents(0), NumControllers(0), NumSimpleControllers(0), OAControllerIndex(0), + HeatExchangerFlag(false), AirLoopDOASNum(-1), DXCoolingCoilFlag(false) + { } }; diff --git a/src/EnergyPlus/DataAirSystems.hh b/src/EnergyPlus/DataAirSystems.hh index ba67e5fbd95..7725a561a8d 100644 --- a/src/EnergyPlus/DataAirSystems.hh +++ b/src/EnergyPlus/DataAirSystems.hh @@ -84,21 +84,21 @@ namespace DataAirSystems { // Temporary arrays // Types - struct AirLoopCompData // data for an individual component + struct AirLoopCompData // data for an individual component { // Members - std::string TypeOf; // The 'keyWord' identifying component type - std::string Name; // Component name - int CompType_Num; // Numeric designator for CompType (TypeOf) - int CompIndex; // Component Index in whatever is using this component - UnitarySys *compPointer; // pointer to UnitarySystem - int FlowCtrl; // Component flow control (ACTIVE/PASSIVE) - bool ON; // When true, the designated component or operation scheme is available - bool Parent; // When true, the designated component is made up of sub-components - std::string NodeNameIn; // Component inlet node name - std::string NodeNameOut; // Component outlet node name - int NodeNumIn; // Component inlet node number - int NodeNumOut; // Component outlet node number + std::string TypeOf; // The 'keyWord' identifying component type + std::string Name; // Component name + int CompType_Num; // Numeric designator for CompType (TypeOf) + int CompIndex; // Component Index in whatever is using this component + UnitarySys *compPointer; // pointer to UnitarySystem + int FlowCtrl; // Component flow control (ACTIVE/PASSIVE) + bool ON; // When true, the designated component or operation scheme is available + bool Parent; // When true, the designated component is made up of sub-components + std::string NodeNameIn; // Component inlet node name + std::string NodeNameOut; // Component outlet node name + int NodeNumIn; // Component inlet node number + int NodeNumOut; // Component outlet node number bool MeteredVarsFound; int NumMeteredVars; int NumSubComps; diff --git a/src/EnergyPlus/DataGlobals.cc b/src/EnergyPlus/DataGlobals.cc index 7d6c3d013ad..edd91470a2e 100644 --- a/src/EnergyPlus/DataGlobals.cc +++ b/src/EnergyPlus/DataGlobals.cc @@ -109,9 +109,6 @@ namespace DataGlobals { int const ksHVACSizeRunPeriodDesign(5); // a weather period design day run during HVAC Sizing Simulation int const ksReadAllWeatherData(6); // a weather period for reading all weather data prior to the simulation - int const ZoneTSReporting(1); // value for Zone Time Step Reporting (UpdateDataAndReport) - int const HVACTSReporting(2); // value for HVAC Time Step Reporting (UpdateDataAndReport) - Real64 const MaxEXPArg(709.78); // maximum exponent in EXP() function Real64 const Pi(3.14159265358979324); // Pi 3.1415926535897932384626435 Real64 const PiOvr2(Pi / 2.0); // Pi/2 @@ -259,6 +256,8 @@ namespace DataGlobals { bool ShowDecayCurvesInEIO(false); // true if the Radiant to Convective Decay Curves should appear in the EIO file bool AnySlabsInModel(false); // true if there are any zone-coupled ground domains in the input file bool AnyBasementsInModel(false); // true if there are any basements in the input file + // Performance tradeoff globals + bool DoCoilDirectSolutions(false); //true if use coil direction solutions int Progress(0); // current progress (0-100) void (*fProgressPtr)(int const); @@ -356,6 +355,7 @@ namespace DataGlobals { ShowDecayCurvesInEIO = false; AnySlabsInModel = false; AnyBasementsInModel = false; + DoCoilDirectSolutions = false; Progress = 0; eso_stream = nullptr; mtr_stream = nullptr; diff --git a/src/EnergyPlus/DataGlobals.hh b/src/EnergyPlus/DataGlobals.hh index 216dff85520..8fea0c84503 100644 --- a/src/EnergyPlus/DataGlobals.hh +++ b/src/EnergyPlus/DataGlobals.hh @@ -87,9 +87,6 @@ namespace DataGlobals { extern int const ksHVACSizeRunPeriodDesign; // a weather period design day run during HVAC Sizing Simulation extern int const ksReadAllWeatherData; // a weather period for reading all weather data prior to the simulation - extern int const ZoneTSReporting; // value for Zone Time Step Reporting (UpdateDataAndReport) - extern int const HVACTSReporting; // value for HVAC Time Step Reporting (UpdateDataAndReport) - extern Real64 const MaxEXPArg; // maximum exponent in EXP() function extern Real64 const Pi; // Pi 3.1415926535897932384626435 extern Real64 const PiOvr2; // Pi/2 @@ -297,7 +294,7 @@ namespace DataGlobals { extern bool ShowDecayCurvesInEIO; // true if the Radiant to Convective Decay Curves should appear in the EIO file extern bool AnySlabsInModel; // true if there are any zone-coupled ground domains in the input file extern bool AnyBasementsInModel; // true if there are any basements in the input file - + extern bool DoCoilDirectSolutions; //true if use coil direction solutions extern int Progress; extern void (*fProgressPtr)(int const); extern void (*fMessagePtr)(std::string const &); diff --git a/src/EnergyPlus/DataHeatBalSurface.cc b/src/EnergyPlus/DataHeatBalSurface.cc index 559c7fb1567..a7b2589b000 100644 --- a/src/EnergyPlus/DataHeatBalSurface.cc +++ b/src/EnergyPlus/DataHeatBalSurface.cc @@ -214,7 +214,6 @@ namespace DataHeatBalSurface { // Originally QD, now used only for QSDifSol calc for daylighting Array1D QDV; // Diffuse solar radiation in a zone from sky and ground diffuse entering // through exterior windows - Array1D TCONV; // Fraction Of Radiated Thermal Converted To Convection In Interior Shades Array1D VMULT; // 1/(Sum Of A Zone's Inside Surfaces Area*Absorptance) Array1D VCONV; // Fraction Of Short-Wave Radiation From Lights Converted To Convection Array1D NetLWRadToSurf; // Net interior long wavelength radiation to a surface from other surfaces @@ -324,7 +323,6 @@ namespace DataHeatBalSurface { QD.deallocate(); QDforDaylight.deallocate(); QDV.deallocate(); - TCONV.deallocate(); VMULT.deallocate(); VCONV.deallocate(); NetLWRadToSurf.deallocate(); diff --git a/src/EnergyPlus/DataHeatBalSurface.hh b/src/EnergyPlus/DataHeatBalSurface.hh index d272c2765f2..ac3d1361e16 100644 --- a/src/EnergyPlus/DataHeatBalSurface.hh +++ b/src/EnergyPlus/DataHeatBalSurface.hh @@ -202,7 +202,6 @@ namespace DataHeatBalSurface { // Originally QD, now used only for QSDifSol calc for daylighting extern Array1D QDV; // Diffuse solar radiation in a zone from sky and ground diffuse entering // through exterior windows - extern Array1D TCONV; // Fraction Of Radiated Thermal Converted To Convection In Interior Shades extern Array1D VMULT; // 1/(Sum Of A Zone's Inside Surfaces Area*Absorptance) extern Array1D VCONV; // Fraction Of Short-Wave Radiation From Lights Converted To Convection extern Array1D NetLWRadToSurf; // Net interior long wavelength radiation to a surface from other surfaces diff --git a/src/EnergyPlus/DataHeatBalance.cc b/src/EnergyPlus/DataHeatBalance.cc index 56d86bfb3fb..6c2886f5caa 100644 --- a/src/EnergyPlus/DataHeatBalance.cc +++ b/src/EnergyPlus/DataHeatBalance.cc @@ -485,19 +485,20 @@ namespace DataHeatBalance { Real64 TempConvergTol(0.0); // Tolerance value for Temperature Convergence int DefaultInsideConvectionAlgo(1); // 1 = simple (ASHRAE); 2 = detailed (ASHRAE); 3 = ceiling diffuser; // 4 = trombe wall - int DefaultOutsideConvectionAlgo(1); // 1 = simple (ASHRAE); 2 = detailed; etc (BLAST, TARP, MOWITT, DOE-2) - int SolarDistribution(0); // Solar Distribution Algorithm - int InsideSurfIterations(0); // Counts inside surface iterations - int OverallHeatTransferSolutionAlgo(DataSurfaces::HeatTransferModel_CTF); // Global HeatBalanceAlgorithm setting - // Flags for HeatTransfer Algorithms Used - bool AnyCTF(false); // CTF used - bool AnyEMPD(false); // EMPD used - bool AnyCondFD(false); // CondFD used - bool AnyHAMT(false); // HAMT used - bool AnyKiva(false); // Kiva used - int MaxNumberOfWarmupDays(25); // Maximum number of warmup days allowed - int MinNumberOfWarmupDays(6); // Minimum number of warmup days allowed - Real64 CondFDRelaxFactor(1.0); // Relaxation factor, for looping across all the surfaces. + int DefaultOutsideConvectionAlgo(1); // 1 = simple (ASHRAE); 2 = detailed; etc (BLAST, TARP, MOWITT, DOE-2) + int SolarDistribution(0); // Solar Distribution Algorithm + int InsideSurfIterations(0); // Counts inside surface iterations + int OverallHeatTransferSolutionAlgo(DataSurfaces::HeatTransferModel_CTF); // Global HeatBalanceAlgorithm setting + // Flags for HeatTransfer Algorithms Used + bool AnyCTF(false); // CTF used + bool AnyEMPD(false); // EMPD used + bool AnyCondFD(false); // CondFD used + bool AnyHAMT(false); // HAMT used + bool AnyKiva(false); // Kiva used + bool AnyAirBoundary(false); // Construction:AirBoundary used + int MaxNumberOfWarmupDays(25); // Maximum number of warmup days allowed + int MinNumberOfWarmupDays(6); // Minimum number of warmup days allowed + Real64 CondFDRelaxFactor(1.0); // Relaxation factor, for looping across all the surfaces. Real64 CondFDRelaxFactorInput(1.0); // Relaxation factor, for looping across all the surfaces, user input value // LOGICAL :: CondFDVariableProperties = .FALSE. ! if true, then variable conductivity or enthalpy in Cond FD. @@ -730,7 +731,7 @@ namespace DataHeatBalance { Array1D QSDifSol; // Like QS, but diffuse solar short-wave only. Array1D ITABSF; // FRACTION OF THERMAL FLUX ABSORBED (PER UNIT AREA) Array1D TMULT; // TMULT - MULTIPLIER TO COMPUTE 'ITABSF' - Array1D QL; // TOTAL THERMAL RADIATION ADDED TO ZONE + Array1D QL; // TOTAL THERMAL RADIATION ADDED TO ZONE or Radiant Enclosure (group of zones) Array2D SunlitFracHR; // Hourly fraction of heat transfer surface that is sunlit Array2D CosIncAngHR; // Hourly cosine of beam radiation incidence angle on surface Array3D SunlitFrac; // TimeStep fraction of heat transfer surface that is sunlit @@ -776,6 +777,12 @@ namespace DataHeatBalance { Real64 ZeroPointerVal(0.0); + int NumAirBoundaryMixing(0); // Number of air boundary simple mixing objects needed + std::vector AirBoundaryMixingZone1(0); // Air boundary simple mixing zone 1 + std::vector AirBoundaryMixingZone2(0); // Air boundary simple mixing zone 2 + std::vector AirBoundaryMixingSched(0); // Air boundary simple mixing schedule index + std::vector AirBoundaryMixingVol(0.0); // Air boundary simple mixing volume flow rate [m3/s] + // SUBROUTINE SPECIFICATIONS FOR MODULE DataHeatBalance: // Object Data @@ -816,6 +823,7 @@ namespace DataHeatBalance { Array1D HeatReclaimRefrigCondenser; Array1D HeatReclaimDXCoil; Array1D HeatReclaimVS_DXCoil; + Array1D HeatReclaimSimple_WAHPCoil; Array1D ZnAirRpt; Array1D TCGlazings; Array1D ZoneCO2Gen; @@ -858,6 +866,7 @@ namespace DataHeatBalance { AnyCondFD = false; AnyHAMT = false; AnyKiva = false; + AnyAirBoundary = false; MaxNumberOfWarmupDays = 25; MinNumberOfWarmupDays = 6; CondFDRelaxFactor = 1.0; @@ -1083,6 +1092,7 @@ namespace DataHeatBalance { HeatReclaimRefrigCondenser.deallocate(); HeatReclaimDXCoil.deallocate(); HeatReclaimVS_DXCoil.deallocate(); + HeatReclaimSimple_WAHPCoil.deallocate(); ZnAirRpt.deallocate(); TCGlazings.deallocate(); ZoneCO2Gen.deallocate(); @@ -1219,34 +1229,10 @@ namespace DataHeatBalance { // SUBROUTINE INFORMATION: // AUTHOR Linda Lawrie // DATE WRITTEN December 2006 - // MODIFIED na - // RE-ENGINEERED na - // PURPOSE OF THIS SUBROUTINE: // This routine checks some properties of entered constructions; sets some properties; and sets // an error flag for certain error conditions. - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // Using/Aliasing - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: int InsideLayer; // Inside Layer of Construct; for window construct, layer no. of inside glass int MaterNum; // Counters to keep track of the material number for a layer int OutsideMaterNum; // Material "number" of the Outside layer @@ -1269,9 +1255,9 @@ namespace DataHeatBalance { int GlassLayNum; // Glass layer number TotLayers = Construct(ConstrNum).TotLayers; + if (TotLayers == 0) return; // error condition, hopefully caught elsewhere InsideLayer = TotLayers; if (Construct(ConstrNum).LayerPoint(InsideLayer) <= 0) return; // Error condition - if (TotLayers == 0) return; // error condition, hopefully caught elsewhere // window screen is not allowed on inside layer diff --git a/src/EnergyPlus/DataHeatBalance.hh b/src/EnergyPlus/DataHeatBalance.hh index b338abb1bfe..d49e2838e99 100644 --- a/src/EnergyPlus/DataHeatBalance.hh +++ b/src/EnergyPlus/DataHeatBalance.hh @@ -344,11 +344,12 @@ namespace DataHeatBalance { extern int OverallHeatTransferSolutionAlgo; // UseCTF Solution, UseEMPD moisture solution, UseCondFD solution // Flags for HeatTransfer Algorithms Used - extern bool AnyCTF; // CTF used - extern bool AnyEMPD; // EMPD used - extern bool AnyCondFD; // CondFD used - extern bool AnyHAMT; // HAMT used - extern bool AnyKiva; // Kiva used + extern bool AnyCTF; // CTF used + extern bool AnyEMPD; // EMPD used + extern bool AnyCondFD; // CondFD used + extern bool AnyHAMT; // HAMT used + extern bool AnyKiva; // Kiva used + extern bool AnyAirBoundary; // Construction:AirBoundary used extern int MaxNumberOfWarmupDays; // Maximum number of warmup days allowed extern int MinNumberOfWarmupDays; // Minimum number of warmup days allowed @@ -584,7 +585,7 @@ namespace DataHeatBalance { extern Array1D QSDifSol; // Like QS, but diffuse solar short-wave only. extern Array1D ITABSF; // FRACTION OF THERMAL FLUX ABSORBED (PER UNIT AREA) extern Array1D TMULT; // TMULT - MULTIPLIER TO COMPUTE 'ITABSF' - extern Array1D QL; // TOTAL THERMAL RADIATION ADDED TO ZONE + extern Array1D QL; // TOTAL THERMAL RADIATION ADDED TO ZONE or Radiant Enclosure (group of zones) extern Array2D SunlitFracHR; // Hourly fraction of heat transfer surface that is sunlit extern Array2D CosIncAngHR; // Hourly cosine of beam radiation incidence angle on surface extern Array3D SunlitFrac; // TimeStep fraction of heat transfer surface that is sunlit @@ -611,6 +612,12 @@ namespace DataHeatBalance { extern Real64 ZeroPointerVal; + extern int NumAirBoundaryMixing; // Number of air boundary simple mixing objects needed + extern std::vector AirBoundaryMixingZone1; // Air boundary simple mixing zone 1 + extern std::vector AirBoundaryMixingZone2; // Air boundary simple mixing zone 2 + extern std::vector AirBoundaryMixingSched; // Air boundary simple mixing schedule index + extern std::vector AirBoundaryMixingVol; // Air boundary simple mixing volume flow rate [m3/s] + // SUBROUTINE SPECIFICATIONS FOR MODULE DataHeatBalance: // Types @@ -1021,6 +1028,15 @@ namespace DataHeatBalance { Array1D AbsDiffBackEQL; // Diffuse layer system back absorptance for EQL window Real64 TransDiffFrontEQL; // Diffuse system front transmittance for EQL window Real64 TransDiffBackEQL; // Diffuse system back transmittance for EQL window + // Air boundary + bool TypeIsAirBoundary; // true for Construction:AirBoundary + bool TypeIsAirBoundarySolar; // true for Construction:AirBoundary with grouped zones for solar and daylighting + bool TypeIsAirBoundaryInteriorWindow; // true for Construction:AirBoundary with InteriorWindow for solar and daylighting + bool TypeIsAirBoundaryGroupedRadiant; // true for Construction:AirBoundary with grouped zones for radiant + bool TypeIsAirBoundaryIRTSurface; // true for Construction:AirBoundary with IRTSurface for radiant + bool TypeIsAirBoundaryMixing; // true for Construction:AirBoundary with SimpleMixing for air exchange + Real64 AirBoundaryACH; // Air boundary simple mixing air changes per hour [1/hr] + int AirBoundaryMixingSched; // Air boundary simple mixing schedule index // Default Constructor ConstructionData() @@ -1049,7 +1065,10 @@ namespace DataHeatBalance { WindowTypeBSDF(false), TypeIsEcoRoof(false), TypeIsIRT(false), TypeIsCfactorWall(false), TypeIsFfactorFloor(false), TCFlag(0), TCLayer(0), TCMasterConst(0), TCLayerID(0), TCGlassID(0), CFactor(0.0), Height(0.0), FFactor(0.0), Area(0.0), PerimeterExposed(0.0), ReverseConstructionNumLayersWarning(false), ReverseConstructionLayersOrderWarning(false), WindowTypeEQL(false), EQLConsPtr(0), - AbsDiffFrontEQL(CFSMAXNL, 0.0), AbsDiffBackEQL(CFSMAXNL, 0.0), TransDiffFrontEQL(0.0), TransDiffBackEQL(0.0) + AbsDiffFrontEQL(CFSMAXNL, 0.0), AbsDiffBackEQL(CFSMAXNL, 0.0), TransDiffFrontEQL(0.0), TransDiffBackEQL(0.0), TypeIsAirBoundary(false), + TypeIsAirBoundarySolar(false), TypeIsAirBoundaryInteriorWindow(false), TypeIsAirBoundaryGroupedRadiant(false), + TypeIsAirBoundaryIRTSurface(false), TypeIsAirBoundaryMixing(false), AirBoundaryACH(0.0), + AirBoundaryMixingSched(0) { } @@ -1136,6 +1155,8 @@ namespace DataHeatBalance { std::vector ZoneIZSurfaceList; // List of interzone surfaces in this zone std::vector ZoneHTNonWindowSurfaceList; // List of non-window HT surfaces related to this zone (includes adjacent interzone surfaces) std::vector ZoneHTWindowSurfaceList; // List of window surfaces related to this zone (includes adjacent interzone surfaces) + int RadiantEnclosureNum; // Radiant exchange enclosure this zone belongs to (related to air boundaries) + int SolarEnclosureNum; // Solar distribution enclosure this zone belongs to (related to air boundaries) Real64 OutDryBulbTemp; // Zone outside dry bulb air temperature (C) bool OutDryBulbTempEMSOverrideOn; // if true, EMS is calling to override the surface's outdoor air temp @@ -1215,7 +1236,7 @@ namespace DataHeatBalance { SystemZoneNodeNumber(0), IsControlled(false), IsSupplyPlenum(false), IsReturnPlenum(false), ZoneEqNum(0), PlenumCondNum(0), TempControlledZoneIndex(0), SurfaceFirst(0), SurfaceLast(0), InsideConvectionAlgo(ASHRAESimple), NumSurfaces(0), NumSubSurfaces(0), NumShadingSurfaces(0), OutsideConvectionAlgo(ASHRAESimple), Centroid(0.0, 0.0, 0.0), MinimumX(0.0), MaximumX(0.0), MinimumY(0.0), - MaximumY(0.0), MinimumZ(0.0), MaximumZ(0.0), + MaximumY(0.0), MinimumZ(0.0), MaximumZ(0.0), RadiantEnclosureNum(0), SolarEnclosureNum(0), OutDryBulbTemp(0.0), OutDryBulbTempEMSOverrideOn(false), OutDryBulbTempEMSOverrideValue(0.0), OutWetBulbTemp(0.0), OutWetBulbTempEMSOverrideOn(false), OutWetBulbTempEMSOverrideValue(0.0), WindSpeed(0.0), WindSpeedEMSOverrideOn(false), @@ -2138,46 +2159,56 @@ namespace DataHeatBalance { } }; - struct HeatReclaimRefrigeratedRackData + struct HeatReclaimDataBase { // Members - std::string Name; // Name of refrigerated rack - std::string SourceType; // object type for refrigerated rack + std::string Name; // Name of DX Coil + std::string SourceType; // SourceType for DX Coil Real64 AvailCapacity; // Total available heat reclaim capacity + + // Default Constructor + HeatReclaimDataBase() : AvailCapacity(0.0) + { + } + }; + + struct HeatReclaimRefrigeratedRackData : HeatReclaimDataBase // inherited from base struct + { + // Customized Members Real64 UsedWaterHeater; // amount of avail used at plant water heater Real64 UsedHVACCoil; // amount of avail used at hvac coil // Default Constructor - HeatReclaimRefrigeratedRackData() : AvailCapacity(0.0), UsedWaterHeater(0.0), UsedHVACCoil(0.0) + HeatReclaimRefrigeratedRackData() : UsedWaterHeater(0.0), UsedHVACCoil(0.0) { } }; - struct HeatReclaimRefrigCondenserData + struct HeatReclaimRefrigCondenserData : HeatReclaimDataBase // inherited from base struct { - // Members - std::string Name; // Name of refrigeration system - int SourceType; // object type for refrigeration system - Real64 AvailCapacity; // Total available heat reclaim capacity + // Customized Members Real64 AvailTemperature; // Temperature of heat reclaim source Real64 UsedWaterHeater; // amount of avail used at plant water heater Real64 UsedHVACCoil; // amount of avail used at hvac coil // Default Constructor - HeatReclaimRefrigCondenserData() : SourceType(0), AvailCapacity(0.0), AvailTemperature(0.0), UsedWaterHeater(0.0), UsedHVACCoil(0.0) + HeatReclaimRefrigCondenserData() : AvailTemperature(0.0), UsedWaterHeater(0.0), UsedHVACCoil(0.0) { } }; - struct HeatReclaimDXCoilData + struct HeatReclaimDXCoilData : HeatReclaimDataBase // inherited from base struct { - // Members - std::string Name; // Name of DX Coil - std::string SourceType; // SourceType for DX Coil - Real64 AvailCapacity; // Total available heat reclaim capacity + }; + + struct HeatReclaimHPCoilData : HeatReclaimDataBase // inherited from base struct + { + // Customized Members + Real64 WaterHeatingDesuperheaterReclaimedHeatTotal; // total reclaimed heat by water heating desuperheater coils + Array1D WaterHeatingDesuperheaterReclaimedHeat; // heat reclaimed by water heating desuperheater coils // Default Constructor - HeatReclaimDXCoilData() : AvailCapacity(0.0) + HeatReclaimHPCoilData() : WaterHeatingDesuperheaterReclaimedHeatTotal(0.0) { } }; @@ -2619,6 +2650,7 @@ namespace DataHeatBalance { extern Array1D HeatReclaimRefrigCondenser; extern Array1D HeatReclaimDXCoil; extern Array1D HeatReclaimVS_DXCoil; + extern Array1D HeatReclaimSimple_WAHPCoil; extern Array1D ZnAirRpt; extern Array1D TCGlazings; extern Array1D ZoneCO2Gen; diff --git a/src/EnergyPlus/DataSurfaces.cc b/src/EnergyPlus/DataSurfaces.cc index 74f1c303c42..5fd555c16a4 100644 --- a/src/EnergyPlus/DataSurfaces.cc +++ b/src/EnergyPlus/DataSurfaces.cc @@ -180,7 +180,7 @@ namespace DataSurfaces { // Parameters to indicate heat transfer model to use for surface int const HeatTransferModel_NotSet(-1); - int const HeatTransferModel_None(0); // shading surfaces for example + int const HeatTransferModel_None(0); // shading surfaces for example and non-heat transfer air boundaries int const HeatTransferModel_CTF(1); int const HeatTransferModel_EMPD(2); int const HeatTransferModel_CondFD(5); @@ -189,6 +189,8 @@ namespace DataSurfaces { int const HeatTransferModel_ComplexFenestration(8); // BSDF int const HeatTransferModel_TDD(9); // tubular daylighting device int const HeatTransferModel_Kiva(10); // Kiva ground calculations + int const HeatTransferModel_AirBoundaryNoHT(11); // Construction:AirBoundary - not IRT or interior window + int const HeatTransferModel_AirBoundaryIntWin(12); // Construction:AirBoundary - interior window for solar/daylighting // Parameters for classification of outside face of surfaces int const OutConvClass_WindwardVertWall(101); @@ -854,7 +856,7 @@ namespace DataSurfaces { // PURPOSE OF THIS SUBROUTINE: // Return total short wave incident to the surface - return QRadSWOutIncident(t_SurfNum) + QS(Surface(t_SurfNum).Zone); + return QRadSWOutIncident(t_SurfNum) + QS(Surface(t_SurfNum).SolarEnclIndex); } Real64 SurfaceData::getSWBeamIncident(const int t_SurfNum) @@ -882,7 +884,7 @@ namespace DataSurfaces { // PURPOSE OF THIS SUBROUTINE: // Return total short wave diffuse incident to the surface - return QRadSWOutIncidentSkyDiffuse(t_SurfNum) + QRadSWOutIncidentGndDiffuse(t_SurfNum) + QS(Surface(t_SurfNum).Zone); + return QRadSWOutIncidentSkyDiffuse(t_SurfNum) + QRadSWOutIncidentGndDiffuse(t_SurfNum) + QS(Surface(t_SurfNum).SolarEnclIndex); } int SurfaceData::getTotLayers() const diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index cd0f6ac5fba..d3a5c22c33c 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -167,6 +167,8 @@ namespace DataSurfaces { extern int const HeatTransferModel_ComplexFenestration; // BSDF extern int const HeatTransferModel_TDD; // tubular daylighting device extern int const HeatTransferModel_Kiva; // Kiva ground calculations + extern int const HeatTransferModel_AirBoundaryNoHT; // Construction:AirBoundary - not IRT or interior window + extern int const HeatTransferModel_AirBoundaryIntWin; // Construction:AirBoundary - interior window for solar/daylighting // Parameters for classification of outside face of surfaces extern int const OutConvClass_WindwardVertWall; @@ -770,6 +772,9 @@ namespace DataSurfaces { bool PartOfVentSlabOrRadiantSurface; // surface cannot be part of both a radiant surface & ventilated slab group // LG added 1/6/12 Real64 GenericContam; // [ppm] Surface generic contaminant as a storage term for + // Air boundaries + int SolarEnclIndex; // Pointer to solar enclosure this surface belongs to + int SolarEnclSurfIndex; // Pointer to solar enclosure surface data, ZoneSolarInfo(n).SurfacePtr(RadEnclSurfIndex) points to this surface std::vector DisabledShadowingZoneList; // Array of all disabled shadowing zone number to the current surface // the surface diffusion model @@ -804,7 +809,7 @@ namespace DataSurfaces { OutConvClassification(0), OutConvHfModelEq(0), OutConvHfUserCurveIndex(0), OutConvHnModelEq(0), OutConvHnUserCurveIndex(0), OutConvFaceArea(0.0), OutConvFacePerimeter(0.0), OutConvFaceHeight(0.0), IntConvZoneWallHeight(0.0), IntConvZonePerimLength(0.0), IntConvZoneHorizHydrDiam(0.0), IntConvWindowWallRatio(0.0), IntConvWindowLocation(InConvWinLoc_NotSet), - IntConvSurfGetsRadiantHeat(false), IntConvSurfHasActiveInIt(false), PartOfVentSlabOrRadiantSurface(false), GenericContam(0.0) + IntConvSurfGetsRadiantHeat(false), IntConvSurfHasActiveInIt(false), PartOfVentSlabOrRadiantSurface(false), GenericContam(0.0), SolarEnclIndex(0), SolarEnclSurfIndex(0) { } @@ -850,6 +855,74 @@ namespace DataSurfaces { struct SurfaceWindowCalc // Calculated window-related values { // Members + + Real64 FrameQRadOutAbs; // Radiation absorbed by outside of frame (solar) (W/m2) + Real64 FrameQRadInAbs; // Radiation absorbed by inside of frame (short-wave from solar + // and lights; long-wave from internal gains) (W/m2) + Real64 DividerQRadOutAbs; // Radiation absorbed by outside of divider (solar) (W/m2) + Real64 DividerQRadInAbs; // Radiation absorbed by inside of divider (short-wave from solar + // and lights; long-wave from internal gains) (W/m2) + Real64 ExtBeamAbsByShade; // Exterior beam solar absorbed by window shade (W/m2) + Real64 ExtDiffAbsByShade; // Exterior diffuse solar absorbed by window shade (W/m2) + Real64 IntBeamAbsByShade; // Interior beam solar absorbed by window shade (W/m2) + Real64 IntSWAbsByShade; // Interior diffuse solar plus short-wave from lights absorbed by window shade (W/m2) + Real64 InitialDifSolAbsByShade; // Initial diffuse solar from ext and int windows absorbed by window shade (W/m2) + Real64 IntLWAbsByShade; // Interior long-wave from zone lights and equipment absorbed by window shade (W/m2) + Real64 ConvHeatFlowNatural; // Convective heat flow from gap between glass and interior shade or blind (W) + Real64 ConvHeatGainToZoneAir; // Convective heat gain to zone air from window gap airflow (W) + Real64 RetHeatGainToZoneAir; // Convective heat gain to return air sent to zone [W] + Real64 DividerHeatGain; + Real64 BlTsolBmBm; // Time-step value of blind beam-beam solar transmittance (-) + Real64 BlTsolBmDif; // Time-step value of blind beam-diffuse solar transmittance (-) + Real64 BlTsolDifDif; // Time-step value of blind diffuse-diffuse solar transmittance (-) + Real64 BlGlSysTsolBmBm; // Time-step value of blind/glass system beam-beam solar transmittance (-) + Real64 BlGlSysTsolDifDif; // Time-step value of blind/glass system diffuse-diffuse solar transmittance (-) + Real64 ScTsolBmBm; // Time-step value of screen beam-beam solar transmittance (-) + Real64 ScTsolBmDif; // Time-step value of screen beam-diffuse solar transmittance (-) + Real64 ScTsolDifDif; // Time-step value of screen diffuse-diffuse solar transmittance (-) + Real64 ScGlSysTsolBmBm; // Time-step value of screen/glass system beam-beam solar transmittance (-) + Real64 ScGlSysTsolDifDif; // Time-step value of screen/glass system diffuse-diffuse solar transmittance (-) + Real64 GlTsolBmBm; // Time-step value of glass beam-beam solar transmittance (-) + Real64 GlTsolBmDif; // Time-step value of glass beam-diffuse solar transmittance (-) + Real64 GlTsolDifDif; // Time-step value of glass diffuse-diffuse solar transmittance (-) + Real64 BmSolTransThruIntWinRep; // Beam solar transmitted through interior window [W] + Real64 BmSolAbsdOutsReveal; // Multiplied by BeamSolarRad, gives beam solar absorbed by + // outside reveal surfaces (m2) + Real64 BmSolRefldOutsRevealReport; // Beam solar reflected by outside reveal surfaces, for reporting (m2) + Real64 BmSolAbsdInsReveal; // Multiplied by BeamSolarRad, gives beam solar absorbed + // by inside reveal surfaces (m2) + Real64 BmSolRefldInsReveal; // Multiplied by BeamSolarRad, gives beam solar reflected + // by inside reveal surfaces (m2) + Real64 BmSolRefldInsRevealReport; // Beam solar reflected by inside reveal surfaces, for reporting (W) + Real64 OutsRevealDiffOntoGlazing; // Multiplied by BeamSolarRad, gives diffuse from beam reflection from + // outside reveal that is incident on the glazing per m2 of glazing (-) + Real64 InsRevealDiffOntoGlazing; // Multiplied by BeamSolarRad, gives diffuse from beam reflection + // from inside reveal that is incident on the glazing per m2 of glazing (-) + Real64 InsRevealDiffIntoZone; // Multiplied by BeamSolarRad, gives diffuse from beam reflection + // from inside reveal that goes into zone directly or reflected from glazing (m2) + Real64 OutsRevealDiffOntoFrame; // Multiplied by BeamSolarRad, gives diffuse from beam reflection from outside reveal + // that is incident on the outside of the frame per m2 of frame (-) + Real64 InsRevealDiffOntoFrame; // Multiplied by BeamSolarRad, gives diffuse from beam reflection from inside reveal + // that is incident on the outside of the frame per m2 of frame (-) + // added for debugging CR 7596. TH 5/26/2009 + Real64 InsRevealDiffOntoGlazingReport; // Diffuse solar from beam reflection + // from inside reveal that is incident on the glazing (W) + Real64 InsRevealDiffIntoZoneReport; // Diffuse from beam reflection + // from inside reveal that goes into zone directly or reflected from glazing (W) + Real64 InsRevealDiffOntoFrameReport; // Diffuse from beam reflection from inside reveal + // that is incident on the frame (W) + Real64 BmSolAbsdInsRevealReport; // Beam solar absorbed by inside reveal (W) + // energy + Real64 BmSolTransThruIntWinRepEnergy; // energy of BmSolTransThruIntWinRep [J] + Real64 BmSolRefldOutsRevealRepEnergy; // energy of BmSolRefldOutsRevealReport [J] + Real64 BmSolRefldInsRevealRepEnergy; // energy of BmSolRefldInsRevealReport [J] + Real64 ProfileAngHor; // Horizontal beam solar profile angle (degrees) + Real64 ProfileAngVert; // Vertical beam solar profile angle (degrees) + Real64 SkySolarInc; // Incident diffuse solar from sky; if CalcSolRefl is true, includes + // reflection of sky diffuse and beam solar from exterior obstructions [W/m2] + Real64 GndSolarInc; // Incident diffuse solar from ground; if CalcSolRefl is true, accounts + // for shadowing of ground by building and obstructions [W/m2] + int ShadingFlag; // -1: window has no shading device // 0: shading device is off // 1: interior shade is on @@ -931,9 +1004,9 @@ namespace DataSurfaces { Real64 FrameTempSurfIn; // Frame inside surface temperature (C) Real64 FrameTempSurfInOld; // Previous value of frame inside surface temperature (C) Real64 FrameTempSurfOut; // Frame outside surface temperature (C) - Real64 FrameQRadInAbs; // Radiation absorbed by inside of frame (short-wave from solar - // and lights; long-wave from internal gains) (W/m2) - Real64 FrameQRadOutAbs; // Radiation absorbed by outside of frame (solar) (W/m2) + + + Real64 ProjCorrFrOut; // Correction factor to absorbed radiation due to frame outside projection Real64 ProjCorrFrIn; // Correction factor to absorbed radiation due to frame inside projection int DividerType; // Divider type (1=DividedLite, 2=Suspended (between-pane)) @@ -954,9 +1027,6 @@ namespace DataSurfaces { Real64 DividerTempSurfIn; // Divider inside surface temperature (C) Real64 DividerTempSurfInOld; // Previous value of divider inside surface temperature (C) Real64 DividerTempSurfOut; // Divider outside surface temperature (C) - Real64 DividerQRadInAbs; // Radiation absorbed by inside of divider (short-wave from solar - // and lights; long-wave from internal gains) (W/m2) - Real64 DividerQRadOutAbs; // Radiation absorbed by outside of divider (solar) (W/m2) Real64 ProjCorrDivOut; // Correction factor to absorbed radiation due to divider outside projection Real64 ProjCorrDivIn; // Correction factor to absorbed radiation due to divider inside projection Real64 GlazedFrac; // (Glazed area)/(Glazed area + divider area) @@ -972,20 +1042,11 @@ namespace DataSurfaces { // Glass Door - SurfaceClass_GlassDoor // tubular daylighting device dome - SurfaceClass_TDD_Dome // tubular daylighting device diffuser - SurfaceClass_TDD_Diffuser - Real64 ExtBeamAbsByShade; // Exterior beam solar absorbed by window shade (W/m2) - Real64 ExtDiffAbsByShade; // Exterior diffuse solar absorbed by window shade (W/m2) - Real64 IntBeamAbsByShade; // Interior beam solar absorbed by window shade (W/m2) - Real64 IntSWAbsByShade; // Interior diffuse solar plus short-wave from lights absorbed by window shade (W/m2) - Real64 InitialDifSolAbsByShade; // Initial diffuse solar from ext and int windows absorbed by window shade (W/m2) - Real64 IntLWAbsByShade; // Interior long-wave from zone lights and equipment absorbed by window shade (W/m2) Array1D ShadeAbsFacFace; // Fraction of short-wave radiation incident on face 1 that is // absorbed by face 1 and by the other face (face 2) when total absorbed // radiation is apportioned to the two faces Real64 ConvCoeffWithShade; // Convection coefficient from glass or shade to gap air when // interior or exterior shade is present (W/m2-K) - Real64 ConvHeatFlowNatural; // Convective heat flow from gap between glass and interior shade or blind (W) - Real64 ConvHeatGainToZoneAir; // Convective heat gain to zone air from window gap airflow (W) - Real64 RetHeatGainToZoneAir; // Convective heat gain to return air sent to zone [W] Real64 OtherConvHeatGain; // other convective = total conv - standard model prediction for EQL window model (W) int BlindNumber; // Blind number for a window with a blind Array1D EffShBlindEmiss; // Effective emissivity of interior blind or shade @@ -1001,8 +1062,6 @@ namespace DataSurfaces { Real64 BlindAirFlowPermeability; // Blind air-flow permeability for calculation of convective flow // in gap between blind and glass Real64 TotGlazingThickness; // Total glazing thickness from outside of outer glass to inside of inner glass (m) - Real64 ProfileAngHor; // Horizontal beam solar profile angle (degrees) - Real64 ProfileAngVert; // Vertical beam solar profile angle (degrees) Real64 TanProfileAngHor; // Tangent of horizontal profile angle Real64 TanProfileAngVert; // Tangent of vertical profile angle Real64 InsideSillDepth; // Depth of inside sill (m) @@ -1010,46 +1069,8 @@ namespace DataSurfaces { Real64 InsideSillSolAbs; // Solar absorptance of inside sill Real64 InsideRevealSolAbs; // Solar absorptance of inside reveal Real64 OutsideRevealSolAbs; // Solar absorptance of outside reveal - Real64 BmSolAbsdInsReveal; // Multiplied by BeamSolarRad, gives beam solar absorbed - // by inside reveal surfaces (m2) - Real64 BmSolRefldInsReveal; // Multiplied by BeamSolarRad, gives beam solar reflected - // by inside reveal surfaces (m2) - Real64 BmSolRefldInsRevealReport; // Beam solar reflected by inside reveal surfaces, for reporting (W) - Real64 BmSolRefldOutsRevealReport; // Beam solar reflected by outside reveal surfaces, for reporting (m2) - Real64 BmSolAbsdOutsReveal; // Multiplied by BeamSolarRad, gives beam solar absorbed by - // outside reveal surfaces (m2) - Real64 OutsRevealDiffOntoGlazing; // Multiplied by BeamSolarRad, gives diffuse from beam reflection from - // outside reveal that is incident on the glazing per m2 of glazing (-) - Real64 InsRevealDiffOntoGlazing; // Multiplied by BeamSolarRad, gives diffuse from beam reflection - // from inside reveal that is incident on the glazing per m2 of glazing (-) - Real64 InsRevealDiffIntoZone; // Multiplied by BeamSolarRad, gives diffuse from beam reflection - // from inside reveal that goes into zone directly or reflected from glazing (m2) - Real64 OutsRevealDiffOntoFrame; // Multiplied by BeamSolarRad, gives diffuse from beam reflection from outside reveal - // that is incident on the outside of the frame per m2 of frame (-) - Real64 InsRevealDiffOntoFrame; // Multiplied by BeamSolarRad, gives diffuse from beam reflection from inside reveal - // that is incident on the outside of the frame per m2 of frame (-) - // added for debugging CR 7596. TH 5/26/2009 - Real64 InsRevealDiffOntoGlazingReport; // Diffuse solar from beam reflection - // from inside reveal that is incident on the glazing (W) - Real64 InsRevealDiffIntoZoneReport; // Diffuse from beam reflection - // from inside reveal that goes into zone directly or reflected from glazing (W) - Real64 InsRevealDiffOntoFrameReport; // Diffuse from beam reflection from inside reveal - // that is incident on the frame (W) - Real64 BmSolAbsdInsRevealReport; // Beam solar absorbed by inside reveal (W) - Real64 BlTsolBmBm; // Time-step value of blind beam-beam solar transmittance (-) - Real64 BlTsolBmDif; // Time-step value of blind beam-diffuse solar transmittance (-) - Real64 BlTsolDifDif; // Time-step value of blind diffuse-diffuse solar transmittance (-) - Real64 BlGlSysTsolBmBm; // Time-step value of blind/glass system beam-beam solar transmittance (-) - Real64 BlGlSysTsolDifDif; // Time-step value of blind/glass system diffuse-diffuse solar transmittance (-) + int ScreenNumber; // Screen number for a window with a screen (do not confuse with material number) - Real64 ScTsolBmBm; // Time-step value of screen beam-beam solar transmittance (-) - Real64 ScTsolBmDif; // Time-step value of screen beam-diffuse solar transmittance (-) - Real64 ScTsolDifDif; // Time-step value of screen diffuse-diffuse solar transmittance (-) - Real64 ScGlSysTsolBmBm; // Time-step value of screen/glass system beam-beam solar transmittance (-) - Real64 ScGlSysTsolDifDif; // Time-step value of screen/glass system diffuse-diffuse solar transmittance (-) - Real64 GlTsolBmBm; // Time-step value of glass beam-beam solar transmittance (-) - Real64 GlTsolBmDif; // Time-step value of glass beam-diffuse solar transmittance (-) - Real64 GlTsolDifDif; // Time-step value of glass diffuse-diffuse solar transmittance (-) int AirflowSource; // Source of gap airflow (INSIDEAIR, OUTSIDEAIR, etc.) int AirflowDestination; // Destination of gap airflow (INSIDEAIR, OUTSIDEAIR, etc.) int AirflowReturnNodePtr; // Return node pointer for destination = ReturnAir @@ -1060,7 +1081,6 @@ namespace DataSurfaces { Real64 AirflowThisTS; // Gap airflow this timestep (m3/s per m of glazing width) Real64 TAirflowGapOutlet; // Temperature of air leaving airflow gap between glass panes (C) int WindowCalcIterationsRep; // Number of iterations in window heat balance calculation - Real64 BmSolTransThruIntWinRep; // Beam solar transmitted through interior window [W] Real64 VentingOpenFactorRep; // Window/door venting open factor, for reporting Real64 VentingOpenFactorMultRep; // Window/door opening modulation multiplier on venting open factor, for reporting Real64 InsideTempForVentingRep; // Inside air temp used to control window/door venting, for reporting (C) @@ -1068,9 +1088,6 @@ namespace DataSurfaces { Array1D IllumFromWinAtRefPtRep; // Illuminance from window at reference point #1 [lux] Array1D LumWinFromRefPtRep; // Window luminance as viewed from reference point #1 [cd/m2] Real64 LumWinFromRefPt2Rep; // Window luminance as viewed from reference point #2 [cd/m2] - Real64 SkySolarInc; // Incident diffuse solar from sky; if CalcSolRefl is true, includes - // reflection of sky diffuse and beam solar from exterior obstructions [W/m2] - Real64 GndSolarInc; // Incident diffuse solar from ground; if CalcSolRefl is true, accounts // for shadowing of ground by building and obstructions [W/m2] Real64 SkyGndSolarInc; // Incident diffuse solar from ground-reflected sky radiation; used for // Complex Fen; if CalcSolRefl is true, accounts for shadowing of ground by building and obstructions [W/m2] @@ -1085,13 +1102,9 @@ namespace DataSurfaces { // due to light well losses) bool SolarDiffusing; // True if exterior window with a construction that contains a // diffusing glass layer - // energy - Real64 BmSolRefldInsRevealRepEnergy; // energy of BmSolRefldInsRevealReport [J] - Real64 BmSolRefldOutsRevealRepEnergy; // energy of BmSolRefldOutsRevealReport [J] - Real64 BmSolTransThruIntWinRepEnergy; // energy of BmSolTransThruIntWinRep [J] + // Reporting Real64 FrameHeatGain; - Real64 DividerHeatGain; Real64 FrameHeatLoss; Real64 DividerHeatLoss; // Added TH for thermochromic windows. 12/22/2008 @@ -1105,37 +1118,43 @@ namespace DataSurfaces { // Default Constructor SurfaceWindowCalc() - : ShadingFlag(ShadeOff), ShadingFlagEMSOn(false), ShadingFlagEMSValue(0), StormWinFlag(-1), StormWinFlagPrevDay(-1), + : FrameQRadOutAbs(0.0), FrameQRadInAbs(0.0), DividerQRadOutAbs(0.0), DividerQRadInAbs(0.0), + ExtBeamAbsByShade(0.0), ExtDiffAbsByShade(0.0), IntBeamAbsByShade(0.0), IntSWAbsByShade(0.0), + InitialDifSolAbsByShade(0.0), IntLWAbsByShade(0.0), ConvHeatFlowNatural(0.0), ConvHeatGainToZoneAir(0.0), + RetHeatGainToZoneAir(0.0), DividerHeatGain(0.0), BlTsolBmBm(0.0), BlTsolBmDif(0.0), BlTsolDifDif(0.0), + BlGlSysTsolBmBm(0.0), BlGlSysTsolDifDif(0.0), ScTsolBmBm(0.0), ScTsolBmDif(0.0), ScTsolDifDif(0.0), + ScGlSysTsolBmBm(0.0), ScGlSysTsolDifDif(0.0), GlTsolBmBm(0.0), GlTsolBmDif(0.0), GlTsolDifDif(0.0), + BmSolTransThruIntWinRep(0.0), BmSolAbsdOutsReveal(0.0), BmSolRefldOutsRevealReport(0.0), BmSolAbsdInsReveal(0.0), + BmSolRefldInsReveal(0.0), BmSolRefldInsRevealReport(0.0), OutsRevealDiffOntoGlazing(0.0), + InsRevealDiffOntoGlazing(0.0), InsRevealDiffIntoZone(0.0), OutsRevealDiffOntoFrame(0.0), + InsRevealDiffOntoFrame(0.0), InsRevealDiffOntoGlazingReport(0.0), InsRevealDiffIntoZoneReport(0.0), + InsRevealDiffOntoFrameReport(0.0), BmSolAbsdInsRevealReport(0.0), BmSolTransThruIntWinRepEnergy(0.0), + BmSolRefldOutsRevealRepEnergy(0.0), BmSolRefldInsRevealRepEnergy(0.0), ProfileAngHor(0.0), ProfileAngVert(0.0), + SkySolarInc(0.0), GndSolarInc(0.0), + ShadingFlag(0), ShadingFlagEMSOn(0), ShadingFlagEMSValue(0), StormWinFlag(0), StormWinFlagPrevDay(0), FracTimeShadingDeviceOn(0.0), ExtIntShadePrevTS(0), ShadedConstruction(0), HasShadeOrBlindLayer(false), SurfDayLightInit(false), DaylFacPoint(0), VisTransSelected(0.0), SwitchingFactor(0.0), WinCenter(3, 0.0), Theta(0.0), Phi(0.0), RhoCeilingWall(0.0), RhoFloorWall(0.0), FractionUpgoing(0.0), VisTransRatio(0.0), ThetaFace(10, 296.15), IRfromParentZone(0.0), IRErrCount(0), IRErrCountC(0), FrameArea(0.0), FrameConductance(0.0), FrameSolAbsorp(0.0), FrameVisAbsorp(0.0), FrameEmis(0.0), FrameAreaXEmiss(0.0), FrameRadExchangeFactor(0.0), FrameHRadLinIn(0.0), FrameRadThermalFluxRec(0.0), FrameRadThermalFluxRecOld(0.0), FrEdgeToCenterGlCondRatio(1.0), FrameEdgeArea(0.0), FrameTempSurfIn(23.0), FrameTempSurfInOld(23.0), FrameTempSurfOut(23.0), - FrameQRadInAbs(0.0), FrameQRadOutAbs(0.0), ProjCorrFrOut(0.0), ProjCorrFrIn(0.0), DividerType(0), DividerArea(0.0), + ProjCorrFrOut(0.0), ProjCorrFrIn(0.0), DividerType(0), DividerArea(0.0), DividerConductance(0.0), DividerSolAbsorp(0.0), DividerVisAbsorp(0.0), DividerEmis(0.0), DividerAreaXEmiss(0.0), DividerRadExchangeFactor(0.0), DividerHRadLinIn(0.0), DividerRadThermalFluxRec(0.0), DividerRadThermalFluxRecOld(0.0), DivEdgeToCenterGlCondRatio(1.0), DividerEdgeArea(0.0), DividerTempSurfIn(23.0), DividerTempSurfInOld(23.0), DividerTempSurfOut(23.0), - DividerQRadInAbs(0.0), DividerQRadOutAbs(0.0), ProjCorrDivOut(0.0), ProjCorrDivIn(0.0), GlazedFrac(1.0), OutProjSLFracMult(24, 1.0), - InOutProjSLFracMult(24, 1.0), CenterGlArea(0.0), EdgeGlCorrFac(1.0), OriginalClass(0), ExtBeamAbsByShade(0.0), ExtDiffAbsByShade(0.0), - IntBeamAbsByShade(0.0), IntSWAbsByShade(0.0), InitialDifSolAbsByShade(0.0), IntLWAbsByShade(0.0), ShadeAbsFacFace(2, 0.5), - ConvCoeffWithShade(0.0), ConvHeatFlowNatural(0.0), ConvHeatGainToZoneAir(0.0), RetHeatGainToZoneAir(0.0), OtherConvHeatGain(0.0), + ProjCorrDivOut(0.0), ProjCorrDivIn(0.0), GlazedFrac(1.0), OutProjSLFracMult(24, 1.0), + InOutProjSLFracMult(24, 1.0), CenterGlArea(0.0), EdgeGlCorrFac(1.0), OriginalClass(0), ShadeAbsFacFace(2, 0.5), + ConvCoeffWithShade(0.0), OtherConvHeatGain(0.0), BlindNumber(0), EffShBlindEmiss(MaxSlatAngs, 0.0), EffGlassEmiss(MaxSlatAngs, 0.0), EffInsSurfTemp(23.0), MovableSlats(false), SlatAngThisTS(0.0), SlatAngThisTSDeg(0.0), SlatAngThisTSDegEMSon(false), SlatAngThisTSDegEMSValue(0.0), SlatsBlockBeam(false), - BlindAirFlowPermeability(0.0), TotGlazingThickness(0.0), ProfileAngHor(0.0), ProfileAngVert(0.0), TanProfileAngHor(0.0), + BlindAirFlowPermeability(0.0), TotGlazingThickness(0.0), TanProfileAngHor(0.0), TanProfileAngVert(0.0), InsideSillDepth(0.0), InsideReveal(0.0), InsideSillSolAbs(0.0), InsideRevealSolAbs(0.0), - OutsideRevealSolAbs(0.0), BmSolAbsdInsReveal(0.0), BmSolRefldInsReveal(0.0), BmSolRefldInsRevealReport(0.0), - BmSolRefldOutsRevealReport(0.0), BmSolAbsdOutsReveal(0.0), OutsRevealDiffOntoGlazing(0.0), InsRevealDiffOntoGlazing(0.0), - InsRevealDiffIntoZone(0.0), OutsRevealDiffOntoFrame(0.0), InsRevealDiffOntoFrame(0.0), InsRevealDiffOntoGlazingReport(0.0), - InsRevealDiffIntoZoneReport(0.0), InsRevealDiffOntoFrameReport(0.0), BmSolAbsdInsRevealReport(0.0), BlTsolBmBm(0.0), BlTsolBmDif(0.0), - BlTsolDifDif(0.0), BlGlSysTsolBmBm(0.0), BlGlSysTsolDifDif(0.0), ScreenNumber(0), ScTsolBmBm(0.0), ScTsolBmDif(0.0), ScTsolDifDif(0.0), - ScGlSysTsolBmBm(0.0), ScGlSysTsolDifDif(0.0), GlTsolBmBm(0.0), GlTsolBmDif(0.0), GlTsolDifDif(0.0), AirflowSource(0), + OutsideRevealSolAbs(0.0), ScreenNumber(0), AirflowSource(0), AirflowDestination(0), AirflowReturnNodePtr(0), MaxAirflow(0.0), AirflowControlType(0), AirflowHasSchedule(false), - AirflowSchedulePtr(0), AirflowThisTS(0.0), TAirflowGapOutlet(0.0), WindowCalcIterationsRep(0), BmSolTransThruIntWinRep(0.0), - VentingOpenFactorRep(0.0), VentingOpenFactorMultRep(0.0), InsideTempForVentingRep(0.0), VentingAvailabilityRep(0.0), SkySolarInc(0.0), - GndSolarInc(0.0), SkyGndSolarInc(0.0), BmGndSolarInc(0.0), ZoneAreaMinusThisSurf(3, 0.0), ZoneAreaReflProdMinusThisSurf(3, 0.0), - LightWellEff(1.0), SolarDiffusing(false), BmSolRefldInsRevealRepEnergy(0.0), BmSolRefldOutsRevealRepEnergy(0.0), - BmSolTransThruIntWinRepEnergy(0.0), FrameHeatGain(0.0), DividerHeatGain(0.0), FrameHeatLoss(0.0), DividerHeatLoss(0.0), + AirflowSchedulePtr(0), AirflowThisTS(0.0), TAirflowGapOutlet(0.0), WindowCalcIterationsRep(0), + VentingOpenFactorRep(0.0), VentingOpenFactorMultRep(0.0), InsideTempForVentingRep(0.0), VentingAvailabilityRep(0.0), + LumWinFromRefPt2Rep(0.0), SkyGndSolarInc(0.0), BmGndSolarInc(0.0), ZoneAreaMinusThisSurf(3, 0.0), ZoneAreaReflProdMinusThisSurf(3, 0.0), + LightWellEff(1.0), SolarDiffusing(false), FrameHeatGain(0.0), FrameHeatLoss(0.0), DividerHeatLoss(0.0), TCLayerTemp(0.0), SpecTemp(0.0), WindowModelType(Window5DetailedModel), TDDPipeNum(0) { } diff --git a/src/EnergyPlus/DataViewFactorInformation.cc b/src/EnergyPlus/DataViewFactorInformation.cc index 3f732574369..40d81d1669f 100644 --- a/src/EnergyPlus/DataViewFactorInformation.cc +++ b/src/EnergyPlus/DataViewFactorInformation.cc @@ -59,38 +59,22 @@ namespace DataViewFactorInformation { // MODULE INFORMATION: // AUTHOR Rob Hitchcock // DATE WRITTEN September 2007; Moved from HeatBalanceIntRadExchange - // MODIFIED na - // RE-ENGINEERED na - // PURPOSE OF THIS MODULE: - // - - // METHODOLOGY EMPLOYED: - // - - // REFERENCES: - // na - - // OTHER NOTES: - // na - - // USE STATEMENTS: - // - // Using/Aliasing using namespace DataPrecisionGlobals; - // - - // Data - // MODULE PARAMETER DEFINITIONS: - // na - - // DERIVED TYPE DEFINITIONS: + int NumOfRadiantEnclosures(0); // Number of radiant enclosures + int NumOfSolarEnclosures(0); // Number of solar enclosures - // MODULE VARIABLE DECLARATIONS: + Array1D ZoneRadiantInfo; + Array1D ZoneSolarInfo; - // Object Data - Array1D ZoneInfo; + void clear_state() + { + NumOfRadiantEnclosures = 0; + NumOfSolarEnclosures = 0; + ZoneRadiantInfo.deallocate(); + ZoneSolarInfo.deallocate(); + } } // namespace DataViewFactorInformation diff --git a/src/EnergyPlus/DataViewFactorInformation.hh b/src/EnergyPlus/DataViewFactorInformation.hh index 9a6c1d45aa7..b69e3610b40 100644 --- a/src/EnergyPlus/DataViewFactorInformation.hh +++ b/src/EnergyPlus/DataViewFactorInformation.hh @@ -60,40 +60,38 @@ namespace EnergyPlus { namespace DataViewFactorInformation { - // Using/Aliasing - - // Data - // MODULE PARAMETER DEFINITIONS: - // na - - // DERIVED TYPE DEFINITIONS: - - // MODULE VARIABLE DECLARATIONS: - - // Types + extern int NumOfRadiantEnclosures; // Number of radiant enclosures + extern int NumOfSolarEnclosures; // Number of solar enclosures struct ZoneViewFactorInformation { // Members - std::string Name; // Zone name - int NumOfSurfaces; // Number of surfaces in the zone - Array2D F; // View Factors - Array2D ScriptF; // Hottel's Script F //Tuned Transposed - Array1D Area; // Surface area - Array1D Emissivity; // Surface emissivity - Array1D Azimuth; // Azimuth angle of the surface (in degrees) - Array1D Tilt; // Tilt angle of the surface (in degrees) - Array1D_int SurfacePtr; // Surface ALLOCATABLE (to Surface derived type) - Array1D_string Class; // Class of surface (Wall, Roof, etc.) + std::string Name; // Enclosure name + std::vector ZoneNames; // Zone names which are part of this enclosure + std::vector ZoneNums; // Zones which are part of this enclosure + int NumOfSurfaces; // Number of surfaces in the enclosure + Array2D F; // View Factors + Array2D ScriptF; // Hottel's Script F //Tuned Transposed + Array1D Area; // Surface area + Array1D Emissivity; // Surface emissivity + Array1D Azimuth; // Azimuth angle of the surface (in degrees) + Array1D Tilt; // Tilt angle of the surface (in degrees) + Array1D_int SurfacePtr; // Surface ALLOCATABLE (to Surface derived type) + Real64 FloorArea; // Floor area of zone(s) in radiant enclosure + Real64 ExtWindowArea; // Exterior window area + Real64 TotalSurfArea; // Total surface area + Array1D SolAbsorptance; // Surface solar absorptance // Default Constructor - ZoneViewFactorInformation() : NumOfSurfaces(0) + ZoneViewFactorInformation() : NumOfSurfaces(0), FloorArea(0.0), ExtWindowArea(0.0), TotalSurfArea(0.0) { } }; - // Object Data - extern Array1D ZoneInfo; + extern Array1D ZoneRadiantInfo; + extern Array1D ZoneSolarInfo; + + void clear_state(); } // namespace DataViewFactorInformation diff --git a/src/EnergyPlus/DataZoneEquipment.hh b/src/EnergyPlus/DataZoneEquipment.hh index f080e9aa662..00242c82921 100644 --- a/src/EnergyPlus/DataZoneEquipment.hh +++ b/src/EnergyPlus/DataZoneEquipment.hh @@ -164,14 +164,14 @@ namespace DataZoneEquipment { int EndUse_CompMode; std::string Group; int ReportVarIndex; - int ReportVarIndexType; + OutputProcessor::TimeStepType ReportVarIndexType; int ReportVarType; Real64 CurMeterReading; // Default Constructor EquipMeterData() - : ReportVarUnits(OutputProcessor::Unit::None), ResourceType(0), EndUse_CompMode(0), ReportVarIndex(0), ReportVarIndexType(0), - ReportVarType(0), CurMeterReading(0.0) + : ReportVarUnits(OutputProcessor::Unit::None), ResourceType(0), EndUse_CompMode(0), ReportVarIndex(0), + ReportVarIndexType(OutputProcessor::TimeStepType::TimeStepZone), ReportVarType(0), CurMeterReading(0.0) { } }; diff --git a/src/EnergyPlus/DaylightingDevices.cc b/src/EnergyPlus/DaylightingDevices.cc index 8a6dd0d63b3..e0e7306e13e 100644 --- a/src/EnergyPlus/DaylightingDevices.cc +++ b/src/EnergyPlus/DaylightingDevices.cc @@ -1477,7 +1477,7 @@ namespace DaylightingDevices { QRefl = (QRadSWOutIncident(DiffSurf) - QRadSWwinAbsTot(DiffSurf)) * Surface(DiffSurf).Area - WinTransSolar(DiffSurf); // Add diffuse interior shortwave reflected from zone surfaces and from zone sources, lights, etc. - QRefl += QS(Surface(DiffSurf).Zone) * Surface(DiffSurf).Area * transDiff; + QRefl += QS(Surface(DiffSurf).SolarEnclIndex) * Surface(DiffSurf).Area * transDiff; TotTDDPipeGain = WinTransSolar(TDDPipe(PipeNum).Dome) - QRadSWOutIncident(DiffSurf) * Surface(DiffSurf).Area + QRefl * (1.0 - TDDPipe(PipeNum).TransSolIso / transDiff) + diff --git a/src/EnergyPlus/DemandManager.cc b/src/EnergyPlus/DemandManager.cc index a1c0ff6ffd2..84b6a294750 100644 --- a/src/EnergyPlus/DemandManager.cc +++ b/src/EnergyPlus/DemandManager.cc @@ -306,8 +306,8 @@ namespace DemandManager { DemandManagerList(ListNum).ScheduledLimit = GetCurrentScheduleValue(DemandManagerList(ListNum).LimitSchedule); DemandManagerList(ListNum).DemandLimit = DemandManagerList(ListNum).ScheduledLimit * DemandManagerList(ListNum).SafetyFraction; - DemandManagerList(ListNum).MeterDemand = GetInstantMeterValue(DemandManagerList(ListNum).Meter, 1) / TimeStepZoneSec + - GetInstantMeterValue(DemandManagerList(ListNum).Meter, 2) / (TimeStepSys * SecInHour); + DemandManagerList(ListNum).MeterDemand = GetInstantMeterValue(DemandManagerList(ListNum).Meter, OutputProcessor::TimeStepType::TimeStepZone) / TimeStepZoneSec + + GetInstantMeterValue(DemandManagerList(ListNum).Meter, OutputProcessor::TimeStepType::TimeStepSystem) / (TimeStepSys * SecInHour); // Calculate average demand over the averaging window including the current timestep meter demand AverageDemand = DemandManagerList(ListNum).AverageDemand + diff --git a/src/EnergyPlus/DesiccantDehumidifiers.cc b/src/EnergyPlus/DesiccantDehumidifiers.cc index 0d561b37d47..610ef0ebafb 100644 --- a/src/EnergyPlus/DesiccantDehumidifiers.cc +++ b/src/EnergyPlus/DesiccantDehumidifiers.cc @@ -3480,6 +3480,151 @@ namespace DesiccantDehumidifiers { UniqueDesicDehumNames.clear(); } + int GetProcAirInletNodeNum(std::string const &DesicDehumName, bool &ErrorsFound) + { + + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given Desiccant Dehumidifier and returns the process air inlet node number. + // If incorrect Desiccant Dehumidifier name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichDesicDehum; + + // Obtains and Allocates heat exchanger related parameters from input file + if (GetInputDesiccantDehumidifier) { + GetDesiccantDehumidifierInput(); + GetInputDesiccantDehumidifier = false; + } + + WhichDesicDehum = UtilityRoutines::FindItemInList(DesicDehumName, DesicDehum); + if (WhichDesicDehum != 0) { + NodeNum = DesicDehum(WhichDesicDehum).ProcAirInNode; + } else { + ShowSevereError("GetProcAirInletNodeNum: Could not find Desciccant Dehumidifier = \"" + DesicDehumName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + + int GetProcAirOutletNodeNum(std::string const &DesicDehumName, bool &ErrorsFound) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given Desiccant Dehumidifier and returns the process air outlet node number. + // If incorrect Desiccant Dehumidifier name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichDesicDehum; + + // Obtains and Allocates heat exchanger related parameters from input file + if (GetInputDesiccantDehumidifier) { + GetDesiccantDehumidifierInput(); + GetInputDesiccantDehumidifier = false; + } + + WhichDesicDehum = UtilityRoutines::FindItemInList(DesicDehumName, DesicDehum); + if (WhichDesicDehum != 0) { + NodeNum = DesicDehum(WhichDesicDehum).ProcAirOutNode; + } else { + ShowSevereError("GetProcAirInletNodeNum: Could not find Desciccant Dehumidifier = \"" + DesicDehumName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + + int GetRegAirInletNodeNum(std::string const &DesicDehumName, bool &ErrorsFound) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given Desiccant Dehumidifier and returns the regeneration air inlet node number. + // If incorrect Desiccant Dehumidifier name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichDesicDehum; + + // Obtains and Allocates heat exchanger related parameters from input file + if (GetInputDesiccantDehumidifier) { + GetDesiccantDehumidifierInput(); + GetInputDesiccantDehumidifier = false; + } + + WhichDesicDehum = UtilityRoutines::FindItemInList(DesicDehumName, DesicDehum); + if (WhichDesicDehum != 0) { + NodeNum = DesicDehum(WhichDesicDehum).RegenAirInNode; + } else { + ShowSevereError("GetRegAirInletNodeNum: Could not find Desciccant Dehumidifier = \"" + DesicDehumName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + + int GetRegAirOutletNodeNum(std::string const &DesicDehumName, bool &ErrorsFound) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given Desiccant Dehumidifier and returns the regeneration air outlet node number. + // If incorrect Desiccant Dehumidifier name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichDesicDehum; + + // Obtains and Allocates heat exchanger related parameters from input file + if (GetInputDesiccantDehumidifier) { + GetDesiccantDehumidifierInput(); + GetInputDesiccantDehumidifier = false; + } + + WhichDesicDehum = UtilityRoutines::FindItemInList(DesicDehumName, DesicDehum); + if (WhichDesicDehum != 0) { + NodeNum = DesicDehum(WhichDesicDehum).RegenAirOutNode; + } else { + ShowSevereError("GetRegAirOutletNodeNum: Could not find Desciccant Dehumidifier = \"" + DesicDehumName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + // End of Reporting subroutines for the SimAir Module // ***************************************************************************** diff --git a/src/EnergyPlus/DesiccantDehumidifiers.hh b/src/EnergyPlus/DesiccantDehumidifiers.hh index 3f12841c7d3..b2b220aaf03 100644 --- a/src/EnergyPlus/DesiccantDehumidifiers.hh +++ b/src/EnergyPlus/DesiccantDehumidifiers.hh @@ -281,6 +281,22 @@ namespace DesiccantDehumidifiers { Array1 const &Par // Par(5) is the requested coil load ); + int GetProcAirInletNodeNum(std::string const &DesicDehumName, + bool &ErrorsFound + ); + + int GetProcAirOutletNodeNum(std::string const &DesicDehumName, + bool &ErrorsFound + ); + + int GetRegAirInletNodeNum(std::string const &DesicDehumName, + bool &ErrorsFound + ); + + int GetRegAirOutletNodeNum(std::string const &DesicDehumName, + bool &ErrorsFound + ); + // Clears the global data in HeatingCoils. // Needed for unit tests, should not be normally called. void clear_state(); diff --git a/src/EnergyPlus/EMSManager.cc b/src/EnergyPlus/EMSManager.cc index 544d8744800..656c8ef2623 100644 --- a/src/EnergyPlus/EMSManager.cc +++ b/src/EnergyPlus/EMSManager.cc @@ -1307,7 +1307,7 @@ namespace EMSManager { int NumKeys; int KeyNum; OutputProcessor::StoreType AvgOrSum; - int StepType; + OutputProcessor::TimeStepType StepType; OutputProcessor::Unit Units(OutputProcessor::Unit::None); Array1D_string KeyName; Array1D_int KeyIndex; diff --git a/src/EnergyPlus/EconomicLifeCycleCost.cc b/src/EnergyPlus/EconomicLifeCycleCost.cc index ace241872b5..c2421ca30fc 100644 --- a/src/EnergyPlus/EconomicLifeCycleCost.cc +++ b/src/EnergyPlus/EconomicLifeCycleCost.cc @@ -728,12 +728,12 @@ namespace EconomicLifeCycleCost { RecurringCosts(iInObj).repeatPeriodYears = int(NumArray(4)); if (RecurringCosts(iInObj).repeatPeriodYears > 100) { ShowWarningError(CurrentModuleObject + ": Invalid value in field " + cNumericFieldNames(4) + - ". This value is the number of years between occurances of the cost so a value greater than 100 is not reasonable " + ". This value is the number of years between occurrences of the cost so a value greater than 100 is not reasonable " "for an economic evaluation. "); } if (RecurringCosts(iInObj).repeatPeriodYears < 1) { ShowWarningError(CurrentModuleObject + ": Invalid value in field " + cNumericFieldNames(4) + - ". This value is the number of years between occurances of the cost so a value less than 1 is not reasonable for " + ". This value is the number of years between occurrences of the cost so a value less than 1 is not reasonable for " "an economic evaluation. "); } // N5, \field Repeat Period Months @@ -743,12 +743,12 @@ namespace EconomicLifeCycleCost { RecurringCosts(iInObj).repeatPeriodMonths = int(NumArray(5)); if (RecurringCosts(iInObj).repeatPeriodMonths > 1200) { ShowWarningError(CurrentModuleObject + ": Invalid value in field " + cNumericFieldNames(5) + - ". This value is the number of months between occurances of the cost so a value greater than 1200 is not " + ". This value is the number of months between occurrences of the cost so a value greater than 1200 is not " "reasonable for an economic evaluation. "); } if (RecurringCosts(iInObj).repeatPeriodMonths < 0) { ShowWarningError(CurrentModuleObject + ": Invalid value in field " + cNumericFieldNames(5) + - ". This value is the number of months between occurances of the cost so a value less than 0 is not reasonable for " + ". This value is the number of months between occurrences of the cost so a value less than 0 is not reasonable for " "an economic evaluation. "); } if ((RecurringCosts(iInObj).repeatPeriodMonths == 0) && (RecurringCosts(iInObj).repeatPeriodYears == 0)) { diff --git a/src/EnergyPlus/EconomicTariff.cc b/src/EnergyPlus/EconomicTariff.cc index d63a9ea91b0..1be8c52434f 100644 --- a/src/EnergyPlus/EconomicTariff.cc +++ b/src/EnergyPlus/EconomicTariff.cc @@ -402,7 +402,7 @@ namespace EconomicTariff { int KeyCount; int TypeVar; OutputProcessor::StoreType AvgSumVar; - int StepTypeVar; + OutputProcessor::TimeStepType StepTypeVar; OutputProcessor::Unit UnitsVar(OutputProcessor::Unit::None); // Units sting, may be blank Array1D_string NamesOfKeys; // Specific key name Array1D_int IndexesForKeyVar; // Array index diff --git a/src/EnergyPlus/ElectricBaseboardRadiator.cc b/src/EnergyPlus/ElectricBaseboardRadiator.cc index cd3e3aeef31..715c2756520 100644 --- a/src/EnergyPlus/ElectricBaseboardRadiator.cc +++ b/src/EnergyPlus/ElectricBaseboardRadiator.cc @@ -67,6 +67,7 @@ #include #include #include +#include #include #include #include @@ -419,16 +420,32 @@ namespace ElectricBaseboardRadiator { ElecBaseboard(BaseboardNum).FracDistribToSurf.allocate(ElecBaseboard(BaseboardNum).TotSurfToDistrib); ElecBaseboard(BaseboardNum).FracDistribToSurf = 0.0; + // search zone equipment list structure for zone index + for (int ctrlZone = 1; ctrlZone <= DataGlobals::NumOfZones; ++ctrlZone) { + for (int zoneEquipTypeNum = 1; zoneEquipTypeNum <= DataZoneEquipment::ZoneEquipList(ctrlZone).NumOfEquipTypes; ++zoneEquipTypeNum) { + if (DataZoneEquipment::ZoneEquipList(ctrlZone).EquipType_Num(zoneEquipTypeNum) == DataZoneEquipment::BBElectric_Num && + DataZoneEquipment::ZoneEquipList(ctrlZone).EquipName(zoneEquipTypeNum) == ElecBaseboard(BaseboardNum).EquipName) { + ElecBaseboard(BaseboardNum).ZonePtr = ctrlZone; + } + } + } + if (ElecBaseboard(BaseboardNum).ZonePtr <= 0) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + ElecBaseboard(BaseboardNum).EquipName + + "\" is not on any ZoneHVAC:EquipmentList."); + ErrorsFound = true; + break; + } + AllFracsSummed = ElecBaseboard(BaseboardNum).FracDistribPerson; for (SurfNum = 1; SurfNum <= ElecBaseboard(BaseboardNum).TotSurfToDistrib; ++SurfNum) { ElecBaseboard(BaseboardNum).SurfaceName(SurfNum) = cAlphaArgs(SurfNum + 3); - ElecBaseboard(BaseboardNum).SurfacePtr(SurfNum) = UtilityRoutines::FindItemInList(cAlphaArgs(SurfNum + 3), Surface); + ElecBaseboard(BaseboardNum).SurfacePtr(SurfNum) = + HeatBalanceIntRadExchange::GetRadiantSystemSurface(cCurrentModuleObject, + ElecBaseboard(BaseboardNum).EquipName, + ElecBaseboard(BaseboardNum).ZonePtr, + ElecBaseboard(BaseboardNum).SurfaceName(SurfNum), + ErrorsFound); ElecBaseboard(BaseboardNum).FracDistribToSurf(SurfNum) = rNumericArgs(SurfNum + 6); - if (ElecBaseboard(BaseboardNum).SurfacePtr(SurfNum) == 0) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(SurfNum + 3) + "=\"" + - cAlphaArgs(SurfNum + 3) + "\" invalid - not found."); - ErrorsFound = true; - } if (ElecBaseboard(BaseboardNum).FracDistribToSurf(SurfNum) > MaxFraction) { ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cNumericFieldNames(SurfNum + 6) + "was greater than the allowable maximum."); @@ -460,15 +477,6 @@ namespace ElectricBaseboardRadiator { "\", Summed radiant fractions for people + surface groups < 1.0"); ShowContinueError("The rest of the radiant energy delivered by the baseboard heater will be lost"); } - // search zone equipment list structure for zone index - for (int ctrlZone = 1; ctrlZone <= DataGlobals::NumOfZones; ++ctrlZone) { - for (int zoneEquipTypeNum = 1; zoneEquipTypeNum <= DataZoneEquipment::ZoneEquipList(ctrlZone).NumOfEquipTypes; ++zoneEquipTypeNum) { - if (DataZoneEquipment::ZoneEquipList(ctrlZone).EquipType_Num(zoneEquipTypeNum) == DataZoneEquipment::BBElectric_Num && - DataZoneEquipment::ZoneEquipList(ctrlZone).EquipName(zoneEquipTypeNum) == ElecBaseboard(BaseboardNum).EquipName) { - ElecBaseboard(BaseboardNum).ZonePtr = ctrlZone; - } - } - } } if (ErrorsFound) { diff --git a/src/EnergyPlus/ElectricPowerServiceManager.cc b/src/EnergyPlus/ElectricPowerServiceManager.cc index 577f675efab..c9be8a79e81 100644 --- a/src/EnergyPlus/ElectricPowerServiceManager.cc +++ b/src/EnergyPlus/ElectricPowerServiceManager.cc @@ -130,15 +130,15 @@ void ElectricPowerServiceManager::manageElectricPowerService( if (!DataGlobals::BeginEnvrnFlag) newEnvironmentFlag_ = true; // retrieve data from meters for demand and production - totalBldgElecDemand_ = GetInstantMeterValue(elecFacilityIndex_, 1) / DataGlobals::TimeStepZoneSec; - totalHVACElecDemand_ = GetInstantMeterValue(elecFacilityIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + totalBldgElecDemand_ = GetInstantMeterValue(elecFacilityIndex_, OutputProcessor::TimeStepType::TimeStepZone) / DataGlobals::TimeStepZoneSec; + totalHVACElecDemand_ = GetInstantMeterValue(elecFacilityIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); totalElectricDemand_ = totalBldgElecDemand_ + totalHVACElecDemand_; - elecProducedPVRate_ = GetInstantMeterValue(elecProducedPVIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); - elecProducedWTRate_ = GetInstantMeterValue(elecProducedWTIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); - elecProducedStorageRate_ = GetInstantMeterValue(elecProducedStorageIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); - elecProducedCoGenRate_ = GetInstantMeterValue(elecProducedCoGenIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + elecProducedPVRate_ = GetInstantMeterValue(elecProducedPVIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + elecProducedWTRate_ = GetInstantMeterValue(elecProducedWTIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + elecProducedStorageRate_ = GetInstantMeterValue(elecProducedStorageIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + elecProducedCoGenRate_ = GetInstantMeterValue(elecProducedCoGenIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); elecProducedPowerConversionRate_ = - GetInstantMeterValue(elecProducedPowerConversionIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + GetInstantMeterValue(elecProducedPowerConversionIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); wholeBldgRemainingLoad_ = totalElectricDemand_; @@ -424,15 +424,15 @@ void ElectricPowerServiceManager::updateWholeBuildingRecords() { // main panel balancing. - totalBldgElecDemand_ = GetInstantMeterValue(elecFacilityIndex_, 1) / DataGlobals::TimeStepZoneSec; - totalHVACElecDemand_ = GetInstantMeterValue(elecFacilityIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + totalBldgElecDemand_ = GetInstantMeterValue(elecFacilityIndex_, OutputProcessor::TimeStepType::TimeStepZone) / DataGlobals::TimeStepZoneSec; + totalHVACElecDemand_ = GetInstantMeterValue(elecFacilityIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); totalElectricDemand_ = totalBldgElecDemand_ + totalHVACElecDemand_; - elecProducedPVRate_ = GetInstantMeterValue(elecProducedPVIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); - elecProducedWTRate_ = GetInstantMeterValue(elecProducedWTIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); - elecProducedStorageRate_ = GetInstantMeterValue(elecProducedStorageIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); - elecProducedCoGenRate_ = GetInstantMeterValue(elecProducedCoGenIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + elecProducedPVRate_ = GetInstantMeterValue(elecProducedPVIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + elecProducedWTRate_ = GetInstantMeterValue(elecProducedWTIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + elecProducedStorageRate_ = GetInstantMeterValue(elecProducedStorageIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + elecProducedCoGenRate_ = GetInstantMeterValue(elecProducedCoGenIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); elecProducedPowerConversionRate_ = - GetInstantMeterValue(elecProducedPowerConversionIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + GetInstantMeterValue(elecProducedPowerConversionIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); electProdRate_ = elecProducedCoGenRate_ + elecProducedPVRate_ + elecProducedWTRate_ + elecProducedStorageRate_ + elecProducedPowerConversionRate_; electricityProd_ = electProdRate_ * DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour; // whole building @@ -1268,8 +1268,8 @@ void ElectPowerLoadCenter::dispatchGenerators(bool const firstHVACIteration, // The TRACK CUSTOM METER scheme tries to have the generators meet all of the // electrical demand from a meter, it can also be a user-defined Custom Meter // and PV is ignored. - customMeterDemand = GetInstantMeterValue(demandMeterPtr_, 1) / DataGlobals::TimeStepZoneSec + - GetInstantMeterValue(demandMeterPtr_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + customMeterDemand = GetInstantMeterValue(demandMeterPtr_, OutputProcessor::TimeStepType::TimeStepZone) / DataGlobals::TimeStepZoneSec + + GetInstantMeterValue(demandMeterPtr_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); remainingLoad = customMeterDemand; loadCenterElectricLoad = remainingLoad; @@ -1505,8 +1505,8 @@ void ElectPowerLoadCenter::dispatchStorage(Real64 const originalFeedInRequest // } case StorageOpScheme::meterDemandStoreExcessOnSite: { // Get meter rate - subpanelFeedInRequest = GetInstantMeterValue(trackStorageOpMeterIndex_, 1) / DataGlobals::TimeStepZoneSec + - GetInstantMeterValue(trackStorageOpMeterIndex_, 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + subpanelFeedInRequest = GetInstantMeterValue(trackStorageOpMeterIndex_, OutputProcessor::TimeStepType::TimeStepZone) / DataGlobals::TimeStepZoneSec + + GetInstantMeterValue(trackStorageOpMeterIndex_, OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); subpanelDrawRequest = 0.0; break; } @@ -4100,8 +4100,8 @@ void ElectricTransformer::manageTransformers(Real64 const surplusPowerOutFromLoa if (DataGlobals::MetersHaveBeenInitialized) { - elecLoad += GetInstantMeterValue(wiredMeterPtrs_[meterNum], 1) / DataGlobals::TimeStepZoneSec + - GetInstantMeterValue(wiredMeterPtrs_[meterNum], 2) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); + elecLoad += GetInstantMeterValue(wiredMeterPtrs_[meterNum], OutputProcessor::TimeStepType::TimeStepZone) / DataGlobals::TimeStepZoneSec + + GetInstantMeterValue(wiredMeterPtrs_[meterNum], OutputProcessor::TimeStepType::TimeStepSystem) / (DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour); // PastElecLoad store the metered value in the previous time step. This value will be used to check whether // a transformer is overloaded or not. pastElecLoad += GetCurrentMeterValue(wiredMeterPtrs_[meterNum]) / DataGlobals::TimeStepZoneSec; diff --git a/src/EnergyPlus/EvaporativeCoolers.cc b/src/EnergyPlus/EvaporativeCoolers.cc index 0fca1b6e21f..9b043b35e67 100644 --- a/src/EnergyPlus/EvaporativeCoolers.cc +++ b/src/EnergyPlus/EvaporativeCoolers.cc @@ -146,6 +146,16 @@ namespace EvaporativeCoolers { static std::string const BlankString; + namespace { + // These were static variables within different functions. They were pulled out into the namespace + // to facilitate easier unit testing of those functions. + // These are purposefully not in the header file as an extern variable. No one outside of this should + // use these. They are cleared by clear_state() for use by unit tests, but normal simulations should be unaffected. + // This is purposefully in an anonymous namespace so nothing outside this implementation file can use it. + bool InitEvapCoolerMyOneTimeFlag(true); + bool ZoneEquipmentListChecked(false); // True after the Zone Equipment List has been checked for items + } // namespace + // DERIVED TYPE DEFINITIONS // MODULE VARIABLE DECLARATIONS: @@ -183,7 +193,7 @@ namespace EvaporativeCoolers { // Functions - void SimEvapCooler(std::string const &CompName, int &CompIndex) + void SimEvapCooler(std::string const &CompName, int &CompIndex, Real64 const ZoneEvapCoolerPLR) { // SUBROUTINE INFORMATION: @@ -240,11 +250,11 @@ namespace EvaporativeCoolers { auto const SELECT_CASE_var(EvapCond(EvapCoolNum).EvapCoolerType); if (SELECT_CASE_var == iEvapCoolerDirectCELDEKPAD) { - CalcDirectEvapCooler(EvapCoolNum); + CalcDirectEvapCooler(EvapCoolNum, ZoneEvapCoolerPLR); } else if (SELECT_CASE_var == iEvapCoolerInDirectCELDEKPAD) { - CalcDryIndirectEvapCooler(EvapCoolNum); + CalcDryIndirectEvapCooler(EvapCoolNum, ZoneEvapCoolerPLR); } else if (SELECT_CASE_var == iEvapCoolerInDirectWETCOIL) { - CalcWetIndirectEvapCooler(EvapCoolNum); + CalcWetIndirectEvapCooler(EvapCoolNum, ZoneEvapCoolerPLR); } else if (SELECT_CASE_var == iEvapCoolerInDirectRDDSpecial) { CalcResearchSpecialPartLoad(EvapCoolNum); CalcIndirectResearchSpecialEvapCooler(EvapCoolNum); @@ -958,12 +968,11 @@ namespace EvaporativeCoolers { int OutNode; int EvapUnitNum; static bool MySetPointCheckFlag(true); - static bool MyOneTimeFlag(true); static bool localSetPointCheck(false); - if (MyOneTimeFlag) { + if (InitEvapCoolerMyOneTimeFlag) { MySizeFlag.dimension(NumEvapCool, true); - MyOneTimeFlag = false; + InitEvapCoolerMyOneTimeFlag = false; } // FLOW: @@ -1638,7 +1647,7 @@ namespace EvaporativeCoolers { // Begin Algorithm Section of the Module //****************************************************************************** - void CalcDirectEvapCooler(int &EvapCoolNum) + void CalcDirectEvapCooler(int &EvapCoolNum, Real64 const PartLoadRatio) { // SUBROUTINE INFORMATION: @@ -1727,8 +1736,7 @@ namespace EvaporativeCoolers { //*************************************************************************** // ENERGY CONSUMED BY THE RECIRCULATING PUMP // Add the pump energy to the total Evap Cooler energy comsumption - EvapCond(EvapCoolNum).EvapCoolerPower += EvapCond(EvapCoolNum).RecircPumpPower; - + EvapCond(EvapCoolNum).EvapCoolerPower += PartLoadRatio * EvapCond(EvapCoolNum).RecircPumpPower; //****************** // WATER CONSUMPTION IN m3 OF WATER FOR DIRECT // H2O [m3/sec] = Delta W[KgH2O/Kg air]*Mass Flow Air[Kg air] @@ -1763,7 +1771,7 @@ namespace EvaporativeCoolers { EvapCond(EvapCoolNum).OutletPressure = EvapCond(EvapCoolNum).InletPressure; } - void CalcDryIndirectEvapCooler(int &EvapCoolNum) + void CalcDryIndirectEvapCooler(int &EvapCoolNum, Real64 const PartLoadRatio) { // SUBROUTINE INFORMATION: @@ -1879,14 +1887,14 @@ namespace EvaporativeCoolers { //*************************************************************************** // POWER OF THE SECONDARY AIR FAN if (EvapCond(EvapCoolNum).IndirectFanEff > 0.0) { - EvapCond(EvapCoolNum).EvapCoolerPower += - EvapCond(EvapCoolNum).IndirectFanDeltaPress * EvapCond(EvapCoolNum).IndirectVolFlowRate / EvapCond(EvapCoolNum).IndirectFanEff; + EvapCond(EvapCoolNum).EvapCoolerPower += PartLoadRatio * EvapCond(EvapCoolNum).IndirectFanDeltaPress * + EvapCond(EvapCoolNum).IndirectVolFlowRate / EvapCond(EvapCoolNum).IndirectFanEff; } // ENERGY CONSUMED BY THE RECIRCULATING PUMP // ENERGY CONSUMED BY THE RECIRCULATING PUMP // Add the pump energy to the total Evap Cooler energy comsumption - EvapCond(EvapCoolNum).EvapCoolerPower += EvapCond(EvapCoolNum).IndirectRecircPumpPower; + EvapCond(EvapCoolNum).EvapCoolerPower += PartLoadRatio * EvapCond(EvapCoolNum).IndirectRecircPumpPower; //****************** // WATER CONSUMPTION IN LITERS OF WATER FOR DIRECT @@ -1899,7 +1907,7 @@ namespace EvaporativeCoolers { PsyRhoAirFnPbTdbW(EvapCond(EvapCoolNum).SecInletPressure, TDBSec, HumRatSec)) / 2.0; EvapCond(EvapCoolNum).EvapWaterConsumpRate = - (HumRatSec - EvapCond(EvapCoolNum).SecInletHumRat) * EvapCond(EvapCoolNum).IndirectVolFlowRate * RhoAir / RhoWater; + PartLoadRatio * (HumRatSec - EvapCond(EvapCoolNum).SecInletHumRat) * EvapCond(EvapCoolNum).IndirectVolFlowRate * RhoAir / RhoWater; // A numerical check to keep from having very tiny negative water consumption values being reported if (EvapCond(EvapCoolNum).EvapWaterConsumpRate < 0.0) EvapCond(EvapCoolNum).EvapWaterConsumpRate = 0.0; @@ -1926,7 +1934,7 @@ namespace EvaporativeCoolers { EvapCond(EvapCoolNum).OutletPressure = EvapCond(EvapCoolNum).InletPressure; } - void CalcWetIndirectEvapCooler(int &EvapCoolNum) + void CalcWetIndirectEvapCooler(int &EvapCoolNum, Real64 const PartLoadRatio) { // SUBROUTINE INFORMATION: @@ -2029,16 +2037,21 @@ namespace EvaporativeCoolers { EvapCond(EvapCoolNum).OutletEnthalpy = PsyHFnTdbW(EvapCond(EvapCoolNum).OutletTemp, EvapCond(EvapCoolNum).OutletHumRat); //*************************************************************************** + // Real64 FlowFraction = 1.0; + // Real64 MassFlowRateMax = Node(EvapCond(EvapCoolNum).InletNode).MassFlowRateMax; + // if (MassFlowRateMax > 0) { + // FlowFraction = EvapCond(EvapCoolNum).InletMassFlowRate / MassFlowRateMax; + //} // POWER OF THE SECONDARY AIR FAN if (EvapCond(EvapCoolNum).IndirectFanEff > 0.0) { - EvapCond(EvapCoolNum).EvapCoolerPower += - EvapCond(EvapCoolNum).IndirectFanDeltaPress * EvapCond(EvapCoolNum).IndirectVolFlowRate / EvapCond(EvapCoolNum).IndirectFanEff; + EvapCond(EvapCoolNum).EvapCoolerPower += PartLoadRatio * EvapCond(EvapCoolNum).IndirectFanDeltaPress * + EvapCond(EvapCoolNum).IndirectVolFlowRate / EvapCond(EvapCoolNum).IndirectFanEff; } // ENERGY CONSUMED BY THE RECIRCULATING PUMP // ENERGY CONSUMED BY THE RECIRCULATING PUMP // Add the pump energy to the total Evap Cooler energy comsumption - EvapCond(EvapCoolNum).EvapCoolerPower += EvapCond(EvapCoolNum).IndirectRecircPumpPower; + EvapCond(EvapCoolNum).EvapCoolerPower += PartLoadRatio * EvapCond(EvapCoolNum).IndirectRecircPumpPower; //****************** // WATER CONSUMPTION IN LITERS OF WATER FOR Wet InDIRECT @@ -2046,7 +2059,7 @@ namespace EvaporativeCoolers { //****************** //***** FIRST calculate the heat exchange on the primary air side********** RhoAir = PsyRhoAirFnPbTdbW(OutBaroPress, EvapCond(EvapCoolNum).InletTemp, EvapCond(EvapCoolNum).InletHumRat); - QHX = CFMAir * RhoAir * (EvapCond(EvapCoolNum).InletEnthalpy - EvapCond(EvapCoolNum).OutletEnthalpy); + QHX = PartLoadRatio * CFMAir * RhoAir * (EvapCond(EvapCoolNum).InletEnthalpy - EvapCond(EvapCoolNum).OutletEnthalpy); RhoWater = RhoH2O(EvapCond(EvapCoolNum).SecInletTemp); EvapCond(EvapCoolNum).EvapWaterConsumpRate = (QHX / StageEff) / (2500000.0 * RhoWater); @@ -3630,8 +3643,6 @@ namespace EvaporativeCoolers { // Using/Aliasing using BranchNodeConnections::SetUpCompSets; using DataGlobals::NumOfZones; - using DataHVACGlobals::FanType_SimpleConstVolume; - using DataHVACGlobals::FanType_SimpleOnOff; using DataSizing::ZoneHVACSizing; using DataZoneEquipment::ZoneEquipConfig; using Fans::GetFanAvailSchPtr; @@ -3772,6 +3783,11 @@ namespace EvaporativeCoolers { ZoneEvapUnit(UnitLoop).ActualFanVolFlowRate = HVACFan::fanObjs[ZoneEvapUnit(UnitLoop).FanIndex]->designAirVolFlowRate; ZoneEvapUnit(UnitLoop).FanAvailSchedPtr = HVACFan::fanObjs[ZoneEvapUnit(UnitLoop).FanIndex]->availSchedIndex; } + + // set evap unit to cycling mode for all fan types. Note OpMode var is not used + // with used for ZONECOOLINGLOADVARIABLESPEEDFAN Cooler Unit Control Method + ZoneEvapUnit(UnitLoop).OpMode = DataHVACGlobals::CycFanCycCoil; + FanVolFlow = 0.0; if (errFlag) { ShowContinueError("specified in " + CurrentModuleObject + " = " + ZoneEvapUnit(UnitLoop).Name); @@ -3934,12 +3950,12 @@ namespace EvaporativeCoolers { // check that fan type is consistent with control method if (ZoneEvapUnit(UnitLoop).ControlSchemeType == ZoneCoolingLoadVariableSpeedFan) { // must have a VS fan type - if (ZoneEvapUnit(UnitLoop).FanType_Num == FanType_SimpleConstVolume) { + if (ZoneEvapUnit(UnitLoop).FanType_Num == DataHVACGlobals::FanType_SimpleConstVolume) { ShowSevereError(CurrentModuleObject + "=\"" + ZoneEvapUnit(UnitLoop).Name + "\" invalid data."); ShowContinueError("Fan:ConstantVolume is not consistent with control method ZoneCoolingLoadVariableSpeedFan."); ShowContinueError("Change to a variable speed fan object type"); ErrorsFound = true; - } else if (ZoneEvapUnit(UnitLoop).FanType_Num == FanType_SimpleOnOff) { + } else if (ZoneEvapUnit(UnitLoop).FanType_Num == DataHVACGlobals::FanType_SimpleOnOff) { ShowSevereError(CurrentModuleObject + "=\"" + ZoneEvapUnit(UnitLoop).Name + "\" invalid data."); ShowContinueError("Fan:OnOff is not consistent with control method ZoneCoolingLoadVariableSpeedFan."); ShowContinueError("Change to a variable speed fan object type"); @@ -4032,6 +4048,14 @@ namespace EvaporativeCoolers { "System", "Average", ZoneEvapUnit(UnitLoop).Name); + if (ZoneEvapUnit(UnitLoop).ControlSchemeType != ZoneCoolingLoadVariableSpeedFan) { + SetupOutputVariable("Zone Evaporative Cooler Unit Part Load Ratio", + OutputProcessor::Unit::None, + ZoneEvapUnit(UnitLoop).UnitPartLoadRatio, + "System", + "Average", + ZoneEvapUnit(UnitLoop).Name); + } } } @@ -4072,7 +4096,6 @@ namespace EvaporativeCoolers { using General::TrimSigDigits; // Locals - static Array1D_bool MySizeFlag; // SUBROUTINE ARGUMENT DEFINITIONS: @@ -4086,28 +4109,14 @@ namespace EvaporativeCoolers { // na // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - static bool MyOneTimeFlag(true); // one time flag - static Array1D_bool MyEnvrnFlag; - static Array1D_bool MyFanFlag; - static Array1D_bool MyZoneEqFlag; // used to set up zone equipment availability managers int Loop; - static bool ZoneEquipmentListChecked(false); // True after the Zone Equipment List has been checked for items Real64 TimeElapsed; - if (MyOneTimeFlag) { - MySizeFlag.dimension(NumZoneEvapUnits, true); - MyEnvrnFlag.dimension(NumZoneEvapUnits, true); - MyFanFlag.dimension(NumZoneEvapUnits, true); - MyZoneEqFlag.allocate(NumZoneEvapUnits); - MyZoneEqFlag = true; - MyOneTimeFlag = false; - } - if (allocated(ZoneComp)) { - if (MyZoneEqFlag(UnitNum)) { // initialize the name of each availability manager list and zone number + if (ZoneEvapUnit(UnitNum).MyZoneEq) { // initialize the name of each availability manager list and zone number ZoneComp(ZoneEvaporativeCoolerUnit_Num).ZoneCompAvailMgrs(UnitNum).AvailManagerListName = ZoneEvapUnit(UnitNum).AvailManagerListName; ZoneComp(ZoneEvaporativeCoolerUnit_Num).ZoneCompAvailMgrs(UnitNum).ZoneNum = ZoneNum; - MyZoneEqFlag(UnitNum) = false; + ZoneEvapUnit(UnitNum).MyZoneEq = false; } ZoneEvapUnit(UnitNum).FanAvailStatus = ZoneComp(ZoneEvaporativeCoolerUnit_Num).ZoneCompAvailMgrs(UnitNum).AvailStatus; } @@ -4124,12 +4133,12 @@ namespace EvaporativeCoolers { } } - if (!SysSizingCalc && MySizeFlag(UnitNum)) { + if (!SysSizingCalc && ZoneEvapUnit(UnitNum).MySize) { SizeZoneEvaporativeCoolerUnit(UnitNum); - MySizeFlag(UnitNum) = false; + ZoneEvapUnit(UnitNum).MySize = false; } - if (MyFanFlag(UnitNum)) { + if (ZoneEvapUnit(UnitNum).MyFan) { if (ZoneEvapUnit(UnitNum).ActualFanVolFlowRate != AutoSize) { if (ZoneEvapUnit(UnitNum).ActualFanVolFlowRate < ZoneEvapUnit(UnitNum).DesignAirVolumeFlowRate) { @@ -4140,7 +4149,7 @@ namespace EvaporativeCoolers { "...evap cooler unit volumetric flow rate = " + TrimSigDigits(ZoneEvapUnit(UnitNum).DesignAirVolumeFlowRate, 5) + " m3/s."); ZoneEvapUnit(UnitNum).DesignAirVolumeFlowRate = ZoneEvapUnit(UnitNum).ActualFanVolFlowRate; ShowContinueError("...evaporative cooler unit design supply air flow rate will match fan flow rate and simulation continues."); - MyEnvrnFlag(UnitNum) = true; // re-initialize to set mass flow rate and max mass flow rate + ZoneEvapUnit(UnitNum).MyEnvrn = true; // re-initialize to set mass flow rate and max mass flow rate } if (ZoneEvapUnit(UnitNum).ActualFanVolFlowRate > 0.0) { @@ -4148,7 +4157,7 @@ namespace EvaporativeCoolers { ZoneEvapUnit(UnitNum).DesignAirVolumeFlowRate / ZoneEvapUnit(UnitNum).ActualFanVolFlowRate; } - MyFanFlag(UnitNum) = false; + ZoneEvapUnit(UnitNum).MyFan = false; } else { if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { GetFanVolFlow(ZoneEvapUnit(UnitNum).FanIndex, ZoneEvapUnit(UnitNum).ActualFanVolFlowRate); @@ -4188,7 +4197,7 @@ namespace EvaporativeCoolers { } } // Do the Begin Environment initializations - if (BeginEnvrnFlag && MyEnvrnFlag(UnitNum)) { + if (BeginEnvrnFlag && ZoneEvapUnit(UnitNum).MyEnvrn) { ZoneEvapUnit(UnitNum).DesignAirMassFlowRate = StdRhoAir * ZoneEvapUnit(UnitNum).DesignAirVolumeFlowRate; Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRateMax = ZoneEvapUnit(UnitNum).DesignAirMassFlowRate; @@ -4232,10 +4241,10 @@ namespace EvaporativeCoolers { } } - MyEnvrnFlag(UnitNum) = false; + ZoneEvapUnit(UnitNum).MyEnvrn = false; } if (!BeginEnvrnFlag) { - MyEnvrnFlag(UnitNum) = true; + ZoneEvapUnit(UnitNum).MyEnvrn = true; } TimeElapsed = HourOfDay + TimeStep * TimeStepZone + SysTimeElapsed; @@ -4297,12 +4306,12 @@ namespace EvaporativeCoolers { std::string SizingString; // input field sizing description (e.g., Nominal Capacity) Real64 TempSize; // autosized value of coil input field int FieldNum; // IDD numeric field number where input field description is found - int SizingMethod; // Integer representation of sizing method name (e.g., CoolingAirflowSizing, HeatingAirflowSizing, CoolingCapacitySizing, - // HeatingCapacitySizing, etc.) - bool PrintFlag; // TRUE when sizing information is reported in the eio file - int zoneHVACIndex; // index of zoneHVAC equipment sizing specification - int SAFMethod(0); // supply air flow rate sizing method (SupplyAirFlowRate, FlowPerFloorArea, FractionOfAutosizedCoolingAirflow, - // FractionOfAutosizedHeatingAirflow ...) + int SizingMethod; // Integer representation of sizing method name (e.g., CoolingAirflowSizing, HeatingAirflowSizing, + // CoolingCapacitySizing, HeatingCapacitySizing, etc.) + bool PrintFlag; // TRUE when sizing information is reported in the eio file + int zoneHVACIndex; // index of zoneHVAC equipment sizing specification + int SAFMethod(0); // supply air flow rate sizing method (SupplyAirFlowRate, FlowPerFloorArea, FractionOfAutosizedCoolingAirflow, + // FractionOfAutosizedHeatingAirflow ...) DataScalableSizingON = false; ZoneHeatingOnlyFan = false; @@ -4409,8 +4418,6 @@ namespace EvaporativeCoolers { // Using/Aliasing using DataHeatBalFanSys::ZoneThermostatSetPointHi; using DataHVACGlobals::SmallLoad; - using DataHVACGlobals::ZoneCompTurnFansOff; - using DataHVACGlobals::ZoneCompTurnFansOn; using DataZoneEnergyDemands::ZoneSysEnergyDemand; // Locals @@ -4426,11 +4433,11 @@ namespace EvaporativeCoolers { // SUBROUTINE LOCAL VARIABLE DECLARATIONS: Real64 ZoneCoolingLoad; - Real64 MinHumRat; Real64 CoolingLoadThreashold; Real64 ZoneTemp; Real64 CoolSetLowThrottle; Real64 CoolSetHiThrottle; + Real64 PartLoadRatio; { auto const SELECT_CASE_var(ZoneEvapUnit(UnitNum).ControlSchemeType); @@ -4454,99 +4461,23 @@ namespace EvaporativeCoolers { if (ZoneEvapUnit(UnitNum).IsOnThisTimestep) { - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate = ZoneEvapUnit(UnitNum).DesignAirMassFlowRate; - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate; - - if (ZoneEvapUnit(UnitNum).UnitReliefNodeNum > 0) { - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRate = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - } - if (ZoneEvapUnit(UnitNum).FanLocation == BlowThruFan) { - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRate = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents(ZoneEvapUnit(UnitNum).FanName, - false, - ZoneEvapUnit(UnitNum).FanIndex, - ZoneEvapUnit(UnitNum).DesignFanSpeedRatio, - ZoneCompTurnFansOn, - ZoneCompTurnFansOff); // DesignFanSpeedRatio used by OnOff fan for power calc - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } - - if (ZoneEvapUnit(UnitNum).EvapCooler_1_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_1_Name, ZoneEvapUnit(UnitNum).EvapCooler_1_Index); + if (ZoneEvapUnit(UnitNum).OpMode == DataHVACGlobals::ContFanCycCoil) { + PartLoadRatio = 1.0; + ZoneEvapUnit(UnitNum).UnitPartLoadRatio = PartLoadRatio; + CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, SensibleOutputProvided, LatentOutputProvided); + } else { + ZoneCoolingLoad = ZoneSysEnergyDemand(ZoneNum).RemainingOutputReqToCoolSP; + // calculate part load ratio for cycling fan/unit first + ControlZoneEvapUnitOutput(UnitNum, ZoneCoolingLoad); + PartLoadRatio = ZoneEvapUnit(UnitNum).UnitPartLoadRatio; + CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, SensibleOutputProvided, LatentOutputProvided); } - if ((ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) && ZoneEvapUnit(UnitNum).EvapCooler_2_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_2_Name, ZoneEvapUnit(UnitNum).EvapCooler_2_Index); - } - if (ZoneEvapUnit(UnitNum).FanLocation == DrawThruFan) { - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents(ZoneEvapUnit(UnitNum).FanName, - false, - ZoneEvapUnit(UnitNum).FanIndex, - ZoneEvapUnit(UnitNum).DesignFanSpeedRatio, - ZoneCompTurnFansOn, - ZoneCompTurnFansOff); // DesignFanSpeedRatio used by OnOff fan for power calc - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } } else { // not running - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRateMaxAvail = 0.0; - Node(ZoneEvapUnit(UnitNum).FanInletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).FanInletNodeNum).MassFlowRateMaxAvail = 0.0; - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRateMaxAvail = 0.0; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRateMaxAvail = 0.0; - - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).InletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).InletNode).MassFlowRateMaxAvail = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).OutletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).OutletNode).MassFlowRateMaxAvail = 0.0; - - if (ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) { - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).InletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).InletNode).MassFlowRateMaxAvail = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).OutletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).OutletNode).MassFlowRateMaxAvail = 0.0; - } - - if (ZoneEvapUnit(UnitNum).UnitReliefNodeNum > 0) { - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRateMaxAvail = 0.0; - } - if (ZoneEvapUnit(UnitNum).FanLocation == BlowThruFan) { - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents( - ZoneEvapUnit(UnitNum).FanName, false, ZoneEvapUnit(UnitNum).FanIndex, _, ZoneCompTurnFansOn, ZoneCompTurnFansOff); - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } - if (ZoneEvapUnit(UnitNum).EvapCooler_1_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_1_Name, ZoneEvapUnit(UnitNum).EvapCooler_1_Index); - } - - if ((ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) && ZoneEvapUnit(UnitNum).EvapCooler_2_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_2_Name, ZoneEvapUnit(UnitNum).EvapCooler_2_Index); - } - if (ZoneEvapUnit(UnitNum).FanLocation == DrawThruFan) { - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents( - ZoneEvapUnit(UnitNum).FanName, false, ZoneEvapUnit(UnitNum).FanIndex, _, ZoneCompTurnFansOn, ZoneCompTurnFansOff); - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } + PartLoadRatio = 0.0; + ZoneEvapUnit(UnitNum).UnitPartLoadRatio = PartLoadRatio; + CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, SensibleOutputProvided, LatentOutputProvided); } } else if (SELECT_CASE_var == ZoneCoolingLoadOnOffCycling) { @@ -4557,99 +4488,22 @@ namespace EvaporativeCoolers { if ((ZoneCoolingLoad < CoolingLoadThreashold) && ZoneEvapUnit(UnitNum).UnitIsAvailable) { - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate = ZoneEvapUnit(UnitNum).DesignAirMassFlowRate; - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate; - - if (ZoneEvapUnit(UnitNum).UnitReliefNodeNum > 0) { - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRate = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - } - if (ZoneEvapUnit(UnitNum).FanLocation == BlowThruFan) { - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRate = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents(ZoneEvapUnit(UnitNum).FanName, - false, - ZoneEvapUnit(UnitNum).FanIndex, - ZoneEvapUnit(UnitNum).DesignFanSpeedRatio, - ZoneCompTurnFansOn, - ZoneCompTurnFansOff); // DesignFanSpeedRatio used by OnOff fan for power calc - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } - - if (ZoneEvapUnit(UnitNum).EvapCooler_1_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_1_Name, ZoneEvapUnit(UnitNum).EvapCooler_1_Index); + if (ZoneEvapUnit(UnitNum).OpMode == DataHVACGlobals::ContFanCycCoil) { + PartLoadRatio = 1.0; + ZoneEvapUnit(UnitNum).UnitPartLoadRatio = PartLoadRatio; + CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, SensibleOutputProvided, LatentOutputProvided); + } else { + // calculate part load ratio for cycling fan/unit first + ControlZoneEvapUnitOutput(UnitNum, ZoneCoolingLoad); + PartLoadRatio = ZoneEvapUnit(UnitNum).UnitPartLoadRatio; + CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, SensibleOutputProvided, LatentOutputProvided); } - if ((ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) && ZoneEvapUnit(UnitNum).EvapCooler_2_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_2_Name, ZoneEvapUnit(UnitNum).EvapCooler_2_Index); - } - if (ZoneEvapUnit(UnitNum).FanLocation == DrawThruFan) { - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents(ZoneEvapUnit(UnitNum).FanName, - false, - ZoneEvapUnit(UnitNum).FanIndex, - ZoneEvapUnit(UnitNum).DesignFanSpeedRatio, - ZoneCompTurnFansOn, - ZoneCompTurnFansOff); // DesignFanSpeedRatio used by OnOff fan for power calc - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } } else { - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRateMaxAvail = 0.0; - Node(ZoneEvapUnit(UnitNum).FanInletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).FanInletNodeNum).MassFlowRateMaxAvail = 0.0; - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRateMaxAvail = 0.0; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRateMaxAvail = 0.0; - - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).InletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).InletNode).MassFlowRateMaxAvail = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).OutletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).OutletNode).MassFlowRateMaxAvail = 0.0; - - if (ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) { - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).InletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).InletNode).MassFlowRateMaxAvail = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).OutletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).OutletNode).MassFlowRateMaxAvail = 0.0; - } - - if (ZoneEvapUnit(UnitNum).UnitReliefNodeNum > 0) { - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRateMaxAvail = 0.0; - } - if (ZoneEvapUnit(UnitNum).FanLocation == BlowThruFan) { - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents( - ZoneEvapUnit(UnitNum).FanName, false, ZoneEvapUnit(UnitNum).FanIndex, _, ZoneCompTurnFansOn, ZoneCompTurnFansOff); - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(0.0, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } - - if (ZoneEvapUnit(UnitNum).EvapCooler_1_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_1_Name, ZoneEvapUnit(UnitNum).EvapCooler_1_Index); - } - - if ((ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) && ZoneEvapUnit(UnitNum).EvapCooler_2_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_2_Name, ZoneEvapUnit(UnitNum).EvapCooler_2_Index); - } - if (ZoneEvapUnit(UnitNum).FanLocation == DrawThruFan) { - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents( - ZoneEvapUnit(UnitNum).FanName, false, ZoneEvapUnit(UnitNum).FanIndex, _, ZoneCompTurnFansOn, ZoneCompTurnFansOff); - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(0.0, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } + // unit is off + PartLoadRatio = 0.0; + ZoneEvapUnit(UnitNum).UnitPartLoadRatio = PartLoadRatio; + CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, SensibleOutputProvided, LatentOutputProvided); } } else if (SELECT_CASE_var == ZoneCoolingLoadVariableSpeedFan) { @@ -4660,104 +4514,192 @@ namespace EvaporativeCoolers { // determine fan speed to meet load ControlVSEvapUnitToMeetLoad(UnitNum, ZoneNum, ZoneCoolingLoad); + // variable speed fan used fan speed ratio instead of partload ratio + CalcZoneEvapUnitOutput(UnitNum, ZoneEvapUnit(UnitNum).FanSpeedRatio, SensibleOutputProvided, LatentOutputProvided); - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate = - ZoneEvapUnit(UnitNum).DesignAirMassFlowRate * ZoneEvapUnit(UnitNum).FanSpeedRatio; - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate; + } else { + // unit is off + PartLoadRatio = 0.0; + CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, SensibleOutputProvided, LatentOutputProvided); + } + } + } + } - if (ZoneEvapUnit(UnitNum).UnitReliefNodeNum > 0) { - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRate = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - } - if (ZoneEvapUnit(UnitNum).FanLocation == BlowThruFan) { - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRate = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRateMaxAvail = Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate; - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents( - ZoneEvapUnit(UnitNum).FanName, false, ZoneEvapUnit(UnitNum).FanIndex, _, ZoneCompTurnFansOn, ZoneCompTurnFansOff); - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } + void CalcZoneEvapUnitOutput(int const UnitNum, // unit number + Real64 const PartLoadRatio, // zone evap unit part load ratiod + Real64 &SensibleOutputProvided, // target cooling load + Real64 &LatentOutputProvided // target cooling load + ) + { + // caculates zone evaporative cooler sensible and latent outputs + + Real64 MinHumRat; // minimum humidity ratio + + int const ZoneNodeNum = ZoneEvapUnit(UnitNum).ZoneNodeNum; + int const OAInletNodeNum = ZoneEvapUnit(UnitNum).OAInletNodeNum; + int const OutletNodeNum = ZoneEvapUnit(UnitNum).UnitOutletNodeNum; + int const ReliefNodeNum = ZoneEvapUnit(UnitNum).UnitReliefNodeNum; + int const FanInletNodeNum = ZoneEvapUnit(UnitNum).FanInletNodeNum; + int const FanOutletNodeNum = ZoneEvapUnit(UnitNum).FanOutletNodeNum; + int const EvapCooler_1_Index = ZoneEvapUnit(UnitNum).EvapCooler_1_Index; + int const EvapCooler_2_Index = ZoneEvapUnit(UnitNum).EvapCooler_2_Index; + + // calculate unit sensible cooling output + if (PartLoadRatio > 0) { + Node(OAInletNodeNum).MassFlowRate = ZoneEvapUnit(UnitNum).DesignAirMassFlowRate * PartLoadRatio; + Node(OAInletNodeNum).MassFlowRateMaxAvail = Node(OAInletNodeNum).MassFlowRate; + Node(OutletNodeNum).MassFlowRate = Node(OAInletNodeNum).MassFlowRate; + Node(OutletNodeNum).MassFlowRateMaxAvail = Node(OutletNodeNum).MassFlowRate; + } else { // not running + Node(OAInletNodeNum).MassFlowRate = 0.0; + Node(OAInletNodeNum).MassFlowRateMaxAvail = 0.0; + Node(FanInletNodeNum).MassFlowRate = 0.0; + Node(FanInletNodeNum).MassFlowRateMaxAvail = 0.0; + Node(FanOutletNodeNum).MassFlowRate = 0.0; + Node(FanOutletNodeNum).MassFlowRateMaxAvail = 0.0; + Node(OutletNodeNum).MassFlowRate = 0.0; + Node(OutletNodeNum).MassFlowRateMaxAvail = 0.0; + + Node(EvapCond(EvapCooler_1_Index).InletNode).MassFlowRate = 0.0; + Node(EvapCond(EvapCooler_1_Index).InletNode).MassFlowRateMaxAvail = 0.0; + Node(EvapCond(EvapCooler_1_Index).OutletNode).MassFlowRate = 0.0; + Node(EvapCond(EvapCooler_1_Index).OutletNode).MassFlowRateMaxAvail = 0.0; + + if (EvapCooler_2_Index > 0) { + Node(EvapCond(EvapCooler_2_Index).InletNode).MassFlowRate = 0.0; + Node(EvapCond(EvapCooler_2_Index).InletNode).MassFlowRateMaxAvail = 0.0; + Node(EvapCond(EvapCooler_2_Index).OutletNode).MassFlowRate = 0.0; + Node(EvapCond(EvapCooler_2_Index).OutletNode).MassFlowRateMaxAvail = 0.0; + } + } + if (ReliefNodeNum > 0) { + Node(ReliefNodeNum).MassFlowRate = Node(OAInletNodeNum).MassFlowRate; + Node(ReliefNodeNum).MassFlowRateMaxAvail = Node(OAInletNodeNum).MassFlowRate; + } + if (ZoneEvapUnit(UnitNum).FanLocation == BlowThruFan) { + Node(FanOutletNodeNum).MassFlowRate = Node(OAInletNodeNum).MassFlowRate; + Node(FanOutletNodeNum).MassFlowRateMaxAvail = Node(OAInletNodeNum).MassFlowRate; + if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { + Fans::SimulateFanComponents(ZoneEvapUnit(UnitNum).FanName, + false, + ZoneEvapUnit(UnitNum).FanIndex, + _, + DataHVACGlobals::ZoneCompTurnFansOn, + DataHVACGlobals::ZoneCompTurnFansOff); + } else { + HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate( + _, DataHVACGlobals::ZoneCompTurnFansOn, DataHVACGlobals::ZoneCompTurnFansOff, _); + } + } - if (ZoneEvapUnit(UnitNum).EvapCooler_1_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_1_Name, ZoneEvapUnit(UnitNum).EvapCooler_1_Index); - } + if (ZoneEvapUnit(UnitNum).EvapCooler_1_AvailStatus) { + SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_1_Name, ZoneEvapUnit(UnitNum).EvapCooler_1_Index, PartLoadRatio); + } - if ((ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) && ZoneEvapUnit(UnitNum).EvapCooler_2_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_2_Name, ZoneEvapUnit(UnitNum).EvapCooler_2_Index); - } - if (ZoneEvapUnit(UnitNum).FanLocation == DrawThruFan) { - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents( - ZoneEvapUnit(UnitNum).FanName, false, ZoneEvapUnit(UnitNum).FanIndex, _, ZoneCompTurnFansOn, ZoneCompTurnFansOff); - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } - } else { - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).OAInletNodeNum).MassFlowRateMaxAvail = 0.0; - Node(ZoneEvapUnit(UnitNum).FanInletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).FanInletNodeNum).MassFlowRateMaxAvail = 0.0; - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).FanOutletNodeNum).MassFlowRateMaxAvail = 0.0; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRateMaxAvail = 0.0; - - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).InletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).InletNode).MassFlowRateMaxAvail = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).OutletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_1_Index).OutletNode).MassFlowRateMaxAvail = 0.0; - - if (ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) { - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).InletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).InletNode).MassFlowRateMaxAvail = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).OutletNode).MassFlowRate = 0.0; - Node(EvapCond(ZoneEvapUnit(UnitNum).EvapCooler_2_Index).OutletNode).MassFlowRateMaxAvail = 0.0; - } + if ((ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) && ZoneEvapUnit(UnitNum).EvapCooler_2_AvailStatus) { + SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_2_Name, ZoneEvapUnit(UnitNum).EvapCooler_2_Index, PartLoadRatio); + } + if (ZoneEvapUnit(UnitNum).FanLocation == DrawThruFan) { + if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { + Fans::SimulateFanComponents(ZoneEvapUnit(UnitNum).FanName, + false, + ZoneEvapUnit(UnitNum).FanIndex, + _, + DataHVACGlobals::ZoneCompTurnFansOn, + DataHVACGlobals::ZoneCompTurnFansOff); + } else { + HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate( + _, DataHVACGlobals::ZoneCompTurnFansOn, DataHVACGlobals::ZoneCompTurnFansOff, _); + } + } - if (ZoneEvapUnit(UnitNum).UnitReliefNodeNum > 0) { - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRate = 0.0; - Node(ZoneEvapUnit(UnitNum).UnitReliefNodeNum).MassFlowRateMaxAvail = 0.0; - } - if (ZoneEvapUnit(UnitNum).FanLocation == BlowThruFan) { - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents( - ZoneEvapUnit(UnitNum).FanName, false, ZoneEvapUnit(UnitNum).FanIndex, _, ZoneCompTurnFansOn, ZoneCompTurnFansOff); - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } + // calculate sensible and latent outputs delivered + MinHumRat = min(Node(ZoneNodeNum).HumRat, Node(OutletNodeNum).HumRat); + SensibleOutputProvided = + Node(OutletNodeNum).MassFlowRate * (PsyHFnTdbW(Node(OutletNodeNum).Temp, MinHumRat) - PsyHFnTdbW(Node(ZoneNodeNum).Temp, MinHumRat)); + LatentOutputProvided = Node(OutletNodeNum).MassFlowRate * (Node(OutletNodeNum).HumRat - Node(ZoneNodeNum).HumRat); + } - if (ZoneEvapUnit(UnitNum).EvapCooler_1_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_1_Name, ZoneEvapUnit(UnitNum).EvapCooler_1_Index); - } + void ControlZoneEvapUnitOutput(int const UnitNum, // unit number + Real64 const ZoneCoolingLoad // target cooling load + ) + { - if ((ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) && ZoneEvapUnit(UnitNum).EvapCooler_2_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_2_Name, ZoneEvapUnit(UnitNum).EvapCooler_2_Index); - } - if (ZoneEvapUnit(UnitNum).FanLocation == DrawThruFan) { - if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { - Fans::SimulateFanComponents( - ZoneEvapUnit(UnitNum).FanName, false, ZoneEvapUnit(UnitNum).FanIndex, _, ZoneCompTurnFansOn, ZoneCompTurnFansOff); - } else { - HVACFan::fanObjs[ZoneEvapUnit(UnitNum).FanIndex]->simulate(_, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); - } - } + // calculates unit cooling part load ratio using root solver numerical method + + // local variables + int const MaxIte(50); // maximum number of iterations + Real64 const Tol(0.01); // error tolerance + int SolFla; // Flag of root solver + Array1D Par(2); // Parameters passed to root solver + Real64 PartLoadRatio; // cooling part load ratio + Real64 FullFlowSensibleOutput; // full flow sensible cooling output + Real64 FullFlowLatentOutput; // full flow sensible cooling output + + // get full flow sensible cooling output + PartLoadRatio = 1.0; + CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, FullFlowSensibleOutput, FullFlowLatentOutput); + + // calculate part load ratio + if (FullFlowSensibleOutput < ZoneCoolingLoad) { + Par(1) = UnitNum; + Par(2) = ZoneCoolingLoad; + + General::SolveRoot(Tol, MaxIte, SolFla, PartLoadRatio, ZoneEvapUnitLoadResidual, 0.0, 1.0, Par); + if (SolFla == -1) { + if (ZoneEvapUnit(UnitNum).UnitLoadControlMaxIterErrorIndex == 0) { + ShowWarningError("Iteration limit exceeded calculating evap unit part load ratio, for unit=" + ZoneEvapUnit(UnitNum).Name); + ShowContinueErrorTimeStamp(""); + ShowContinueError("Unit part load ratio returned=" + General::RoundSigDigits(PartLoadRatio, 2)); + ShowContinueError("Check input for Fan Placement."); } + ShowRecurringWarningErrorAtEnd("Zone Evaporative Cooler unit part load ratio control failed (iteration limit [" + + General::RoundSigDigits(MaxIte) + "]) for ZoneHVAC:EvaporativeCoolerUnit =\"" + + ZoneEvapUnit(UnitNum).Name, + ZoneEvapUnit(UnitNum).UnitLoadControlMaxIterErrorIndex); + + } else if (SolFla == -2) { + if (ZoneEvapUnit(UnitNum).UnitLoadControlLimitsErrorIndex == 0) { + ShowWarningError("Zone Evaporative Cooler unit calculation failed: unit part load ratio limits exceeded, for unit = " + + ZoneEvapUnit(UnitNum).Name); + ShowContinueError("Check input for Fan Placement."); + ShowContinueErrorTimeStamp(""); + if (DataGlobals::WarmupFlag) ShowContinueError("Error occurred during warmup days."); + } + ShowRecurringWarningErrorAtEnd( + "Zone Evaporative Cooler unit part load ratio control failed (limits exceeded) for ZoneHVAC:EvaporativeCoolerUnit =\"" + + ZoneEvapUnit(UnitNum).Name, + ZoneEvapUnit(UnitNum).UnitLoadControlLimitsErrorIndex); } + + } else { + PartLoadRatio = 1.0; } + ZoneEvapUnit(UnitNum).UnitPartLoadRatio = PartLoadRatio; + } - // calculate sensible load met (unit serving Zone) using delta enthalpy at a constant (minimum) humidity ratio) - MinHumRat = min(Node(ZoneEvapUnit(UnitNum).ZoneNodeNum).HumRat, Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).HumRat); - SensibleOutputProvided = - Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate * (PsyHFnTdbW(Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).Temp, MinHumRat) - - PsyHFnTdbW(Node(ZoneEvapUnit(UnitNum).ZoneNodeNum).Temp, MinHumRat)); - LatentOutputProvided = Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).MassFlowRate * - (Node(ZoneEvapUnit(UnitNum).UnitOutletNodeNum).HumRat - Node(ZoneEvapUnit(UnitNum).ZoneNodeNum).HumRat); + Real64 ZoneEvapUnitLoadResidual(Real64 const PartLoadRatio, + Array1 const &Par // parameters + ) + { + // calculates cooling load residual by varying part load ratio + + // local variables + int UnitNum; // index to Zone Evap Unit + Real64 Residual; // return value + Real64 LoadToBeMet; // sensible load to be met + Real64 QSensOutputProvided; // sensible output at a given PLR + Real64 QLatOutputProvided; // latent output at a given PLR + + UnitNum = int(Par(1)); + LoadToBeMet = Par(2); + + CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, QSensOutputProvided, QLatOutputProvided); + + Residual = QSensOutputProvided - LoadToBeMet; + + return Residual; } void ControlVSEvapUnitToMeetLoad(int const UnitNum, // unit number @@ -4966,11 +4908,11 @@ namespace EvaporativeCoolers { } if (ZoneEvapUnit(UnitNum).EvapCooler_1_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_1_Name, ZoneEvapUnit(UnitNum).EvapCooler_1_Index); + SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_1_Name, ZoneEvapUnit(UnitNum).EvapCooler_1_Index, FanSpeedRatio); } if ((ZoneEvapUnit(UnitNum).EvapCooler_2_Index > 0) && ZoneEvapUnit(UnitNum).EvapCooler_2_AvailStatus) { - SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_2_Name, ZoneEvapUnit(UnitNum).EvapCooler_2_Index); + SimEvapCooler(ZoneEvapUnit(UnitNum).EvapCooler_2_Name, ZoneEvapUnit(UnitNum).EvapCooler_2_Index, FanSpeedRatio); } if (ZoneEvapUnit(UnitNum).FanLocation == DrawThruFan) { if (ZoneEvapUnit(UnitNum).FanType_Num != DataHVACGlobals::FanType_SystemModelObject) { @@ -5056,13 +4998,91 @@ namespace EvaporativeCoolers { void clear_state() { NumEvapCool = 0; + EvapCond.clear(); NumZoneEvapUnits = 0; + ZoneEvapUnit.clear(); + ZoneEvapCoolerUnitFields.clear(); GetInputEvapComponentsFlag = false; GetInputZoneEvapUnit = true; UniqueEvapCondNames.clear(); MySizeFlag.clear(); CheckEquipName.clear(); CheckZoneEvapUnitName.clear(); + InitEvapCoolerMyOneTimeFlag = true; + ZoneEquipmentListChecked = false; + } + + int GetInletNodeNum(std::string const &EvapCondName, + bool &ErrorsFound + ) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given EvapCond and returns the air inlet node number. + // If incorrect EvapCond name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichEvapCond; + + if (GetInputEvapComponentsFlag) { // First time subroutine has been entered + GetEvapInput(); + GetInputEvapComponentsFlag = false; + } + + WhichEvapCond = UtilityRoutines::FindItemInList(EvapCondName, EvapCond, &EvapConditions::EvapCoolerName, NumEvapCool); + if (WhichEvapCond != 0) { + NodeNum = EvapCond(WhichEvapCond).InletNode; + } else { + ShowSevereError("GetInletNodeNum: Could not find EvaporativeCooler = \"" + EvapCondName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + + int GetOutletNodeNum(std::string const &EvapCondName, + bool &ErrorsFound + ) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given EvapCond and returns the air outlet node number. + // If incorrect EvapCond name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichEvapCond; + + if (GetInputEvapComponentsFlag) { // First time subroutine has been entered + GetEvapInput(); + GetInputEvapComponentsFlag = false; + } + WhichEvapCond = UtilityRoutines::FindItemInList(EvapCondName, EvapCond, &EvapConditions::EvapCoolerName, NumEvapCool); + if (WhichEvapCond != 0) { + NodeNum = EvapCond(WhichEvapCond).OutletNode; + } else { + ShowSevereError("GetOutletNodeNum: Could not find EvaporativeCooler = \"" + EvapCondName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; } } // namespace EvaporativeCoolers diff --git a/src/EnergyPlus/EvaporativeCoolers.hh b/src/EnergyPlus/EvaporativeCoolers.hh index e71fc797e8d..df326563b8b 100644 --- a/src/EnergyPlus/EvaporativeCoolers.hh +++ b/src/EnergyPlus/EvaporativeCoolers.hh @@ -243,6 +243,7 @@ namespace EvaporativeCoolers { int FanAvailSchedPtr; int FanInletNodeNum; int FanOutletNodeNum; + int OpMode; // mode of operation; 1=cycling fan, 2=continuous fan Real64 DesignAirVolumeFlowRate; Real64 DesignAirMassFlowRate; Real64 DesignFanSpeedRatio; @@ -264,44 +265,52 @@ namespace EvaporativeCoolers { int EvapCooler_2_Type_Num; int EvapCooler_2_Index; bool EvapCooler_2_AvailStatus; - Real64 OAInletRho; // fills internal variable, current inlet air density [kg/m3] - Real64 OAInletCp; // fills internal variable, current inlet air specific heat [J/kg-c] - Real64 OAInletTemp; // fills internal variable, current inlet air temperature [C] - Real64 OAInletHumRat; // fills internal variable, current inlet air humidity ratio [kg/kg] - Real64 OAInletMassFlowRate; // fills internal variable, current inlet air mass flow rate [kg/s] - Real64 UnitOutletTemp; // filled by actuator, component outlet temperature [C] - Real64 UnitOutletHumRat; // filled by actuator, component outlet humidity ratio [kg/kg] - Real64 UnitOutletMassFlowRate; // filled by actuator, component outlet mass flow rate [kg/s] - Real64 UnitReliefTemp; // filled by actuator, component outlet temperature [C] - Real64 UnitReliefHumRat; // filled by actuator, component outlet humidity ratio [kg/kg] - Real64 UnitReliefMassFlowRate; // filled by actuator, component outlet mass flow rate [kg/s] - Real64 UnitTotalCoolingRate; // unit output to zone, total cooling rate [W] - Real64 UnitTotalCoolingEnergy; // unit output to zone, total cooling energy [J] - Real64 UnitSensibleCoolingRate; // unit output to zone, sensible cooling rate [W] - Real64 UnitSensibleCoolingEnergy; // unit output to zone, sensible cooling energy [J] - Real64 UnitLatentHeatingRate; // unit output to zone, latent heating rate [W] - Real64 UnitLatentHeatingEnergy; // unit output to zone, latent heating energy [J] - Real64 UnitLatentCoolingRate; // unit output to zone, latent cooling rate [W] - Real64 UnitLatentCoolingEnergy; // unit output to zone, latent cooling energy [J] - Real64 UnitFanSpeedRatio; // unit fan speed ratio, dimensionless [ ] - int UnitVSControlMaxIterErrorIndex; // regula falsi errors, fan speed iteration limits - int UnitVSControlLimitsErrorIndex; // regula falsi errors, limits exceeded. - int ZonePtr; // pointer to a zone served by an evaportive cooler unit - int HVACSizingIndex; // index of a HVACSizing object for an evaportive cooler unit + Real64 OAInletRho; // fills internal variable, current inlet air density [kg/m3] + Real64 OAInletCp; // fills internal variable, current inlet air specific heat [J/kg-c] + Real64 OAInletTemp; // fills internal variable, current inlet air temperature [C] + Real64 OAInletHumRat; // fills internal variable, current inlet air humidity ratio [kg/kg] + Real64 OAInletMassFlowRate; // fills internal variable, current inlet air mass flow rate [kg/s] + Real64 UnitOutletTemp; // filled by actuator, component outlet temperature [C] + Real64 UnitOutletHumRat; // filled by actuator, component outlet humidity ratio [kg/kg] + Real64 UnitOutletMassFlowRate; // filled by actuator, component outlet mass flow rate [kg/s] + Real64 UnitReliefTemp; // filled by actuator, component outlet temperature [C] + Real64 UnitReliefHumRat; // filled by actuator, component outlet humidity ratio [kg/kg] + Real64 UnitReliefMassFlowRate; // filled by actuator, component outlet mass flow rate [kg/s] + Real64 UnitTotalCoolingRate; // unit output to zone, total cooling rate [W] + Real64 UnitTotalCoolingEnergy; // unit output to zone, total cooling energy [J] + Real64 UnitSensibleCoolingRate; // unit output to zone, sensible cooling rate [W] + Real64 UnitSensibleCoolingEnergy; // unit output to zone, sensible cooling energy [J] + Real64 UnitLatentHeatingRate; // unit output to zone, latent heating rate [W] + Real64 UnitLatentHeatingEnergy; // unit output to zone, latent heating energy [J] + Real64 UnitLatentCoolingRate; // unit output to zone, latent cooling rate [W] + Real64 UnitLatentCoolingEnergy; // unit output to zone, latent cooling energy [J] + Real64 UnitFanSpeedRatio; // unit fan speed ratio, dimensionless [ ] + Real64 UnitPartLoadRatio; // unit part load ratio, dimensionless [ ] + int UnitVSControlMaxIterErrorIndex; // regula falsi errors, fan speed iteration limits + int UnitVSControlLimitsErrorIndex; // regula falsi errors, limits exceeded. + int UnitLoadControlMaxIterErrorIndex; // root solver errors, part load ratio iteration limits exceeded + int UnitLoadControlLimitsErrorIndex; // root solver errors, art load ratio limits exceeded. + int ZonePtr; // pointer to a zone served by an evaportive cooler unit + int HVACSizingIndex; // index of a HVACSizing object for an evaportive cooler unit + bool MySize; // sizing logic flag + bool MyEnvrn; // sim environmental logic flag + bool MyFan; // fan sizing logic flag + bool MyZoneEq; // logic flag used to set up zone equipment availability managers // Default Constructor ZoneEvapCoolerUnitStruct() : ZoneNodeNum(0), AvailSchedIndex(0), UnitIsAvailable(false), FanAvailStatus(0), OAInletNodeNum(0), UnitOutletNodeNum(0), UnitReliefNodeNum(0), FanType_Num(0), FanIndex(0), ActualFanVolFlowRate(0.0), FanAvailSchedPtr(0), FanInletNodeNum(0), - FanOutletNodeNum(0), DesignAirVolumeFlowRate(0.0), DesignAirMassFlowRate(0.0), DesignFanSpeedRatio(0.0), FanSpeedRatio(0.0), + FanOutletNodeNum(0), OpMode(0), DesignAirVolumeFlowRate(0.0), DesignAirMassFlowRate(0.0), DesignFanSpeedRatio(0.0), FanSpeedRatio(0.0), FanLocation(0), ControlSchemeType(0), TimeElapsed(0.0), ThrottlingRange(0.0), IsOnThisTimestep(false), WasOnLastTimestep(false), ThresholdCoolingLoad(0.0), EvapCooler_1_Type_Num(0), EvapCooler_1_Index(0), EvapCooler_1_AvailStatus(false), EvapCooler_2_Type_Num(0), EvapCooler_2_Index(0), EvapCooler_2_AvailStatus(false), OAInletRho(0.0), OAInletCp(0.0), OAInletTemp(0.0), OAInletHumRat(0.0), OAInletMassFlowRate(0.0), UnitOutletTemp(0.0), UnitOutletHumRat(0.0), UnitOutletMassFlowRate(0.0), UnitReliefTemp(0.0), UnitReliefHumRat(0.0), UnitReliefMassFlowRate(0.0), UnitTotalCoolingRate(0.0), UnitTotalCoolingEnergy(0.0), UnitSensibleCoolingRate(0.0), UnitSensibleCoolingEnergy(0.0), UnitLatentHeatingRate(0.0), UnitLatentHeatingEnergy(0.0), - UnitLatentCoolingRate(0.0), UnitLatentCoolingEnergy(0.0), UnitFanSpeedRatio(0.0), UnitVSControlMaxIterErrorIndex(0), - UnitVSControlLimitsErrorIndex(0), ZonePtr(0), HVACSizingIndex(0) + UnitLatentCoolingRate(0.0), UnitLatentCoolingEnergy(0.0), UnitFanSpeedRatio(0.0), UnitPartLoadRatio(0.0), + UnitVSControlMaxIterErrorIndex(0), UnitVSControlLimitsErrorIndex(0), UnitLoadControlMaxIterErrorIndex(0), + UnitLoadControlLimitsErrorIndex(0), ZonePtr(0), HVACSizingIndex(0), MySize(true), MyEnvrn(true), MyFan(true), MyZoneEq(true) { } }; @@ -324,7 +333,7 @@ namespace EvaporativeCoolers { // Functions - void SimEvapCooler(std::string const &CompName, int &CompIndex); + void SimEvapCooler(std::string const &CompName, int &CompIndex, Real64 const PartLoadRatio = 1.0); // Get Input Section of the Module //****************************************************************************** @@ -347,11 +356,11 @@ namespace EvaporativeCoolers { // Begin Algorithm Section of the Module //****************************************************************************** - void CalcDirectEvapCooler(int &EvapCoolNum); + void CalcDirectEvapCooler(int &EvapCoolNum, Real64 const PartLoadRatio); - void CalcDryIndirectEvapCooler(int &EvapCoolNum); + void CalcDryIndirectEvapCooler(int &EvapCoolNum, Real64 const PartLoadRatio); - void CalcWetIndirectEvapCooler(int &EvapCoolNum); + void CalcWetIndirectEvapCooler(int &EvapCoolNum, Real64 const PartLoadRatio); void CalcResearchSpecialPartLoad(int &EvapCoolNum); @@ -438,6 +447,20 @@ namespace EvaporativeCoolers { Real64 &LatentOutputProvided // Latent add/removal (kg/s), dehumid = negative ); + void CalcZoneEvapUnitOutput(int const UnitNum, // unit number + Real64 const PartLoadRatio, // zone evap unit part load ratiod + Real64 &SensibleOutputProvided, // sensible capacity delivered to zone + Real64 &LatentOutputProvided // Latent add/removal (kg/s), dehumid = negative + ); + + void ControlZoneEvapUnitOutput(int const UnitNum, // unit number + Real64 const ZoneCoolingLoad // target cooling load + ); + + Real64 ZoneEvapUnitLoadResidual(Real64 const PartLoadRatio, // zone evap unit part load ratiod + Array1 const &Par // parameters + ); + void ControlVSEvapUnitToMeetLoad(int const UnitNum, // unit number int const ZoneNum, // number of zone being served Real64 const ZoneCoolingLoad // target cooling load @@ -455,6 +478,14 @@ namespace EvaporativeCoolers { // Used to clear global data between Unit Tests, should not be normally called void clear_state(); + int GetInletNodeNum(std::string const &EvapCondName, + bool &ErrorsFound + ); + + int GetOutletNodeNum(std::string const &EvapCondName, + bool &ErrorsFound + ); + } // namespace EvaporativeCoolers } // namespace EnergyPlus diff --git a/src/EnergyPlus/ExternalInterface.cc b/src/EnergyPlus/ExternalInterface.cc index bc10c220203..affa26a11b3 100644 --- a/src/EnergyPlus/ExternalInterface.cc +++ b/src/EnergyPlus/ExternalInterface.cc @@ -2411,7 +2411,7 @@ namespace ExternalInterface { int varType(0); // 0=not found, 1=integer, 2=real, 3=meter int numKeys(0); // Number of keys found OutputProcessor::StoreType varAvgSum(OutputProcessor::StoreType::Averaged); // Variable is Averaged=1 or Summed=2 - int varStepType(0); // Variable time step is Zone=1 or HVAC=2 + OutputProcessor::TimeStepType varStepType(OutputProcessor::TimeStepType::TimeStepZone); // Variable time step is Zone=1 or HVAC=2 OutputProcessor::Unit varUnits(OutputProcessor::Unit::None); // Units sting, may be blank Array1D_int keyIndexes; // Array index for Array1D_string NamesOfKeys; // Specific key name diff --git a/src/EnergyPlus/FluidCoolers.cc b/src/EnergyPlus/FluidCoolers.cc index 3ab12f4e923..b7f6ecc696b 100644 --- a/src/EnergyPlus/FluidCoolers.cc +++ b/src/EnergyPlus/FluidCoolers.cc @@ -247,6 +247,9 @@ namespace FluidCoolers { DataLoopNode::ObjectIsNotParent); BranchNodeConnections::TestCompSet(cCurrentModuleObject, AlphArray(1), AlphArray(2), AlphArray(3), "Chilled Water Nodes"); SimpleFluidCooler(FluidCoolerNum).HighSpeedFluidCoolerUA = NumArray(1); + if (SimpleFluidCooler(FluidCoolerNum).HighSpeedFluidCoolerUA == DataSizing::AutoSize) { + SimpleFluidCooler(FluidCoolerNum).HighSpeedFluidCoolerUAWasAutoSized = true; + } SimpleFluidCooler(FluidCoolerNum).FluidCoolerNominalCapacity = NumArray(2); SimpleFluidCooler(FluidCoolerNum).DesignEnteringWaterTemp = NumArray(3); SimpleFluidCooler(FluidCoolerNum).DesignEnteringAirTemp = NumArray(4); @@ -502,15 +505,16 @@ namespace FluidCoolers { } if (this->HighSpeedFluidCoolerUA != 0.0) { if (this->HighSpeedFluidCoolerUA > 0.0) { - ShowSevereError(cCurrentModuleObject + "= \"" + this->Name + - "\". Nominal fluid cooler capacity and design fluid cooler UA have been specified."); + ShowWarningError(cCurrentModuleObject + "= \"" + this->Name + + "\". Nominal fluid cooler capacity and design fluid cooler UA have been specified."); } else { - ShowSevereError(cCurrentModuleObject + "= \"" + this->Name + - "\". Nominal fluid cooler capacity has been specified and design fluid cooler UA is being autosized."); + ShowWarningError(cCurrentModuleObject + "= \"" + this->Name + + "\". Nominal fluid cooler capacity has been specified and design fluid cooler UA is being autosized."); } ShowContinueError( "Design fluid cooler UA field must be left blank when nominal fluid cooler capacity performance input method is used."); - ErrorsFound = true; + ShowContinueError("Design fluid cooler UA value will be reset to zero and the simulation continuous."); + this->HighSpeedFluidCoolerUA = 0.0; } } else { // Fluid cooler performance input method is not specified as a valid "choice" ShowSevereError(cCurrentModuleObject + "= \"" + AlphArray(1) + "\", invalid " + cAlphaFieldNames(4) + " = \"" + AlphArray(4) + "\"."); @@ -1826,6 +1830,7 @@ namespace FluidCoolers { void clear_state() { + NumSimpleFluidCoolers = 0; SimpleFluidCooler.clear(); UniqueSimpleFluidCoolerNames.clear(); GetFluidCoolerInputFlag = true; diff --git a/src/EnergyPlus/FluidProperties.cc b/src/EnergyPlus/FluidProperties.cc index c4df69ad3d3..820739f6ec1 100644 --- a/src/EnergyPlus/FluidProperties.cc +++ b/src/EnergyPlus/FluidProperties.cc @@ -714,7 +714,7 @@ namespace FluidProperties { if (FluidTemps(Loop).Temps(TempLoop) <= FluidTemps(Loop).Temps(TempLoop - 1)) { ShowSevereError(RoutineName + CurrentModuleObject + " name=" + FluidTemps(Loop).Name + ", lists must have data in ascending order"); - ShowContinueError("First out of order occurance at Temperature #(" + RoundSigDigits(TempLoop - 1) + ") {" + + ShowContinueError("First out of order occurrence at Temperature #(" + RoundSigDigits(TempLoop - 1) + ") {" + RoundSigDigits(FluidTemps(Loop).Temps(TempLoop - 1), 3) + "} >= Temp(" + RoundSigDigits(TempLoop) + ") {" + RoundSigDigits(FluidTemps(Loop).Temps(TempLoop), 3) + '}'); ErrorsFound = true; @@ -1255,7 +1255,7 @@ namespace FluidProperties { // String2=ADJUSTL(String2) // String4=TrimSigDigits(RefrigData(Loop)%CpTemps(TempLoop),3) // String4=ADJUSTL(String4) - // CALL ShowContinueError('First Occurance at CpTemp('//TRIM(String1)//') {'//TRIM(String2)//'} /= {'//TRIM(String4)//'}') + // CALL ShowContinueError('First Occurrence at CpTemp('//TRIM(String1)//') {'//TRIM(String2)//'} /= {'//TRIM(String4)//'}') // ErrorsFound=.TRUE. // EXIT // ENDIF @@ -1446,7 +1446,7 @@ namespace FluidProperties { if (RefrigData(Loop).SHPress(InData) <= RefrigData(Loop).SHPress(InData - 1)) { ShowSevereError(RoutineName + CurrentModuleObject + " Name=" + RefrigData(Loop).Name); ShowContinueError("Pressures must be entered in ascending order for fluid property data"); - ShowContinueError("First Occurance at Pressure(" + RoundSigDigits(InData - 1) + ") {" + + ShowContinueError("First Occurrence at Pressure(" + RoundSigDigits(InData - 1) + ") {" + RoundSigDigits(RefrigData(Loop).SHPress(InData - 1), 3) + "} >= Pressure(" + RoundSigDigits(InData) + ") {" + RoundSigDigits(RefrigData(Loop).SHPress(InData), 3) + '}'); ErrorsFound = true; diff --git a/src/EnergyPlus/General.cc b/src/EnergyPlus/General.cc index 924d29fd84c..fcea1e17a19 100644 --- a/src/EnergyPlus/General.cc +++ b/src/EnergyPlus/General.cc @@ -67,6 +67,8 @@ #include #include #include +// TODO: move DetermineMinuteForReporting to avoid bringing this one in +#include #if defined(_WIN32) && _MSC_VER < 1900 #define snprintf _snprintf @@ -2968,7 +2970,7 @@ namespace General { Minute = mod(TmpItem, DecHr); } - int DetermineMinuteForReporting(int const IndexTypeKey) // kind of reporting, Zone Timestep or System + int DetermineMinuteForReporting(OutputProcessor::TimeStepType t_timeStepType) // kind of reporting, Zone Timestep or System { // FUNCTION INFORMATION: @@ -2990,7 +2992,6 @@ namespace General { // Using/Aliasing using namespace DataPrecisionGlobals; using DataGlobals::CurrentTime; - using DataGlobals::HVACTSReporting; using DataGlobals::TimeStepZone; using DataHVACGlobals::SysTimeElapsed; using DataHVACGlobals::TimeStepSys; @@ -3015,7 +3016,7 @@ namespace General { Real64 ActualTimeE; // End of current interval (HVAC time step) int ActualTimeHrS; - if (IndexTypeKey == HVACTSReporting) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { ActualTimeS = CurrentTime - TimeStepZone + SysTimeElapsed; ActualTimeE = ActualTimeS + TimeStepSys; ActualTimeHrS = int(ActualTimeS); diff --git a/src/EnergyPlus/General.hh b/src/EnergyPlus/General.hh index 57220ce5cd6..05d19f356c6 100644 --- a/src/EnergyPlus/General.hh +++ b/src/EnergyPlus/General.hh @@ -64,6 +64,11 @@ namespace EnergyPlus { +// Forward declaration +namespace OutputProcessor { + enum class TimeStepType; +} + namespace General { // Data @@ -312,7 +317,8 @@ namespace General { int &Minute // minute in integer format (0:59) ); - int DetermineMinuteForReporting(int const IndexTypeKey); // kind of reporting, Zone Timestep or System + // TODO: this probably shouldn't be here + int DetermineMinuteForReporting(OutputProcessor::TimeStepType t_timeStepType); // kind of reporting, Zone Timestep or System void EncodeMonDayHrMin(int &Item, // word containing encoded month, day, hour, minute int const Month, // month in integer format (1:12) diff --git a/src/EnergyPlus/HVACDXHeatPumpSystem.cc b/src/EnergyPlus/HVACDXHeatPumpSystem.cc index 4b972a392c1..357b441638d 100644 --- a/src/EnergyPlus/HVACDXHeatPumpSystem.cc +++ b/src/EnergyPlus/HVACDXHeatPumpSystem.cc @@ -1253,6 +1253,68 @@ namespace HVACDXHeatPumpSystem { return Residuum; } + int GetHeatingCoilInletNodeNum( + std::string const &DXHeatCoilSysName) + { + // SUBROUTINE INFORMATION: + // AUTHOR Lixing Gu, FSEC + // DATE WRITTEN Apr. 2019 + // PURPOSE OF THIS SUBROUTINE: + // Get inlet node number + + // Using/Aliasing + + // SUBROUTINE LOCAL VARIABLE DECLARATIONS: + int NodeNum; + int DXHeatSysNum; + + if (GetInputFlag) { // First time subroutine has been entered + GetDXHeatPumpSystemInput(); + GetInputFlag = false; + } + + NodeNum = 0; + if (NumDXHeatPumpSystems > 0) { + DXHeatSysNum = UtilityRoutines::FindItemInList(DXHeatCoilSysName, DXHeatPumpSystem); + if (DXHeatSysNum > 0 && DXHeatSysNum <= NumDXHeatPumpSystems) { + NodeNum = DXHeatPumpSystem(DXHeatSysNum).DXHeatPumpCoilInletNodeNum; + } + } + + return NodeNum; + } + + int GetHeatingCoilOutletNodeNum( + std::string const &DXHeatCoilSysName) + { + // SUBROUTINE INFORMATION: + // AUTHOR Lixing Gu, FSEC + // DATE WRITTEN Apr. 2019 + // PURPOSE OF THIS SUBROUTINE: + // Get Outlet node number + + // Using/Aliasing + + // SUBROUTINE LOCAL VARIABLE DECLARATIONS: + int NodeNum; + int DXHeatSysNum; + + if (GetInputFlag) { // First time subroutine has been entered + GetDXHeatPumpSystemInput(); + GetInputFlag = false; + } + + NodeNum = 0; + if (NumDXHeatPumpSystems > 0) { + DXHeatSysNum = UtilityRoutines::FindItemInList(DXHeatCoilSysName, DXHeatPumpSystem); + if (DXHeatSysNum > 0 && DXHeatSysNum <= NumDXHeatPumpSystems) { + NodeNum = DXHeatPumpSystem(DXHeatSysNum).DXHeatPumpCoilOutletNodeNum; + } + } + + return NodeNum; + } + } // namespace HVACDXHeatPumpSystem } // namespace EnergyPlus diff --git a/src/EnergyPlus/HVACDXHeatPumpSystem.hh b/src/EnergyPlus/HVACDXHeatPumpSystem.hh index 22c8fd3ed5d..dc1badd7c99 100644 --- a/src/EnergyPlus/HVACDXHeatPumpSystem.hh +++ b/src/EnergyPlus/HVACDXHeatPumpSystem.hh @@ -190,6 +190,11 @@ namespace HVACDXHeatPumpSystem { Array1 const &Par // par(1) = DX coil number ); + int GetHeatingCoilInletNodeNum(std::string const &DXCoilSysName); + + int GetHeatingCoilOutletNodeNum(std::string const &DXCoilSysName); + + } // namespace HVACDXHeatPumpSystem } // namespace EnergyPlus diff --git a/src/EnergyPlus/HVACDXSystem.cc b/src/EnergyPlus/HVACDXSystem.cc index 69be94e5733..9a566a3ba1d 100644 --- a/src/EnergyPlus/HVACDXSystem.cc +++ b/src/EnergyPlus/HVACDXSystem.cc @@ -335,13 +335,14 @@ namespace HVACDXSystem { // set econo lockout flag // set econo lockout flag if (AirLoopNum != -1) { // IF the sysem is not an equipment of outdoor air unit - - if ((DXCoolingSystem(DXSystemNum).PartLoadFrac > 0.0 || DXCoolingSystem(DXSystemNum).SpeedRatio > 0.0 || - DXCoolingSystem(DXSystemNum).CycRatio > 0.0) && - AirLoopControlInfo(AirLoopNum).CanLockoutEconoWithCompressor) { - AirLoopControlInfo(AirLoopNum).ReqstEconoLockoutWithCompressor = true; - } else { - AirLoopControlInfo(AirLoopNum).ReqstEconoLockoutWithCompressor = false; + if (AirLoopNum > 0) { // Real airloopNum called from MixedAir and SimAirServingZones + if ((DXCoolingSystem(DXSystemNum).PartLoadFrac > 0.0 || DXCoolingSystem(DXSystemNum).SpeedRatio > 0.0 || + DXCoolingSystem(DXSystemNum).CycRatio > 0.0) && + AirLoopControlInfo(AirLoopNum).CanLockoutEconoWithCompressor) { + AirLoopControlInfo(AirLoopNum).ReqstEconoLockoutWithCompressor = true; + } else { // used for AirLoopHVACDOAS only + AirLoopControlInfo(AirLoopNum).ReqstEconoLockoutWithCompressor = false; + } } } @@ -910,7 +911,11 @@ namespace HVACDXSystem { OutNode = DXCoolingSystem(DXSystemNum).DXCoolingCoilOutletNodeNum; ControlNode = DXCoolingSystem(DXSystemNum).DXSystemControlNodeNum; - EconomizerFlag = AirLoopControlInfo(AirLoopNum).EconoActive; + if (AirLoopNum == 0) { + EconomizerFlag = false; + } else { + EconomizerFlag = AirLoopControlInfo(AirLoopNum).EconoActive; + } if (ControlNode == 0) { DXCoolingSystem(DXSystemNum).DesiredOutletTemp = 0.0; DXCoolingSystem(DXSystemNum).DesiredOutletHumRat = 1.0; @@ -3762,6 +3767,67 @@ namespace HVACDXSystem { return Residuum; } + int GetCoolingCoilInletNodeNum( + std::string const &DXCoilSysName) + { + // SUBROUTINE INFORMATION: + // AUTHOR Lixing Gu, FSEC + // DATE WRITTEN Apr. 2019 + // PURPOSE OF THIS SUBROUTINE: + // Get inlet node number + + // Using/Aliasing + + // SUBROUTINE LOCAL VARIABLE DECLARATIONS: + int NodeNum; + int DXCoolSysNum; + + if (GetInputFlag) { // First time subroutine has been entered + GetDXCoolingSystemInput(); + GetInputFlag = false; + } + + NodeNum = 0; + if (NumDXSystem > 0) { + DXCoolSysNum = UtilityRoutines::FindItemInList(DXCoilSysName, DXCoolingSystem); + if (DXCoolSysNum > 0 && DXCoolSysNum <= NumDXSystem) { + NodeNum = DXCoolingSystem(DXCoolSysNum).DXCoolingCoilInletNodeNum; + } + } + + return NodeNum; + } + + int GetCoolingCoilOutletNodeNum( + std::string const &DXCoilSysName) + { + // SUBROUTINE INFORMATION: + // AUTHOR Lixing Gu, FSEC + // DATE WRITTEN Apr. 2019 + // PURPOSE OF THIS SUBROUTINE: + // Get Outlet node number + + // Using/Aliasing + + // SUBROUTINE LOCAL VARIABLE DECLARATIONS: + int NodeNum; + int DXCoolSysNum; + + if (GetInputFlag) { // First time subroutine has been entered + GetDXCoolingSystemInput(); + GetInputFlag = false; + } + + NodeNum = 0; + if (NumDXSystem > 0) { + DXCoolSysNum = UtilityRoutines::FindItemInList(DXCoilSysName, DXCoolingSystem); + if (DXCoolSysNum > 0 && DXCoolSysNum <= NumDXSystem) { + NodeNum = DXCoolingSystem(DXCoolSysNum).DXCoolingCoilOutletNodeNum; + } + } + + return NodeNum; + } // End of Calculation subroutines for the DXCoolingSystem Module // ***************************************************************************** diff --git a/src/EnergyPlus/HVACDXSystem.hh b/src/EnergyPlus/HVACDXSystem.hh index 270afe77238..05f6fe4bfa1 100644 --- a/src/EnergyPlus/HVACDXSystem.hh +++ b/src/EnergyPlus/HVACDXSystem.hh @@ -338,6 +338,10 @@ namespace HVACDXSystem { Array1 const &Par // par(1) = DX coil number ); + int GetCoolingCoilInletNodeNum(std::string const &DXCoilSysName); + + int GetCoolingCoilOutletNodeNum(std::string const &DXCoilSysName); + // End of Calculation subroutines for the DXCoolingSystem Module // ***************************************************************************** diff --git a/src/EnergyPlus/HVACFan.cc b/src/EnergyPlus/HVACFan.cc index ed23b0a0430..cda2dc279c4 100644 --- a/src/EnergyPlus/HVACFan.cc +++ b/src/EnergyPlus/HVACFan.cc @@ -85,7 +85,8 @@ namespace HVACFan { } int getFanObjectVectorIndex( // lookup vector index for fan object name in object array EnergyPlus::HVACFan::fanObjs - std::string const &objectName // IDF name in input + std::string const &objectName, // IDF name in input + bool const ErrorCheck ) { int index = -1; @@ -102,7 +103,7 @@ namespace HVACFan { } } } - if (!found) { + if (!found && ErrorCheck) { ShowSevereError("getFanObjectVectorIndex: did not find Fan:SystemModel name =" + objectName + ". Check inputs"); } return index; diff --git a/src/EnergyPlus/HVACFan.hh b/src/EnergyPlus/HVACFan.hh index f3730e8fdb0..b57e0aba593 100644 --- a/src/EnergyPlus/HVACFan.hh +++ b/src/EnergyPlus/HVACFan.hh @@ -64,7 +64,7 @@ namespace EnergyPlus { namespace HVACFan { - int getFanObjectVectorIndex(std::string const &objectName); + int getFanObjectVectorIndex(std::string const &objectName, bool const CheckFlag = true); bool checkIfFanNameIsAFanSystem(std::string const &objectName); diff --git a/src/EnergyPlus/HVACInterfaceManager.cc b/src/EnergyPlus/HVACInterfaceManager.cc index 142bd97aefa..045f1857e2c 100644 --- a/src/EnergyPlus/HVACInterfaceManager.cc +++ b/src/EnergyPlus/HVACInterfaceManager.cc @@ -691,13 +691,23 @@ namespace HVACInterfaceManager { } else { // tank has mass if (MassFlowRate > 0.0) { - TankFinalTemp = (LastTankOutletTemp - (MassFlowRate * Cp * TankInletTemp + PumpHeat) / (MassFlowRate * Cp)) * - std::exp(-(MassFlowRate * Cp) / (ThisTankMass * Cp) * TimeStepSeconds) + - (MassFlowRate * Cp * TankInletTemp + PumpHeat) / (MassFlowRate * Cp); - TankAverageTemp = ((ThisTankMass * Cp) / (MassFlowRate * Cp) * - (LastTankOutletTemp - (MassFlowRate * Cp * TankInletTemp + PumpHeat) / (MassFlowRate * Cp)) * - (1.0 - std::exp(-(MassFlowRate * Cp) / (ThisTankMass * Cp) * TimeStepSeconds)) / TimeStepSeconds + - (MassFlowRate * Cp * TankInletTemp + PumpHeat) / (MassFlowRate * Cp)); + Real64 const mdotCp = MassFlowRate * Cp; + Real64 const mdotCpTempIn = mdotCp * TankInletTemp; + Real64 const tankMassCp = ThisTankMass * Cp; + Real64 const ExponentTerm = mdotCp / tankMassCp * TimeStepSeconds; + if (ExponentTerm >= 700.0) { + TankFinalTemp = (mdotCp * TankInletTemp + PumpHeat) / mdotCp; + + TankAverageTemp = (tankMassCp / mdotCp * (LastTankOutletTemp - (mdotCpTempIn + PumpHeat) / mdotCp) / TimeStepSeconds + + (mdotCpTempIn + PumpHeat) / mdotCp); + } else { + TankFinalTemp = (LastTankOutletTemp - (mdotCpTempIn + PumpHeat) / mdotCp) * std::exp(-ExponentTerm) + + (mdotCpTempIn + PumpHeat) / (MassFlowRate * Cp); + + TankAverageTemp = (tankMassCp / mdotCp * (LastTankOutletTemp - (mdotCpTempIn + PumpHeat) / mdotCp) * + (1.0 - std::exp(-ExponentTerm)) / TimeStepSeconds + + (mdotCpTempIn + PumpHeat) / mdotCp); + } } else { TankFinalTemp = PumpHeat / (ThisTankMass * Cp) * TimeStepSeconds + LastTankOutletTemp; TankAverageTemp = (TankFinalTemp + LastTankOutletTemp) / 2.0; diff --git a/src/EnergyPlus/HVACManager.cc b/src/EnergyPlus/HVACManager.cc index 8dacc439458..45a4de35509 100644 --- a/src/EnergyPlus/HVACManager.cc +++ b/src/EnergyPlus/HVACManager.cc @@ -150,7 +150,6 @@ namespace HVACManager { using DataGlobals::emsCallFromHVACIterationLoop; using DataGlobals::EndHourFlag; using DataGlobals::HourOfDay; - using DataGlobals::HVACTSReporting; using DataGlobals::isPulseZoneSizing; using DataGlobals::KickOffSimulation; using DataGlobals::MetersHaveBeenInitialized; @@ -334,8 +333,9 @@ namespace HVACManager { bool DummyLogical; // Formats - static ObjexxFCL::gio::Fmt Format_10("('node # Temp MassMinAv MassMaxAv TempSP MassFlow MassMin ','MassMax MassSP Press " - " Enthal HumRat Fluid Type')"); + static ObjexxFCL::gio::Fmt Format_10( + "('node # Temp MassMinAv MassMaxAv TempSP MassFlow MassMin ','MassMax MassSP Press " + " Enthal HumRat Fluid Type')"); static ObjexxFCL::gio::Fmt Format_11("('node # Name')"); static ObjexxFCL::gio::Fmt Format_20("(1x,I3,1x,F8.2,2(2x,F8.3),2x,F8.2,4(1x,F13.2),2x,F8.0,2x,F11.2,2x,F9.5,2x,A)"); static ObjexxFCL::gio::Fmt Format_30("(1x,I3,5x,A)"); @@ -508,7 +508,7 @@ namespace HVACManager { } DetectOscillatingZoneTemp(); - UpdateZoneListAndGroupLoads(); // Must be called before UpdateDataandReport(HVACTSReporting) + UpdateZoneListAndGroupLoads(); // Must be called before UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem) UpdateIceFractions(); // Update fraction of ice stored in TES ManageWater(); // update electricity data for net, purchased, sold etc. @@ -534,11 +534,11 @@ namespace HVACManager { } if (DoOutputReporting) { ReportMaxVentilationLoads(); - UpdateDataandReport(HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); if (KindOfSim == ksHVACSizeDesignDay || KindOfSim == ksHVACSizeRunPeriodDesign) { if (hvacSizingSimulationManager) hvacSizingSimulationManager->UpdateSizingLogsSystemStep(); } - UpdateTabularReports(HVACTSReporting); + UpdateTabularReports(OutputProcessor::TimeStepType::TimeStepSystem); } if (ZoneSizingCalc) { UpdateZoneSizing(DuringDay); @@ -569,7 +569,7 @@ namespace HVACManager { PrintedWarmup = true; } CalcMoreNodeInfo(); - UpdateDataandReport(HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); if (KindOfSim == ksHVACSizeDesignDay || KindOfSim == ksHVACSizeRunPeriodDesign) { if (hvacSizingSimulationManager) hvacSizingSimulationManager->UpdateSizingLogsSystemStep(); } @@ -596,7 +596,7 @@ namespace HVACManager { } PrintedWarmup = true; } - UpdateDataandReport(HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); } ManageEMS(emsCallFromEndSystemTimestepAfterHVACReporting, anyEMSRan); // EMS calling point // UPDATE SYSTEM CLOCKS @@ -2011,7 +2011,9 @@ namespace HVACManager { // node mass flow max avail to what air loop can supply SupplyNode = AirToZoneNodeInfo(AirLoopIndex).AirLoopSupplyNodeNum(SupplyIndex); if (Node(SupplyNode).MassFlowRate > 0.0) { - if ((Node(SupplyNode).MassFlowRateSetPoint - Node(SupplyNode).MassFlowRate) > HVACFlowRateToler * 0.01) { + // must include bypass flow for ChangeoverBypass system so that terminal units are not restricted (e.g., MaxAvail is lowered) + if ((Node(SupplyNode).MassFlowRateSetPoint - Node(SupplyNode).MassFlowRate - AirLoopFlow(AirLoopIndex).BypassMassFlow) > + HVACFlowRateToler * 0.01) { FlowRatio = Node(SupplyNode).MassFlowRate / Node(SupplyNode).MassFlowRateSetPoint; for (ZonesCooledIndex = 1; ZonesCooledIndex <= AirToZoneNodeInfo(AirLoopIndex).NumZonesCooled; ++ZonesCooledIndex) { TermInletNode = AirToZoneNodeInfo(AirLoopIndex).TermUnitCoolInletNodes(ZonesCooledIndex); @@ -2020,7 +2022,8 @@ namespace HVACManager { min(Node(TermInletNode).MassFlowRateMaxAvail, Node(TermInletNode).MassFlowRateMinAvail); } } - if ((Node(SupplyNode).MassFlowRateSetPoint - Node(SupplyNode).MassFlowRate) < -HVACFlowRateToler * 0.01) { + if ((Node(SupplyNode).MassFlowRateSetPoint - Node(SupplyNode).MassFlowRate - AirLoopFlow(AirLoopIndex).BypassMassFlow) < + -HVACFlowRateToler * 0.01) { if (Node(SupplyNode).MassFlowRateSetPoint == 0.0) { // CALL ShowFatalError('ResolveAirLoopFlowLimits: Node MassFlowRateSetPoint = 0.0, Node='// & // TRIM(NodeID(SupplyNode))// & @@ -2051,7 +2054,9 @@ namespace HVACManager { // node mass flow max avail to what air loop can supply SupplyNode = AirToZoneNodeInfo(AirLoopIndex).AirLoopSupplyNodeNum(SupplyIndex); if (Node(SupplyNode).MassFlowRate > 0.0) { - if ((Node(SupplyNode).MassFlowRateSetPoint - Node(SupplyNode).MassFlowRate) > HVACFlowRateToler * 0.01) { + // must include bypass flow for ChangeoverBypass system so that terminal units are not restricted (e.g., MaxAvail is lowered) + if ((Node(SupplyNode).MassFlowRateSetPoint - Node(SupplyNode).MassFlowRate - AirLoopFlow(AirLoopIndex).BypassMassFlow) > + HVACFlowRateToler * 0.01) { FlowRatio = Node(SupplyNode).MassFlowRate / Node(SupplyNode).MassFlowRateSetPoint; for (ZonesHeatedIndex = 1; ZonesHeatedIndex <= AirToZoneNodeInfo(AirLoopIndex).NumZonesHeated; ++ZonesHeatedIndex) { TermInletNode = AirToZoneNodeInfo(AirLoopIndex).TermUnitHeatInletNodes(ZonesHeatedIndex); @@ -2060,7 +2065,8 @@ namespace HVACManager { min(Node(TermInletNode).MassFlowRateMaxAvail, Node(TermInletNode).MassFlowRateMinAvail); } } - if ((Node(SupplyNode).MassFlowRateSetPoint - Node(SupplyNode).MassFlowRate) < -HVACFlowRateToler * 0.01) { + if ((Node(SupplyNode).MassFlowRateSetPoint - Node(SupplyNode).MassFlowRate - AirLoopFlow(AirLoopIndex).BypassMassFlow) < + -HVACFlowRateToler * 0.01) { if (Node(SupplyNode).MassFlowRateSetPoint == 0.0) { // CALL ShowFatalError('ResolveAirLoopFlowLimits: Node MassFlowRateSetPoint = 0.0, Node='// & // TRIM(NodeID(SupplyNode))// & @@ -3092,11 +3098,12 @@ namespace HVACManager { Real64 unbalancedExhaustDelta = thisAirLoopFlow.SupFlow - thisAirLoopFlow.OAFlow - thisAirLoopFlow.SysRetFlow; if (unbalancedExhaustDelta > SmallMassFlow) { ShowSevereError("CheckAirLoopFlowBalance: AirLoopHVAC " + DataAirSystems::PrimaryAirSystem(AirLoopNum).Name + - " is unbalanced. Supply is > return plus outdoor air."); + " is unbalanced. Supply is > return plus outdoor air."); ShowContinueErrorTimeStamp(""); - ShowContinueError(" Flows [m3/s at standard density]: Supply=" + General::RoundSigDigits(thisAirLoopFlow.SupFlow / DataEnvironment::StdRhoAir, 6) + - " Return=" + General::RoundSigDigits(thisAirLoopFlow.SysRetFlow / DataEnvironment::StdRhoAir, 6) + - " Outdoor Air=" + General::RoundSigDigits(thisAirLoopFlow.OAFlow / DataEnvironment::StdRhoAir, 6)); + ShowContinueError(" Flows [m3/s at standard density]: Supply=" + + General::RoundSigDigits(thisAirLoopFlow.SupFlow / DataEnvironment::StdRhoAir, 6) + + " Return=" + General::RoundSigDigits(thisAirLoopFlow.SysRetFlow / DataEnvironment::StdRhoAir, 6) + + " Outdoor Air=" + General::RoundSigDigits(thisAirLoopFlow.OAFlow / DataEnvironment::StdRhoAir, 6)); ShowContinueError(" Imbalance=" + General::RoundSigDigits(unbalancedExhaustDelta / DataEnvironment::StdRhoAir, 6)); ShowContinueError(" This error will only be reported once per system."); thisAirLoopFlow.FlowError = true; diff --git a/src/EnergyPlus/HVACUnitaryBypassVAV.cc b/src/EnergyPlus/HVACUnitaryBypassVAV.cc index 9f5ceffb4f3..aaacc1fe0cd 100644 --- a/src/EnergyPlus/HVACUnitaryBypassVAV.cc +++ b/src/EnergyPlus/HVACUnitaryBypassVAV.cc @@ -58,6 +58,7 @@ #include #include #include +#include #include #include #include @@ -79,6 +80,7 @@ #include #include #include +#include #include #include #include @@ -89,6 +91,7 @@ #include #include #include +#include namespace EnergyPlus { @@ -100,7 +103,6 @@ namespace HVACUnitaryBypassVAV { // AUTHOR Richard Raustad // DATE WRITTEN July 2006 // MODIFIED B. Nigusse, FSEC - January 2012 - Added steam and hot water heating coils - // RE-ENGINEERED na // PURPOSE OF THIS MODULE: // To encapsulate the data and algorithms needed to simulate changeover-bypass @@ -124,39 +126,6 @@ namespace HVACUnitaryBypassVAV { // "Ventilation for Changeover-Bypass VAV Systems," D. Stanke, ASHRAE Journal Vol. 46, No. 11, November 2004. // Lawrence Berkeley Laboratory. Nov. 1993. DOE-2 Supplement Version 2.1E, Winklemann et.al. - // OTHER NOTES: None - - // USE STATEMENTS: - // Use statements for data only modules - // Using/Aliasing - using namespace DataPrecisionGlobals; - using namespace DataLoopNode; - using DataEnvironment::OutBaroPress; - using DataEnvironment::OutDryBulbTemp; - using DataEnvironment::StdBaroPress; - using DataEnvironment::StdRhoAir; - using DataGlobals::BeginEnvrnFlag; - using DataGlobals::DoingSizing; - using DataGlobals::ScheduleAlwaysOn; - using DataGlobals::SecInHour; - using DataGlobals::SysSizingCalc; - using DataGlobals::WarmupFlag; - using DataHVACGlobals::BlowThru; - using DataHVACGlobals::Coil_HeatingSteam; - using DataHVACGlobals::Coil_HeatingWater; - using DataHVACGlobals::ContFanCycCoil; - using DataHVACGlobals::CycFanCycCoil; - using DataHVACGlobals::DrawThru; - using DataHVACGlobals::DXElecCoolingPower; - using DataHVACGlobals::DXElecHeatingPower; - using DataHVACGlobals::ElecHeatingCoilPower; - using DataHVACGlobals::OnOffFanPartLoadFraction; - using DataHVACGlobals::SmallAirVolFlow; - using DataHVACGlobals::SmallLoad; - using DataHVACGlobals::SmallMassFlow; - using DXCoils::DXCoilPartLoadRatio; - - // Data // MODULE PARAMETER DEFINITIONS // Compressor operation int const On(1); // Normal compressor operation @@ -174,7 +143,8 @@ namespace HVACUnitaryBypassVAV { // Priority control mode (prioritized thermostat signal) int const CoolingPriority(1); // Controls CBVAV system based on cooling priority int const HeatingPriority(2); // Controls CBVAV system based on heating priority - int const ZonePriority(3); // Controls CBVAV system based on zone priority + int const ZonePriority(3); // Controls CBVAV system based on number of zones priority + int const LoadPriority(4); // Controls CBVAV system based on total load priority // Airflow control for contant fan mode int const UseCompressorOnFlow(1); // Set compressor OFF air flow rate equal to compressor ON air flow rate @@ -238,41 +208,13 @@ namespace HVACUnitaryBypassVAV { // SUBROUTINE INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN July 2006 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Manages the simulation of a changeover-bypass VAV system. Called from SimAirServingZones. - // METHODOLOGY EMPLOYED: - // NA - - // REFERENCES: - // na - - // Using/Aliasing - using General::TrimSigDigits; - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int CBVAVNum; // Index of CBVAV system being simulated - Real64 OnOffAirFlowRatio; // Ratio of compressor ON airflow to average airflow over timestep - Real64 QUnitOut; // Sensible capacity delivered by this air loop system - Real64 QZnLoad; // Zone load required by all zones served by this air loop system - bool HXUnitOn; // flag to enable heat exchanger - - // FLOW + int CBVAVNum = 0; // Index of CBVAV system being simulated + Real64 QUnitOut = 0.0; // Sensible capacity delivered by this air loop system // First time SimUnitaryBypassVAV is called, get the input for all the CBVAVs if (GetInputFlag) { @@ -290,26 +232,26 @@ namespace HVACUnitaryBypassVAV { } else { CBVAVNum = CompIndex; if (CBVAVNum > NumCBVAV || CBVAVNum < 1) { - ShowFatalError("SimUnitaryBypassVAV: Invalid CompIndex passed=" + TrimSigDigits(CBVAVNum) + - ", Number of Units=" + TrimSigDigits(NumCBVAV) + ", Entered Unit name=" + CompName); + ShowFatalError("SimUnitaryBypassVAV: Invalid CompIndex passed=" + General::TrimSigDigits(CBVAVNum) + + ", Number of Units=" + General::TrimSigDigits(NumCBVAV) + ", Entered Unit name=" + CompName); } if (CheckEquipName(CBVAVNum)) { if (CompName != CBVAV(CBVAVNum).Name) { - ShowFatalError("SimUnitaryBypassVAV: Invalid CompIndex passed=" + TrimSigDigits(CBVAVNum) + ", Unit name=" + CompName + + ShowFatalError("SimUnitaryBypassVAV: Invalid CompIndex passed=" + General::TrimSigDigits(CBVAVNum) + ", Unit name=" + CompName + ", stored Unit Name for that index=" + CBVAV(CBVAVNum).Name); } CheckEquipName(CBVAVNum) = false; } } - OnOffAirFlowRatio = 0.0; - HXUnitOn = true; + Real64 OnOffAirFlowRatio = 0.0; // Ratio of compressor ON airflow to average airflow over timestep + bool HXUnitOn = true; // flag to enable heat exchanger // Initialize the changeover-bypass VAV system - InitCBVAV(CBVAVNum, FirstHVACIteration, AirLoopNum, QZnLoad, OnOffAirFlowRatio, HXUnitOn); + InitCBVAV(CBVAVNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); // Simulate the unit - SimCBVAV(CBVAVNum, FirstHVACIteration, QZnLoad, QUnitOut, OnOffAirFlowRatio, HXUnitOn); + SimCBVAV(CBVAVNum, FirstHVACIteration, QUnitOut, OnOffAirFlowRatio, HXUnitOn); // Report the result of the simulation ReportCBVAV(CBVAVNum); @@ -317,7 +259,6 @@ namespace HVACUnitaryBypassVAV { void SimCBVAV(int const CBVAVNum, // Index of the current CBVAV system being simulated bool const FirstHVACIteration, // TRUE if 1st HVAC simulation of system timestep - Real64 &QZnReq, // Zone load for all zones served by this air loop system Real64 &QSensUnitOut, // Sensible delivered capacity [W] Real64 &OnOffAirFlowRatio, // Ratio of compressor ON airflow to AVERAGE airflow over timestep bool &HXUnitOn // flag to enable heat exchanger @@ -327,8 +268,6 @@ namespace HVACUnitaryBypassVAV { // SUBROUTINE INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN July 2006 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Simulate a changeover-bypass VAV system. @@ -336,78 +275,52 @@ namespace HVACUnitaryBypassVAV { // METHODOLOGY EMPLOYED: // Calls ControlCBVAVOutput to obtain the desired unit output - // REFERENCES: - // na - - // Using/Aliasing - using Psychrometrics::PsyHFnTdbW; - - // Locals - Real64 PartLoadFrac; - - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - bool UnitOn; // TRUE if unit is on - int OutletNode; // CBVAV air outlet node - int InletNode; // CBVAV air inlet node - Real64 QTotUnitOut; // Total delivered capacity [W] - Real64 AirMassFlow; // Air mass flow rate [kg/s] - Real64 HeatingPower; // Power consumption of DX heating coil or electric heating coil [W] - Real64 MinOutletHumRat; // Minimum of inlet and outlet air humidity ratio [kg/kg] + QSensUnitOut = 0.0; // probably don't need this initialization + Real64 HeatingPower; // Power consumption of DX heating coil or electric heating coil [W] // zero the fan and DX coils electricity consumption - DXElecCoolingPower = 0.0; - DXElecHeatingPower = 0.0; - ElecHeatingCoilPower = 0.0; + DataHVACGlobals::DXElecCoolingPower = 0.0; + DataHVACGlobals::DXElecHeatingPower = 0.0; + DataHVACGlobals::ElecHeatingCoilPower = 0.0; SaveCompressorPLR = 0.0; // initialize local variables - UnitOn = true; - QSensUnitOut = 0.0; - OutletNode = CBVAV(CBVAVNum).AirOutNode; - InletNode = CBVAV(CBVAVNum).AirInNode; - AirMassFlow = Node(InletNode).MassFlowRate; - PartLoadFrac = 0.0; + bool UnitOn = true; + int OutletNode = CBVAV(CBVAVNum).AirOutNode; + int InletNode = CBVAV(CBVAVNum).AirInNode; + Real64 AirMassFlow = DataLoopNode::Node(InletNode).MassFlowRate; + Real64 PartLoadFrac = 0.0; // set the on/off flags - if (CBVAV(CBVAVNum).OpMode == CycFanCycCoil) { + if (CBVAV(CBVAVNum).OpMode == DataHVACGlobals::CycFanCycCoil) { // cycling unit only runs if there is a cooling or heating load. - if (CBVAV(CBVAVNum).HeatCoolMode == 0 || AirMassFlow < SmallMassFlow) { + if (CBVAV(CBVAVNum).HeatCoolMode == 0 || AirMassFlow < DataHVACGlobals::SmallMassFlow) { UnitOn = false; } - } else if (CBVAV(CBVAVNum).OpMode == ContFanCycCoil) { + } else if (CBVAV(CBVAVNum).OpMode == DataHVACGlobals::ContFanCycCoil) { // continuous unit: fan runs if scheduled on; coil runs only if there is a cooling or heating load - if (AirMassFlow < SmallMassFlow) { + if (AirMassFlow < DataHVACGlobals::SmallMassFlow) { UnitOn = false; } } - OnOffFanPartLoadFraction = 1.0; + DataHVACGlobals::OnOffFanPartLoadFraction = 1.0; if (UnitOn) { - ControlCBVAVOutput(CBVAVNum, FirstHVACIteration, QZnReq, PartLoadFrac, OnOffAirFlowRatio, HXUnitOn); + ControlCBVAVOutput(CBVAVNum, FirstHVACIteration, PartLoadFrac, OnOffAirFlowRatio, HXUnitOn); } else { - CalcCBVAV(CBVAVNum, FirstHVACIteration, PartLoadFrac, QSensUnitOut, QZnReq, OnOffAirFlowRatio, HXUnitOn); + CalcCBVAV(CBVAVNum, FirstHVACIteration, PartLoadFrac, QSensUnitOut, OnOffAirFlowRatio, HXUnitOn); } // calculate delivered capacity - AirMassFlow = Node(OutletNode).MassFlowRate; + AirMassFlow = DataLoopNode::Node(OutletNode).MassFlowRate; - QTotUnitOut = AirMassFlow * (Node(OutletNode).Enthalpy - Node(InletNode).Enthalpy); + Real64 QTotUnitOut = AirMassFlow * (DataLoopNode::Node(OutletNode).Enthalpy - DataLoopNode::Node(InletNode).Enthalpy); - MinOutletHumRat = min(Node(InletNode).HumRat, Node(OutletNode).HumRat); + Real64 MinOutletHumRat = min(DataLoopNode::Node(InletNode).HumRat, DataLoopNode::Node(OutletNode).HumRat); - QSensUnitOut = AirMassFlow * (PsyHFnTdbW(Node(OutletNode).Temp, MinOutletHumRat) - PsyHFnTdbW(Node(InletNode).Temp, MinOutletHumRat)); + QSensUnitOut = AirMassFlow * (Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(OutletNode).Temp, MinOutletHumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(InletNode).Temp, MinOutletHumRat)); // report variables CBVAV(CBVAVNum).CompPartLoadRatio = SaveCompressorPLR; @@ -425,11 +338,11 @@ namespace HVACUnitaryBypassVAV { CBVAV(CBVAVNum).LatHeatEnergyRate = std::abs(max(0.0, (QTotUnitOut - QSensUnitOut))); if (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::CoilDX_HeatingEmpirical) { - HeatingPower = DXElecHeatingPower; + HeatingPower = DataHVACGlobals::DXElecHeatingPower; } else if (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingAirToAirVariableSpeed) { - HeatingPower = DXElecHeatingPower; + HeatingPower = DataHVACGlobals::DXElecHeatingPower; } else if (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingElectric) { - HeatingPower = ElecHeatingCoilPower; + HeatingPower = DataHVACGlobals::ElecHeatingCoilPower; } else { HeatingPower = 0.0; } @@ -441,7 +354,7 @@ namespace HVACUnitaryBypassVAV { locFanElecPower = Fans::GetFanPower(CBVAV(CBVAVNum).FanIndex); } - CBVAV(CBVAVNum).ElecPower = locFanElecPower + DXElecCoolingPower + HeatingPower; + CBVAV(CBVAVNum).ElecPower = locFanElecPower + DataHVACGlobals::DXElecCoolingPower + HeatingPower; } void GetCBVAV() @@ -451,7 +364,6 @@ namespace HVACUnitaryBypassVAV { // AUTHOR Richard Raustad // DATE WRITTEN July 2006 // MODIFIED Bereket Nigusse, FSEC, April 2011: added OA Mixer object type - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Obtains input data for changeover-bypass VAV systems and stores it in CBVAV data structures @@ -459,103 +371,37 @@ namespace HVACUnitaryBypassVAV { // METHODOLOGY EMPLOYED: // Uses "Get" routines to read in data. - // Using/Aliasing - using Fans::GetFanIndex; - using Fans::GetFanInletNode; - using Fans::GetFanOutletNode; - using Fans::GetFanType; - using Fans::GetFanVolFlow; - using General::TrimSigDigits; - auto &GetMinOATDXCoilCompressor(DXCoils::GetMinOATCompressor); - auto &GetDXCoilInletNode(DXCoils::GetCoilInletNode); - auto &GetDXCoilOutletNode(DXCoils::GetCoilOutletNode); - auto &GetDXCoilCondenserInletNode(DXCoils::GetCoilCondenserInletNode); - using BranchNodeConnections::SetUpCompSets; - using BranchNodeConnections::TestCompSet; - using DataAirLoop::AirToZoneNodeInfo; - using DataAirSystems::PrimaryAirSystem; - using DataHVACGlobals::FanType_SimpleConstVolume; - using DataHVACGlobals::FanType_SimpleOnOff; - using DataHVACGlobals::NumPrimaryAirSys; - using DataSizing::AutoSize; - using DataZoneControls::NumTempControlledZones; - using DataZoneControls::TempControlledZone; - using DataZoneEquipment::ZoneEquipConfig; - using DataZoneEquipment::ZoneEquipList; - using DXCoils::GetDXCoilIndex; - using HeatingCoils::GetCoilInletNode; - using HeatingCoils::GetCoilOutletNode; - using HVACHXAssistedCoolingCoil::GetHXDXCoilName; - using MixedAir::GetOAMixerNodeNumbers; - using NodeInputManager::GetOnlySingleNode; - using ScheduleManager::CheckScheduleValueMinMax; - using ScheduleManager::GetScheduleIndex; - auto &GetHXDXCoilInletNode(HVACHXAssistedCoolingCoil::GetCoilInletNode); - auto &GetHXDXCoilOutletNode(HVACHXAssistedCoolingCoil::GetCoilOutletNode); - auto &GetSteamCoilAirInletNode(SteamCoils::GetCoilAirInletNode); - using SteamCoils::GetCoilAirOutletNode; - using SteamCoils::GetCoilSteamInletNode; - using SteamCoils::GetSteamCoilIndex; - auto &GetCoilMaxSteamFlowRate(SteamCoils::GetCoilMaxSteamFlowRate); - using SteamCoils::GetTypeOfCoil; - using WaterCoils::GetCoilMaxWaterFlowRate; - using WaterCoils::GetCoilWaterInletNode; - auto &GetWaterCoilInletNode(WaterCoils::GetCoilInletNode); - auto &GetWaterCoilOutletNode(WaterCoils::GetCoilOutletNode); - using FluidProperties::GetSatDensityRefrig; - // SUBROUTINE PARAMETER DEFINITIONS: static std::string const getUnitaryHeatCoolVAVChangeoverBypass("GetUnitaryHeatCool:VAVChangeoverBypass"); // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int CBVAVIndex; // Loop index - int CBVAVNum; // Current CBVAV number - Array1D_string Alphas(19); // Alpha items for object - Array1D Numbers(11); // Numeric items for object - std::string CompSetFanInlet; // Used in SetUpCompSets call - std::string CompSetCoolInlet; // Used in SetUpCompSets call - std::string CompSetFanOutlet; // Used in SetUpCompSets call - std::string CompSetCoolOutlet; // Used in SetUpCompSets call - int NumAlphas; // Number of Alphas for each GetObjectItem call - int NumNumbers; // Number of Numbers for each GetObjectItem call - int IOStatus; // Used in GetObjectItem - static bool ErrorsFound(false); // Set to true if errors in input, fatal at end of routine - static bool DXErrorsFound(false); // Set to true if errors in get coil input - // unused0509 LOGICAL :: FanErrorsFound=.FALSE. ! Set to true if errors in get fan input - std::string CurrentModuleObject; // Object type for getting and error messages + int NumAlphas; // Number of Alphas for each GetObjectItem call + int NumNumbers; // Number of Numbers for each GetObjectItem call + int IOStatus; // Used in GetObjectItem + std::string CompSetFanInlet; // Used in SetUpCompSets call + std::string CompSetCoolInlet; // Used in SetUpCompSets call + std::string CompSetFanOutlet; // Used in SetUpCompSets call + std::string CompSetCoolOutlet; // Used in SetUpCompSets call + static bool ErrorsFound(false); // Set to true if errors in input, fatal at end of routine + static bool DXErrorsFound(false); // Set to true if errors in get coil input static bool FanErrFlag(false); // Error flag returned during CALL to GetFanType static bool errFlag(false); // Error flag returned during CALL to mining functions - int AirLoopNum; // Index to air loop served by this system - int AirLoopZoneNum; // Index to controlled zone - int BranchNum; // Index to branch containing this system - int CompNum; // Index to this system Array1D_int OANodeNums(4); // Node numbers of OA mixer (OA, EA, RA, MA) std::string HXDXCoolCoilName; // Name of DX cooling coil used with Heat Exchanger Assisted Cooling Coil std::string MixerInletNodeName; // Name of mixer inlet node std::string SplitterOutletNodeName; // Name of splitter outlet node - int ControlNodeNum; // Number of control zone when humidity control is specified - int TstatZoneNum; // Index to thermostats - bool FoundTstatZone; // TRUE if thermostat found in controlled zone bool OANodeErrFlag; // TRUE if DX Coil condenser node is not found bool DXCoilErrFlag; // used in warning messages - Array1D_string cAlphaFields(19); // Alpha field names - Array1D_string cNumericFields(11); // Numeric field names - Array1D_bool lAlphaBlanks(19); // Logical array, alpha field input BLANK = .TRUE. - Array1D_bool lNumericBlanks(11); // Logical array, numeric field input BLANK = .TRUE. - int HeatCoilInletNodeNum; // Heating coil air inlet node number - int HeatCoilOutletNodeNum; // Heating coil air outlet node number - int SteamIndex; // steam coil index - Real64 SteamDensity; // steam coil steam density - - Alphas = ""; - Numbers = 0.0; - cAlphaFields = ""; - cNumericFields = ""; - lAlphaBlanks = true; - lNumericBlanks = true; + + Array1D_string Alphas(20, ""); + Array1D Numbers(9, 0.0); + Array1D_string cAlphaFields(20, ""); + Array1D_string cNumericFields(9, ""); + Array1D_bool lAlphaBlanks(20, true); + Array1D_bool lNumericBlanks(9, true); // find the number of each type of CBVAV unit - CurrentModuleObject = "AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass"; + std::string CurrentModuleObject = "AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass"; NumCBVAV = inputProcessor->getNumObjectsFound(CurrentModuleObject); // allocate the data structures @@ -563,11 +409,11 @@ namespace HVACUnitaryBypassVAV { CheckEquipName.dimension(NumCBVAV, true); // loop over CBVAV units; get and load the input data - for (CBVAVIndex = 1; CBVAVIndex <= NumCBVAV; ++CBVAVIndex) { - HeatCoilInletNodeNum = 0; - HeatCoilOutletNodeNum = 0; + for (int CBVAVNum = 1; CBVAVNum <= NumCBVAV; ++CBVAVNum) { + int HeatCoilInletNodeNum = 0; + int HeatCoilOutletNodeNum = 0; inputProcessor->getObjectItem(CurrentModuleObject, - CBVAVIndex, + CBVAVNum, Alphas, NumAlphas, Numbers, @@ -577,16 +423,15 @@ namespace HVACUnitaryBypassVAV { lAlphaBlanks, cAlphaFields, cNumericFields); - CBVAVNum = CBVAVIndex; UtilityRoutines::IsNameEmpty(Alphas(1), CurrentModuleObject, ErrorsFound); CBVAV(CBVAVNum).Name = Alphas(1); CBVAV(CBVAVNum).UnitType = CurrentModuleObject; CBVAV(CBVAVNum).Sched = Alphas(2); if (lAlphaBlanks(2)) { - CBVAV(CBVAVNum).SchedPtr = ScheduleAlwaysOn; + CBVAV(CBVAVNum).SchedPtr = DataGlobals::ScheduleAlwaysOn; } else { - CBVAV(CBVAVNum).SchedPtr = GetScheduleIndex(Alphas(2)); // convert schedule name to pointer (index number) + CBVAV(CBVAVNum).SchedPtr = ScheduleManager::GetScheduleIndex(Alphas(2)); // convert schedule name to pointer (index number) if (CBVAV(CBVAVNum).SchedPtr == 0) { ShowSevereError(CurrentModuleObject + ' ' + cAlphaFields(2) + " not found = " + Alphas(2)); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); @@ -595,94 +440,152 @@ namespace HVACUnitaryBypassVAV { } CBVAV(CBVAVNum).MaxCoolAirVolFlow = Numbers(1); - if (CBVAV(CBVAVNum).MaxCoolAirVolFlow <= 0.0 && CBVAV(CBVAVNum).MaxCoolAirVolFlow != AutoSize) { - ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(1) + " = " + TrimSigDigits(Numbers(1), 7)); + if (CBVAV(CBVAVNum).MaxCoolAirVolFlow <= 0.0 && CBVAV(CBVAVNum).MaxCoolAirVolFlow != DataSizing::AutoSize) { + ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(1) + " = " + General::TrimSigDigits(Numbers(1), 7)); ShowContinueError(cNumericFields(1) + " must be greater than zero."); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ErrorsFound = true; } CBVAV(CBVAVNum).MaxHeatAirVolFlow = Numbers(2); - if (CBVAV(CBVAVNum).MaxHeatAirVolFlow <= 0.0 && CBVAV(CBVAVNum).MaxHeatAirVolFlow != AutoSize) { - ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(2) + " = " + TrimSigDigits(Numbers(2), 7)); + if (CBVAV(CBVAVNum).MaxHeatAirVolFlow <= 0.0 && CBVAV(CBVAVNum).MaxHeatAirVolFlow != DataSizing::AutoSize) { + ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(2) + " = " + General::TrimSigDigits(Numbers(2), 7)); ShowContinueError(cNumericFields(2) + " must be greater than zero."); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ErrorsFound = true; } CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow = Numbers(3); - if (CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow < 0.0 && CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != AutoSize) { - ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(3) + " = " + TrimSigDigits(Numbers(3), 7)); + if (CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow < 0.0 && CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != DataSizing::AutoSize) { + ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(3) + " = " + General::TrimSigDigits(Numbers(3), 7)); ShowContinueError(cNumericFields(3) + " must be greater than or equal to zero."); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ErrorsFound = true; } CBVAV(CBVAVNum).CoolOutAirVolFlow = Numbers(4); - if (CBVAV(CBVAVNum).CoolOutAirVolFlow < 0.0 && CBVAV(CBVAVNum).CoolOutAirVolFlow != AutoSize) { - ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(4) + " = " + TrimSigDigits(Numbers(4), 7)); + if (CBVAV(CBVAVNum).CoolOutAirVolFlow < 0.0 && CBVAV(CBVAVNum).CoolOutAirVolFlow != DataSizing::AutoSize) { + ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(4) + " = " + General::TrimSigDigits(Numbers(4), 7)); ShowContinueError(cNumericFields(4) + " must be greater than or equal to zero."); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ErrorsFound = true; } CBVAV(CBVAVNum).HeatOutAirVolFlow = Numbers(5); - if (CBVAV(CBVAVNum).HeatOutAirVolFlow < 0.0 && CBVAV(CBVAVNum).HeatOutAirVolFlow != AutoSize) { - ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(5) + " = " + TrimSigDigits(Numbers(5), 7)); + if (CBVAV(CBVAVNum).HeatOutAirVolFlow < 0.0 && CBVAV(CBVAVNum).HeatOutAirVolFlow != DataSizing::AutoSize) { + ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(5) + " = " + General::TrimSigDigits(Numbers(5), 7)); ShowContinueError(cNumericFields(5) + " must be greater than or equal to zero."); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ErrorsFound = true; } CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow = Numbers(6); - if (CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow < 0.0 && CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow != AutoSize) { - ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(6) + " = " + TrimSigDigits(Numbers(6), 7)); + if (CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow < 0.0 && CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow != DataSizing::AutoSize) { + ShowSevereError(CurrentModuleObject + " illegal " + cNumericFields(6) + " = " + General::TrimSigDigits(Numbers(6), 7)); ShowContinueError(cNumericFields(6) + " must be greater than or equal to zero."); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ErrorsFound = true; } - CBVAV(CBVAVNum).OutAirSchPtr = GetScheduleIndex(Alphas(3)); // convert schedule name to pointer (index number) + CBVAV(CBVAVNum).OutAirSchPtr = ScheduleManager::GetScheduleIndex(Alphas(3)); // convert schedule name to pointer (index number) if (CBVAV(CBVAVNum).OutAirSchPtr != 0) { - if (!CheckScheduleValueMinMax(CBVAV(CBVAVNum).OutAirSchPtr, "<", 0.0, ">", 1.0)) { + if (!ScheduleManager::CheckScheduleValueMinMax(CBVAV(CBVAVNum).OutAirSchPtr, "<", 0.0, ">", 1.0)) { ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); ShowContinueError("The schedule values in " + cAlphaFields(3) + " must be 0 to 1."); ErrorsFound = true; } } - CBVAV(CBVAVNum).AirInNode = - GetOnlySingleNode(Alphas(4), ErrorsFound, CurrentModuleObject, Alphas(1), NodeType_Air, NodeConnectionType_Inlet, 1, ObjectIsParent); + CBVAV(CBVAVNum).AirInNode = NodeInputManager::GetOnlySingleNode(Alphas(4), + ErrorsFound, + CurrentModuleObject, + Alphas(1), + DataLoopNode::NodeType_Air, + DataLoopNode::NodeConnectionType_Inlet, + 1, + DataLoopNode::ObjectIsParent); MixerInletNodeName = Alphas(5); SplitterOutletNodeName = Alphas(6); - CBVAV(CBVAVNum).AirOutNode = - GetOnlySingleNode(Alphas(7), ErrorsFound, CurrentModuleObject, Alphas(1), NodeType_Air, NodeConnectionType_Outlet, 1, ObjectIsParent); - - CBVAV(CBVAVNum).MixerInletAirNode = GetOnlySingleNode( - MixerInletNodeName, ErrorsFound, CurrentModuleObject, Alphas(1), NodeType_Air, NodeConnectionType_Internal, 1, ObjectIsParent); - - CBVAV(CBVAVNum).MixerInletAirNode = GetOnlySingleNode(MixerInletNodeName, - ErrorsFound, - CurrentModuleObject, - Alphas(1) + "_Mixer", - NodeType_Air, - NodeConnectionType_Outlet, - 1, - ObjectIsParent); - - CBVAV(CBVAVNum).SplitterOutletAirNode = GetOnlySingleNode( - SplitterOutletNodeName, ErrorsFound, CurrentModuleObject, Alphas(1), NodeType_Air, NodeConnectionType_Internal, 1, ObjectIsParent); - - CBVAV(CBVAVNum).SplitterOutletAirNode = GetOnlySingleNode(SplitterOutletNodeName, - ErrorsFound, - CurrentModuleObject, - Alphas(1) + "_Splitter", - NodeType_Air, - NodeConnectionType_Inlet, - 1, - ObjectIsParent); + CBVAV(CBVAVNum).AirOutNode = NodeInputManager::GetOnlySingleNode(Alphas(7), + ErrorsFound, + CurrentModuleObject, + Alphas(1), + DataLoopNode::NodeType_Air, + DataLoopNode::NodeConnectionType_Outlet, + 1, + DataLoopNode::ObjectIsParent); + + CBVAV(CBVAVNum).SplitterOutletAirNode = NodeInputManager::GetOnlySingleNode(SplitterOutletNodeName, + ErrorsFound, + CurrentModuleObject, + Alphas(1), + DataLoopNode::NodeType_Air, + DataLoopNode::NodeConnectionType_Internal, + 1, + DataLoopNode::ObjectIsParent); + + if (NumAlphas > 19 && !lAlphaBlanks(20)) { + CBVAV(CBVAVNum).PlenumMixerInletAirNode = NodeInputManager::GetOnlySingleNode(Alphas(20), + ErrorsFound, + CurrentModuleObject, + Alphas(1), + DataLoopNode::NodeType_Air, + DataLoopNode::NodeConnectionType_Internal, + 1, + DataLoopNode::ObjectIsParent); + CBVAV(CBVAVNum).PlenumMixerInletAirNode = NodeInputManager::GetOnlySingleNode(Alphas(20), + ErrorsFound, + CurrentModuleObject, + Alphas(1) + "_PlenumMixerInlet", + DataLoopNode::NodeType_Air, + DataLoopNode::NodeConnectionType_Outlet, + 1, + DataLoopNode::ObjectIsParent); + } + + CBVAV(CBVAVNum).plenumIndex = ZonePlenum::getReturnPlenumIndexFromInletNode(CBVAV(CBVAVNum).PlenumMixerInletAirNode); + CBVAV(CBVAVNum).mixerIndex = MixerComponent::getZoneMixerIndexFromInletNode(CBVAV(CBVAVNum).PlenumMixerInletAirNode); + if (CBVAV(CBVAVNum).plenumIndex > 0 && CBVAV(CBVAVNum).mixerIndex > 0) { + ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); + ShowContinueError("Illegal connection for " + cAlphaFields(20) + " = \"" + Alphas(20) + "\"."); + ShowContinueError(cAlphaFields(20) + " cannot be connected to both an AirloopHVAC:ReturnPlenum and an AirloopHVAC:ZoneMixer."); + ErrorsFound = true; + } else if (CBVAV(CBVAVNum).plenumIndex == 0 && CBVAV(CBVAVNum).mixerIndex == 0 && CBVAV(CBVAVNum).PlenumMixerInletAirNode > 0) { + ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); + ShowContinueError("Illegal connection for " + cAlphaFields(20) + " = \"" + Alphas(20) + "\"."); + ShowContinueError(cAlphaFields(20) + + " must be connected to an AirloopHVAC:ReturnPlenum or AirloopHVAC:ZoneMixer. No connection found."); + ErrorsFound = true; + } + + CBVAV(CBVAVNum).MixerInletAirNode = NodeInputManager::GetOnlySingleNode(MixerInletNodeName, + ErrorsFound, + CurrentModuleObject, + Alphas(1), + DataLoopNode::NodeType_Air, + DataLoopNode::NodeConnectionType_Internal, + 1, + DataLoopNode::ObjectIsParent); + + CBVAV(CBVAVNum).MixerInletAirNode = NodeInputManager::GetOnlySingleNode(MixerInletNodeName, + ErrorsFound, + CurrentModuleObject, + Alphas(1) + "_Mixer", + DataLoopNode::NodeType_Air, + DataLoopNode::NodeConnectionType_Outlet, + 1, + DataLoopNode::ObjectIsParent); + + CBVAV(CBVAVNum).SplitterOutletAirNode = NodeInputManager::GetOnlySingleNode(SplitterOutletNodeName, + ErrorsFound, + CurrentModuleObject, + Alphas(1) + "_Splitter", + DataLoopNode::NodeType_Air, + DataLoopNode::NodeConnectionType_Inlet, + 1, + DataLoopNode::ObjectIsParent); CBVAV(CBVAVNum).OAMixType = Alphas(8); CBVAV(CBVAVNum).OAMixName = Alphas(9); @@ -694,7 +597,7 @@ namespace HVACUnitaryBypassVAV { ErrorsFound = true; } else { // Get OA Mixer node numbers - OANodeNums = GetOAMixerNodeNumbers(CBVAV(CBVAVNum).OAMixName, errFlag); + OANodeNums = MixedAir::GetOAMixerNodeNumbers(CBVAV(CBVAVNum).OAMixName, errFlag); if (errFlag) { ShowContinueError("that was specified in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ShowContinueError("..OutdoorAir:Mixer is required. Enter an OutdoorAir:Mixer object with this name."); @@ -749,25 +652,25 @@ namespace HVACUnitaryBypassVAV { fanOutletNode = HVACFan::fanObjs[CBVAV(CBVAVNum).FanIndex]->outletNodeNum; CBVAV(CBVAVNum).FanVolFlow = HVACFan::fanObjs[CBVAV(CBVAVNum).FanIndex]->designAirVolFlowRate; } else { - GetFanType(CBVAV(CBVAVNum).FanName, CBVAV(CBVAVNum).FanType_Num, FanErrFlag, CurrentModuleObject, CBVAV(CBVAVNum).Name); - CBVAV(CBVAVNum).FanInletNodeNum = GetFanInletNode(CBVAV(CBVAVNum).FanType, CBVAV(CBVAVNum).FanName, FanErrFlag); - fanOutletNode = GetFanOutletNode(CBVAV(CBVAVNum).FanType, CBVAV(CBVAVNum).FanName, ErrorsFound); - GetFanIndex(CBVAV(CBVAVNum).FanName, CBVAV(CBVAVNum).FanIndex, FanErrFlag); - GetFanVolFlow(CBVAV(CBVAVNum).FanIndex, CBVAV(CBVAVNum).FanVolFlow); + Fans::GetFanType(CBVAV(CBVAVNum).FanName, CBVAV(CBVAVNum).FanType_Num, FanErrFlag, CurrentModuleObject, CBVAV(CBVAVNum).Name); + CBVAV(CBVAVNum).FanInletNodeNum = Fans::GetFanInletNode(CBVAV(CBVAVNum).FanType, CBVAV(CBVAVNum).FanName, FanErrFlag); + fanOutletNode = Fans::GetFanOutletNode(CBVAV(CBVAVNum).FanType, CBVAV(CBVAVNum).FanName, ErrorsFound); + Fans::GetFanIndex(CBVAV(CBVAVNum).FanName, CBVAV(CBVAVNum).FanIndex, FanErrFlag); + Fans::GetFanVolFlow(CBVAV(CBVAVNum).FanIndex, CBVAV(CBVAVNum).FanVolFlow); } } if (UtilityRoutines::SameString(Alphas(12), "BlowThrough")) { - CBVAV(CBVAVNum).FanPlace = BlowThru; + CBVAV(CBVAVNum).FanPlace = DataHVACGlobals::BlowThru; } else if (UtilityRoutines::SameString(Alphas(12), "DrawThrough")) { - CBVAV(CBVAVNum).FanPlace = DrawThru; + CBVAV(CBVAVNum).FanPlace = DataHVACGlobals::DrawThru; } else { ShowSevereError(CurrentModuleObject + " illegal " + cAlphaFields(12) + " = " + Alphas(12)); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ErrorsFound = true; } - if (CBVAV(CBVAVNum).FanPlace == DrawThru) { + if (CBVAV(CBVAVNum).FanPlace == DataHVACGlobals::DrawThru) { if (CBVAV(CBVAVNum).SplitterOutletAirNode != fanOutletNode) { ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); ShowContinueError("Illegal " + cAlphaFields(6) + " = " + SplitterOutletNodeName + '.'); @@ -778,16 +681,16 @@ namespace HVACUnitaryBypassVAV { } } - if (CBVAV(CBVAVNum).FanVolFlow != AutoSize) { - if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxCoolAirVolFlow && CBVAV(CBVAVNum).MaxCoolAirVolFlow != AutoSize) { - ShowWarningError(CurrentModuleObject + " - air flow rate = " + TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in " + + if (CBVAV(CBVAVNum).FanVolFlow != DataSizing::AutoSize) { + if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxCoolAirVolFlow && CBVAV(CBVAVNum).MaxCoolAirVolFlow != DataSizing::AutoSize) { + ShowWarningError(CurrentModuleObject + " - air flow rate = " + General::TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in " + cAlphaFields(11) + " = " + CBVAV(CBVAVNum).FanName + " is less than the " + cNumericFields(1)); ShowContinueError(' ' + cNumericFields(1) + " is reset to the fan flow rate and the simulation continues."); ShowContinueError(" Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); CBVAV(CBVAVNum).MaxCoolAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; } - if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxHeatAirVolFlow && CBVAV(CBVAVNum).MaxHeatAirVolFlow != AutoSize) { - ShowWarningError(CurrentModuleObject + " - air flow rate = " + TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in " + + if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxHeatAirVolFlow && CBVAV(CBVAVNum).MaxHeatAirVolFlow != DataSizing::AutoSize) { + ShowWarningError(CurrentModuleObject + " - air flow rate = " + General::TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in " + cAlphaFields(11) + " = " + CBVAV(CBVAVNum).FanName + " is less than the " + cNumericFields(2)); ShowContinueError(' ' + cNumericFields(2) + " is reset to the fan flow rate and the simulation continues."); ShowContinueError(" Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); @@ -796,8 +699,8 @@ namespace HVACUnitaryBypassVAV { } // only check that OA flow in cooling is >= SA flow in cooling when they are not autosized - if (CBVAV(CBVAVNum).CoolOutAirVolFlow > CBVAV(CBVAVNum).MaxCoolAirVolFlow && CBVAV(CBVAVNum).CoolOutAirVolFlow != AutoSize && - CBVAV(CBVAVNum).MaxCoolAirVolFlow != AutoSize) { + if (CBVAV(CBVAVNum).CoolOutAirVolFlow > CBVAV(CBVAVNum).MaxCoolAirVolFlow && CBVAV(CBVAVNum).CoolOutAirVolFlow != DataSizing::AutoSize && + CBVAV(CBVAVNum).MaxCoolAirVolFlow != DataSizing::AutoSize) { ShowWarningError(CurrentModuleObject + ": " + cNumericFields(4) + " cannot be greater than " + cNumericFields(1)); ShowContinueError(' ' + cNumericFields(4) + " is reset to the fan flow rate and the simulation continues."); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); @@ -805,8 +708,8 @@ namespace HVACUnitaryBypassVAV { } // only check that SA flow in heating is >= OA flow in heating when they are not autosized - if (CBVAV(CBVAVNum).HeatOutAirVolFlow > CBVAV(CBVAVNum).MaxHeatAirVolFlow && CBVAV(CBVAVNum).HeatOutAirVolFlow != AutoSize && - CBVAV(CBVAVNum).MaxHeatAirVolFlow != AutoSize) { + if (CBVAV(CBVAVNum).HeatOutAirVolFlow > CBVAV(CBVAVNum).MaxHeatAirVolFlow && CBVAV(CBVAVNum).HeatOutAirVolFlow != DataSizing::AutoSize && + CBVAV(CBVAVNum).MaxHeatAirVolFlow != DataSizing::AutoSize) { ShowWarningError(CurrentModuleObject + ": " + cNumericFields(5) + " cannot be greater than " + cNumericFields(2)); ShowContinueError(' ' + cNumericFields(5) + " is reset to the fan flow rate and the simulation continues."); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); @@ -824,9 +727,9 @@ namespace HVACUnitaryBypassVAV { if (UtilityRoutines::SameString(Alphas(14), "Coil:Cooling:DX:SingleSpeed")) { CBVAV(CBVAVNum).DXCoolCoilType_Num = DataHVACGlobals::CoilDX_CoolingSingleSpeed; CBVAV(CBVAVNum).DXCoilInletNode = - GetDXCoilInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); + DXCoils::GetCoilInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); CBVAV(CBVAVNum).DXCoilOutletNode = - GetDXCoilOutletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); + DXCoils::GetCoilOutletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); if (DXErrorsFound) { ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); ShowContinueError("Coil:Cooling:DX:SingleSpeed \"" + CBVAV(CBVAVNum).DXCoolCoilName + "\" not found."); @@ -834,14 +737,14 @@ namespace HVACUnitaryBypassVAV { } else { DXCoilErrFlag = false; - GetDXCoilIndex( + DXCoils::GetDXCoilIndex( CBVAV(CBVAVNum).DXCoolCoilName, CBVAV(CBVAVNum).DXCoolCoilIndexNum, DXCoilErrFlag, CBVAV(CBVAVNum).DXCoolCoilType); if (DXCoilErrFlag) ShowContinueError("...occurs in " + CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); // Mine outdoor condenser node from DX coil object OANodeErrFlag = false; CBVAV(CBVAVNum).CondenserNodeNum = - GetDXCoilCondenserInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, OANodeErrFlag); + DXCoils::GetCoilCondenserInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, OANodeErrFlag); if (OANodeErrFlag) ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); } } else if (UtilityRoutines::SameString(Alphas(14), "Coil:Cooling:DX:VariableSpeed")) { @@ -867,11 +770,12 @@ namespace HVACUnitaryBypassVAV { } else if (UtilityRoutines::SameString(Alphas(14), "CoilSystem:Cooling:DX:HeatExchangerAssisted")) { CBVAV(CBVAVNum).DXCoolCoilType_Num = DataHVACGlobals::CoilDX_CoolingHXAssisted; - HXDXCoolCoilName = GetHXDXCoilName(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); + HXDXCoolCoilName = + HVACHXAssistedCoolingCoil::GetHXDXCoilName(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); CBVAV(CBVAVNum).DXCoilInletNode = - GetHXDXCoilInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); + HVACHXAssistedCoolingCoil::GetCoilInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); CBVAV(CBVAVNum).DXCoilOutletNode = - GetHXDXCoilOutletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); + HVACHXAssistedCoolingCoil::GetCoilOutletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); if (DXErrorsFound) { ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); ShowContinueError("CoilSystem:Cooling:DX:HeatExchangerAssisted \"" + CBVAV(CBVAVNum).DXCoolCoilName + "\" not found."); @@ -881,35 +785,39 @@ namespace HVACUnitaryBypassVAV { int ActualCoolCoilType = HVACHXAssistedCoolingCoil::GetCoilObjectTypeNum( CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); if (ActualCoolCoilType == DataHVACGlobals::CoilDX_CoolingSingleSpeed) { - GetDXCoilIndex(GetHXDXCoilName(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXCoilErrFlag), - CBVAV(CBVAVNum).DXCoolCoilIndexNum, - DXCoilErrFlag, - "Coil:Cooling:DX:SingleSpeed"); + DXCoils::GetDXCoilIndex(HVACHXAssistedCoolingCoil::GetHXDXCoilName( + CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXCoilErrFlag), + CBVAV(CBVAVNum).DXCoolCoilIndexNum, + DXCoilErrFlag, + "Coil:Cooling:DX:SingleSpeed"); if (DXCoilErrFlag) ShowContinueError("...occurs in " + CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); // Mine outdoor condenser node from DX coil through HXAssistedDXCoil object OANodeErrFlag = false; CBVAV(CBVAVNum).CondenserNodeNum = - GetDXCoilCondenserInletNode("Coil:Cooling:DX:SingleSpeed", HXDXCoolCoilName, OANodeErrFlag); + DXCoils::GetCoilCondenserInletNode("Coil:Cooling:DX:SingleSpeed", HXDXCoolCoilName, OANodeErrFlag); if (OANodeErrFlag) ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); } else if (ActualCoolCoilType == DataHVACGlobals::Coil_CoolingAirToAirVariableSpeed) { CBVAV(CBVAVNum).DXCoolCoilIndexNum = VariableSpeedCoils::GetCoilIndexVariableSpeed( "Coil:Cooling:DX:VariableSpeed", - GetHXDXCoilName(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXCoilErrFlag), + HVACHXAssistedCoolingCoil::GetHXDXCoilName( + CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXCoilErrFlag), DXCoilErrFlag); if (DXCoilErrFlag) ShowContinueError("...occurs in " + CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); OANodeErrFlag = false; CBVAV(CBVAVNum).CondenserNodeNum = VariableSpeedCoils::GetVSCoilCondenserInletNode( - GetHXDXCoilName(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXCoilErrFlag), OANodeErrFlag); + HVACHXAssistedCoolingCoil::GetHXDXCoilName( + CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXCoilErrFlag), + OANodeErrFlag); if (OANodeErrFlag) ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); } } } else if (UtilityRoutines::SameString(Alphas(14), "Coil:Cooling:DX:TwoStageWithHumidityControlMode")) { CBVAV(CBVAVNum).DXCoolCoilType_Num = DataHVACGlobals::CoilDX_CoolingTwoStageWHumControl; CBVAV(CBVAVNum).DXCoilInletNode = - GetDXCoilInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); + DXCoils::GetCoilInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); CBVAV(CBVAVNum).DXCoilOutletNode = - GetDXCoilOutletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); + DXCoils::GetCoilOutletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, DXErrorsFound); if (DXErrorsFound) { ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); ShowContinueError("Coil:Cooling:DX:TwoStageWithHumidityControlMode \"" + CBVAV(CBVAVNum).DXCoolCoilName + "\" not found."); @@ -917,14 +825,14 @@ namespace HVACUnitaryBypassVAV { } else { DXCoilErrFlag = false; - GetDXCoilIndex( + DXCoils::GetDXCoilIndex( CBVAV(CBVAVNum).DXCoolCoilName, CBVAV(CBVAVNum).DXCoolCoilIndexNum, DXCoilErrFlag, CBVAV(CBVAVNum).DXCoolCoilType); if (DXCoilErrFlag) ShowContinueError("...occurs in " + CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); // Mine outdoor condenser node from multimode DX coil object OANodeErrFlag = false; CBVAV(CBVAVNum).CondenserNodeNum = - GetDXCoilCondenserInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, OANodeErrFlag); + DXCoils::GetCoilCondenserInletNode(CBVAV(CBVAVNum).DXCoolCoilType, CBVAV(CBVAVNum).DXCoolCoilName, OANodeErrFlag); if (OANodeErrFlag) ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); } } @@ -935,9 +843,9 @@ namespace HVACUnitaryBypassVAV { ErrorsFound = true; } - CBVAV(CBVAVNum).FanOpModeSchedPtr = GetScheduleIndex(Alphas(13)); // convert schedule name to pointer (index number) + CBVAV(CBVAVNum).FanOpModeSchedPtr = ScheduleManager::GetScheduleIndex(Alphas(13)); // convert schedule name to pointer (index number) if (CBVAV(CBVAVNum).FanOpModeSchedPtr != 0) { - if (!CheckScheduleValueMinMax(CBVAV(CBVAVNum).FanOpModeSchedPtr, "<", 0.0, ">", 1.0)) { + if (!ScheduleManager::CheckScheduleValueMinMax(CBVAV(CBVAVNum).FanOpModeSchedPtr, "<", 0.0, ">", 1.0)) { ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); ShowContinueError("The schedule values in " + cAlphaFields(13) + " must be 0 to 1."); ShowContinueError("A value of 0 represents cycling fan mode, any other value up to 1 represents constant fan mode."); @@ -945,11 +853,12 @@ namespace HVACUnitaryBypassVAV { } // Check supply air fan operating mode for cycling fan, if NOT cycling fan set AirFlowControl - if (!CheckScheduleValueMinMax(CBVAV(CBVAVNum).FanOpModeSchedPtr, ">=", 0.0, "<=", 0.0)) { // Autodesk:Note Range is 0 to 0? + if (!ScheduleManager::CheckScheduleValueMinMax( + CBVAV(CBVAVNum).FanOpModeSchedPtr, ">=", 0.0, "<=", 0.0)) { // Autodesk:Note Range is 0 to 0? // set air flow control mode, // UseCompressorOnFlow = operate at last cooling or heating air flow requested when compressor is off // UseCompressorOffFlow = operate at value specified by user (no input for this object type, UseCompONFlow) - // AirFlowControl only valid if fan opmode = ContFanCycCoil + // AirFlowControl only valid if fan opmode = DataHVACGlobals::ContFanCycCoil if (CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow == 0.0) { CBVAV(CBVAVNum).AirFlowControl = UseCompressorOnFlow; } else { @@ -963,7 +872,7 @@ namespace HVACUnitaryBypassVAV { ShowContinueError(cAlphaFields(13) + " = " + Alphas(13) + " not found. Supply air fan operating mode set to constant operation and simulation continues."); } - CBVAV(CBVAVNum).OpMode = ContFanCycCoil; + CBVAV(CBVAVNum).OpMode = DataHVACGlobals::ContFanCycCoil; if (CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow == 0.0) { CBVAV(CBVAVNum).AirFlowControl = UseCompressorOnFlow; } else { @@ -972,10 +881,10 @@ namespace HVACUnitaryBypassVAV { } // Check FanVolFlow, must be >= CBVAV flow - if (CBVAV(CBVAVNum).FanVolFlow != AutoSize) { - if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow && CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != AutoSize && - CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != 0.0) { - ShowWarningError(CurrentModuleObject + " - air flow rate = " + TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in " + + if (CBVAV(CBVAVNum).FanVolFlow != DataSizing::AutoSize) { + if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow && + CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != DataSizing::AutoSize && CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != 0.0) { + ShowWarningError(CurrentModuleObject + " - air flow rate = " + General::TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in " + cAlphaFields(11) + " = " + CBVAV(CBVAVNum).FanName + " is less than " + cNumericFields(3)); ShowContinueError(' ' + cNumericFields(3) + " is reset to the fan flow rate and the simulation continues."); ShowContinueError(" Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); @@ -985,7 +894,7 @@ namespace HVACUnitaryBypassVAV { // only check that OA flow when compressor is OFF is >= SA flow when compressor is OFF when both are not autosized and // that MaxNoCoolHeatAirVolFlow is /= 0 (trigger to use compressor ON flow, see AirFlowControl variable initialization above) if (CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow > CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow && - CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow != AutoSize && CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != AutoSize && + CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow != DataSizing::AutoSize && CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != DataSizing::AutoSize && CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != 0.0) { ShowWarningError(CurrentModuleObject + ": " + cNumericFields(6) + " cannot be greater than " + cNumericFields(3)); ShowContinueError(' ' + cNumericFields(6) + " is reset to the fan flow rate and the simulation continues."); @@ -1004,12 +913,13 @@ namespace HVACUnitaryBypassVAV { CBVAV(CBVAVNum).HeatCoilType_Num = DataHVACGlobals::CoilDX_HeatingEmpirical; DXCoilErrFlag = false; CBVAV(CBVAVNum).MinOATCompressor = - GetMinOATDXCoilCompressor(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, DXCoilErrFlag); + DXCoils::GetMinOATCompressor(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, DXCoilErrFlag); CBVAV(CBVAVNum).HeatingCoilInletNode = - GetDXCoilInletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, DXCoilErrFlag); + DXCoils::GetCoilInletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, DXCoilErrFlag); CBVAV(CBVAVNum).HeatingCoilOutletNode = - GetDXCoilOutletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, DXCoilErrFlag); - GetDXCoilIndex(CBVAV(CBVAVNum).HeatCoilName, CBVAV(CBVAVNum).DXHeatCoilIndexNum, DXCoilErrFlag, CBVAV(CBVAVNum).HeatCoilType); + DXCoils::GetCoilOutletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, DXCoilErrFlag); + DXCoils::GetDXCoilIndex( + CBVAV(CBVAVNum).HeatCoilName, CBVAV(CBVAVNum).DXHeatCoilIndexNum, DXCoilErrFlag, CBVAV(CBVAVNum).HeatCoilType); if (DXCoilErrFlag) ShowContinueError("...occurs in " + CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); } else if (UtilityRoutines::SameString(Alphas(16), "Coil:Heating:DX:VariableSpeed")) { @@ -1026,23 +936,26 @@ namespace HVACUnitaryBypassVAV { } else if (UtilityRoutines::SameString(Alphas(16), "Coil:Heating:Fuel")) { CBVAV(CBVAVNum).HeatCoilType_Num = DataHVACGlobals::Coil_HeatingGasOrOtherFuel; CBVAV(CBVAVNum).MinOATCompressor = -999.9; - CBVAV(CBVAVNum).HeatingCoilInletNode = GetCoilInletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); + CBVAV(CBVAVNum).HeatingCoilInletNode = + HeatingCoils::GetCoilInletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); CBVAV(CBVAVNum).HeatingCoilOutletNode = - GetCoilOutletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); + HeatingCoils::GetCoilOutletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); } else if (UtilityRoutines::SameString(Alphas(16), "Coil:Heating:Electric")) { CBVAV(CBVAVNum).HeatCoilType_Num = DataHVACGlobals::Coil_HeatingElectric; CBVAV(CBVAVNum).MinOATCompressor = -999.9; - CBVAV(CBVAVNum).HeatingCoilInletNode = GetCoilInletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); + CBVAV(CBVAVNum).HeatingCoilInletNode = + HeatingCoils::GetCoilInletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); CBVAV(CBVAVNum).HeatingCoilOutletNode = - GetCoilOutletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); + HeatingCoils::GetCoilOutletNode(CBVAV(CBVAVNum).HeatCoilType, CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); } else if (UtilityRoutines::SameString(Alphas(16), "Coil:Heating:Water")) { CBVAV(CBVAVNum).HeatCoilType_Num = DataHVACGlobals::Coil_HeatingWater; errFlag = false; - CBVAV(CBVAVNum).CoilControlNode = GetCoilWaterInletNode("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, errFlag); - CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = GetCoilMaxWaterFlowRate("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, errFlag); - HeatCoilInletNodeNum = GetWaterCoilInletNode("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, errFlag); + CBVAV(CBVAVNum).CoilControlNode = WaterCoils::GetCoilWaterInletNode("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, errFlag); + CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = + WaterCoils::GetCoilMaxWaterFlowRate("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, errFlag); + HeatCoilInletNodeNum = WaterCoils::GetCoilInletNode("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, errFlag); CBVAV(CBVAVNum).HeatingCoilInletNode = HeatCoilInletNodeNum; - HeatCoilOutletNodeNum = GetWaterCoilOutletNode("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, errFlag); + HeatCoilOutletNodeNum = WaterCoils::GetCoilOutletNode("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, errFlag); CBVAV(CBVAVNum).HeatingCoilOutletNode = HeatCoilOutletNodeNum; if (errFlag) { ShowContinueError("...occurs in " + CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); @@ -1051,18 +964,21 @@ namespace HVACUnitaryBypassVAV { } else if (UtilityRoutines::SameString(Alphas(16), "COIL:HEATING:STEAM")) { CBVAV(CBVAVNum).HeatCoilType_Num = DataHVACGlobals::Coil_HeatingSteam; errFlag = false; - CBVAV(CBVAVNum).HeatCoilIndex = GetSteamCoilIndex("COIL:HEATING:STEAM", CBVAV(CBVAVNum).HeatCoilName, errFlag); + CBVAV(CBVAVNum).HeatCoilIndex = SteamCoils::GetSteamCoilIndex("COIL:HEATING:STEAM", CBVAV(CBVAVNum).HeatCoilName, errFlag); - HeatCoilInletNodeNum = GetSteamCoilAirInletNode(CBVAV(CBVAVNum).HeatCoilIndex, CBVAV(CBVAVNum).HeatCoilName, errFlag); + HeatCoilInletNodeNum = SteamCoils::GetCoilAirInletNode(CBVAV(CBVAVNum).HeatCoilIndex, CBVAV(CBVAVNum).HeatCoilName, errFlag); CBVAV(CBVAVNum).HeatingCoilInletNode = HeatCoilInletNodeNum; - CBVAV(CBVAVNum).CoilControlNode = GetCoilSteamInletNode(CBVAV(CBVAVNum).HeatCoilIndex, CBVAV(CBVAVNum).HeatCoilName, errFlag); - CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, errFlag); - SteamIndex = 0; // Function GetSatDensityRefrig will look up steam index if 0 is passed - SteamDensity = GetSatDensityRefrig(fluidNameSteam, TempSteamIn, 1.0, SteamIndex, getUnitaryHeatCoolVAVChangeoverBypass); + CBVAV(CBVAVNum).CoilControlNode = + SteamCoils::GetCoilSteamInletNode(CBVAV(CBVAVNum).HeatCoilIndex, CBVAV(CBVAVNum).HeatCoilName, errFlag); + CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = SteamCoils::GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, errFlag); + int SteamIndex = 0; // Function GetSatDensityRefrig will look up steam index if 0 is passed + Real64 SteamDensity = + FluidProperties::GetSatDensityRefrig(fluidNameSteam, TempSteamIn, 1.0, SteamIndex, getUnitaryHeatCoolVAVChangeoverBypass); if (CBVAV(CBVAVNum).MaxHeatCoilFluidFlow > 0.0) { - CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, errFlag) * SteamDensity; + CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = + SteamCoils::GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, errFlag) * SteamDensity; } - HeatCoilOutletNodeNum = GetCoilAirOutletNode(CBVAV(CBVAVNum).HeatCoilIndex, CBVAV(CBVAVNum).HeatCoilName, errFlag); + HeatCoilOutletNodeNum = SteamCoils::GetCoilAirOutletNode(CBVAV(CBVAVNum).HeatCoilIndex, CBVAV(CBVAVNum).HeatCoilName, errFlag); CBVAV(CBVAVNum).HeatingCoilOutletNode = HeatCoilOutletNodeNum; if (errFlag) { ShowContinueError("...occurs in " + CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); @@ -1081,7 +997,7 @@ namespace HVACUnitaryBypassVAV { ErrorsFound = true; } - if (CBVAV(CBVAVNum).FanPlace == BlowThru) { + if (CBVAV(CBVAVNum).FanPlace == DataHVACGlobals::BlowThru) { if (CBVAV(CBVAVNum).SplitterOutletAirNode != CBVAV(CBVAVNum).HeatingCoilOutletNode) { ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); ShowContinueError("Illegal " + cAlphaFields(6) + " = " + SplitterOutletNodeName + '.'); @@ -1099,7 +1015,7 @@ namespace HVACUnitaryBypassVAV { } } - if (CBVAV(CBVAVNum).FanPlace == DrawThru) { + if (CBVAV(CBVAVNum).FanPlace == DataHVACGlobals::DrawThru) { if (CBVAV(CBVAVNum).MixerMixedAirNode != CBVAV(CBVAVNum).DXCoilInletNode) { ShowSevereError(CurrentModuleObject + ": " + CBVAV(CBVAVNum).Name); ShowContinueError( @@ -1115,10 +1031,12 @@ namespace HVACUnitaryBypassVAV { CBVAV(CBVAVNum).PriorityControl = HeatingPriority; } else if (UtilityRoutines::SameString(Alphas(18), "ZonePriority")) { CBVAV(CBVAVNum).PriorityControl = ZonePriority; + } else if (UtilityRoutines::SameString(Alphas(18), "LoadPriority")) { + CBVAV(CBVAVNum).PriorityControl = LoadPriority; } else { ShowSevereError(CurrentModuleObject + " illegal " + cAlphaFields(18) + " = " + Alphas(18)); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); - ShowContinueError("Valid choices are CoolingPriority, HeatingPriority, or ZonePriority."); + ShowContinueError("Valid choices are CoolingPriority, HeatingPriority, ZonePriority or LoadPriority."); ErrorsFound = true; } @@ -1171,9 +1089,8 @@ namespace HVACUnitaryBypassVAV { ShowContinueError("In " + CurrentModuleObject + " \"" + CBVAV(CBVAVNum).Name + "\"."); } - if (CBVAV(CBVAVNum).DXCoolCoilType_Num > 0) { - ControlNodeNum = GetOnlySingleNode( - Alphas(7), ErrorsFound, CurrentModuleObject, Alphas(1), NodeType_Air, NodeConnectionType_Sensor, 1, ObjectIsParent); + if (NumNumbers > 8) { + CBVAV(CBVAVNum).minModeChangeTime = Numbers(9); } // Initialize last mode of compressor operation @@ -1186,15 +1103,17 @@ namespace HVACUnitaryBypassVAV { ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ShowContinueError(" The fan object type must be Fan:SystemModel, Fan:OnOff or Fan:ConstantVolume."); ErrorsFound = true; - } else if (CBVAV(CBVAVNum).FanType_Num == FanType_SimpleOnOff || CBVAV(CBVAVNum).FanType_Num == FanType_SimpleConstVolume) { - if (CBVAV(CBVAVNum).FanType_Num == FanType_SimpleOnOff && !UtilityRoutines::SameString(CBVAV(CBVAVNum).FanType, "Fan:OnOff")) { + } else if (CBVAV(CBVAVNum).FanType_Num == DataHVACGlobals::FanType_SimpleOnOff || + CBVAV(CBVAVNum).FanType_Num == DataHVACGlobals::FanType_SimpleConstVolume) { + if (CBVAV(CBVAVNum).FanType_Num == DataHVACGlobals::FanType_SimpleOnOff && + !UtilityRoutines::SameString(CBVAV(CBVAVNum).FanType, "Fan:OnOff")) { ShowWarningError(CurrentModuleObject + " has " + cAlphaFields(10) + " = " + CBVAV(CBVAVNum).FanType + " which is inconsistent with the fan object."); ShowContinueError("Occurs in " + CurrentModuleObject + " = " + CBVAV(CBVAVNum).Name); ShowContinueError(" The fan object (" + CBVAV(CBVAVNum).FanName + ") is actually a valid fan type and the simulation continues."); ShowContinueError(" Node connections errors may result due to the inconsistent fan type."); } - if (CBVAV(CBVAVNum).FanType_Num == FanType_SimpleConstVolume && + if (CBVAV(CBVAVNum).FanType_Num == DataHVACGlobals::FanType_SimpleConstVolume && !UtilityRoutines::SameString(CBVAV(CBVAVNum).FanType, "Fan:ConstantVolume")) { ShowWarningError(CurrentModuleObject + " has " + cAlphaFields(10) + " = " + CBVAV(CBVAVNum).FanType + " which is inconsistent with fan object."); @@ -1205,53 +1124,57 @@ namespace HVACUnitaryBypassVAV { } // Add fan to component sets array - if (CBVAV(CBVAVNum).FanPlace == BlowThru) { - CompSetFanInlet = NodeID(CBVAV(CBVAVNum).MixerMixedAirNode); - CompSetFanOutlet = NodeID(CBVAV(CBVAVNum).DXCoilInletNode); + if (CBVAV(CBVAVNum).FanPlace == DataHVACGlobals::BlowThru) { + CompSetFanInlet = DataLoopNode::NodeID(CBVAV(CBVAVNum).MixerMixedAirNode); + CompSetFanOutlet = DataLoopNode::NodeID(CBVAV(CBVAVNum).DXCoilInletNode); } else { - CompSetFanInlet = NodeID(CBVAV(CBVAVNum).HeatingCoilOutletNode); + CompSetFanInlet = DataLoopNode::NodeID(CBVAV(CBVAVNum).HeatingCoilOutletNode); CompSetFanOutlet = SplitterOutletNodeName; } - CompSetCoolInlet = NodeID(CBVAV(CBVAVNum).DXCoilInletNode); - CompSetCoolOutlet = NodeID(CBVAV(CBVAVNum).DXCoilOutletNode); + CompSetCoolInlet = DataLoopNode::NodeID(CBVAV(CBVAVNum).DXCoilInletNode); + CompSetCoolOutlet = DataLoopNode::NodeID(CBVAV(CBVAVNum).DXCoilOutletNode); // Add fan to component sets array - SetUpCompSets( + BranchNodeConnections::SetUpCompSets( CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name, CBVAV(CBVAVNum).FanType, CBVAV(CBVAVNum).FanName, CompSetFanInlet, CompSetFanOutlet); // Add cooling coil to component sets array - SetUpCompSets(CBVAV(CBVAVNum).UnitType, - CBVAV(CBVAVNum).Name, - CBVAV(CBVAVNum).DXCoolCoilType, - CBVAV(CBVAVNum).DXCoolCoilName, - CompSetCoolInlet, - CompSetCoolOutlet); + BranchNodeConnections::SetUpCompSets(CBVAV(CBVAVNum).UnitType, + CBVAV(CBVAVNum).Name, + CBVAV(CBVAVNum).DXCoolCoilType, + CBVAV(CBVAVNum).DXCoolCoilName, + CompSetCoolInlet, + CompSetCoolOutlet); // Add heating coil to component sets array - SetUpCompSets(CBVAV(CBVAVNum).UnitType, - CBVAV(CBVAVNum).Name, - CBVAV(CBVAVNum).HeatCoilType, - CBVAV(CBVAVNum).HeatCoilName, - NodeID(CBVAV(CBVAVNum).HeatingCoilInletNode), - NodeID(CBVAV(CBVAVNum).HeatingCoilOutletNode)); + BranchNodeConnections::SetUpCompSets(CBVAV(CBVAVNum).UnitType, + CBVAV(CBVAVNum).Name, + CBVAV(CBVAVNum).HeatCoilType, + CBVAV(CBVAVNum).HeatCoilName, + DataLoopNode::NodeID(CBVAV(CBVAVNum).HeatingCoilInletNode), + DataLoopNode::NodeID(CBVAV(CBVAVNum).HeatingCoilOutletNode)); // Set up component set for OA mixer - use OA node and Mixed air node - SetUpCompSets(CBVAV(CBVAVNum).UnitType, - CBVAV(CBVAVNum).Name, - CBVAV(CBVAVNum).OAMixType, - CBVAV(CBVAVNum).OAMixName, - NodeID(CBVAV(CBVAVNum).MixerOutsideAirNode), - NodeID(CBVAV(CBVAVNum).MixerMixedAirNode)); - - TestCompSet( - CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name, NodeID(CBVAV(CBVAVNum).AirInNode), NodeID(CBVAV(CBVAVNum).AirOutNode), "Air Nodes"); + BranchNodeConnections::SetUpCompSets(CBVAV(CBVAVNum).UnitType, + CBVAV(CBVAVNum).Name, + CBVAV(CBVAVNum).OAMixType, + CBVAV(CBVAVNum).OAMixName, + DataLoopNode::NodeID(CBVAV(CBVAVNum).MixerOutsideAirNode), + DataLoopNode::NodeID(CBVAV(CBVAVNum).MixerMixedAirNode)); + + BranchNodeConnections::TestCompSet(CBVAV(CBVAVNum).UnitType, + CBVAV(CBVAVNum).Name, + DataLoopNode::NodeID(CBVAV(CBVAVNum).AirInNode), + DataLoopNode::NodeID(CBVAV(CBVAVNum).AirOutNode), + "Air Nodes"); // Find air loop associated with CBVAV system - for (AirLoopNum = 1; AirLoopNum <= NumPrimaryAirSys; ++AirLoopNum) { - for (BranchNum = 1; BranchNum <= PrimaryAirSystem(AirLoopNum).NumBranches; ++BranchNum) { - for (CompNum = 1; CompNum <= PrimaryAirSystem(AirLoopNum).Branch(BranchNum).TotalComponents; ++CompNum) { - if (!UtilityRoutines::SameString(PrimaryAirSystem(AirLoopNum).Branch(BranchNum).Comp(CompNum).Name, CBVAV(CBVAVNum).Name) || - !UtilityRoutines::SameString(PrimaryAirSystem(AirLoopNum).Branch(BranchNum).Comp(CompNum).TypeOf, + for (int AirLoopNum = 1; AirLoopNum <= DataHVACGlobals::NumPrimaryAirSys; ++AirLoopNum) { + for (int BranchNum = 1; BranchNum <= DataAirSystems::PrimaryAirSystem(AirLoopNum).NumBranches; ++BranchNum) { + for (int CompNum = 1; CompNum <= DataAirSystems::PrimaryAirSystem(AirLoopNum).Branch(BranchNum).TotalComponents; ++CompNum) { + if (!UtilityRoutines::SameString(DataAirSystems::PrimaryAirSystem(AirLoopNum).Branch(BranchNum).Comp(CompNum).Name, + CBVAV(CBVAVNum).Name) || + !UtilityRoutines::SameString(DataAirSystems::PrimaryAirSystem(AirLoopNum).Branch(BranchNum).Comp(CompNum).TypeOf, CBVAV(CBVAVNum).UnitType)) continue; CBVAV(CBVAVNum).AirLoopNumber = AirLoopNum; @@ -1262,7 +1185,7 @@ namespace HVACUnitaryBypassVAV { } if (CBVAV(CBVAVNum).AirLoopNumber > 0) { - CBVAV(CBVAVNum).NumControlledZones = AirToZoneNodeInfo(CBVAV(CBVAVNum).AirLoopNumber).NumZonesCooled; + CBVAV(CBVAVNum).NumControlledZones = DataAirLoop::AirToZoneNodeInfo(CBVAV(CBVAVNum).AirLoopNumber).NumZonesCooled; CBVAV(CBVAVNum).ControlledZoneNum.allocate(CBVAV(CBVAVNum).NumControlledZones); CBVAV(CBVAVNum).ActualZoneNum.allocate(CBVAV(CBVAVNum).NumControlledZones); CBVAV(CBVAVNum).ActualZoneNodeNum.allocate(CBVAV(CBVAVNum).NumControlledZones); @@ -1272,27 +1195,29 @@ namespace HVACUnitaryBypassVAV { CBVAV(CBVAVNum).ControlledZoneNum = 0; CBVAV(CBVAVNum).ActualZoneNum = 0; - for (AirLoopZoneNum = 1; AirLoopZoneNum <= AirToZoneNodeInfo(CBVAV(CBVAVNum).AirLoopNumber).NumZonesCooled; ++AirLoopZoneNum) { + for (int AirLoopZoneNum = 1; AirLoopZoneNum <= DataAirLoop::AirToZoneNodeInfo(CBVAV(CBVAVNum).AirLoopNumber).NumZonesCooled; + ++AirLoopZoneNum) { CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum) = - AirToZoneNodeInfo(CBVAV(CBVAVNum).AirLoopNumber).CoolCtrlZoneNums(AirLoopZoneNum); + DataAirLoop::AirToZoneNodeInfo(CBVAV(CBVAVNum).AirLoopNumber).CoolCtrlZoneNums(AirLoopZoneNum); if (CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum) > 0) { CBVAV(CBVAVNum).ActualZoneNodeNum(AirLoopZoneNum) = - ZoneEquipConfig(CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum)).ZoneNode; + DataZoneEquipment::ZoneEquipConfig(CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum)).ZoneNode; CBVAV(CBVAVNum).ActualZoneNum(AirLoopZoneNum) = - ZoneEquipConfig(CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum)).ActualZoneNum; + DataZoneEquipment::ZoneEquipConfig(CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum)).ActualZoneNum; CBVAV(CBVAVNum).CBVAVBoxOutletNode(AirLoopZoneNum) = - AirToZoneNodeInfo(CBVAV(CBVAVNum).AirLoopNumber).CoolZoneInletNodes(AirLoopZoneNum); + DataAirLoop::AirToZoneNodeInfo(CBVAV(CBVAVNum).AirLoopNumber).CoolZoneInletNodes(AirLoopZoneNum); // check for thermostat in controlled zone - FoundTstatZone = false; - for (TstatZoneNum = 1; TstatZoneNum <= NumTempControlledZones; ++TstatZoneNum) { - if (TempControlledZone(TstatZoneNum).ActualZoneNum != CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum)) continue; + bool FoundTstatZone = false; + for (int TstatZoneNum = 1; TstatZoneNum <= DataZoneControls::NumTempControlledZones; ++TstatZoneNum) { + if (DataZoneControls::TempControlledZone(TstatZoneNum).ActualZoneNum != CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum)) + continue; FoundTstatZone = true; } if (!FoundTstatZone) { ShowWarningError(CurrentModuleObject + " \"" + CBVAV(CBVAVNum).Name + "\""); - ShowContinueError( - "Thermostat not found in zone = " + ZoneEquipConfig(CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum)).ZoneName + - " and the simulation continues."); + ShowContinueError("Thermostat not found in zone = " + + DataZoneEquipment::ZoneEquipConfig(CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum)).ZoneName + + " and the simulation continues."); ShowContinueError("This zone will not be controlled to a temperature setpoint."); } int zoneNum = CBVAV(CBVAVNum).ControlledZoneNum(AirLoopZoneNum); @@ -1300,8 +1225,8 @@ namespace HVACUnitaryBypassVAV { int coolingPriority = 0; int heatingPriority = 0; // setup zone equipment sequence information based on finding matching air terminal - if (ZoneEquipConfig(zoneNum).EquipListIndex > 0) { - ZoneEquipList(ZoneEquipConfig(zoneNum).EquipListIndex) + if (DataZoneEquipment::ZoneEquipConfig(zoneNum).EquipListIndex > 0) { + DataZoneEquipment::ZoneEquipList(DataZoneEquipment::ZoneEquipConfig(zoneNum).EquipListIndex) .getPrioritiesforInletNode(zoneInlet, coolingPriority, heatingPriority); CBVAV(CBVAVNum).ZoneSequenceCoolingNum(AirLoopZoneNum) = coolingPriority; CBVAV(CBVAVNum).ZoneSequenceHeatingNum(AirLoopZoneNum) = heatingPriority; @@ -1309,7 +1234,8 @@ namespace HVACUnitaryBypassVAV { if (CBVAV(CBVAVNum).ZoneSequenceCoolingNum(AirLoopZoneNum) == 0 || CBVAV(CBVAVNum).ZoneSequenceHeatingNum(AirLoopZoneNum) == 0) { ShowSevereError("AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass, \"" + CBVAV(CBVAVNum).Name + - "\": Airloop air terminal in the zone equipment list for zone = " + ZoneEquipConfig(zoneNum).ZoneName + + "\": Airloop air terminal in the zone equipment list for zone = " + + DataZoneEquipment::ZoneEquipConfig(zoneNum).ZoneName + " not found or is not allowed Zone Equipment Cooling or Heating Sequence = 0."); ErrorsFound = true; } @@ -1321,14 +1247,14 @@ namespace HVACUnitaryBypassVAV { } else { } - } // CBVAVIndex = 1,NumCBVAV + } // CBVAVNum = 1,NumCBVAV if (ErrorsFound) { ShowFatalError("GetCBVAV: Errors found in getting " + CurrentModuleObject + " input."); ShowContinueError("... Preceding condition causes termination."); } - for (CBVAVNum = 1; CBVAVNum <= NumCBVAV; ++CBVAVNum) { + for (int CBVAVNum = 1; CBVAVNum <= NumCBVAV; ++CBVAVNum) { // Setup Report variables for the Fan Coils SetupOutputVariable("Unitary System Total Heating Rate", OutputProcessor::Unit::W, @@ -1430,13 +1356,18 @@ namespace HVACUnitaryBypassVAV { "System", "Average", CBVAV(CBVAVNum).Name); + SetupOutputVariable("Unitary System Operating Mode Index", + OutputProcessor::Unit::None, + CBVAV(CBVAVNum).HeatCoolMode, + "System", + "Average", + CBVAV(CBVAVNum).Name); } } void InitCBVAV(int const CBVAVNum, // Index of the current CBVAV unit being simulated bool const FirstHVACIteration, // TRUE if first HVAC iteration int const AirLoopNum, // air loop index - Real64 &QZnReq, // Heating/Cooling load for all zones Real64 &OnOffAirFlowRatio, // Ratio of compressor ON airflow to average airflow over timestep bool &HXUnitOn // flag to enable heat exchanger ) @@ -1458,60 +1389,24 @@ namespace HVACUnitaryBypassVAV { // determine the bypass fraction. The simulation converges quickly on mass flow rate. If the zone // temperatures float in the deadband, additional iterations are required to converge on mass flow rate. - // REFERENCES: - // na - - // Using/Aliasing - using DataAirLoop::AirLoopControlInfo; - using DataGlobals::AnyEnergyManagementSystemInModel; - using DataSizing::AutoSize; - using EMSManager::CheckIfNodeSetPointManagedByEMS; - using EMSManager::iHumidityRatioMaxSetPoint; - using Fans::GetFanIndex; - using Fans::GetFanVolFlow; - using General::TrimSigDigits; - using Psychrometrics::PsyRhoAirFnPbTdbW; - using ScheduleManager::GetCurrentScheduleValue; - using SteamCoils::SimulateSteamCoilComponents; - auto &GetCoilMaxSteamFlowRate(SteamCoils::GetCoilMaxSteamFlowRate); - using DataGlobals::AnyPlantInModel; - using DataPlant::PlantLoop; - using DataPlant::TypeOf_CoilSteamAirHeating; - using DataPlant::TypeOf_CoilWaterSimpleHeating; - using FluidProperties::GetDensityGlycol; - using FluidProperties::GetSatDensityRefrig; - using PlantUtilities::InitComponentNodes; - using PlantUtilities::ScanPlantLoopsForObject; - using PlantUtilities::SetComponentFlowRate; - using WaterCoils::GetCoilMaxWaterFlowRate; - using WaterCoils::SimulateWaterCoilComponents; - // SUBROUTINE PARAMETER DEFINITIONS: static std::string const RoutineName("InitCBVAV"); // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int InNode; // Inlet node number in CBVAV loop - int OutNode; // Outlet node number in CBVAV loop - int MixerOutsideAirNode; // Outside air node number in CBVAV loop - Real64 RhoAir; // Air density at InNode static bool MyOneTimeFlag(true); // Initialization flag static Array1D_bool MyEnvrnFlag; // Used for initializations each begin environment flag static Array1D_bool MySizeFlag; // Used for sizing CBVAV inputs one time static Array1D_bool MyPlantScanFlag; // Used for initializations plant component for heating coils Real64 QSensUnitOut; // Output of CBVAV system with coils off Real64 OutsideAirMultiplier; // Outside air multiplier schedule (= 1.0 if no schedule) - std::string CurrentModuleObject; // Object type for error messages static bool EMSSetPointCheck(false); // local temporary static bool ErrorsFound(false); // Set to true if errors in input, fatal at end of routine - int SteamIndex; // steam coil index - Real64 FluidDensity; // steam or water coil fluid density - Real64 CoilMaxVolFlowRate; // water or steam max volumetric water flow rate Real64 QCoilActual; // actual CBVAV steam heating coil load met (W) bool ErrorFlag; // local error flag returned from data mining Real64 mdot; // heating coil fluid mass flow rate, kg/s - InNode = CBVAV(CBVAVNum).AirInNode; - OutNode = CBVAV(CBVAVNum).AirOutNode; + int InNode = CBVAV(CBVAVNum).AirInNode; + int OutNode = CBVAV(CBVAVNum).AirOutNode; // Do the one time initializations if (MyOneTimeFlag) { @@ -1524,72 +1419,78 @@ namespace HVACUnitaryBypassVAV { MyPlantScanFlag = true; MyOneTimeFlag = false; + // speed up test based on code from 16 years ago to correct cycling fan economizer defect + // see https://github.com/NREL/EnergyPlusArchive/commit/a2202f8a168fd0330bf3a45392833405e8bd08f2 + // This test sets simple flag so air loop doesn't iterate twice each pass (reverts above change) + // DataAirLoop::AirLoopControlInfo(AirLoopNum).Simple = true; } - if (MyPlantScanFlag(CBVAVNum) && allocated(PlantLoop)) { + if (MyPlantScanFlag(CBVAVNum) && allocated(DataPlant::PlantLoop)) { if ((CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingWater) || (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingSteam)) { if (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingWater) { ErrorFlag = false; - ScanPlantLoopsForObject(CBVAV(CBVAVNum).HeatCoilName, - TypeOf_CoilWaterSimpleHeating, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum, - ErrorFlag, - _, - _, - _, - _, - _); + PlantUtilities::ScanPlantLoopsForObject(CBVAV(CBVAVNum).HeatCoilName, + DataPlant::TypeOf_CoilWaterSimpleHeating, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum, + ErrorFlag, + _, + _, + _, + _, + _); if (ErrorFlag) { ShowFatalError("InitCBVAV: Program terminated for previous conditions."); } - CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = GetCoilMaxWaterFlowRate("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); + CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = + WaterCoils::GetCoilMaxWaterFlowRate("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, ErrorsFound); if (CBVAV(CBVAVNum).MaxHeatCoilFluidFlow > 0.0) { - FluidDensity = GetDensityGlycol(PlantLoop(CBVAV(CBVAVNum).LoopNum).FluidName, - DataGlobals::HWInitConvTemp, - PlantLoop(CBVAV(CBVAVNum).LoopNum).FluidIndex, - RoutineName); + Real64 FluidDensity = FluidProperties::GetDensityGlycol(DataPlant::PlantLoop(CBVAV(CBVAVNum).LoopNum).FluidName, + DataGlobals::HWInitConvTemp, + DataPlant::PlantLoop(CBVAV(CBVAVNum).LoopNum).FluidIndex, + RoutineName); CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = - GetCoilMaxWaterFlowRate("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, ErrorsFound) * FluidDensity; + WaterCoils::GetCoilMaxWaterFlowRate("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, ErrorsFound) * FluidDensity; } } else if (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingSteam) { ErrorFlag = false; - ScanPlantLoopsForObject(CBVAV(CBVAVNum).HeatCoilName, - TypeOf_CoilSteamAirHeating, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum, - ErrorFlag, - _, - _, - _, - _, - _); + PlantUtilities::ScanPlantLoopsForObject(CBVAV(CBVAVNum).HeatCoilName, + DataPlant::TypeOf_CoilSteamAirHeating, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum, + ErrorFlag, + _, + _, + _, + _, + _); if (ErrorFlag) { ShowFatalError("InitCBVAV: Program terminated for previous conditions."); } - CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, ErrorsFound); + CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = SteamCoils::GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, ErrorsFound); if (CBVAV(CBVAVNum).MaxHeatCoilFluidFlow > 0.0) { - SteamIndex = 0; // Function GetSatDensityRefrig will look up steam index if 0 is passed - FluidDensity = GetSatDensityRefrig(fluidNameSteam, TempSteamIn, 1.0, SteamIndex, RoutineName); - CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, ErrorsFound) * FluidDensity; + int SteamIndex = 0; // Function GetSatDensityRefrig will look up steam index if 0 is passed + Real64 FluidDensity = FluidProperties::GetSatDensityRefrig(fluidNameSteam, TempSteamIn, 1.0, SteamIndex, RoutineName); + CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = + SteamCoils::GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, ErrorsFound) * FluidDensity; } } // fill outlet node for heating coil - CBVAV(CBVAVNum).CoilOutletNode = PlantLoop(CBVAV(CBVAVNum).LoopNum) + CBVAV(CBVAVNum).CoilOutletNode = DataPlant::PlantLoop(CBVAV(CBVAVNum).LoopNum) .LoopSide(CBVAV(CBVAVNum).LoopSide) .Branch(CBVAV(CBVAVNum).BranchNum) .Comp(CBVAV(CBVAVNum).CompNum) @@ -1599,24 +1500,24 @@ namespace HVACUnitaryBypassVAV { } else { // CBVAV is not connected to plant MyPlantScanFlag(CBVAVNum) = false; } - } else if (MyPlantScanFlag(CBVAVNum) && !AnyPlantInModel) { + } else if (MyPlantScanFlag(CBVAVNum) && !DataGlobals::AnyPlantInModel) { MyPlantScanFlag(CBVAVNum) = false; } - if (!SysSizingCalc && MySizeFlag(CBVAVNum)) { + if (!DataGlobals::SysSizingCalc && MySizeFlag(CBVAVNum)) { SizeCBVAV(CBVAVNum); // Pass the fan cycling schedule index up to the air loop. Set the air loop unitary system flag. - AirLoopControlInfo(AirLoopNum).CycFanSchedPtr = CBVAV(CBVAVNum).FanOpModeSchedPtr; + DataAirLoop::AirLoopControlInfo(AirLoopNum).CycFanSchedPtr = CBVAV(CBVAVNum).FanOpModeSchedPtr; // Set UnitarySys flag to FALSE and let the heating coil autosize independently of the cooling coil - AirLoopControlInfo(AirLoopNum).UnitarySys = false; - AirLoopControlInfo(AirLoopNum).FanOpMode = CBVAV(CBVAVNum).OpMode; + DataAirLoop::AirLoopControlInfo(AirLoopNum).UnitarySys = false; + DataAirLoop::AirLoopControlInfo(AirLoopNum).FanOpMode = CBVAV(CBVAVNum).OpMode; MySizeFlag(CBVAVNum) = false; } // Do the Begin Environment initializations - if (BeginEnvrnFlag && MyEnvrnFlag(CBVAVNum)) { - MixerOutsideAirNode = CBVAV(CBVAVNum).MixerOutsideAirNode; - RhoAir = StdRhoAir; + if (DataGlobals::BeginEnvrnFlag && MyEnvrnFlag(CBVAVNum)) { + int MixerOutsideAirNode = CBVAV(CBVAVNum).MixerOutsideAirNode; + Real64 RhoAir = DataEnvironment::StdRhoAir; // set the mass flow rates from the input volume flow rates CBVAV(CBVAVNum).MaxCoolAirMassFlow = RhoAir * CBVAV(CBVAVNum).MaxCoolAirVolFlow; CBVAV(CBVAVNum).CoolOutAirMassFlow = RhoAir * CBVAV(CBVAVNum).CoolOutAirVolFlow; @@ -1625,103 +1526,108 @@ namespace HVACUnitaryBypassVAV { CBVAV(CBVAVNum).MaxNoCoolHeatAirMassFlow = RhoAir * CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow; CBVAV(CBVAVNum).NoCoolHeatOutAirMassFlow = RhoAir * CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow; // set the node max and min mass flow rates - Node(MixerOutsideAirNode).MassFlowRateMax = max(CBVAV(CBVAVNum).CoolOutAirMassFlow, CBVAV(CBVAVNum).HeatOutAirMassFlow); - Node(MixerOutsideAirNode).MassFlowRateMaxAvail = max(CBVAV(CBVAVNum).CoolOutAirMassFlow, CBVAV(CBVAVNum).HeatOutAirMassFlow); - Node(MixerOutsideAirNode).MassFlowRateMin = 0.0; - Node(MixerOutsideAirNode).MassFlowRateMinAvail = 0.0; - Node(InNode).MassFlowRateMax = max(CBVAV(CBVAVNum).MaxCoolAirMassFlow, CBVAV(CBVAVNum).MaxHeatAirMassFlow); - Node(InNode).MassFlowRateMaxAvail = max(CBVAV(CBVAVNum).MaxCoolAirMassFlow, CBVAV(CBVAVNum).MaxHeatAirMassFlow); - Node(InNode).MassFlowRateMin = 0.0; - Node(InNode).MassFlowRateMinAvail = 0.0; - Node(OutNode).Temp = Node(InNode).Temp; - Node(OutNode).HumRat = Node(InNode).HumRat; - Node(OutNode).Enthalpy = Node(InNode).Enthalpy; - Node(CBVAV(CBVAVNum).MixerReliefAirNode) = Node(MixerOutsideAirNode); + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRateMax = max(CBVAV(CBVAVNum).CoolOutAirMassFlow, CBVAV(CBVAVNum).HeatOutAirMassFlow); + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRateMaxAvail = + max(CBVAV(CBVAVNum).CoolOutAirMassFlow, CBVAV(CBVAVNum).HeatOutAirMassFlow); + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRateMin = 0.0; + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRateMinAvail = 0.0; + DataLoopNode::Node(InNode).MassFlowRateMax = max(CBVAV(CBVAVNum).MaxCoolAirMassFlow, CBVAV(CBVAVNum).MaxHeatAirMassFlow); + DataLoopNode::Node(InNode).MassFlowRateMaxAvail = max(CBVAV(CBVAVNum).MaxCoolAirMassFlow, CBVAV(CBVAVNum).MaxHeatAirMassFlow); + DataLoopNode::Node(InNode).MassFlowRateMin = 0.0; + DataLoopNode::Node(InNode).MassFlowRateMinAvail = 0.0; + DataLoopNode::Node(OutNode).Temp = DataLoopNode::Node(InNode).Temp; + DataLoopNode::Node(OutNode).HumRat = DataLoopNode::Node(InNode).HumRat; + DataLoopNode::Node(OutNode).Enthalpy = DataLoopNode::Node(InNode).Enthalpy; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerReliefAirNode) = DataLoopNode::Node(MixerOutsideAirNode); MyEnvrnFlag(CBVAVNum) = false; CBVAV(CBVAVNum).LastMode = HeatingMode; + CBVAV(CBVAVNum).changeOverTimer = -1.0; // set fluid-side hardware limits if (CBVAV(CBVAVNum).CoilControlNode > 0) { // If water coil max water flow rate is autosized, simulate once in order to mine max water flow rate - if (CBVAV(CBVAVNum).MaxHeatCoilFluidFlow == AutoSize) { + if (CBVAV(CBVAVNum).MaxHeatCoilFluidFlow == DataSizing::AutoSize) { if (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingWater) { - SimulateWaterCoilComponents(CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex); + WaterCoils::SimulateWaterCoilComponents(CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex); ErrorFlag = false; - CoilMaxVolFlowRate = GetCoilMaxWaterFlowRate("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, ErrorFlag); + Real64 CoilMaxVolFlowRate = + WaterCoils::GetCoilMaxWaterFlowRate("Coil:Heating:Water", CBVAV(CBVAVNum).HeatCoilName, ErrorFlag); if (ErrorFlag) { ErrorsFound = true; } - if (CoilMaxVolFlowRate != AutoSize) { - FluidDensity = GetDensityGlycol(PlantLoop(CBVAV(CBVAVNum).LoopNum).FluidName, - DataGlobals::HWInitConvTemp, - PlantLoop(CBVAV(CBVAVNum).LoopNum).FluidIndex, - RoutineName); + if (CoilMaxVolFlowRate != DataSizing::AutoSize) { + Real64 FluidDensity = FluidProperties::GetDensityGlycol(DataPlant::PlantLoop(CBVAV(CBVAVNum).LoopNum).FluidName, + DataGlobals::HWInitConvTemp, + DataPlant::PlantLoop(CBVAV(CBVAVNum).LoopNum).FluidIndex, + RoutineName); CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = CoilMaxVolFlowRate * FluidDensity; } } if (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingSteam) { - SimulateSteamCoilComponents(CBVAV(CBVAVNum).HeatCoilName, - FirstHVACIteration, - CBVAV(CBVAVNum).HeatCoilIndex, - 1.0, - QCoilActual); // QCoilReq, simulate any load > 0 to get max capacity of steam coil + SteamCoils::SimulateSteamCoilComponents(CBVAV(CBVAVNum).HeatCoilName, + FirstHVACIteration, + CBVAV(CBVAVNum).HeatCoilIndex, + 1.0, + QCoilActual); // QCoilReq, simulate any load > 0 to get max capacity of steam coil ErrorFlag = false; - CoilMaxVolFlowRate = GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, ErrorFlag); + Real64 CoilMaxVolFlowRate = SteamCoils::GetCoilMaxSteamFlowRate(CBVAV(CBVAVNum).HeatCoilIndex, ErrorFlag); if (ErrorFlag) { ErrorsFound = true; } - if (CoilMaxVolFlowRate != AutoSize) { - SteamIndex = 0; // Function GetSatDensityRefrig will look up steam index if 0 is passed - FluidDensity = GetSatDensityRefrig(fluidNameSteam, TempSteamIn, 1.0, SteamIndex, RoutineName); + if (CoilMaxVolFlowRate != DataSizing::AutoSize) { + int SteamIndex = 0; // Function GetSatDensityRefrig will look up steam index if 0 is passed + Real64 FluidDensity = FluidProperties::GetSatDensityRefrig(fluidNameSteam, TempSteamIn, 1.0, SteamIndex, RoutineName); CBVAV(CBVAVNum).MaxHeatCoilFluidFlow = CoilMaxVolFlowRate * FluidDensity; } } - } // end of IF(CBVAV(CBVAVNum)%MaxHeatCoilFluidFlow .EQ. AutoSize)THEN + } // end of IF(CBVAV(CBVAVNum)%MaxHeatCoilFluidFlow .EQ. DataSizing::AutoSize)THEN - InitComponentNodes(0.0, - CBVAV(CBVAVNum).MaxHeatCoilFluidFlow, - CBVAV(CBVAVNum).CoilControlNode, - CBVAV(CBVAVNum).CoilOutletNode, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum); + PlantUtilities::InitComponentNodes(0.0, + CBVAV(CBVAVNum).MaxHeatCoilFluidFlow, + CBVAV(CBVAVNum).CoilControlNode, + CBVAV(CBVAVNum).CoilOutletNode, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum); } // end of IF(CBVAV(CBVAVNum)%CoilControlNode .GT. 0)THEN } // end one time inits - if (!BeginEnvrnFlag) { + if (!DataGlobals::BeginEnvrnFlag) { MyEnvrnFlag(CBVAVNum) = true; } // IF CBVAV system was not autosized and the fan is autosized, check that fan volumetric flow rate is greater than CBVAV flow rates - if (!DoingSizing && CBVAV(CBVAVNum).CheckFanFlow) { - CurrentModuleObject = "AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass"; + if (CBVAV(CBVAVNum).CheckFanFlow) { + std::string CurrentModuleObject = "AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass"; - if (CBVAV(CBVAVNum).FanVolFlow != AutoSize) { + if (!DataGlobals::DoingSizing && CBVAV(CBVAVNum).FanVolFlow != DataSizing::AutoSize) { // Check fan versus system supply air flow rates if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxCoolAirVolFlow) { - ShowWarningError(CurrentModuleObject + " - air flow rate = " + TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in fan object " + - CBVAV(CBVAVNum).FanName + " is less than the maximum CBVAV system air flow rate when cooling is required (" + - TrimSigDigits(CBVAV(CBVAVNum).MaxCoolAirVolFlow, 7) + ")."); + ShowWarningError(CurrentModuleObject + " - air flow rate = " + General::TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + + " in fan object " + CBVAV(CBVAVNum).FanName + + " is less than the maximum CBVAV system air flow rate when cooling is required (" + + General::TrimSigDigits(CBVAV(CBVAVNum).MaxCoolAirVolFlow, 7) + ")."); ShowContinueError( " The CBVAV system flow rate when cooling is required is reset to the fan flow rate and the simulation continues."); ShowContinueError(" Occurs in Changeover-bypass VAV system = " + CBVAV(CBVAVNum).Name); CBVAV(CBVAVNum).MaxCoolAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; } if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxHeatAirVolFlow) { - ShowWarningError(CurrentModuleObject + " - air flow rate = " + TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in fan object " + - CBVAV(CBVAVNum).FanName + " is less than the maximum CBVAV system air flow rate when heating is required (" + - TrimSigDigits(CBVAV(CBVAVNum).MaxHeatAirVolFlow, 7) + ")."); + ShowWarningError(CurrentModuleObject + " - air flow rate = " + General::TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + + " in fan object " + CBVAV(CBVAVNum).FanName + + " is less than the maximum CBVAV system air flow rate when heating is required (" + + General::TrimSigDigits(CBVAV(CBVAVNum).MaxHeatAirVolFlow, 7) + ")."); ShowContinueError( " The CBVAV system flow rate when heating is required is reset to the fan flow rate and the simulation continues."); ShowContinueError(" Occurs in Changeover-bypass VAV system = " + CBVAV(CBVAVNum).Name); CBVAV(CBVAVNum).MaxHeatAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; } if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow && CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow != 0.0) { - ShowWarningError(CurrentModuleObject + " - air flow rate = " + TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in fan object " + - CBVAV(CBVAVNum).FanName + + ShowWarningError(CurrentModuleObject + " - air flow rate = " + General::TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + + " in fan object " + CBVAV(CBVAVNum).FanName + " is less than the maximum CBVAV system air flow rate when no heating or cooling is needed (" + - TrimSigDigits(CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow, 7) + ")."); + General::TrimSigDigits(CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow, 7) + ")."); ShowContinueError(" The CBVAV system flow rate when no heating or cooling is needed is reset to the fan flow rate and the " "simulation continues."); ShowContinueError(" Occurs in Changeover-bypass VAV system = " + CBVAV(CBVAVNum).Name); @@ -1729,35 +1635,37 @@ namespace HVACUnitaryBypassVAV { } // Check fan versus outdoor air flow rates if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).CoolOutAirVolFlow) { - ShowWarningError(CurrentModuleObject + " - air flow rate = " + TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in fan object " + - CBVAV(CBVAVNum).FanName + " is less than the maximum CBVAV outdoor air flow rate when cooling is required (" + - TrimSigDigits(CBVAV(CBVAVNum).CoolOutAirVolFlow, 7) + ")."); + ShowWarningError(CurrentModuleObject + " - air flow rate = " + General::TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + + " in fan object " + CBVAV(CBVAVNum).FanName + + " is less than the maximum CBVAV outdoor air flow rate when cooling is required (" + + General::TrimSigDigits(CBVAV(CBVAVNum).CoolOutAirVolFlow, 7) + ")."); ShowContinueError( " The CBVAV outdoor flow rate when cooling is required is reset to the fan flow rate and the simulation continues."); ShowContinueError(" Occurs in Changeover-bypass VAV system = " + CBVAV(CBVAVNum).Name); CBVAV(CBVAVNum).CoolOutAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; } if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).HeatOutAirVolFlow) { - ShowWarningError(CurrentModuleObject + " - air flow rate = " + TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in fan object " + - CBVAV(CBVAVNum).FanName + " is less than the maximum CBVAV outdoor air flow rate when heating is required (" + - TrimSigDigits(CBVAV(CBVAVNum).HeatOutAirVolFlow, 7) + ")."); + ShowWarningError(CurrentModuleObject + " - air flow rate = " + General::TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + + " in fan object " + CBVAV(CBVAVNum).FanName + + " is less than the maximum CBVAV outdoor air flow rate when heating is required (" + + General::TrimSigDigits(CBVAV(CBVAVNum).HeatOutAirVolFlow, 7) + ")."); ShowContinueError( " The CBVAV outdoor flow rate when heating is required is reset to the fan flow rate and the simulation continues."); ShowContinueError(" Occurs in Changeover-bypass VAV system = " + CBVAV(CBVAVNum).Name); CBVAV(CBVAVNum).HeatOutAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; } if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow) { - ShowWarningError(CurrentModuleObject + " - air flow rate = " + TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + " in fan object " + - CBVAV(CBVAVNum).FanName + + ShowWarningError(CurrentModuleObject + " - air flow rate = " + General::TrimSigDigits(CBVAV(CBVAVNum).FanVolFlow, 7) + + " in fan object " + CBVAV(CBVAVNum).FanName + " is less than the maximum CBVAV outdoor air flow rate when no heating or cooling is needed (" + - TrimSigDigits(CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow, 7) + ")."); + General::TrimSigDigits(CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow, 7) + ")."); ShowContinueError(" The CBVAV outdoor flow rate when no heating or cooling is needed is reset to the fan flow rate and the " "simulation continues."); ShowContinueError(" Occurs in Changeover-bypass VAV system = " + CBVAV(CBVAVNum).Name); CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; } - MixerOutsideAirNode = CBVAV(CBVAVNum).MixerOutsideAirNode; - RhoAir = StdRhoAir; + int MixerOutsideAirNode = CBVAV(CBVAVNum).MixerOutsideAirNode; + Real64 RhoAir = DataEnvironment::StdRhoAir; // set the mass flow rates from the reset volume flow rates CBVAV(CBVAVNum).MaxCoolAirMassFlow = RhoAir * CBVAV(CBVAVNum).MaxCoolAirVolFlow; CBVAV(CBVAVNum).CoolOutAirMassFlow = RhoAir * CBVAV(CBVAVNum).CoolOutAirVolFlow; @@ -1766,18 +1674,19 @@ namespace HVACUnitaryBypassVAV { CBVAV(CBVAVNum).MaxNoCoolHeatAirMassFlow = RhoAir * CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow; CBVAV(CBVAVNum).NoCoolHeatOutAirMassFlow = RhoAir * CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow; // set the node max and min mass flow rates based on reset volume flow rates - Node(MixerOutsideAirNode).MassFlowRateMax = max(CBVAV(CBVAVNum).CoolOutAirMassFlow, CBVAV(CBVAVNum).HeatOutAirMassFlow); - Node(MixerOutsideAirNode).MassFlowRateMaxAvail = max(CBVAV(CBVAVNum).CoolOutAirMassFlow, CBVAV(CBVAVNum).HeatOutAirMassFlow); - Node(MixerOutsideAirNode).MassFlowRateMin = 0.0; - Node(MixerOutsideAirNode).MassFlowRateMinAvail = 0.0; - Node(InNode).MassFlowRateMax = max(CBVAV(CBVAVNum).MaxCoolAirMassFlow, CBVAV(CBVAVNum).MaxHeatAirMassFlow); - Node(InNode).MassFlowRateMaxAvail = max(CBVAV(CBVAVNum).MaxCoolAirMassFlow, CBVAV(CBVAVNum).MaxHeatAirMassFlow); - Node(InNode).MassFlowRateMin = 0.0; - Node(InNode).MassFlowRateMinAvail = 0.0; - Node(OutNode).Temp = Node(InNode).Temp; - Node(OutNode).HumRat = Node(InNode).HumRat; - Node(OutNode).Enthalpy = Node(InNode).Enthalpy; - Node(CBVAV(CBVAVNum).MixerReliefAirNode) = Node(MixerOutsideAirNode); + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRateMax = max(CBVAV(CBVAVNum).CoolOutAirMassFlow, CBVAV(CBVAVNum).HeatOutAirMassFlow); + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRateMaxAvail = + max(CBVAV(CBVAVNum).CoolOutAirMassFlow, CBVAV(CBVAVNum).HeatOutAirMassFlow); + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRateMin = 0.0; + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRateMinAvail = 0.0; + DataLoopNode::Node(InNode).MassFlowRateMax = max(CBVAV(CBVAVNum).MaxCoolAirMassFlow, CBVAV(CBVAVNum).MaxHeatAirMassFlow); + DataLoopNode::Node(InNode).MassFlowRateMaxAvail = max(CBVAV(CBVAVNum).MaxCoolAirMassFlow, CBVAV(CBVAVNum).MaxHeatAirMassFlow); + DataLoopNode::Node(InNode).MassFlowRateMin = 0.0; + DataLoopNode::Node(InNode).MassFlowRateMinAvail = 0.0; + DataLoopNode::Node(OutNode).Temp = DataLoopNode::Node(InNode).Temp; + DataLoopNode::Node(OutNode).HumRat = DataLoopNode::Node(InNode).HumRat; + DataLoopNode::Node(OutNode).Enthalpy = DataLoopNode::Node(InNode).Enthalpy; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerReliefAirNode) = DataLoopNode::Node(MixerOutsideAirNode); CBVAV(CBVAVNum).CheckFanFlow = false; if (CBVAV(CBVAVNum).FanVolFlow > 0.0) { CBVAV(CBVAVNum).HeatingSpeedRatio = CBVAV(CBVAVNum).MaxHeatAirVolFlow / CBVAV(CBVAVNum).FanVolFlow; @@ -1788,35 +1697,33 @@ namespace HVACUnitaryBypassVAV { } if (CBVAV(CBVAVNum).FanOpModeSchedPtr > 0) { - if (GetCurrentScheduleValue(CBVAV(CBVAVNum).FanOpModeSchedPtr) == 0.0) { - CBVAV(CBVAVNum).OpMode = CycFanCycCoil; + if (ScheduleManager::GetCurrentScheduleValue(CBVAV(CBVAVNum).FanOpModeSchedPtr) == 0.0) { + CBVAV(CBVAVNum).OpMode = DataHVACGlobals::CycFanCycCoil; } else { - CBVAV(CBVAVNum).OpMode = ContFanCycCoil; + CBVAV(CBVAVNum).OpMode = DataHVACGlobals::ContFanCycCoil; } } // Returns load only for zones requesting cooling (heating). If in deadband, Qzoneload = 0. - GetZoneLoads(CBVAVNum, QZnReq); + GetZoneLoads(CBVAVNum); if (CBVAV(CBVAVNum).OutAirSchPtr > 0) { - OutsideAirMultiplier = GetCurrentScheduleValue(CBVAV(CBVAVNum).OutAirSchPtr); + OutsideAirMultiplier = ScheduleManager::GetCurrentScheduleValue(CBVAV(CBVAVNum).OutAirSchPtr); } else { OutsideAirMultiplier = 1.0; } // Set the inlet node mass flow rate - if (CBVAV(CBVAVNum).OpMode == ContFanCycCoil) { + if (CBVAV(CBVAVNum).OpMode == DataHVACGlobals::ContFanCycCoil) { // constant fan mode if (CBVAV(CBVAVNum).HeatCoolMode == HeatingMode) { CompOnMassFlow = CBVAV(CBVAVNum).MaxHeatAirMassFlow; CompOnFlowRatio = CBVAV(CBVAVNum).HeatingSpeedRatio; OACompOnMassFlow = CBVAV(CBVAVNum).HeatOutAirMassFlow * OutsideAirMultiplier; - CBVAV(CBVAVNum).LastMode = HeatingMode; } else if (CBVAV(CBVAVNum).HeatCoolMode == CoolingMode) { CompOnMassFlow = CBVAV(CBVAVNum).MaxCoolAirMassFlow; CompOnFlowRatio = CBVAV(CBVAVNum).CoolingSpeedRatio; OACompOnMassFlow = CBVAV(CBVAVNum).CoolOutAirMassFlow * OutsideAirMultiplier; - CBVAV(CBVAVNum).LastMode = CoolingMode; } else { CompOnMassFlow = CBVAV(CBVAVNum).MaxNoCoolHeatAirMassFlow; CompOnFlowRatio = CBVAV(CBVAVNum).NoHeatCoolSpeedRatio; @@ -1861,8 +1768,8 @@ namespace HVACUnitaryBypassVAV { // Check for correct control node at outlet of unit if (CBVAV(CBVAVNum).HumRatMaxCheck) { if (CBVAV(CBVAVNum).DehumidControlType > 0) { - if (Node(OutNode).HumRatMax == SensedNodeFlagValue) { - if (!AnyEnergyManagementSystemInModel) { + if (DataLoopNode::Node(OutNode).HumRatMax == DataLoopNode::SensedNodeFlagValue) { + if (!DataGlobals::AnyEnergyManagementSystemInModel) { ShowWarningError("Unitary System:VAV:ChangeOverBypass = " + CBVAV(CBVAVNum).Name); ShowContinueError("Use SetpointManager:SingleZone:Humidity:Maximum to place a humidity setpoint at the air outlet node of " "the unitary system."); @@ -1871,7 +1778,7 @@ namespace HVACUnitaryBypassVAV { } else { // need call to EMS to check node EMSSetPointCheck = false; - CheckIfNodeSetPointManagedByEMS(OutNode, iHumidityRatioMaxSetPoint, EMSSetPointCheck); + EMSManager::CheckIfNodeSetPointManagedByEMS(OutNode, EMSManager::iHumidityRatioMaxSetPoint, EMSSetPointCheck); if (EMSSetPointCheck) { ShowWarningError("Unitary System:VAV:ChangeOverBypass = " + CBVAV(CBVAVNum).Name); ShowContinueError("Use SetpointManager:SingleZone:Humidity:Maximum to place a humidity setpoint at the air outlet node " @@ -1890,13 +1797,13 @@ namespace HVACUnitaryBypassVAV { } // Set the inlet node mass flow rate - if (GetCurrentScheduleValue(CBVAV(CBVAVNum).SchedPtr) > 0.0 && CompOnMassFlow != 0.0) { + if (ScheduleManager::GetCurrentScheduleValue(CBVAV(CBVAVNum).SchedPtr) > 0.0 && CompOnMassFlow != 0.0) { OnOffAirFlowRatio = 1.0; if (FirstHVACIteration) { - Node(CBVAV(CBVAVNum).AirInNode).MassFlowRate = CompOnMassFlow; - Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate = CompOnMassFlow; - Node(CBVAV(CBVAVNum).MixerOutsideAirNode).MassFlowRate = OACompOnMassFlow; - Node(CBVAV(CBVAVNum).MixerReliefAirNode).MassFlowRate = OACompOnMassFlow; + DataLoopNode::Node(CBVAV(CBVAVNum).AirInNode).MassFlowRate = CompOnMassFlow; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate = CompOnMassFlow; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerOutsideAirNode).MassFlowRate = OACompOnMassFlow; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerReliefAirNode).MassFlowRate = OACompOnMassFlow; BypassDuctFlowFraction = 0.0; PartLoadFrac = 0.0; } else { @@ -1905,31 +1812,31 @@ namespace HVACUnitaryBypassVAV { } else { PartLoadFrac = 0.0; } - if (CBVAV(CBVAVNum).OpMode == CycFanCycCoil) { + if (CBVAV(CBVAVNum).OpMode == DataHVACGlobals::CycFanCycCoil) { BypassDuctFlowFraction = 0.0; } else { - BypassDuctFlowFraction = max(0.0, 1.0 - (Node(CBVAV(CBVAVNum).AirInNode).MassFlowRate / CompOnMassFlow)); + BypassDuctFlowFraction = max(0.0, 1.0 - (DataLoopNode::Node(CBVAV(CBVAVNum).AirInNode).MassFlowRate / CompOnMassFlow)); } } } else { PartLoadFrac = 0.0; - Node(CBVAV(CBVAVNum).AirInNode).MassFlowRate = 0.0; - Node(CBVAV(CBVAVNum).AirOutNode).MassFlowRate = 0.0; - Node(CBVAV(CBVAVNum).AirOutNode).MassFlowRateMaxAvail = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).AirInNode).MassFlowRate = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).AirOutNode).MassFlowRate = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).AirOutNode).MassFlowRateMaxAvail = 0.0; - Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate = 0.0; - Node(CBVAV(CBVAVNum).MixerOutsideAirNode).MassFlowRate = 0.0; - Node(CBVAV(CBVAVNum).MixerReliefAirNode).MassFlowRate = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerOutsideAirNode).MassFlowRate = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerReliefAirNode).MassFlowRate = 0.0; OnOffAirFlowRatio = 1.0; BypassDuctFlowFraction = 0.0; } - CalcCBVAV(CBVAVNum, FirstHVACIteration, PartLoadFrac, QSensUnitOut, QZnReq, OnOffAirFlowRatio, HXUnitOn); + CalcCBVAV(CBVAVNum, FirstHVACIteration, PartLoadFrac, QSensUnitOut, OnOffAirFlowRatio, HXUnitOn); // If unit is scheduled OFF, setpoint is equal to inlet node temperature. - if (GetCurrentScheduleValue(CBVAV(CBVAVNum).SchedPtr) == 0.0) { - CBVAV(CBVAVNum).OutletTempSetPoint = Node(InNode).Temp; + if (ScheduleManager::GetCurrentScheduleValue(CBVAV(CBVAVNum).SchedPtr) == 0.0) { + CBVAV(CBVAVNum).OutletTempSetPoint = DataLoopNode::Node(InNode).Temp; return; } @@ -1940,63 +1847,63 @@ namespace HVACUnitaryBypassVAV { // The setpoint is used to control the DX coils at their respective outlet nodes (not the unit outlet), correct // for fan heat for draw thru units only (fan heat is included at the outlet of each coil when blowthru is used) CBVAV(CBVAVNum).CoilTempSetPoint = CBVAV(CBVAVNum).OutletTempSetPoint; - if (CBVAV(CBVAVNum).FanPlace == DrawThru) { - CBVAV(CBVAVNum).CoilTempSetPoint -= (Node(CBVAV(CBVAVNum).AirOutNode).Temp - Node(CBVAV(CBVAVNum).FanInletNodeNum).Temp); + if (CBVAV(CBVAVNum).FanPlace == DataHVACGlobals::DrawThru) { + CBVAV(CBVAVNum).CoilTempSetPoint -= + (DataLoopNode::Node(CBVAV(CBVAVNum).AirOutNode).Temp - DataLoopNode::Node(CBVAV(CBVAVNum).FanInletNodeNum).Temp); } if (FirstHVACIteration) { if (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingWater) { - SimulateWaterCoilComponents(CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex); + WaterCoils::SimulateWaterCoilComponents(CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex); // set air-side and steam-side mass flow rates - Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate = CompOnMassFlow; + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate = CompOnMassFlow; mdot = CBVAV(CBVAVNum).MaxHeatCoilFluidFlow; - SetComponentFlowRate(mdot, - CBVAV(CBVAVNum).CoilControlNode, - CBVAV(CBVAVNum).CoilOutletNode, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum); + PlantUtilities::SetComponentFlowRate(mdot, + CBVAV(CBVAVNum).CoilControlNode, + CBVAV(CBVAVNum).CoilOutletNode, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum); // simulate water coil to find operating capacity - SimulateWaterCoilComponents(CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex, QCoilActual); + WaterCoils::SimulateWaterCoilComponents(CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex, QCoilActual); CBVAV(CBVAVNum).DesignSuppHeatingCapacity = QCoilActual; - } // from IF(MSHeatPump(MSHeatPumpNum)%SuppHeatCoilType == Coil_HeatingWater) THEN + } // from IF(MSHeatPump(MSHeatPumpNum)%SuppHeatCoilType == DataHVACGlobals::Coil_HeatingWater) THEN if (CBVAV(CBVAVNum).HeatCoilType_Num == DataHVACGlobals::Coil_HeatingSteam) { // set air-side and steam-side mass flow rates - Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate = CompOnMassFlow; + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate = CompOnMassFlow; mdot = CBVAV(CBVAVNum).MaxHeatCoilFluidFlow; - SetComponentFlowRate(mdot, - CBVAV(CBVAVNum).CoilControlNode, - CBVAV(CBVAVNum).CoilOutletNode, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum); + PlantUtilities::SetComponentFlowRate(mdot, + CBVAV(CBVAVNum).CoilControlNode, + CBVAV(CBVAVNum).CoilOutletNode, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum); // simulate steam coil to find operating capacity - SimulateSteamCoilComponents(CBVAV(CBVAVNum).HeatCoilName, - FirstHVACIteration, - CBVAV(CBVAVNum).HeatCoilIndex, - 1.0, - QCoilActual); // QCoilReq, simulate any load > 0 to get max capacity of steam coil + SteamCoils::SimulateSteamCoilComponents(CBVAV(CBVAVNum).HeatCoilName, + FirstHVACIteration, + CBVAV(CBVAVNum).HeatCoilIndex, + 1.0, + QCoilActual); // QCoilReq, simulate any load > 0 to get max capacity of steam coil CBVAV(CBVAVNum).DesignSuppHeatingCapacity = QCoilActual; } // from IF(CBVAV(CBVAVNum)%HeatCoilType_Num == DataHVACGlobals::Coil_HeatingSteam) THEN } // from IF( FirstHVACIteration ) THEN - if ((CBVAV(CBVAVNum).HeatCoolMode == 0 && CBVAV(CBVAVNum).OpMode == CycFanCycCoil) || CompOnMassFlow == 0.0) { - QZnReq = 0.0; + if ((CBVAV(CBVAVNum).HeatCoolMode == 0 && CBVAV(CBVAVNum).OpMode == DataHVACGlobals::CycFanCycCoil) || CompOnMassFlow == 0.0) { PartLoadFrac = 0.0; - Node(CBVAV(CBVAVNum).AirInNode).MassFlowRate = 0.0; - Node(CBVAV(CBVAVNum).AirOutNode).MassFlowRateMaxAvail = 0.0; - Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate = 0.0; - Node(CBVAV(CBVAVNum).MixerOutsideAirNode).MassFlowRate = 0.0; - Node(CBVAV(CBVAVNum).MixerReliefAirNode).MassFlowRate = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).AirInNode).MassFlowRate = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).AirOutNode).MassFlowRateMaxAvail = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerOutsideAirNode).MassFlowRate = 0.0; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerReliefAirNode).MassFlowRate = 0.0; } } @@ -2006,8 +1913,6 @@ namespace HVACUnitaryBypassVAV { // SUBROUTINE INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN July 2006 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // This subroutine is for sizing changeover-bypass VAV components. @@ -2015,33 +1920,31 @@ namespace HVACUnitaryBypassVAV { // METHODOLOGY EMPLOYED: // Obtains flow rates from the zone sizing arrays. - // Using/Aliasing - using namespace DataSizing; - using DataAirSystems::PrimaryAirSystem; - using ReportSizingManager::ReportSizingOutput; + int curSysNum = DataSizing::CurSysNum; + int curOASysNum = DataSizing::CurOASysNum; - if (CurSysNum > 0 && CurOASysNum == 0) { + if (curSysNum > 0 && curOASysNum == 0) { if (CBVAV(CBVAVNum).FanType_Num == DataHVACGlobals::FanType_SystemModelObject) { - PrimaryAirSystem(CurSysNum).supFanVecIndex = CBVAV(CBVAVNum).FanIndex; - PrimaryAirSystem(CurSysNum).supFanModelTypeEnum = DataAirSystems::objectVectorOOFanSystemModel; + DataAirSystems::PrimaryAirSystem(curSysNum).supFanVecIndex = CBVAV(CBVAVNum).FanIndex; + DataAirSystems::PrimaryAirSystem(curSysNum).supFanModelTypeEnum = DataAirSystems::objectVectorOOFanSystemModel; } else { - PrimaryAirSystem(CurSysNum).SupFanNum = CBVAV(CBVAVNum).FanIndex; - PrimaryAirSystem(CurSysNum).supFanModelTypeEnum = DataAirSystems::structArrayLegacyFanModels; + DataAirSystems::PrimaryAirSystem(curSysNum).SupFanNum = CBVAV(CBVAVNum).FanIndex; + DataAirSystems::PrimaryAirSystem(curSysNum).supFanModelTypeEnum = DataAirSystems::structArrayLegacyFanModels; } - if (CBVAV(CBVAVNum).FanPlace == BlowThru) { - DataAirSystems::PrimaryAirSystem(CurSysNum).supFanLocation = DataAirSystems::fanPlacement::BlowThru; - } else if (CBVAV(CBVAVNum).FanPlace == DrawThru) { - DataAirSystems::PrimaryAirSystem(CurSysNum).supFanLocation = DataAirSystems::fanPlacement::DrawThru; + if (CBVAV(CBVAVNum).FanPlace == DataHVACGlobals::BlowThru) { + DataAirSystems::PrimaryAirSystem(curSysNum).supFanLocation = DataAirSystems::fanPlacement::BlowThru; + } else if (CBVAV(CBVAVNum).FanPlace == DataHVACGlobals::DrawThru) { + DataAirSystems::PrimaryAirSystem(curSysNum).supFanLocation = DataAirSystems::fanPlacement::DrawThru; } } - if (CBVAV(CBVAVNum).MaxCoolAirVolFlow == AutoSize) { + if (CBVAV(CBVAVNum).MaxCoolAirVolFlow == DataSizing::AutoSize) { - if (CurSysNum > 0) { + if (curSysNum > 0) { CheckSysSizing(CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name); - CBVAV(CBVAVNum).MaxCoolAirVolFlow = FinalSysSizing(CurSysNum).DesMainVolFlow; - if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxCoolAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != AutoSize) { + CBVAV(CBVAVNum).MaxCoolAirVolFlow = DataSizing::FinalSysSizing(curSysNum).DesMainVolFlow; + if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxCoolAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != DataSizing::AutoSize) { CBVAV(CBVAVNum).MaxCoolAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; ShowWarningError(CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); ShowContinueError("The CBVAV system supply air fan air flow rate is less than the autosized value for the maximum air flow rate " @@ -2049,21 +1952,21 @@ namespace HVACUnitaryBypassVAV { ShowContinueError( "The maximum air flow rate in cooling mode is reset to the supply air fan flow rate and the simulation continues."); } - if (CBVAV(CBVAVNum).MaxCoolAirVolFlow < SmallAirVolFlow) { + if (CBVAV(CBVAVNum).MaxCoolAirVolFlow < DataHVACGlobals::SmallAirVolFlow) { CBVAV(CBVAVNum).MaxCoolAirVolFlow = 0.0; } - ReportSizingOutput( + ReportSizingManager::ReportSizingOutput( CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name, "maximum cooling air flow rate [m3/s]", CBVAV(CBVAVNum).MaxCoolAirVolFlow); } } - if (CBVAV(CBVAVNum).MaxHeatAirVolFlow == AutoSize) { + if (CBVAV(CBVAVNum).MaxHeatAirVolFlow == DataSizing::AutoSize) { - if (CurSysNum > 0) { + if (curSysNum > 0) { CheckSysSizing(CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name); - CBVAV(CBVAVNum).MaxHeatAirVolFlow = FinalSysSizing(CurSysNum).DesMainVolFlow; - if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxHeatAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != AutoSize) { + CBVAV(CBVAVNum).MaxHeatAirVolFlow = DataSizing::FinalSysSizing(curSysNum).DesMainVolFlow; + if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxHeatAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != DataSizing::AutoSize) { CBVAV(CBVAVNum).MaxHeatAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; ShowWarningError(CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); ShowContinueError("The CBVAV system supply air fan air flow rate is less than the autosized value for the maximum air flow rate " @@ -2071,21 +1974,21 @@ namespace HVACUnitaryBypassVAV { ShowContinueError( "The maximum air flow rate in heating mode is reset to the supply air fan flow rate and the simulation continues."); } - if (CBVAV(CBVAVNum).MaxHeatAirVolFlow < SmallAirVolFlow) { + if (CBVAV(CBVAVNum).MaxHeatAirVolFlow < DataHVACGlobals::SmallAirVolFlow) { CBVAV(CBVAVNum).MaxHeatAirVolFlow = 0.0; } - ReportSizingOutput( + ReportSizingManager::ReportSizingOutput( CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name, "maximum heating air flow rate [m3/s]", CBVAV(CBVAVNum).MaxHeatAirVolFlow); } } - if (CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow == AutoSize) { + if (CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow == DataSizing::AutoSize) { - if (CurSysNum > 0) { + if (curSysNum > 0) { CheckSysSizing(CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name); - CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow = FinalSysSizing(CurSysNum).DesMainVolFlow; - if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != AutoSize) { + CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow = DataSizing::FinalSysSizing(curSysNum).DesMainVolFlow; + if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != DataSizing::AutoSize) { CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; ShowWarningError(CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); ShowContinueError("The CBVAV system supply air fan air flow rate is less than the autosized value for the maximum air flow rate " @@ -2093,24 +1996,24 @@ namespace HVACUnitaryBypassVAV { ShowContinueError("The maximum air flow rate when no heating or cooling is needed is reset to the supply air fan flow rate and " "the simulation continues."); } - if (CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow < SmallAirVolFlow) { + if (CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow < DataHVACGlobals::SmallAirVolFlow) { CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow = 0.0; } - ReportSizingOutput(CBVAV(CBVAVNum).UnitType, - CBVAV(CBVAVNum).Name, - "maximum air flow rate when compressor/coil is off [m3/s]", - CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow); + ReportSizingManager::ReportSizingOutput(CBVAV(CBVAVNum).UnitType, + CBVAV(CBVAVNum).Name, + "maximum air flow rate when compressor/coil is off [m3/s]", + CBVAV(CBVAVNum).MaxNoCoolHeatAirVolFlow); } } - if (CBVAV(CBVAVNum).CoolOutAirVolFlow == AutoSize) { + if (CBVAV(CBVAVNum).CoolOutAirVolFlow == DataSizing::AutoSize) { - if (CurSysNum > 0) { + if (curSysNum > 0) { CheckSysSizing(CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name); - CBVAV(CBVAVNum).CoolOutAirVolFlow = FinalSysSizing(CurSysNum).DesOutAirVolFlow; - if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).CoolOutAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != AutoSize) { + CBVAV(CBVAVNum).CoolOutAirVolFlow = DataSizing::FinalSysSizing(curSysNum).DesOutAirVolFlow; + if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).CoolOutAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != DataSizing::AutoSize) { CBVAV(CBVAVNum).CoolOutAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; ShowWarningError(CBVAV(CBVAVNum).UnitType + " \"" + CBVAV(CBVAVNum).Name + "\""); ShowContinueError("The CBVAV system supply air fan air flow rate is less than the autosized value for the outdoor air flow rate " @@ -2118,66 +2021,65 @@ namespace HVACUnitaryBypassVAV { ShowContinueError( "The outdoor air flow rate in cooling mode is reset to the supply air fan flow rate and the simulation continues."); } - if (CBVAV(CBVAVNum).CoolOutAirVolFlow < SmallAirVolFlow) { + if (CBVAV(CBVAVNum).CoolOutAirVolFlow < DataHVACGlobals::SmallAirVolFlow) { CBVAV(CBVAVNum).CoolOutAirVolFlow = 0.0; } - ReportSizingOutput(CBVAV(CBVAVNum).UnitType, - CBVAV(CBVAVNum).Name, - "maximum outside air flow rate in cooling [m3/s]", - CBVAV(CBVAVNum).CoolOutAirVolFlow); + ReportSizingManager::ReportSizingOutput(CBVAV(CBVAVNum).UnitType, + CBVAV(CBVAVNum).Name, + "maximum outside air flow rate in cooling [m3/s]", + CBVAV(CBVAVNum).CoolOutAirVolFlow); } } - if (CBVAV(CBVAVNum).HeatOutAirVolFlow == AutoSize) { + if (CBVAV(CBVAVNum).HeatOutAirVolFlow == DataSizing::AutoSize) { - if (CurSysNum > 0) { + if (curSysNum > 0) { CheckSysSizing(CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name); - CBVAV(CBVAVNum).HeatOutAirVolFlow = FinalSysSizing(CurSysNum).DesOutAirVolFlow; - if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).HeatOutAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != AutoSize) { + CBVAV(CBVAVNum).HeatOutAirVolFlow = DataSizing::FinalSysSizing(curSysNum).DesOutAirVolFlow; + if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).HeatOutAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != DataSizing::AutoSize) { CBVAV(CBVAVNum).HeatOutAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; ShowContinueError("The CBVAV system supply air fan air flow rate is less than the autosized value for the outdoor air flow rate " "in heating mode. Consider autosizing the fan for this simulation."); ShowContinueError( "The outdoor air flow rate in heating mode is reset to the supply air fan flow rate and the simulation continues."); } - if (CBVAV(CBVAVNum).HeatOutAirVolFlow < SmallAirVolFlow) { + if (CBVAV(CBVAVNum).HeatOutAirVolFlow < DataHVACGlobals::SmallAirVolFlow) { CBVAV(CBVAVNum).HeatOutAirVolFlow = 0.0; } - ReportSizingOutput(CBVAV(CBVAVNum).UnitType, - CBVAV(CBVAVNum).Name, - "maximum outdoor air flow rate in heating [m3/s]", - CBVAV(CBVAVNum).CoolOutAirVolFlow); + ReportSizingManager::ReportSizingOutput(CBVAV(CBVAVNum).UnitType, + CBVAV(CBVAVNum).Name, + "maximum outdoor air flow rate in heating [m3/s]", + CBVAV(CBVAVNum).CoolOutAirVolFlow); } } - if (CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow == AutoSize) { + if (CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow == DataSizing::AutoSize) { - if (CurSysNum > 0) { + if (curSysNum > 0) { CheckSysSizing(CBVAV(CBVAVNum).UnitType, CBVAV(CBVAVNum).Name); - CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow = FinalSysSizing(CurSysNum).DesOutAirVolFlow; - if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != AutoSize) { + CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow = DataSizing::FinalSysSizing(curSysNum).DesOutAirVolFlow; + if (CBVAV(CBVAVNum).FanVolFlow < CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow && CBVAV(CBVAVNum).FanVolFlow != DataSizing::AutoSize) { CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow = CBVAV(CBVAVNum).FanVolFlow; ShowContinueError("The CBVAV system supply air fan air flow rate is less than the autosized value for the outdoor air flow rate " "when no heating or cooling is needed. Consider autosizing the fan for this simulation."); ShowContinueError("The outdoor air flow rate when no heating or cooling is needed is reset to the supply air fan flow rate and " "the simulation continues."); } - if (CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow < SmallAirVolFlow) { + if (CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow < DataHVACGlobals::SmallAirVolFlow) { CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow = 0.0; } - ReportSizingOutput(CBVAV(CBVAVNum).UnitType, - CBVAV(CBVAVNum).Name, - "maximum outdoor air flow rate when compressor is off [m3/s]", - CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow); + ReportSizingManager::ReportSizingOutput(CBVAV(CBVAVNum).UnitType, + CBVAV(CBVAVNum).Name, + "maximum outdoor air flow rate when compressor is off [m3/s]", + CBVAV(CBVAVNum).NoCoolHeatOutAirVolFlow); } } } void ControlCBVAVOutput(int const CBVAVNum, // Index to CBVAV system bool const FirstHVACIteration, // Flag for 1st HVAC iteration - Real64 &QZnReq, // Cooling or heating output needed by zone [W] Real64 &PartLoadFrac, // Unit part load fraction Real64 &OnOffAirFlowRatio, // Ratio of compressor ON airflow to AVERAGE airflow over timestep bool &HXUnitOn // flag to enable heat exchanger @@ -2187,8 +2089,6 @@ namespace HVACUnitaryBypassVAV { // SUBROUTINE INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN July 2006 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Determine the part load fraction of the CBVAV system for this time step. @@ -2196,38 +2096,19 @@ namespace HVACUnitaryBypassVAV { // METHODOLOGY EMPLOYED: // Use RegulaFalsi technique to iterate on part-load ratio until convergence is achieved. - // REFERENCES: - // na - - // Using/Aliasing - using DataHVACGlobals::SmallTempDiff; - using ScheduleManager::GetCurrentScheduleValue; - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 FullOutput; // Unit full output when compressor is operating [W] - + Real64 FullOutput = 0; // Unit full output when compressor is operating [W] PartLoadFrac = 0.0; - if (GetCurrentScheduleValue(CBVAV(CBVAVNum).SchedPtr) == 0.0) return; + if (ScheduleManager::GetCurrentScheduleValue(CBVAV(CBVAVNum).SchedPtr) == 0.0) return; // Get operating result PartLoadFrac = 1.0; - CalcCBVAV(CBVAVNum, FirstHVACIteration, PartLoadFrac, FullOutput, QZnReq, OnOffAirFlowRatio, HXUnitOn); + CalcCBVAV(CBVAVNum, FirstHVACIteration, PartLoadFrac, FullOutput, OnOffAirFlowRatio, HXUnitOn); - if ((Node(CBVAV(CBVAVNum).AirOutNode).Temp - CBVAV(CBVAVNum).OutletTempSetPoint) > SmallTempDiff && CBVAV(CBVAVNum).HeatCoolMode > 0 && - PartLoadFrac < 1.0) { - CalcCBVAV(CBVAVNum, FirstHVACIteration, PartLoadFrac, FullOutput, QZnReq, OnOffAirFlowRatio, HXUnitOn); + if ((DataLoopNode::Node(CBVAV(CBVAVNum).AirOutNode).Temp - CBVAV(CBVAVNum).OutletTempSetPoint) > DataHVACGlobals::SmallTempDiff && + CBVAV(CBVAVNum).HeatCoolMode > 0 && PartLoadFrac < 1.0) { + CalcCBVAV(CBVAVNum, FirstHVACIteration, PartLoadFrac, FullOutput, OnOffAirFlowRatio, HXUnitOn); } } @@ -2235,7 +2116,6 @@ namespace HVACUnitaryBypassVAV { bool const FirstHVACIteration, // Flag for 1st HVAC iteration Real64 &PartLoadFrac, // Compressor part load fraction Real64 &LoadMet, // Load met by unit (W) - Real64 &EP_UNUSED(QZnReq), // Zone load (W) Real64 &OnOffAirFlowRatio, // Ratio of compressor ON airflow to AVERAGE airflow over timestep bool const HXUnitOn // flag to enable heat exchanger ) @@ -2244,8 +2124,6 @@ namespace HVACUnitaryBypassVAV { // SUBROUTINE INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN July 2006 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Simulate the components making up the changeover-bypass VAV system. @@ -2253,75 +2131,51 @@ namespace HVACUnitaryBypassVAV { // METHODOLOGY EMPLOYED: // Simulates the unit components sequentially in the air flow direction. - // REFERENCES: - // na - - // Using/Aliasing - using DataHVACGlobals::SmallTempDiff; - using DXCoils::SimDXCoil; - using DXCoils::SimDXCoilMultiMode; - using General::RoundSigDigits; - using General::SolveRoot; - using HVACHXAssistedCoolingCoil::SimHXAssistedCoolingCoil; - using MixedAir::SimOAMixer; - using Psychrometrics::PsyCpAirFnWTdb; - using Psychrometrics::PsyHFnTdbW; - using Psychrometrics::PsyTdpFnWPb; - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // SUBROUTINE PARAMETER DEFINITIONS: int const MaxIte(500); // Maximum number of iterations - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int OutletNode; // CBVAV air outlet node - int InletNode; // CBVAV air inlet node - Real64 MinHumRat; // Minimum humidity ratio for sensible capacity calculation (kg/kg) - Array1D Par(6); // RegulaFalsi parameters - int SolFla; // Flag of RegulaFalsi solver - Real64 QHeater; // Load to be met by heater [W] - Real64 QHeaterActual; // actual heating load met [W] - Real64 CpAir; // Specific heat of air [J/kg-K] - int MixerOutsideAirNode; // Outside air node number in OA mixer - int MixerReliefAirNode; // Relief air node number in OA mixer - int DehumidMode; // Dehumidification mode (0=normal, 1=enhanced) + Real64 MinHumRat; // Minimum humidity ratio for sensible capacity calculation (kg/kg) + Array1D Par(6); // RegulaFalsi parameters + int SolFla; // Flag of RegulaFalsi solver + Real64 QHeater; // Load to be met by heater [W] + Real64 QHeaterActual; // actual heating load met [W] + Real64 CpAir; // Specific heat of air [J/kg-K] + int DehumidMode; // Dehumidification mode (0=normal, 1=enhanced) Real64 ApproachTemp; Real64 DesiredDewPoint; Real64 OutdoorDryBulbTemp; // Dry-bulb temperature at outdoor condenser Real64 OutdoorBaroPress; // Barometric pressure at outdoor condenser // FLOW - OutletNode = CBVAV(CBVAVNum).AirOutNode; - InletNode = CBVAV(CBVAVNum).AirInNode; - MixerOutsideAirNode = CBVAV(CBVAVNum).MixerOutsideAirNode; - MixerReliefAirNode = CBVAV(CBVAVNum).MixerReliefAirNode; + int OutletNode = CBVAV(CBVAVNum).AirOutNode; + int InletNode = CBVAV(CBVAVNum).AirInNode; if (CBVAV(CBVAVNum).CondenserNodeNum > 0) { - OutdoorDryBulbTemp = Node(CBVAV(CBVAVNum).CondenserNodeNum).Temp; - OutdoorBaroPress = Node(CBVAV(CBVAVNum).CondenserNodeNum).Press; + OutdoorDryBulbTemp = DataLoopNode::Node(CBVAV(CBVAVNum).CondenserNodeNum).Temp; + OutdoorBaroPress = DataLoopNode::Node(CBVAV(CBVAVNum).CondenserNodeNum).Press; } else { - OutdoorDryBulbTemp = OutDryBulbTemp; - OutdoorBaroPress = OutBaroPress; + OutdoorDryBulbTemp = DataEnvironment::OutDryBulbTemp; + OutdoorBaroPress = DataEnvironment::OutBaroPress; } SaveCompressorPLR = 0.0; // Bypass excess system air through bypass duct and calculate new mixed air conditions at OA mixer inlet node - Node(CBVAV(CBVAVNum).MixerInletAirNode).Temp = - (1.0 - BypassDuctFlowFraction) * Node(InletNode).Temp + BypassDuctFlowFraction * Node(OutletNode).Temp; - Node(CBVAV(CBVAVNum).MixerInletAirNode).HumRat = - (1.0 - BypassDuctFlowFraction) * Node(InletNode).HumRat + BypassDuctFlowFraction * Node(OutletNode).HumRat; - Node(CBVAV(CBVAVNum).MixerInletAirNode).Enthalpy = - PsyHFnTdbW(Node(CBVAV(CBVAVNum).MixerInletAirNode).Temp, Node(CBVAV(CBVAVNum).MixerInletAirNode).HumRat); - SimOAMixer(CBVAV(CBVAVNum).OAMixName, FirstHVACIteration, CBVAV(CBVAVNum).OAMixIndex); - - if (CBVAV(CBVAVNum).FanPlace == BlowThru) { + if (CBVAV(CBVAVNum).plenumIndex > 0 || CBVAV(CBVAVNum).mixerIndex > 0) { + Real64 saveMixerInletAirNodeFlow = DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode) = DataLoopNode::Node(InletNode); + DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate = saveMixerInletAirNodeFlow; + } else { + DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).Temp = + (1.0 - BypassDuctFlowFraction) * DataLoopNode::Node(InletNode).Temp + BypassDuctFlowFraction * DataLoopNode::Node(OutletNode).Temp; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).HumRat = (1.0 - BypassDuctFlowFraction) * DataLoopNode::Node(InletNode).HumRat + + BypassDuctFlowFraction * DataLoopNode::Node(OutletNode).HumRat; + DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).Enthalpy = Psychrometrics::PsyHFnTdbW( + DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).Temp, DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).HumRat); + } + MixedAir::SimOAMixer(CBVAV(CBVAVNum).OAMixName, FirstHVACIteration, CBVAV(CBVAVNum).OAMixIndex); + + if (CBVAV(CBVAVNum).FanPlace == DataHVACGlobals::BlowThru) { if (CBVAV(CBVAVNum).FanType_Num == DataHVACGlobals::FanType_SystemModelObject) { HVACFan::fanObjs[CBVAV(CBVAVNum).FanIndex]->simulate(1.0 / OnOffAirFlowRatio, _, _, _); } else { @@ -2336,25 +2190,25 @@ namespace HVACUnitaryBypassVAV { auto const SELECT_CASE_var(CBVAV(CBVAVNum).DXCoolCoilType_Num); if (SELECT_CASE_var == DataHVACGlobals::CoilDX_CoolingHXAssisted) { - SimHXAssistedCoolingCoil(CBVAV(CBVAVNum).DXCoolCoilName, - FirstHVACIteration, - On, - PartLoadFrac, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil, - HXUnitOn); - if (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp <= CBVAV(CBVAVNum).CoilTempSetPoint) { + HVACHXAssistedCoolingCoil::SimHXAssistedCoolingCoil(CBVAV(CBVAVNum).DXCoolCoilName, + FirstHVACIteration, + On, + PartLoadFrac, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + HXUnitOn); + if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp <= CBVAV(CBVAVNum).CoilTempSetPoint) { // If coil inlet temp is already below the setpoint, simulated with coil off PartLoadFrac = 0.0; - SimHXAssistedCoolingCoil(CBVAV(CBVAVNum).DXCoolCoilName, - FirstHVACIteration, - Off, - PartLoadFrac, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil, - HXUnitOn); - } else if (Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint && - Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { + HVACHXAssistedCoolingCoil::SimHXAssistedCoolingCoil(CBVAV(CBVAVNum).DXCoolCoilName, + FirstHVACIteration, + Off, + PartLoadFrac, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + HXUnitOn); + } else if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint && + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { Par(1) = double(CBVAV(CBVAVNum).CoolCoilCompIndex); Par(2) = CBVAV(CBVAVNum).CoilTempSetPoint; Par(3) = OnOffAirFlowRatio; @@ -2369,20 +2223,20 @@ namespace HVACUnitaryBypassVAV { } else { Par(6) = 0.0; } - SolveRoot(SmallTempDiff, MaxIte, SolFla, PartLoadFrac, HXAssistDXCoilResidual, 0.0, 1.0, Par); - SimHXAssistedCoolingCoil(CBVAV(CBVAVNum).DXCoolCoilName, - FirstHVACIteration, - On, - PartLoadFrac, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil, - HXUnitOn); - if (SolFla == -1 && !WarmupFlag) { + General::SolveRoot(DataHVACGlobals::SmallTempDiff, MaxIte, SolFla, PartLoadFrac, HXAssistDXCoilResidual, 0.0, 1.0, Par); + HVACHXAssistedCoolingCoil::SimHXAssistedCoolingCoil(CBVAV(CBVAVNum).DXCoolCoilName, + FirstHVACIteration, + On, + PartLoadFrac, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + HXUnitOn); + if (SolFla == -1 && !DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).HXDXIterationExceeded < 1) { ++CBVAV(CBVAVNum).HXDXIterationExceeded; ShowWarningError("Iteration limit exceeded calculating HX assisted DX unit part-load ratio, for unit = " + CBVAV(CBVAVNum).DXCoolCoilName); - ShowContinueError("Calculated part-load ratio = " + RoundSigDigits(PartLoadFrac, 3)); + ShowContinueError("Calculated part-load ratio = " + General::RoundSigDigits(PartLoadFrac, 3)); ShowContinueErrorTimeStamp( "The calculated part-load ratio will be used and the simulation continues. Occurrence info:"); } else { @@ -2392,18 +2246,18 @@ namespace HVACUnitaryBypassVAV { PartLoadFrac, PartLoadFrac); } - } else if (SolFla == -2 && !WarmupFlag) { - PartLoadFrac = - max(0.0, - min(1.0, - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); + } else if (SolFla == -2 && !DataGlobals::WarmupFlag) { + PartLoadFrac = max(0.0, + min(1.0, + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); if (CBVAV(CBVAVNum).HXDXIterationFailed < 1) { ++CBVAV(CBVAVNum).HXDXIterationFailed; ShowSevereError( "HX assisted DX unit part-load ratio calculation failed: part-load ratio limits exceeded, for unit = " + CBVAV(CBVAVNum).DXCoolCoilName); - ShowContinueErrorTimeStamp("An estimated part-load ratio of " + RoundSigDigits(PartLoadFrac, 3) + + ShowContinueErrorTimeStamp("An estimated part-load ratio of " + General::RoundSigDigits(PartLoadFrac, 3) + "will be used and the simulation continues. Occurrence info:"); } else { ShowRecurringWarningErrorAtEnd( @@ -2415,42 +2269,42 @@ namespace HVACUnitaryBypassVAV { } } } else if (SELECT_CASE_var == DataHVACGlobals::CoilDX_CoolingSingleSpeed) { - SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, - On, - FirstHVACIteration, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil, - PartLoadFrac, - OnOffAirFlowRatio); - if (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { + DXCoils::SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, + On, + FirstHVACIteration, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + PartLoadFrac, + OnOffAirFlowRatio); + if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { // If coil inlet temp is already below the setpoint, simulated with coil off PartLoadFrac = 0.0; - SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, - On, - FirstHVACIteration, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil, - PartLoadFrac, - OnOffAirFlowRatio); - } else if (Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint && - Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { + DXCoils::SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, + On, + FirstHVACIteration, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + PartLoadFrac, + OnOffAirFlowRatio); + } else if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint && + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { Par(1) = double(CBVAV(CBVAVNum).CoolCoilCompIndex); Par(2) = CBVAV(CBVAVNum).CoilTempSetPoint; Par(3) = OnOffAirFlowRatio; - SolveRoot(SmallTempDiff, MaxIte, SolFla, PartLoadFrac, DOE2DXCoilResidual, 0.0, 1.0, Par); - SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, - On, - FirstHVACIteration, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil, - PartLoadFrac, - OnOffAirFlowRatio); - if (SolFla == -1 && !WarmupFlag) { + General::SolveRoot(DataHVACGlobals::SmallTempDiff, MaxIte, SolFla, PartLoadFrac, DOE2DXCoilResidual, 0.0, 1.0, Par); + DXCoils::SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, + On, + FirstHVACIteration, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + PartLoadFrac, + OnOffAirFlowRatio); + if (SolFla == -1 && !DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).DXIterationExceeded < 1) { ++CBVAV(CBVAVNum).DXIterationExceeded; ShowWarningError("Iteration limit exceeded calculating DX unit part-load ratio, for unit = " + CBVAV(CBVAVNum).DXCoolCoilName); - ShowContinueError("Calculated part-load ratio = " + RoundSigDigits(PartLoadFrac, 3)); + ShowContinueError("Calculated part-load ratio = " + General::RoundSigDigits(PartLoadFrac, 3)); ShowContinueErrorTimeStamp( "The calculated part-load ratio will be used and the simulation continues. Occurrence info:"); } else { @@ -2460,17 +2314,17 @@ namespace HVACUnitaryBypassVAV { PartLoadFrac, PartLoadFrac); } - } else if (SolFla == -2 && !WarmupFlag) { - PartLoadFrac = - max(0.0, - min(1.0, - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); + } else if (SolFla == -2 && !DataGlobals::WarmupFlag) { + PartLoadFrac = max(0.0, + min(1.0, + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); if (CBVAV(CBVAVNum).DXIterationFailed < 1) { ++CBVAV(CBVAVNum).DXIterationFailed; ShowSevereError("DX unit part-load ratio calculation failed: part-load ratio limits exceeded, for unit = " + CBVAV(CBVAVNum).DXCoolCoilName); - ShowContinueErrorTimeStamp("An estimated part-load ratio of " + RoundSigDigits(PartLoadFrac, 3) + + ShowContinueErrorTimeStamp("An estimated part-load ratio of " + General::RoundSigDigits(PartLoadFrac, 3) + "will be used and the simulation continues. Occurrence info:"); } else { ShowRecurringWarningErrorAtEnd(CBVAV(CBVAVNum).Name + @@ -2481,7 +2335,7 @@ namespace HVACUnitaryBypassVAV { } } } - SaveCompressorPLR = DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); + SaveCompressorPLR = DXCoils::DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); } else if (SELECT_CASE_var == DataHVACGlobals::Coil_CoolingAirToAirVariableSpeed) { Real64 QZnReq(0.0); // Zone load (W), input to variable-speed DX coil Real64 QLatReq(0.0); // Zone latent load, input to variable-speed DX coil @@ -2509,9 +2363,11 @@ namespace HVACUnitaryBypassVAV { QZnReq, QLatReq); - Real64 NoOutput = Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * - (PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); + Real64 NoOutput = DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); // Get full load result PartLoadFrac = 1.0; @@ -2520,7 +2376,7 @@ namespace HVACUnitaryBypassVAV { QZnReq = 0.001; // to indicate the coil is running VariableSpeedCoils::SimVariableSpeedCoils(CBVAV(CBVAVNum).DXCoolCoilName, CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil, + DataHVACGlobals::ContFanCycCoil, MaxONOFFCyclesperHour, HPTimeConstant, FanDelayTime, @@ -2531,12 +2387,15 @@ namespace HVACUnitaryBypassVAV { QZnReq, QLatReq); - Real64 FullOutput = Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * - (PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); - Real64 ReqOutput = Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * - (PsyHFnTdbW(DesOutTemp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); + Real64 FullOutput = DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); + Real64 ReqOutput = DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DesOutTemp, DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); Real64 loadAccuracy(0.001); // Watts, power Real64 tempAccuracy(0.001); // delta C, temperature @@ -2560,8 +2419,8 @@ namespace HVACUnitaryBypassVAV { QZnReq, QLatReq); - } else if ((FullOutput - ReqOutput) > - loadAccuracy) { // If the FullOutput is greater than (insufficient cooling) or very near the ReqOutput, + } else if ((FullOutput - ReqOutput) > loadAccuracy) { + // If the FullOutput is greater than (insufficient cooling) or very near the ReqOutput, // run the compressor at PartLoadFrac = 1. PartLoadFrac = 1.0; SpeedNum = maxNumSpeeds; @@ -2596,14 +2455,16 @@ namespace HVACUnitaryBypassVAV { QLatReq, OnOffAirFlowRatio); - Real64 TempSpeedOut = - Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * - (PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); + Real64 TempSpeedOut = DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); Real64 TempSpeedReqst = - Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * - (PsyHFnTdbW(DesOutTemp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DesOutTemp, DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); if ((TempSpeedOut - TempSpeedReqst) > tempAccuracy) { // Check to see which speed to meet the load @@ -2625,14 +2486,16 @@ namespace HVACUnitaryBypassVAV { QLatReq, OnOffAirFlowRatio); - TempSpeedOut = - Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * - (PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); + TempSpeedOut = DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); TempSpeedReqst = - Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * - (PsyHFnTdbW(DesOutTemp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DesOutTemp, DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat)); if ((TempSpeedOut - TempSpeedReqst) < tempAccuracy) { SpeedNum = I; @@ -2644,16 +2507,17 @@ namespace HVACUnitaryBypassVAV { Par(2) = DesOutTemp; Par(5) = double(DataHVACGlobals::ContFanCycCoil); Par(3) = double(SpeedNum); - SolveRoot(tempAccuracy, MaxIte, SolFla, SpeedRatio, HVACDXSystem::VSCoilSpeedResidual, 1.0e-10, 1.0, Par); + General::SolveRoot( + tempAccuracy, MaxIte, SolFla, SpeedRatio, HVACDXSystem::VSCoilSpeedResidual, 1.0e-10, 1.0, Par); if (SolFla == -1) { - if (!WarmupFlag) { + if (!DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).DXIterationExceeded < 4) { ++CBVAV(CBVAVNum).DXIterationExceeded; ShowWarningError(CBVAV(CBVAVNum).DXCoolCoilType + " - Iteration limit exceeded calculating VS DX coil speed ratio for coil named " + CBVAV(CBVAVNum).DXCoolCoilName + ", in Unitary system named" + CBVAV(CBVAVNum).Name); - ShowContinueError("Calculated speed ratio = " + RoundSigDigits(SpeedRatio, 4)); + ShowContinueError("Calculated speed ratio = " + General::RoundSigDigits(SpeedRatio, 4)); ShowContinueErrorTimeStamp( "The calculated speed ratio will be used and the simulation continues. Occurrence info:"); } @@ -2665,14 +2529,15 @@ namespace HVACUnitaryBypassVAV { PartLoadFrac); } } else if (SolFla == -2) { - if (!WarmupFlag) { + if (!DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).DXIterationFailed < 4) { ++CBVAV(CBVAVNum).DXIterationFailed; ShowWarningError( CBVAV(CBVAVNum).DXCoolCoilType + " - DX unit speed ratio calculation failed: solver limits exceeded, for coil named " + CBVAV(CBVAVNum).DXCoolCoilName + ", in Unitary system named" + CBVAV(CBVAVNum).Name); - ShowContinueError("Estimated speed ratio = " + RoundSigDigits(TempSpeedReqst / TempSpeedOut, 3)); + ShowContinueError("Estimated speed ratio = " + + General::RoundSigDigits(TempSpeedReqst / TempSpeedOut, 3)); ShowContinueErrorTimeStamp( "The estimated part-load ratio will be used and the simulation continues. Occurrence info:"); } @@ -2690,17 +2555,19 @@ namespace HVACUnitaryBypassVAV { Par(1) = double(CBVAV(CBVAVNum).CoolCoilCompIndex); Par(2) = DesOutTemp; Par(5) = double(DataHVACGlobals::ContFanCycCoil); - SolveRoot(tempAccuracy, MaxIte, SolFla, PartLoadFrac, HVACDXSystem::VSCoilCyclingResidual, 1.0e-10, 1.0, Par); + General::SolveRoot( + tempAccuracy, MaxIte, SolFla, PartLoadFrac, HVACDXSystem::VSCoilCyclingResidual, 1.0e-10, 1.0, Par); if (SolFla == -1) { - if (!WarmupFlag) { + if (!DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).DXCyclingIterationExceeded < 4) { ++CBVAV(CBVAVNum).DXCyclingIterationExceeded; ShowWarningError( CBVAV(CBVAVNum).DXCoolCoilType + " - Iteration limit exceeded calculating VS DX unit low speed cycling ratio, for coil named " + CBVAV(CBVAVNum).DXCoolCoilName + ", in Unitary system named" + CBVAV(CBVAVNum).Name); - ShowContinueError("Estimated cycling ratio = " + RoundSigDigits((TempSpeedReqst / TempSpeedOut), 3)); - ShowContinueError("Calculated cycling ratio = " + RoundSigDigits(PartLoadFrac, 3)); + ShowContinueError("Estimated cycling ratio = " + + General::RoundSigDigits((TempSpeedReqst / TempSpeedOut), 3)); + ShowContinueError("Calculated cycling ratio = " + General::RoundSigDigits(PartLoadFrac, 3)); ShowContinueErrorTimeStamp( "The calculated cycling ratio will be used and the simulation continues. Occurrence info:"); } @@ -2713,7 +2580,7 @@ namespace HVACUnitaryBypassVAV { } } else if (SolFla == -2) { - if (!WarmupFlag) { + if (!DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).DXCyclingIterationFailed < 4) { ++CBVAV(CBVAVNum).DXCyclingIterationFailed; ShowWarningError( @@ -2721,7 +2588,7 @@ namespace HVACUnitaryBypassVAV { " - DX unit low speed cycling ratio calculation failed: limits exceeded, for unit = " + CBVAV(CBVAVNum).Name); ShowContinueError("Estimated low speed cycling ratio = " + - RoundSigDigits(TempSpeedReqst / TempSpeedOut, 3)); + General::RoundSigDigits(TempSpeedReqst / TempSpeedOut, 3)); ShowContinueErrorTimeStamp("The estimated low speed cycling ratio will be used and the simulation " "continues. Occurrence info:"); } @@ -2746,8 +2613,8 @@ namespace HVACUnitaryBypassVAV { SaveCompressorPLR = VariableSpeedCoils::getVarSpeedPartLoadRatio(CBVAV(CBVAVNum).CoolCoilCompIndex); // variable-speed air-to-air cooling coil, end ------------------------- - } else if (SELECT_CASE_var == - DataHVACGlobals::CoilDX_CoolingTwoStageWHumControl) { // Coil:Cooling:DX:TwoStageWithHumidityControlMode + } else if (SELECT_CASE_var == DataHVACGlobals::CoilDX_CoolingTwoStageWHumControl) { + // Coil:Cooling:DX:TwoStageWithHumidityControlMode // formerly (v3 and beyond) Coil:DX:MultiMode:CoolingEmpirical // If DXCoolingSystem runs with a cooling load then set PartLoadFrac on Cooling System and the Mass Flow @@ -2759,36 +2626,36 @@ namespace HVACUnitaryBypassVAV { // Get full load result DehumidMode = 0; CBVAV(CBVAVNum).DehumidificationMode = DehumidMode; - SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, - On, - FirstHVACIteration, - PartLoadFrac, - DehumidMode, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil); - if (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { + DXCoils::SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, + On, + FirstHVACIteration, + PartLoadFrac, + DehumidMode, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil); + if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { PartLoadFrac = 0.0; - SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, - On, - FirstHVACIteration, - PartLoadFrac, - DehumidMode, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil); - } else if (Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { + DXCoils::SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, + On, + FirstHVACIteration, + PartLoadFrac, + DehumidMode, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil); + } else if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { PartLoadFrac = 1.0; } else { Par(1) = double(CBVAV(CBVAVNum).CoolCoilCompIndex); Par(2) = CBVAV(CBVAVNum).CoilTempSetPoint; // Dehumidification mode = 0 for normal mode, 1+ for enhanced mode Par(3) = double(DehumidMode); - SolveRoot(SmallTempDiff, MaxIte, SolFla, PartLoadFrac, MultiModeDXCoilResidual, 0.0, 1.0, Par); + General::SolveRoot(DataHVACGlobals::SmallTempDiff, MaxIte, SolFla, PartLoadFrac, MultiModeDXCoilResidual, 0.0, 1.0, Par); if (SolFla == -1) { if (CBVAV(CBVAVNum).MMDXIterationExceeded < 1) { ++CBVAV(CBVAVNum).MMDXIterationExceeded; ShowWarningError("Iteration limit exceeded calculating DX unit part-load ratio, for unit=" + CBVAV(CBVAVNum).Name); - ShowContinueErrorTimeStamp("Part-load ratio returned = " + RoundSigDigits(PartLoadFrac, 2)); + ShowContinueErrorTimeStamp("Part-load ratio returned = " + General::RoundSigDigits(PartLoadFrac, 2)); ShowContinueErrorTimeStamp( "The calculated part-load ratio will be used and the simulation continues. Occurrence info:"); } else { @@ -2799,16 +2666,16 @@ namespace HVACUnitaryBypassVAV { PartLoadFrac); } } else if (SolFla == -2) { - PartLoadFrac = - max(0.0, - min(1.0, - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); + PartLoadFrac = max(0.0, + min(1.0, + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); if (CBVAV(CBVAVNum).MMDXIterationFailed < 1) { ++CBVAV(CBVAVNum).MMDXIterationFailed; ShowSevereError("DX unit part-load ratio calculation failed: part-load ratio limits exceeded, for unit=" + CBVAV(CBVAVNum).Name); - ShowContinueError("Estimated part-load ratio = " + RoundSigDigits(PartLoadFrac, 3)); + ShowContinueError("Estimated part-load ratio = " + General::RoundSigDigits(PartLoadFrac, 3)); ShowContinueErrorTimeStamp( "The estimated part-load ratio will be used and the simulation continues. Occurrence info:"); } else { @@ -2824,9 +2691,9 @@ namespace HVACUnitaryBypassVAV { // If humidity setpoint is not satisfied and humidity control type is Multimode, // then turn on enhanced dehumidification mode 1 - if ((Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat > Node(OutletNode).HumRatMax) && - (Node(CBVAV(CBVAVNum).DXCoilInletNode).HumRat > Node(OutletNode).HumRatMax) && - (CBVAV(CBVAVNum).DehumidControlType == DehumidControl_Multimode) && Node(OutletNode).HumRatMax > 0.0) { + if ((DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat > DataLoopNode::Node(OutletNode).HumRatMax) && + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).HumRat > DataLoopNode::Node(OutletNode).HumRatMax) && + (CBVAV(CBVAVNum).DehumidControlType == DehumidControl_Multimode) && DataLoopNode::Node(OutletNode).HumRatMax > 0.0) { // Determine required part load for enhanced dehumidification mode 1 @@ -2834,29 +2701,30 @@ namespace HVACUnitaryBypassVAV { PartLoadFrac = 1.0; DehumidMode = 1; CBVAV(CBVAVNum).DehumidificationMode = DehumidMode; - SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, - On, - FirstHVACIteration, - PartLoadFrac, - DehumidMode, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil); - if (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { + DXCoils::SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, + On, + FirstHVACIteration, + PartLoadFrac, + DehumidMode, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil); + if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { PartLoadFrac = 0.0; - } else if (Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { + } else if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { PartLoadFrac = 1.0; } else { Par(1) = double(CBVAV(CBVAVNum).CoolCoilCompIndex); Par(2) = CBVAV(CBVAVNum).CoilTempSetPoint; // Dehumidification mode = 0 for normal mode, 1+ for enhanced mode Par(3) = double(DehumidMode); - SolveRoot(SmallTempDiff, MaxIte, SolFla, PartLoadFrac, MultiModeDXCoilResidual, 0.0, 1.0, Par); + General::SolveRoot( + DataHVACGlobals::SmallTempDiff, MaxIte, SolFla, PartLoadFrac, MultiModeDXCoilResidual, 0.0, 1.0, Par); if (SolFla == -1) { if (CBVAV(CBVAVNum).DMDXIterationExceeded < 1) { ++CBVAV(CBVAVNum).DMDXIterationExceeded; ShowWarningError("Iteration limit exceeded calculating DX unit dehumidifying part-load ratio, for unit = " + CBVAV(CBVAVNum).Name); - ShowContinueErrorTimeStamp("Part-load ratio returned=" + RoundSigDigits(PartLoadFrac, 2)); + ShowContinueErrorTimeStamp("Part-load ratio returned=" + General::RoundSigDigits(PartLoadFrac, 2)); ShowContinueErrorTimeStamp( "The calculated part-load ratio will be used and the simulation continues. Occurrence info:"); } else { @@ -2871,14 +2739,15 @@ namespace HVACUnitaryBypassVAV { PartLoadFrac = max(0.0, min(1.0, - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); if (CBVAV(CBVAVNum).DMDXIterationFailed < 1) { ++CBVAV(CBVAVNum).DMDXIterationFailed; ShowSevereError( "DX unit dehumidifying part-load ratio calculation failed: part-load ratio limits exceeded, for unit = " + CBVAV(CBVAVNum).Name); - ShowContinueError("Estimated part-load ratio = " + RoundSigDigits(PartLoadFrac, 3)); + ShowContinueError("Estimated part-load ratio = " + General::RoundSigDigits(PartLoadFrac, 3)); ShowContinueErrorTimeStamp( "The estimated part-load ratio will be used and the simulation continues. Occurrence info:"); } else { @@ -2895,17 +2764,18 @@ namespace HVACUnitaryBypassVAV { // If humidity setpoint is not satisfied and humidity control type is CoolReheat, // then run to meet latent load - if ((Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat > Node(OutletNode).HumRatMax) && - (Node(CBVAV(CBVAVNum).DXCoilInletNode).HumRat > Node(OutletNode).HumRatMax) && - (CBVAV(CBVAVNum).DehumidControlType == DehumidControl_CoolReheat) && Node(OutletNode).HumRatMax > 0.0) { + if ((DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).HumRat > DataLoopNode::Node(OutletNode).HumRatMax) && + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).HumRat > DataLoopNode::Node(OutletNode).HumRatMax) && + (CBVAV(CBVAVNum).DehumidControlType == DehumidControl_CoolReheat) && DataLoopNode::Node(OutletNode).HumRatMax > 0.0) { // Determine revised desired outlet temperature - use approach temperature control strategy // based on CONTROLLER:SIMPLE TEMPANDHUMRAT control type. // Calculate the approach temperature (difference between SA dry-bulb temp and SA dew point temp) - ApproachTemp = Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp - PsyTdpFnWPb(Node(OutletNode).HumRat, OutdoorBaroPress); + ApproachTemp = DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp - + Psychrometrics::PsyTdpFnWPb(DataLoopNode::Node(OutletNode).HumRat, OutdoorBaroPress); // Calculate the dew point temperature at the SA humidity ratio setpoint - DesiredDewPoint = PsyTdpFnWPb(Node(OutletNode).HumRatMax, OutdoorBaroPress); + DesiredDewPoint = Psychrometrics::PsyTdpFnWPb(DataLoopNode::Node(OutletNode).HumRatMax, OutdoorBaroPress); // Adjust the calculated dew point temperature by the approach temp CBVAV(CBVAVNum).CoilTempSetPoint = min(CBVAV(CBVAVNum).CoilTempSetPoint, (DesiredDewPoint + ApproachTemp)); @@ -2915,29 +2785,30 @@ namespace HVACUnitaryBypassVAV { PartLoadFrac = 1.0; DehumidMode = 0; CBVAV(CBVAVNum).DehumidificationMode = DehumidMode; - SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, - On, - FirstHVACIteration, - PartLoadFrac, - DehumidMode, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil); - if (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { + DXCoils::SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, + On, + FirstHVACIteration, + PartLoadFrac, + DehumidMode, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil); + if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { PartLoadFrac = 0.0; - } else if (Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { + } else if (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint) { PartLoadFrac = 1.0; } else { Par(1) = double(CBVAV(CBVAVNum).CoolCoilCompIndex); Par(2) = CBVAV(CBVAVNum).CoilTempSetPoint; // Dehumidification mode = 0 for normal mode, 1+ for enhanced mode Par(3) = double(DehumidMode); - SolveRoot(SmallTempDiff, MaxIte, SolFla, PartLoadFrac, MultiModeDXCoilResidual, 0.0, 1.0, Par); + General::SolveRoot( + DataHVACGlobals::SmallTempDiff, MaxIte, SolFla, PartLoadFrac, MultiModeDXCoilResidual, 0.0, 1.0, Par); if (SolFla == -1) { if (CBVAV(CBVAVNum).CRDXIterationExceeded < 1) { ++CBVAV(CBVAVNum).CRDXIterationExceeded; ShowWarningError("Iteration limit exceeded calculating DX unit cool reheat part-load ratio, for unit = " + CBVAV(CBVAVNum).Name); - ShowContinueErrorTimeStamp("Part-load ratio returned = " + RoundSigDigits(PartLoadFrac, 2)); + ShowContinueErrorTimeStamp("Part-load ratio returned = " + General::RoundSigDigits(PartLoadFrac, 2)); ShowContinueErrorTimeStamp( "The calculated part-load ratio will be used and the simulation continues. Occurrence info:"); } else { @@ -2952,14 +2823,15 @@ namespace HVACUnitaryBypassVAV { PartLoadFrac = max(0.0, min(1.0, - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / - (Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - CBVAV(CBVAVNum).CoilTempSetPoint) / + (DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilInletNode).Temp - + DataLoopNode::Node(CBVAV(CBVAVNum).DXCoilOutletNode).Temp))); if (CBVAV(CBVAVNum).CRDXIterationFailed < 1) { ++CBVAV(CBVAVNum).CRDXIterationFailed; ShowSevereError( "DX unit cool reheat part-load ratio calculation failed: part-load ratio limits exceeded, for unit = " + CBVAV(CBVAVNum).Name); - ShowContinueError("Estimated part-load ratio = " + RoundSigDigits(PartLoadFrac, 3)); + ShowContinueError("Estimated part-load ratio = " + General::RoundSigDigits(PartLoadFrac, 3)); ShowContinueErrorTimeStamp( "The estimated part-load ratio will be used and the simulation continues. Occurrence info:"); } else { @@ -2978,7 +2850,7 @@ namespace HVACUnitaryBypassVAV { } else if (PartLoadFrac < 0.0) { PartLoadFrac = 0.0; } - SaveCompressorPLR = DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); + SaveCompressorPLR = DXCoils::DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); } else { ShowFatalError("SimCBVAV System: Invalid DX Cooling Coil=" + CBVAV(CBVAVNum).DXCoolCoilType); @@ -2987,22 +2859,32 @@ namespace HVACUnitaryBypassVAV { } else { // IF(OutdoorDryBulbTemp .GE. CBVAV(CBVAVNum)%MinOATCompressor)THEN // Simulate DX cooling coil with compressor off if (CBVAV(CBVAVNum).DXCoolCoilType_Num == DataHVACGlobals::CoilDX_CoolingHXAssisted) { - SimHXAssistedCoolingCoil( - CBVAV(CBVAVNum).DXCoolCoilName, FirstHVACIteration, Off, 0.0, CBVAV(CBVAVNum).CoolCoilCompIndex, ContFanCycCoil, HXUnitOn); - SaveCompressorPLR = DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); + HVACHXAssistedCoolingCoil::SimHXAssistedCoolingCoil(CBVAV(CBVAVNum).DXCoolCoilName, + FirstHVACIteration, + Off, + 0.0, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + HXUnitOn); + SaveCompressorPLR = DXCoils::DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); } else if (CBVAV(CBVAVNum).DXCoolCoilType_Num == DataHVACGlobals::CoilDX_CoolingSingleSpeed) { - SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, - Off, - FirstHVACIteration, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil, - 0.0, - OnOffAirFlowRatio); - SaveCompressorPLR = DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); + DXCoils::SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, + Off, + FirstHVACIteration, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + 0.0, + OnOffAirFlowRatio); + SaveCompressorPLR = DXCoils::DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); } else if (CBVAV(CBVAVNum).DXCoolCoilType_Num == DataHVACGlobals::CoilDX_CoolingTwoStageWHumControl) { - SimDXCoilMultiMode( - CBVAV(CBVAVNum).DXCoolCoilName, Off, FirstHVACIteration, 0.0, 0, CBVAV(CBVAVNum).CoolCoilCompIndex, ContFanCycCoil); - SaveCompressorPLR = DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); + DXCoils::SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, + Off, + FirstHVACIteration, + 0.0, + 0, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil); + SaveCompressorPLR = DXCoils::DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXCoolCoilIndexNum); } else if (CBVAV(CBVAVNum).DXCoolCoilType_Num == DataHVACGlobals::Coil_CoolingAirToAirVariableSpeed) { Real64 QZnReq(0.0); // Zone load (W), input to variable-speed DX coil Real64 QLatReq(0.0); // Zone latent load, input to variable-speed DX coil @@ -3032,16 +2914,21 @@ namespace HVACUnitaryBypassVAV { // Simulate cooling coil with compressor off if zone requires heating } else { // HeatCoolMode == HeatingMode and no cooling is required, set PLR to 0 if (CBVAV(CBVAVNum).DXCoolCoilType_Num == DataHVACGlobals::CoilDX_CoolingHXAssisted) { - SimHXAssistedCoolingCoil( - CBVAV(CBVAVNum).DXCoolCoilName, FirstHVACIteration, Off, 0.0, CBVAV(CBVAVNum).CoolCoilCompIndex, ContFanCycCoil, HXUnitOn); + HVACHXAssistedCoolingCoil::SimHXAssistedCoolingCoil(CBVAV(CBVAVNum).DXCoolCoilName, + FirstHVACIteration, + Off, + 0.0, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + HXUnitOn); } else if (CBVAV(CBVAVNum).DXCoolCoilType_Num == DataHVACGlobals::CoilDX_CoolingSingleSpeed) { - SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, - Off, - FirstHVACIteration, - CBVAV(CBVAVNum).CoolCoilCompIndex, - ContFanCycCoil, - 0.0, - OnOffAirFlowRatio); + DXCoils::SimDXCoil(CBVAV(CBVAVNum).DXCoolCoilName, + Off, + FirstHVACIteration, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil, + 0.0, + OnOffAirFlowRatio); } else if (CBVAV(CBVAVNum).DXCoolCoilType_Num == DataHVACGlobals::Coil_CoolingAirToAirVariableSpeed) { Real64 QZnReq(0.0); // Zone load (W), input to variable-speed DX coil Real64 QLatReq(0.0); // Zone latent load, input to variable-speed DX coil @@ -3066,8 +2953,13 @@ namespace HVACUnitaryBypassVAV { QLatReq); } else if (CBVAV(CBVAVNum).DXCoolCoilType_Num == DataHVACGlobals::CoilDX_CoolingTwoStageWHumControl) { - SimDXCoilMultiMode( - CBVAV(CBVAVNum).DXCoolCoilName, Off, FirstHVACIteration, 0.0, 0, CBVAV(CBVAVNum).CoolCoilCompIndex, ContFanCycCoil); + DXCoils::SimDXCoilMultiMode(CBVAV(CBVAVNum).DXCoolCoilName, + Off, + FirstHVACIteration, + 0.0, + 0, + CBVAV(CBVAVNum).CoolCoilCompIndex, + DataHVACGlobals::ContFanCycCoil); } } @@ -3082,56 +2974,61 @@ namespace HVACUnitaryBypassVAV { // simulate the DX heating coil // vs coil issue - SimDXCoil(CBVAV(CBVAVNum).HeatCoilName, - On, - FirstHVACIteration, - CBVAV(CBVAVNum).HeatCoilIndex, - ContFanCycCoil, - PartLoadFrac, - OnOffAirFlowRatio); - if (Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint && - Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { + DXCoils::SimDXCoil(CBVAV(CBVAVNum).HeatCoilName, + On, + FirstHVACIteration, + CBVAV(CBVAVNum).HeatCoilIndex, + DataHVACGlobals::ContFanCycCoil, + PartLoadFrac, + OnOffAirFlowRatio); + if (DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp > CBVAV(CBVAVNum).CoilTempSetPoint && + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp < CBVAV(CBVAVNum).CoilTempSetPoint) { // iterate to find PLR at CoilTempSetPoint Par(1) = double(CBVAV(CBVAVNum).HeatCoilIndex); Par(2) = min(CBVAV(CBVAVNum).CoilTempSetPoint, CBVAV(CBVAVNum).MaxLATHeating); Par(3) = OnOffAirFlowRatio; - SolveRoot(SmallTempDiff, MaxIte, SolFla, PartLoadFrac, DXHeatingCoilResidual, 0.0, 1.0, Par); - SimDXCoil(CBVAV(CBVAVNum).HeatCoilName, - On, - FirstHVACIteration, - CBVAV(CBVAVNum).HeatCoilIndex, - ContFanCycCoil, - PartLoadFrac, - OnOffAirFlowRatio); - if (SolFla == -1 && !WarmupFlag) { + General::SolveRoot(DataHVACGlobals::SmallTempDiff, MaxIte, SolFla, PartLoadFrac, DXHeatingCoilResidual, 0.0, 1.0, Par); + DXCoils::SimDXCoil(CBVAV(CBVAVNum).HeatCoilName, + On, + FirstHVACIteration, + CBVAV(CBVAVNum).HeatCoilIndex, + DataHVACGlobals::ContFanCycCoil, + PartLoadFrac, + OnOffAirFlowRatio); + if (SolFla == -1 && !DataGlobals::WarmupFlag) { ShowWarningError("Iteration limit exceeded calculating DX unit part-load ratio, for unit = " + CBVAV(CBVAVNum).HeatCoilName); - ShowContinueError("Calculated part-load ratio = " + RoundSigDigits(PartLoadFrac, 3)); + ShowContinueError("Calculated part-load ratio = " + General::RoundSigDigits(PartLoadFrac, 3)); ShowContinueErrorTimeStamp( "The calculated part-load ratio will be used and the simulation continues. Occurrence info:"); - } else if (SolFla == -2 && !WarmupFlag) { + } else if (SolFla == -2 && !DataGlobals::WarmupFlag) { ShowSevereError("DX unit part-load ratio calculation failed: part-load ratio limits exceeded, for unit = " + CBVAV(CBVAVNum).HeatCoilName); - ShowContinueErrorTimeStamp("A part-load ratio of " + RoundSigDigits(PartLoadFrac, 3) + + ShowContinueErrorTimeStamp("A part-load ratio of " + General::RoundSigDigits(PartLoadFrac, 3) + "will be used and the simulation continues. Occurrence info:"); ShowContinueError("Please send this information to the EnergyPlus support group."); } } } else { // OAT .LT. MinOATCompressor // simulate DX heating coil with compressor off - SimDXCoil(CBVAV(CBVAVNum).HeatCoilName, - Off, - FirstHVACIteration, - CBVAV(CBVAVNum).HeatCoilIndex, - ContFanCycCoil, - 0.0, - OnOffAirFlowRatio); + DXCoils::SimDXCoil(CBVAV(CBVAVNum).HeatCoilName, + Off, + FirstHVACIteration, + CBVAV(CBVAVNum).HeatCoilIndex, + DataHVACGlobals::ContFanCycCoil, + 0.0, + OnOffAirFlowRatio); } - SaveCompressorPLR = DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXHeatCoilIndexNum); + SaveCompressorPLR = DXCoils::DXCoilPartLoadRatio(CBVAV(CBVAVNum).DXHeatCoilIndexNum); } else { // HeatCoolMode = CoolingMode // simulate DX heating coil with compressor off when cooling load is required - SimDXCoil( - CBVAV(CBVAVNum).HeatCoilName, Off, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex, ContFanCycCoil, 0.0, OnOffAirFlowRatio); + DXCoils::SimDXCoil(CBVAV(CBVAVNum).HeatCoilName, + Off, + FirstHVACIteration, + CBVAV(CBVAVNum).HeatCoilIndex, + DataHVACGlobals::ContFanCycCoil, + 0.0, + OnOffAirFlowRatio); } } else if (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingAirToAirVariableSpeed) { Real64 QZnReq(0.0); // Zone load (W), input to variable-speed DX coil @@ -3160,10 +3057,12 @@ namespace HVACUnitaryBypassVAV { QZnReq, QLatReq); - Real64 NoOutput = Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate * - (PsyHFnTdbW(Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp, Node(CBVAV(CBVAVNum).HeatingCoilInletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp, Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat)); - Real64 TempNoOutput = Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp; + Real64 NoOutput = DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat)); + Real64 TempNoOutput = DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp; // Real64 NoLoadHumRatOut = VariableSpeedCoils::VarSpeedCoil( CBVAV( CBVAVNum ).CoolCoilCompIndex ).OutletAirHumRat; // Get full load result @@ -3173,7 +3072,7 @@ namespace HVACUnitaryBypassVAV { QZnReq = 0.001; // to indicate the coil is running VariableSpeedCoils::SimVariableSpeedCoils(CBVAV(CBVAVNum).HeatCoilName, CBVAV(CBVAVNum).DXHeatCoilIndexNum, - ContFanCycCoil, + DataHVACGlobals::ContFanCycCoil, MaxONOFFCyclesperHour, HPTimeConstant, FanDelayTime, @@ -3185,13 +3084,15 @@ namespace HVACUnitaryBypassVAV { QLatReq); // Real64 FullLoadHumRatOut = VariableSpeedCoils::VarSpeedCoil( CBVAV( CBVAVNum ).CoolCoilCompIndex ).OutletAirHumRat; - Real64 FullOutput = - Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate * - (PsyHFnTdbW(Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp, Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp, Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat)); - Real64 ReqOutput = Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate * - (PsyHFnTdbW(DesOutTemp, Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat) - - PsyHFnTdbW(Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp, Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat)); + Real64 FullOutput = DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat)); + Real64 ReqOutput = DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate * + (Psychrometrics::PsyHFnTdbW(DesOutTemp, DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp, + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).HumRat)); Real64 loadAccuracy(0.001); // Watts, power Real64 tempAccuracy(0.001); // delta C, temperature @@ -3204,7 +3105,7 @@ namespace HVACUnitaryBypassVAV { // call again with coil off VariableSpeedCoils::SimVariableSpeedCoils(CBVAV(CBVAVNum).HeatCoilName, CBVAV(CBVAVNum).DXHeatCoilIndexNum, - ContFanCycCoil, + DataHVACGlobals::ContFanCycCoil, MaxONOFFCyclesperHour, HPTimeConstant, FanDelayTime, @@ -3260,7 +3161,7 @@ namespace HVACUnitaryBypassVAV { QLatReq, OnOffAirFlowRatio); - Real64 TempSpeedOut = Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp; + Real64 TempSpeedOut = DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp; Real64 TempSpeedOutSpeed1 = TempSpeedOut; if ((TempSpeedOut - DesOutTemp) < tempAccuracy) { @@ -3283,7 +3184,7 @@ namespace HVACUnitaryBypassVAV { QLatReq, OnOffAirFlowRatio); - TempSpeedOut = Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp; + TempSpeedOut = DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).Temp; if ((TempSpeedOut - DesOutTemp) > tempAccuracy) { SpeedNum = I; @@ -3295,16 +3196,17 @@ namespace HVACUnitaryBypassVAV { Par(2) = DesOutTemp; Par(5) = double(DataHVACGlobals::ContFanCycCoil); Par(3) = double(SpeedNum); - SolveRoot(tempAccuracy, MaxIte, SolFla, SpeedRatio, HVACDXHeatPumpSystem::VSCoilSpeedResidual, 1.0e-10, 1.0, Par); + General::SolveRoot( + tempAccuracy, MaxIte, SolFla, SpeedRatio, HVACDXHeatPumpSystem::VSCoilSpeedResidual, 1.0e-10, 1.0, Par); if (SolFla == -1) { - if (!WarmupFlag) { + if (!DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).DXHeatIterationExceeded < 4) { ++CBVAV(CBVAVNum).DXHeatIterationExceeded; ShowWarningError(CBVAV(CBVAVNum).HeatCoilType + " - Iteration limit exceeded calculating VS DX coil speed ratio for coil named " + CBVAV(CBVAVNum).HeatCoilName + ", in Unitary system named" + CBVAV(CBVAVNum).Name); - ShowContinueError("Calculated speed ratio = " + RoundSigDigits(SpeedRatio, 4)); + ShowContinueError("Calculated speed ratio = " + General::RoundSigDigits(SpeedRatio, 4)); ShowContinueErrorTimeStamp( "The calculated speed ratio will be used and the simulation continues. Occurrence info:"); } @@ -3317,7 +3219,7 @@ namespace HVACUnitaryBypassVAV { } } else if (SolFla == -2) { - if (!WarmupFlag) { + if (!DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).DXHeatIterationFailed < 4) { ++CBVAV(CBVAVNum).DXHeatIterationFailed; ShowWarningError(CBVAV(CBVAVNum).HeatCoilType + @@ -3352,17 +3254,18 @@ namespace HVACUnitaryBypassVAV { Par(1) = double(CBVAV(CBVAVNum).DXHeatCoilIndexNum); Par(2) = DesOutTemp; Par(5) = double(DataHVACGlobals::ContFanCycCoil); - SolveRoot(tempAccuracy, MaxIte, SolFla, PartLoadFrac, HVACDXHeatPumpSystem::VSCoilCyclingResidual, 1.0e-10, 1.0, Par); + General::SolveRoot( + tempAccuracy, MaxIte, SolFla, PartLoadFrac, HVACDXHeatPumpSystem::VSCoilCyclingResidual, 1.0e-10, 1.0, Par); if (SolFla == -1) { - if (!WarmupFlag) { + if (!DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).DXHeatCyclingIterationExceeded < 4) { ++CBVAV(CBVAVNum).DXHeatCyclingIterationExceeded; ShowWarningError( CBVAV(CBVAVNum).HeatCoilType + " - Iteration limit exceeded calculating VS DX unit low speed cycling ratio, for coil named " + CBVAV(CBVAVNum).HeatCoilName + ", in Unitary system named" + CBVAV(CBVAVNum).Name); - ShowContinueError("Estimated cycling ratio = " + RoundSigDigits((DesOutTemp / TempSpeedOut), 3)); - ShowContinueError("Calculated cycling ratio = " + RoundSigDigits(PartLoadFrac, 3)); + ShowContinueError("Estimated cycling ratio = " + General::RoundSigDigits((DesOutTemp / TempSpeedOut), 3)); + ShowContinueError("Calculated cycling ratio = " + General::RoundSigDigits(PartLoadFrac, 3)); ShowContinueErrorTimeStamp( "The calculated cycling ratio will be used and the simulation continues. Occurrence info:"); } @@ -3375,14 +3278,15 @@ namespace HVACUnitaryBypassVAV { } } else if (SolFla == -2) { - if (!WarmupFlag) { + if (!DataGlobals::WarmupFlag) { if (CBVAV(CBVAVNum).DXHeatCyclingIterationFailed < 4) { ++CBVAV(CBVAVNum).DXHeatCyclingIterationFailed; ShowWarningError(CBVAV(CBVAVNum).HeatCoilType + " - DX unit low speed cycling ratio calculation failed: limits exceeded, for unit = " + CBVAV(CBVAVNum).Name); - ShowContinueError("Estimated low speed cycling ratio = " + - RoundSigDigits((DesOutTemp - TempNoOutput) / (TempSpeedOutSpeed1 - TempNoOutput), 3)); + ShowContinueError( + "Estimated low speed cycling ratio = " + + General::RoundSigDigits((DesOutTemp - TempNoOutput) / (TempSpeedOutSpeed1 - TempNoOutput), 3)); ShowContinueErrorTimeStamp( "The estimated low speed cycling ratio will be used and the simulation continues. Occurrence info:"); } @@ -3422,100 +3326,94 @@ namespace HVACUnitaryBypassVAV { (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingElectric) || (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingWater) || (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingSteam)) { // not a DX heating coil if (CBVAV(CBVAVNum).HeatCoolMode == HeatingMode) { - CpAir = PsyCpAirFnWTdb(Node(CBVAV(CBVAVNum).HeatingCoilInletNode).HumRat, Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp); - QHeater = Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate * CpAir * - (CBVAV(CBVAVNum).CoilTempSetPoint - Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp); + CpAir = Psychrometrics::PsyCpAirFnWTdb(DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).HumRat, + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp); + QHeater = DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).MassFlowRate * CpAir * + (CBVAV(CBVAVNum).CoilTempSetPoint - DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilInletNode).Temp); } else { QHeater = 0.0; } // Added None DX heating coils calling point - Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).TempSetPoint = CBVAV(CBVAVNum).CoilTempSetPoint; + DataLoopNode::Node(CBVAV(CBVAVNum).HeatingCoilOutletNode).TempSetPoint = CBVAV(CBVAVNum).CoilTempSetPoint; CalcNonDXHeatingCoils(CBVAVNum, FirstHVACIteration, QHeater, CBVAV(CBVAVNum).OpMode, QHeaterActual); } else { ShowFatalError("SimCBVAV System: Invalid Heating Coil=" + CBVAV(CBVAVNum).HeatCoilType); } } - if (CBVAV(CBVAVNum).FanPlace == DrawThru) { + if (CBVAV(CBVAVNum).FanPlace == DataHVACGlobals::DrawThru) { if (CBVAV(CBVAVNum).FanType_Num == DataHVACGlobals::FanType_SystemModelObject) { HVACFan::fanObjs[CBVAV(CBVAVNum).FanIndex]->simulate(1.0 / OnOffAirFlowRatio, _, _, _); } else { Fans::SimulateFanComponents(CBVAV(CBVAVNum).FanName, FirstHVACIteration, CBVAV(CBVAVNum).FanIndex, FanSpeedRatio); } } - Node(OutletNode).MassFlowRate = (1.0 - BypassDuctFlowFraction) * Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate; - Node(OutletNode).Temp = Node(CBVAV(CBVAVNum).SplitterOutletAirNode).Temp; - Node(OutletNode).HumRat = Node(CBVAV(CBVAVNum).SplitterOutletAirNode).HumRat; - Node(OutletNode).Quality = Node(CBVAV(CBVAVNum).SplitterOutletAirNode).Quality; - Node(OutletNode).Press = Node(CBVAV(CBVAVNum).SplitterOutletAirNode).Press; - Node(OutletNode).Enthalpy = Node(CBVAV(CBVAVNum).SplitterOutletAirNode).Enthalpy; - Node(OutletNode).Height = Node(CBVAV(CBVAVNum).SplitterOutletAirNode).Height; - - CBVAV(CBVAVNum).BypassMassFlowRate = BypassDuctFlowFraction * Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate; + int splitterOutNode = CBVAV(CBVAVNum).SplitterOutletAirNode; + DataLoopNode::Node(splitterOutNode).MassFlowRateSetPoint = DataLoopNode::Node(OutletNode).MassFlowRateSetPoint; + DataLoopNode::Node(OutletNode) = DataLoopNode::Node(splitterOutNode); + DataLoopNode::Node(OutletNode).MassFlowRate = + (1.0 - BypassDuctFlowFraction) * DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate; + // report variable + CBVAV(CBVAVNum).BypassMassFlowRate = BypassDuctFlowFraction * DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate; + // initialize bypass duct connected to mixer or plenum with flow rate and conditions + if (CBVAV(CBVAVNum).plenumIndex > 0 || CBVAV(CBVAVNum).mixerIndex > 0) { + int plenumOrMixerInletNode = CBVAV(CBVAVNum).PlenumMixerInletAirNode; + DataLoopNode::Node(plenumOrMixerInletNode) = DataLoopNode::Node(splitterOutNode); + DataLoopNode::Node(plenumOrMixerInletNode).MassFlowRate = + BypassDuctFlowFraction * DataLoopNode::Node(CBVAV(CBVAVNum).MixerInletAirNode).MassFlowRate; + DataLoopNode::Node(plenumOrMixerInletNode).MassFlowRateMaxAvail = DataLoopNode::Node(plenumOrMixerInletNode).MassFlowRate; + DataAirLoop::AirLoopFlow(CBVAV(CBVAVNum).AirLoopNumber).BypassMassFlow = DataLoopNode::Node(plenumOrMixerInletNode).MassFlowRate; + } // calculate sensible load met using delta enthalpy at a constant (minimum) humidity ratio) - MinHumRat = min(Node(InletNode).HumRat, Node(OutletNode).HumRat); - LoadMet = Node(OutletNode).MassFlowRate * (PsyHFnTdbW(Node(OutletNode).Temp, MinHumRat) - PsyHFnTdbW(Node(InletNode).Temp, MinHumRat)); + MinHumRat = min(DataLoopNode::Node(InletNode).HumRat, DataLoopNode::Node(OutletNode).HumRat); + LoadMet = DataLoopNode::Node(OutletNode).MassFlowRate * (Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(OutletNode).Temp, MinHumRat) - + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(InletNode).Temp, MinHumRat)); } - void GetZoneLoads(int const CBVAVNum, // Index to CBVAV unit being simulated - Real64 &QZoneReq // Total zone load served by this air loop + void GetZoneLoads(int const CBVAVNum // Index to CBVAV unit being simulated ) { // SUBROUTINE INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN July 2006 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // This subroutine is used to poll the thermostats in each zone and determine the // mode of operation, either cooling, heating, or none. - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // Using/Aliasing - using DataZoneEnergyDemands::CurDeadBandOrSetback; - using DataZoneEnergyDemands::ZoneSysEnergyDemand; - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na + // SUBROUTINE LOCAL VARIABLE DECLARATIONS: + int lastDayOfSim(0); // used during warmup to reset changeOverTimer since need to do same thing next warmup day + Real64 ZoneLoad = 0.0; // Total load in controlled zone [W] + + int dayOfSim = DataGlobals::DayOfSim; // DayOfSim increments during Warmup when it actually simulates the same day + if (DataGlobals::WarmupFlag) { + // when warmupday increments then reset timer + if (lastDayOfSim != dayOfSim) CBVAV(CBVAVNum).changeOverTimer = -1.0; // reset to default (thisTime always > -1) + lastDayOfSim = dayOfSim; + dayOfSim = 1; // reset so that thisTime is <= 24 during warmup + } + Real64 thisTime = (dayOfSim - 1) * 24 + DataGlobals::HourOfDay - 1 + (DataGlobals::TimeStep - 1) * DataGlobals::TimeStepZone + + DataHVACGlobals::SysTimeElapsed; - // DERIVED TYPE DEFINITIONS - // na + if (thisTime <= CBVAV(CBVAVNum).changeOverTimer) return; - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int ZoneNum; // Zone number of controlled zone in CBVAV loop - Real64 QZoneReqCool; // Total cooling load in all controlled zones [W] - Real64 QZoneReqHeat; // Total heating load in all controlled zones [W] - Real64 ZoneLoad; // Total load in controlled zone [W] - Real64 ZoneLoadToCoolSPSequenced; - Real64 ZoneLoadToHeatSPSequenced; - - QZoneReqCool = 0.0; - QZoneReqHeat = 0.0; + Real64 QZoneReqCool = 0.0; // Total cooling load in all controlled zones [W] + Real64 QZoneReqHeat = 0.0; // Total heating load in all controlled zones [W] CBVAV(CBVAVNum).NumZonesCooled = 0; CBVAV(CBVAVNum).NumZonesHeated = 0; CBVAV(CBVAVNum).HeatCoolMode = 0; - for (ZoneNum = 1; ZoneNum <= CBVAV(CBVAVNum).NumControlledZones; ++ZoneNum) { + for (int ZoneNum = 1; ZoneNum <= CBVAV(CBVAVNum).NumControlledZones; ++ZoneNum) { int actualZoneNum = CBVAV(CBVAVNum).ControlledZoneNum(ZoneNum); int coolSeqNum = CBVAV(CBVAVNum).ZoneSequenceCoolingNum(ZoneNum); int heatSeqNum = CBVAV(CBVAVNum).ZoneSequenceHeatingNum(ZoneNum); - if ((coolSeqNum > 0) && (heatSeqNum > 0)) { - ZoneLoadToCoolSPSequenced = ZoneSysEnergyDemand(actualZoneNum).SequencedOutputRequiredToCoolingSP(coolSeqNum); - ZoneLoadToHeatSPSequenced = ZoneSysEnergyDemand(actualZoneNum).SequencedOutputRequiredToHeatingSP(heatSeqNum); + if (coolSeqNum > 0 && heatSeqNum > 0) { + Real64 ZoneLoadToCoolSPSequenced = + DataZoneEnergyDemands::ZoneSysEnergyDemand(actualZoneNum).SequencedOutputRequiredToCoolingSP(coolSeqNum); + Real64 ZoneLoadToHeatSPSequenced = + DataZoneEnergyDemands::ZoneSysEnergyDemand(actualZoneNum).SequencedOutputRequiredToHeatingSP(heatSeqNum); if (ZoneLoadToHeatSPSequenced > 0.0 && ZoneLoadToCoolSPSequenced > 0.0) { ZoneLoad = ZoneLoadToHeatSPSequenced; } else if (ZoneLoadToHeatSPSequenced < 0.0 && ZoneLoadToCoolSPSequenced < 0.0) { @@ -3524,14 +3422,14 @@ namespace HVACUnitaryBypassVAV { ZoneLoad = 0.0; } } else { - ZoneLoad = ZoneSysEnergyDemand(actualZoneNum).RemainingOutputRequired; + ZoneLoad = DataZoneEnergyDemands::ZoneSysEnergyDemand(actualZoneNum).RemainingOutputRequired; } - if (!CurDeadBandOrSetback(actualZoneNum)) { - if (ZoneLoad > 0.0 && std::abs(ZoneLoad) > SmallLoad) { + if (!DataZoneEnergyDemands::CurDeadBandOrSetback(actualZoneNum)) { + if (ZoneLoad > DataHVACGlobals::SmallLoad) { QZoneReqHeat += ZoneLoad; ++CBVAV(CBVAVNum).NumZonesHeated; - } else if (ZoneLoad < 0.0 && std::abs(ZoneLoad) > SmallLoad) { + } else if (ZoneLoad < -DataHVACGlobals::SmallLoad) { QZoneReqCool += ZoneLoad; ++CBVAV(CBVAVNum).NumZonesCooled; } @@ -3542,61 +3440,69 @@ namespace HVACUnitaryBypassVAV { auto const SELECT_CASE_var(CBVAV(CBVAVNum).PriorityControl); if (SELECT_CASE_var == CoolingPriority) { if (QZoneReqCool < 0.0) { - QZoneReq = QZoneReqCool; CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; } else if (QZoneReqHeat > 0.0) { - QZoneReq = QZoneReqHeat; CBVAV(CBVAVNum).HeatCoolMode = HeatingMode; - } else { - QZoneReq = 0.0; } } else if (SELECT_CASE_var == HeatingPriority) { if (QZoneReqHeat > 0.0) { - QZoneReq = QZoneReqHeat; CBVAV(CBVAVNum).HeatCoolMode = HeatingMode; } else if (QZoneReqCool < 0.0) { - QZoneReq = QZoneReqCool; CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; - } else { - QZoneReq = 0.0; } } else if (SELECT_CASE_var == ZonePriority) { if (CBVAV(CBVAVNum).NumZonesHeated > CBVAV(CBVAVNum).NumZonesCooled) { if (QZoneReqHeat > 0.0) { - QZoneReq = QZoneReqHeat; CBVAV(CBVAVNum).HeatCoolMode = HeatingMode; } else if (QZoneReqCool < 0.0) { - QZoneReq = QZoneReqCool; CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; - } else { - QZoneReq = 0.0; } } else if (CBVAV(CBVAVNum).NumZonesCooled > CBVAV(CBVAVNum).NumZonesHeated) { if (QZoneReqCool < 0.0) { - QZoneReq = QZoneReqCool; CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; } else if (QZoneReqHeat > 0.0) { - QZoneReq = QZoneReqHeat; CBVAV(CBVAVNum).HeatCoolMode = HeatingMode; - } else { - QZoneReq = 0.0; } } else { if (std::abs(QZoneReqCool) > std::abs(QZoneReqHeat) && QZoneReqCool != 0.0) { - QZoneReq = QZoneReqCool; CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; } else if (std::abs(QZoneReqCool) < std::abs(QZoneReqHeat) && QZoneReqHeat != 0.0) { - QZoneReq = QZoneReqHeat; CBVAV(CBVAVNum).HeatCoolMode = HeatingMode; } else if (std::abs(QZoneReqCool) == std::abs(QZoneReqHeat) && QZoneReqCool != 0.0) { - QZoneReq = QZoneReqCool; CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; - } else { - QZoneReq = 0.0; + } + } + } else if (SELECT_CASE_var == LoadPriority) { + if (std::abs(QZoneReqCool) > std::abs(QZoneReqHeat) && QZoneReqCool != 0.0) { + CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; + } else if (std::abs(QZoneReqCool) < std::abs(QZoneReqHeat) && QZoneReqHeat != 0.0) { + CBVAV(CBVAVNum).HeatCoolMode = HeatingMode; + } else if (CBVAV(CBVAVNum).NumZonesHeated > CBVAV(CBVAVNum).NumZonesCooled) { + if (QZoneReqHeat > 0.0) { + CBVAV(CBVAVNum).HeatCoolMode = HeatingMode; + } else if (QZoneReqCool < 0.0) { + CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; + } + } else if (CBVAV(CBVAVNum).NumZonesHeated < CBVAV(CBVAVNum).NumZonesCooled) { + if (QZoneReqCool < 0.0) { + CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; + } else if (QZoneReqHeat > 0.0) { + CBVAV(CBVAVNum).HeatCoolMode = HeatingMode; + } + } else { + if (QZoneReqCool < 0.0) { + CBVAV(CBVAVNum).HeatCoolMode = CoolingMode; + } else if (QZoneReqHeat > 0.0) { + CBVAV(CBVAVNum).HeatCoolMode = HeatingMode; } } } } + + if (CBVAV(CBVAVNum).LastMode != CBVAV(CBVAVNum).HeatCoolMode) { + CBVAV(CBVAVNum).changeOverTimer = thisTime + CBVAV(CBVAVNum).minModeChangeTime; + CBVAV(CBVAVNum).LastMode = CBVAV(CBVAVNum).HeatCoolMode; + } } Real64 CalcSetPointTempTarget(int const CBVAVNumber) // Index to changeover-bypass VAV system @@ -3605,8 +3511,6 @@ namespace HVACUnitaryBypassVAV { // FUNCTION INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN August 2006 - // MODIFIED na - // RE-ENGINEERED // PURPOSE OF THIS FUNCTION: // Calculate outlet air node temperature setpoint @@ -3615,67 +3519,36 @@ namespace HVACUnitaryBypassVAV { // Calculate an outlet temperature to satisfy zone loads. This temperature is calculated // based on 1 zone's VAV box fully opened. The other VAV boxes are partially open (modulated). - // REFERENCES: - // na - - // Using/Aliasing - using DataZoneEnergyDemands::ZoneSysEnergyDemand; - using Psychrometrics::PsyCpAirFnWTdb; - // Return value Real64 CalcSetPointTempTarget; - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // FUNCTION PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - // FUNCTION LOCAL VARIABLE DECLARATIONS: - - int OutletNode; // Outlet node of CBVAV system - int ZoneNum; // Index to controlled zone - int ZoneNodeNum; // Zone node number of controlled zone - int BoxOutletNodeNum; // CBVAV box outlet node (zone supply inlet node) - Real64 DXCoolCoilInletTemp; // Air temperature of CBVAV DX cooling coil air inlet node [C] - Real64 OutAirTemp; // Outlet air temperature of CBVAV system [C] - Real64 OutAirHumRat; // Outlet air humidity ratio of CBVAV system [C] Real64 ZoneLoad; // Zone load sensed by thermostat [W] - Real64 CpSupplyAir; // Specific heat of CBVAV system outlet air [J/kg-K] Real64 QToCoolSetPt; // Zone load to cooling setpoint [W] Real64 QToHeatSetPt; // Zone load to heating setpoint [W] Real64 SupplyAirTemp; // Supply air temperature required to meet load [C] - Real64 TSupplyToHeatSetPtMax; // Maximum of the supply air temperatures required to reach the heating setpoint [C] - Real64 TSupplyToCoolSetPtMin; // Minimum of the supply air temperatures required to reach the cooling setpoint [C] Real64 SupplyAirTempToHeatSetPt; // Supply air temperature required to reach the heating setpoint [C] Real64 SupplyAirTempToCoolSetPt; // Supply air temperature required to reach the cooling setpoint [C] - DXCoolCoilInletTemp = Node(CBVAV(CBVAVNumber).DXCoilInletNode).Temp; - OutAirTemp = Node(CBVAV(CBVAVNumber).AirOutNode).Temp; - OutAirHumRat = Node(CBVAV(CBVAVNumber).AirOutNode).HumRat; + Real64 DXCoolCoilInletTemp = DataLoopNode::Node(CBVAV(CBVAVNumber).DXCoilInletNode).Temp; + Real64 OutAirTemp = DataLoopNode::Node(CBVAV(CBVAVNumber).AirOutNode).Temp; + Real64 OutAirHumRat = DataLoopNode::Node(CBVAV(CBVAVNumber).AirOutNode).HumRat; if (CBVAV(CBVAVNumber).HeatCoolMode == CoolingMode) { // Cooling required CalcSetPointTempTarget = 99999.0; } else if (CBVAV(CBVAVNumber).HeatCoolMode == HeatingMode) { // Heating required CalcSetPointTempTarget = -99999.0; } - TSupplyToHeatSetPtMax = -99999.0; - TSupplyToCoolSetPtMin = 99999.0; + Real64 TSupplyToHeatSetPtMax = -99999.0; // Maximum of the supply air temperatures required to reach the heating setpoint [C] + Real64 TSupplyToCoolSetPtMin = 99999.0; // Minimum of the supply air temperatures required to reach the cooling setpoint [C] - OutletNode = CBVAV(CBVAVNumber).AirOutNode; - for (ZoneNum = 1; ZoneNum <= CBVAV(CBVAVNumber).NumControlledZones; ++ZoneNum) { - ZoneNodeNum = CBVAV(CBVAVNumber).ActualZoneNodeNum(ZoneNum); - BoxOutletNodeNum = CBVAV(CBVAVNumber).CBVAVBoxOutletNode(ZoneNum); + for (int ZoneNum = 1; ZoneNum <= CBVAV(CBVAVNumber).NumControlledZones; ++ZoneNum) { + int ZoneNodeNum = CBVAV(CBVAVNumber).ActualZoneNodeNum(ZoneNum); + int BoxOutletNodeNum = CBVAV(CBVAVNumber).CBVAVBoxOutletNode(ZoneNum); if ((CBVAV(CBVAVNumber).ZoneSequenceCoolingNum(ZoneNum) > 0) && (CBVAV(CBVAVNumber).ZoneSequenceHeatingNum(ZoneNum) > 0)) { - QToCoolSetPt = ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)) + QToCoolSetPt = DataZoneEnergyDemands::ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)) .SequencedOutputRequiredToCoolingSP(CBVAV(CBVAVNumber).ZoneSequenceCoolingNum(ZoneNum)); - QToHeatSetPt = ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)) + QToHeatSetPt = DataZoneEnergyDemands::ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)) .SequencedOutputRequiredToHeatingSP(CBVAV(CBVAVNumber).ZoneSequenceHeatingNum(ZoneNum)); if (QToHeatSetPt > 0.0 && QToCoolSetPt > 0.0) { ZoneLoad = QToHeatSetPt; @@ -3685,23 +3558,24 @@ namespace HVACUnitaryBypassVAV { ZoneLoad = 0.0; } } else { - ZoneLoad = ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)).RemainingOutputRequired; - QToCoolSetPt = ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)).OutputRequiredToCoolingSP; - QToHeatSetPt = ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)).OutputRequiredToHeatingSP; + ZoneLoad = DataZoneEnergyDemands::ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)).RemainingOutputRequired; + QToCoolSetPt = DataZoneEnergyDemands::ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)).OutputRequiredToCoolingSP; + QToHeatSetPt = DataZoneEnergyDemands::ZoneSysEnergyDemand(CBVAV(CBVAVNumber).ControlledZoneNum(ZoneNum)).OutputRequiredToHeatingSP; } - CpSupplyAir = PsyCpAirFnWTdb(OutAirHumRat, OutAirTemp); + Real64 CpSupplyAir = Psychrometrics::PsyCpAirFnWTdb(OutAirHumRat, OutAirTemp); // Find the supply air temperature that will force the box to full flow if (BoxOutletNodeNum > 0) { - if (CpSupplyAir * Node(BoxOutletNodeNum).MassFlowRateMax == 0.0) { - SupplyAirTemp = Node(ZoneNodeNum).Temp; + if (CpSupplyAir * DataLoopNode::Node(BoxOutletNodeNum).MassFlowRateMax == 0.0) { + SupplyAirTemp = DataLoopNode::Node(ZoneNodeNum).Temp; } else { // The target supply air temperature is slightly - SupplyAirTemp = Node(ZoneNodeNum).Temp + ZoneLoad / (CpSupplyAir * Node(BoxOutletNodeNum).MassFlowRateMax); + SupplyAirTemp = + DataLoopNode::Node(ZoneNodeNum).Temp + ZoneLoad / (CpSupplyAir * DataLoopNode::Node(BoxOutletNodeNum).MassFlowRateMax); } } else { - SupplyAirTemp = Node(ZoneNodeNum).Temp; + SupplyAirTemp = DataLoopNode::Node(ZoneNodeNum).Temp; } // Save the MIN (cooling) or MAX (heating) temperature for coil control @@ -3714,12 +3588,14 @@ namespace HVACUnitaryBypassVAV { // Should use CpAirAtCoolSetPoint or CpAirAtHeatSetPoint here? // If so, use ZoneThermostatSetPointLo(ZoneNum) and ZoneThermostatSetPointHi(ZoneNum) // along with the zone humidity ratio - if (CpSupplyAir * Node(BoxOutletNodeNum).MassFlowRateMax == 0.0) { - SupplyAirTempToHeatSetPt = Node(ZoneNodeNum).Temp; - SupplyAirTempToCoolSetPt = Node(ZoneNodeNum).Temp; + if (CpSupplyAir * DataLoopNode::Node(BoxOutletNodeNum).MassFlowRateMax == 0.0) { + SupplyAirTempToHeatSetPt = DataLoopNode::Node(ZoneNodeNum).Temp; + SupplyAirTempToCoolSetPt = DataLoopNode::Node(ZoneNodeNum).Temp; } else { - SupplyAirTempToHeatSetPt = Node(ZoneNodeNum).Temp + QToHeatSetPt / (CpSupplyAir * Node(BoxOutletNodeNum).MassFlowRateMax); - SupplyAirTempToCoolSetPt = Node(ZoneNodeNum).Temp + QToCoolSetPt / (CpSupplyAir * Node(BoxOutletNodeNum).MassFlowRateMax); + SupplyAirTempToHeatSetPt = + DataLoopNode::Node(ZoneNodeNum).Temp + QToHeatSetPt / (CpSupplyAir * DataLoopNode::Node(BoxOutletNodeNum).MassFlowRateMax); + SupplyAirTempToCoolSetPt = + DataLoopNode::Node(ZoneNodeNum).Temp + QToCoolSetPt / (CpSupplyAir * DataLoopNode::Node(BoxOutletNodeNum).MassFlowRateMax); } TSupplyToHeatSetPtMax = max(SupplyAirTempToHeatSetPt, TSupplyToHeatSetPtMax); TSupplyToCoolSetPtMin = min(SupplyAirTempToCoolSetPt, TSupplyToCoolSetPtMin); @@ -3727,27 +3603,23 @@ namespace HVACUnitaryBypassVAV { } // Account for floating condition where cooling/heating is required to avoid overshooting setpoint - if (CBVAV(CBVAVNumber).HeatCoolMode == 0 && CBVAV(CBVAVNumber).OpMode == ContFanCycCoil) { + if (CBVAV(CBVAVNumber).HeatCoolMode == 0 && CBVAV(CBVAVNumber).OpMode == DataHVACGlobals::ContFanCycCoil) { if (OutAirTemp > TSupplyToCoolSetPtMin) { CalcSetPointTempTarget = TSupplyToCoolSetPtMin; - CBVAV(CBVAVNumber).HeatCoolMode = CoolingMode; } else if (OutAirTemp < TSupplyToHeatSetPtMax) { CalcSetPointTempTarget = TSupplyToHeatSetPtMax; - CBVAV(CBVAVNumber).HeatCoolMode = HeatingMode; } else { CalcSetPointTempTarget = OutAirTemp; } // Reset setpoint to inlet air temp if unit is OFF and in cycling fan mode - } else if (CBVAV(CBVAVNumber).HeatCoolMode == 0 && CBVAV(CBVAVNumber).OpMode == CycFanCycCoil) { - CalcSetPointTempTarget = Node(CBVAV(CBVAVNumber).AirInNode).Temp; + } else if (CBVAV(CBVAVNumber).HeatCoolMode == 0 && CBVAV(CBVAVNumber).OpMode == DataHVACGlobals::CycFanCycCoil) { + CalcSetPointTempTarget = DataLoopNode::Node(CBVAV(CBVAVNumber).AirInNode).Temp; // Reset cooling/heating mode to OFF if mixed air inlet temperature is below/above setpoint temperature. // HeatCoolMode = 0 for OFF, 1 for cooling, 2 for heating } else if (CBVAV(CBVAVNumber).HeatCoolMode == CoolingMode && DXCoolCoilInletTemp < CalcSetPointTempTarget) { CalcSetPointTempTarget = DXCoolCoilInletTemp; - CBVAV(CBVAVNumber).HeatCoolMode = 0; } else if (CBVAV(CBVAVNumber).HeatCoolMode == HeatingMode && DXCoolCoilInletTemp > CalcSetPointTempTarget) { CalcSetPointTempTarget = DXCoolCoilInletTemp; - CBVAV(CBVAVNumber).HeatCoolMode = 0; } // Limit outlet node temperature to MAX/MIN specified in input @@ -3764,8 +3636,6 @@ namespace HVACUnitaryBypassVAV { // FUNCTION INFORMATION: // AUTHOR Richard Raustad, FSEC // DATE WRITTEN June 2006 - // MODIFIED - // RE-ENGINEERED // PURPOSE OF THIS FUNCTION: // Calculates residual function (desired outlet temp - actual outlet temp) @@ -3775,42 +3645,16 @@ namespace HVACUnitaryBypassVAV { // Calls CalcDoe2DXCoil to get outlet temperature at the given cycling ratio // and calculates the residual as defined above - // REFERENCES: - - // Using/Aliasing - using DXCoils::CalcDoe2DXCoil; - using DXCoils::DXCoilOutletTemp; - - // Return value - Real64 Residuum; // Residual to be minimized to zero - // Argument array dimensioning - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: // Par(2) = desired air outlet temperature [C] - // FUNCTION PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // FUNCTION LOCAL VARIABLE DECLARATIONS: - int CoilIndex; // Index of this coil - Real64 OutletAirTemp; // Outlet air temperature [C] - Real64 OnOffAirFlowFrac; // Ratio of compressor ON to compressor OFF air mass flow rate + int CoilIndex = int(Par(1)); + Real64 OnOffAirFlowFrac = Par(3); // Ratio of compressor ON to compressor OFF air mass flow rate - CoilIndex = int(Par(1)); - OnOffAirFlowFrac = Par(3); + DXCoils::CalcDoe2DXCoil(CoilIndex, On, false, PartLoadFrac, DataHVACGlobals::ContFanCycCoil, _, OnOffAirFlowFrac); - CalcDoe2DXCoil(CoilIndex, On, false, PartLoadFrac, ContFanCycCoil, _, OnOffAirFlowFrac); - - OutletAirTemp = DXCoilOutletTemp(CoilIndex); - Residuum = Par(2) - OutletAirTemp; + Real64 OutletAirTemp = DXCoils::DXCoilOutletTemp(CoilIndex); + Real64 Residuum = Par(2) - OutletAirTemp; return Residuum; } @@ -3822,8 +3666,6 @@ namespace HVACUnitaryBypassVAV { // FUNCTION INFORMATION: // AUTHOR Richard Raustad, FSEC // DATE WRITTEN June 2006 - // MODIFIED - // RE-ENGINEERED // PURPOSE OF THIS FUNCTION: // Calculates residual function (desired DX coil outlet temp - actual DX coil outlet temp) @@ -3833,47 +3675,20 @@ namespace HVACUnitaryBypassVAV { // Calls CalcDoe2DXCoil to get outlet temperature at the given cycling ratio // and calculates the residual as defined above - // REFERENCES: - - // Using/Aliasing - using HVACHXAssistedCoolingCoil::SimHXAssistedCoolingCoil; - - // Return value - Real64 Residuum; // Residual to be minimized to zero - // Argument array dimensioning - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: // Par(2) = desired air outlet temperature [C] - // FUNCTION PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na + int CoilIndex = int(Par(1)); + // Real64 OnOffAirFlowFrac = Par(3); // not used + int CBVAVNumTemp = int(Par(4)); + bool FirstHVACIter = (Par(5) == 1.0); + bool HXUnitOn = (Par(6) == 1.0); // flag to enable heat exchanger - // DERIVED TYPE DEFINITIONS - // na + HVACHXAssistedCoolingCoil::SimHXAssistedCoolingCoil( + CBVAV(CBVAVNumTemp).DXCoolCoilName, FirstHVACIter, On, PartLoadFrac, CoilIndex, DataHVACGlobals::ContFanCycCoil, HXUnitOn); - // FUNCTION LOCAL VARIABLE DECLARATIONS: - int CoilIndex; // Index of this coil - Real64 OutletAirTemp; // Outlet air temperature of DX cooling coil [C] - Real64 OnOffAirFlowFrac; // Air flow fraction - int CBVAVNumTemp; // Local index to changeover-bypass VAV system - bool FirstHVACIter; // Local Flag denoting the first pass on the air loop simulation - bool HXUnitOn; // flag to enable heat exchanger - - CoilIndex = int(Par(1)); - OnOffAirFlowFrac = Par(3); - CBVAVNumTemp = int(Par(4)); - FirstHVACIter = (Par(5) == 1.0); - HXUnitOn = (Par(6) == 1.0); - - SimHXAssistedCoolingCoil(CBVAV(CBVAVNumTemp).DXCoolCoilName, FirstHVACIter, On, PartLoadFrac, CoilIndex, ContFanCycCoil, HXUnitOn); - - OutletAirTemp = Node(CBVAV(CBVAVNumTemp).DXCoilOutletNode).Temp; - Residuum = Par(2) - OutletAirTemp; + Real64 OutletAirTemp = DataLoopNode::Node(CBVAV(CBVAVNumTemp).DXCoilOutletNode).Temp; + Real64 Residuum = Par(2) - OutletAirTemp; return Residuum; } @@ -3885,8 +3700,6 @@ namespace HVACUnitaryBypassVAV { // FUNCTION INFORMATION: // AUTHOR Richard Raustad, FSEC // DATE WRITTEN June 2006 - // MODIFIED - // RE-ENGINEERED // PURPOSE OF THIS FUNCTION: // Calculates residual function (desired outlet temp - actual outlet temp) @@ -3896,42 +3709,16 @@ namespace HVACUnitaryBypassVAV { // Calls CalcDoe2DXCoil to get outlet temperature at the given cycling ratio // and calculates the residual as defined above - // REFERENCES: - - // Using/Aliasing - using DXCoils::CalcDXHeatingCoil; - using DXCoils::DXCoilOutletTemp; - - // Return value - Real64 Residuum; // Residual to be minimized to zero - // Argument array dimensioning - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: // Par(2) = desired air outlet temperature [C] - // FUNCTION PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na + int CoilIndex = int(Par(1)); + Real64 OnOffAirFlowFrac = Par(3); // Ratio of compressor ON to compressor OFF air mass flow rate - // FUNCTION LOCAL VARIABLE DECLARATIONS: - int CoilIndex; // Index of this coil - Real64 OutletAirTemp; // Outlet air temperature [C] - Real64 OnOffAirFlowFrac; // Ratio of compressor ON to compressor OFF air mass flow rate - - CoilIndex = int(Par(1)); - OnOffAirFlowFrac = Par(3); + DXCoils::CalcDXHeatingCoil(CoilIndex, PartLoadFrac, DataHVACGlobals::ContFanCycCoil, OnOffAirFlowFrac); - CalcDXHeatingCoil(CoilIndex, PartLoadFrac, ContFanCycCoil, OnOffAirFlowFrac); - - OutletAirTemp = DXCoilOutletTemp(CoilIndex); - Residuum = Par(2) - OutletAirTemp; + Real64 OutletAirTemp = DXCoils::DXCoilOutletTemp(CoilIndex); + Real64 Residuum = Par(2) - OutletAirTemp; return Residuum; } @@ -3944,8 +3731,6 @@ namespace HVACUnitaryBypassVAV { // AUTHOR M. J. Witte, GARD Analytics, Inc. // DATE WRITTEN February 2005 // (based on DOE2DXCoilResidual by Richard Raustad, FSEC) - // MODIFIED - // RE-ENGINEERED // PURPOSE OF THIS FUNCTION: // Calculates residual function (desired outlet temp - actual outlet temp) @@ -3955,43 +3740,16 @@ namespace HVACUnitaryBypassVAV { // Calls SimDXCoilMultiMode to get outlet temperature at the given cycling ratio // and calculates the residual as defined above - // REFERENCES: - - // Using/Aliasing - using DXCoils::DXCoilOutletTemp; - using DXCoils::SimDXCoilMultiMode; - - // Return value - Real64 Residuum; // residual to be minimized to zero - // Argument array dimensioning - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: // par(2) = desired air outlet temperature [C] // par(3) = dehumidification mode (0=normal, 1=enhanced) - // FUNCTION PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // FUNCTION LOCAL VARIABLE DECLARATIONS: - int CoilIndex; // index of this coil - Real64 OutletAirTemp; // outlet air temperature [C] - int DehumidMode; // dehumidification mode (par3) - int FanOpMode; // allows parent object to control fan mode - - CoilIndex = int(Par(1)); - DehumidMode = int(Par(3)); - FanOpMode = 2; - SimDXCoilMultiMode("", On, false, PartLoadRatio, DehumidMode, CoilIndex, FanOpMode); - OutletAirTemp = DXCoilOutletTemp(CoilIndex); - Residuum = Par(2) - OutletAirTemp; + int CoilIndex = int(Par(1)); + int DehumidMode = int(Par(3)); + int FanOpMode = 2; + DXCoils::SimDXCoilMultiMode("", On, false, PartLoadRatio, DehumidMode, CoilIndex, FanOpMode); + Real64 OutletAirTemp = DXCoils::DXCoilOutletTemp(CoilIndex); + Real64 Residuum = Par(2) - OutletAirTemp; return Residuum; } @@ -4005,76 +3763,34 @@ namespace HVACUnitaryBypassVAV { // SUBROUTINE INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN July 2006 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Set the average air mass flow rates for this time step // Set OnOffAirFlowRatio to be used by DX coils - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // Using/Aliasing - using DataZoneEnergyDemands::ZoneSysEnergyDemand; - using MixedAir::SimOAMixer; - using Psychrometrics::PsyCpAirFnWTdb; - using ScheduleManager::GetCurrentScheduleValue; - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int InletNode; // Inlet node number for CBVAVNum - int OutletNode; // Outlet node number for CBVAVNum - int MixerMixedAirNode; // Mixed air node number in OA mixer - int MixerOutsideAirNode; // Outside air node number in OA mixer - int MixerReliefAirNode; // Relief air node number in OA mixer - int MixerInletAirNode; // Mixed air node number in OA mixer - Real64 AverageUnitMassFlow; // Average system air mass flow rate over time step [kg/s] - Real64 AverageOAMassFlow; // Average outdoor air mass flow rate over time step [kg/s] - Real64 CpSupplyAir; // Specific heat of outlet air [J/kg-K] - Real64 CpZoneAir; // Specific heat of zone air [J/kg-K] - Real64 DeltaCpTemp; // Temperature difference from supply air to zone air [C] - Real64 ZoneMassFlow; // Zone mass flow rate required to meet zone load [kg/s] - Real64 SystemMassFlow; // System mass flow rate required for all zones [kg/s] - int ZoneNum; // Index to zone - Real64 ZoneLoad; // Zone load calculated by ZoneTempPredictor [W] - Real64 QToHeatSetPt; // Load to heating setpoint [W] - Real64 QToCoolSetPt; // Load to cooling setpoint [W] - int ZoneNodeNum; // Actual zone number - int BoxOutletNodeNum; // Zone supply air inlet node number - - InletNode = CBVAV(CBVAVNum).AirInNode; - OutletNode = CBVAV(CBVAVNum).AirOutNode; - MixerMixedAirNode = CBVAV(CBVAVNum).MixerMixedAirNode; - MixerOutsideAirNode = CBVAV(CBVAVNum).MixerOutsideAirNode; - MixerReliefAirNode = CBVAV(CBVAVNum).MixerReliefAirNode; - MixerInletAirNode = CBVAV(CBVAVNum).MixerInletAirNode; - - SystemMassFlow = 0.0; - CpSupplyAir = PsyCpAirFnWTdb(Node(OutletNode).HumRat, Node(OutletNode).Temp); + Real64 ZoneMassFlow; // Zone mass flow rate required to meet zone load [kg/s] + Real64 ZoneLoad; // Zone load calculated by ZoneTempPredictor [W] + + int InletNode = CBVAV(CBVAVNum).AirInNode; // Inlet node number for CBVAVNum + int OutletNode = CBVAV(CBVAVNum).AirOutNode; // Outlet node number for CBVAVNum + int MixerMixedAirNode = CBVAV(CBVAVNum).MixerMixedAirNode; // Mixed air node number in OA mixer + int MixerOutsideAirNode = CBVAV(CBVAVNum).MixerOutsideAirNode; // Outside air node number in OA mixer + int MixerReliefAirNode = CBVAV(CBVAVNum).MixerReliefAirNode; // Relief air node number in OA mixer + int MixerInletAirNode = CBVAV(CBVAVNum).MixerInletAirNode; // Inlet air node number in OA mixer + + Real64 SystemMassFlow = 0.0; // System mass flow rate required for all zones [kg/s] + Real64 CpSupplyAir = Psychrometrics::PsyCpAirFnWTdb(DataLoopNode::Node(OutletNode).HumRat, + DataLoopNode::Node(OutletNode).Temp); // Specific heat of outlet air [J/kg-K] // Determine zone air flow - for (ZoneNum = 1; ZoneNum <= CBVAV(CBVAVNum).NumControlledZones; ++ZoneNum) { - ZoneNodeNum = CBVAV(CBVAVNum).ActualZoneNodeNum(ZoneNum); - BoxOutletNodeNum = CBVAV(CBVAVNum).CBVAVBoxOutletNode(ZoneNum); + for (int ZoneNum = 1; ZoneNum <= CBVAV(CBVAVNum).NumControlledZones; ++ZoneNum) { + int ZoneNodeNum = CBVAV(CBVAVNum).ActualZoneNodeNum(ZoneNum); + int BoxOutletNodeNum = CBVAV(CBVAVNum).CBVAVBoxOutletNode(ZoneNum); // Zone supply air inlet node number if ((CBVAV(CBVAVNum).ZoneSequenceCoolingNum(ZoneNum) > 0) && (CBVAV(CBVAVNum).ZoneSequenceHeatingNum(ZoneNum) > 0)) { - QToCoolSetPt = ZoneSysEnergyDemand(CBVAV(CBVAVNum).ControlledZoneNum(ZoneNum)) - .SequencedOutputRequiredToCoolingSP(CBVAV(CBVAVNum).ZoneSequenceCoolingNum(ZoneNum)); - QToHeatSetPt = ZoneSysEnergyDemand(CBVAV(CBVAVNum).ControlledZoneNum(ZoneNum)) - .SequencedOutputRequiredToHeatingSP(CBVAV(CBVAVNum).ZoneSequenceHeatingNum(ZoneNum)); + Real64 QToCoolSetPt = DataZoneEnergyDemands::ZoneSysEnergyDemand(CBVAV(CBVAVNum).ControlledZoneNum(ZoneNum)) + .SequencedOutputRequiredToCoolingSP(CBVAV(CBVAVNum).ZoneSequenceCoolingNum(ZoneNum)); + Real64 QToHeatSetPt = DataZoneEnergyDemands::ZoneSysEnergyDemand(CBVAV(CBVAVNum).ControlledZoneNum(ZoneNum)) + .SequencedOutputRequiredToHeatingSP(CBVAV(CBVAVNum).ZoneSequenceHeatingNum(ZoneNum)); if (QToHeatSetPt > 0.0 && QToCoolSetPt > 0.0) { ZoneLoad = QToHeatSetPt; } else if (QToHeatSetPt < 0.0 && QToCoolSetPt < 0.0) { @@ -4083,11 +3799,10 @@ namespace HVACUnitaryBypassVAV { ZoneLoad = 0.0; } } else { - ZoneLoad = ZoneSysEnergyDemand(CBVAV(CBVAVNum).ControlledZoneNum(ZoneNum)).RemainingOutputRequired; - QToHeatSetPt = ZoneSysEnergyDemand(CBVAV(CBVAVNum).ControlledZoneNum(ZoneNum)).OutputRequiredToHeatingSP; + ZoneLoad = DataZoneEnergyDemands::ZoneSysEnergyDemand(CBVAV(CBVAVNum).ControlledZoneNum(ZoneNum)).RemainingOutputRequired; } - CpZoneAir = PsyCpAirFnWTdb(Node(ZoneNodeNum).HumRat, Node(ZoneNodeNum).Temp); - DeltaCpTemp = CpSupplyAir * Node(OutletNode).Temp - CpZoneAir * Node(ZoneNodeNum).Temp; + Real64 CpZoneAir = Psychrometrics::PsyCpAirFnWTdb(DataLoopNode::Node(ZoneNodeNum).HumRat, DataLoopNode::Node(ZoneNodeNum).Temp); + Real64 DeltaCpTemp = CpSupplyAir * DataLoopNode::Node(OutletNode).Temp - CpZoneAir * DataLoopNode::Node(ZoneNodeNum).Temp; // Need to check DeltaCpTemp and ensure that it is not zero if (DeltaCpTemp != 0.0) { // .AND. .NOT. CurDeadBandOrSetback(ZoneNum))THEN @@ -4096,33 +3811,39 @@ namespace HVACUnitaryBypassVAV { // reset to 0 so we don't add in the last zone's mass flow rate ZoneMassFlow = 0.0; } - SystemMassFlow += max(Node(BoxOutletNodeNum).MassFlowRateMin, min(ZoneMassFlow, Node(BoxOutletNodeNum).MassFlowRateMax)); + SystemMassFlow += + max(DataLoopNode::Node(BoxOutletNodeNum).MassFlowRateMin, min(ZoneMassFlow, DataLoopNode::Node(BoxOutletNodeNum).MassFlowRateMax)); } - AverageUnitMassFlow = CompOnMassFlow; - AverageOAMassFlow = OACompOnMassFlow; + Real64 AverageUnitMassFlow = CompOnMassFlow; + Real64 AverageOAMassFlow = OACompOnMassFlow; FanSpeedRatio = CompOnFlowRatio; - Node(MixerInletAirNode) = Node(InletNode); + DataLoopNode::Node(MixerInletAirNode) = DataLoopNode::Node(InletNode); - Node(MixerMixedAirNode).MassFlowRateMin = 0.0; + DataLoopNode::Node(MixerMixedAirNode).MassFlowRateMin = 0.0; - if (GetCurrentScheduleValue(CBVAV(CBVAVNum).SchedPtr) == 0.0 || AverageUnitMassFlow == 0.0) { - Node(InletNode).MassFlowRate = 0.0; - Node(MixerOutsideAirNode).MassFlowRate = 0.0; - Node(MixerReliefAirNode).MassFlowRate = 0.0; + if (ScheduleManager::GetCurrentScheduleValue(CBVAV(CBVAVNum).SchedPtr) == 0.0 || AverageUnitMassFlow == 0.0) { + DataLoopNode::Node(InletNode).MassFlowRate = 0.0; + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRate = 0.0; + DataLoopNode::Node(MixerReliefAirNode).MassFlowRate = 0.0; OnOffAirFlowRatio = 0.0; BypassDuctFlowFraction = 0.0; } else { - Node(MixerInletAirNode).MassFlowRate = AverageUnitMassFlow; - Node(MixerOutsideAirNode).MassFlowRate = AverageOAMassFlow; - Node(MixerReliefAirNode).MassFlowRate = AverageOAMassFlow; + DataLoopNode::Node(MixerInletAirNode).MassFlowRate = AverageUnitMassFlow; + DataLoopNode::Node(MixerOutsideAirNode).MassFlowRate = AverageOAMassFlow; + DataLoopNode::Node(MixerReliefAirNode).MassFlowRate = AverageOAMassFlow; if (FirstHVACIteration) { OnOffAirFlowRatio = 1.0; BypassDuctFlowFraction = 0.0; } else { OnOffAirFlowRatio = 1.0; - BypassDuctFlowFraction = max(0.0, 1.0 - (Node(InletNode).MassFlowRate / AverageUnitMassFlow)); + auto &cbVAVBoxOut(CBVAV(CBVAVNum).CBVAVBoxOutletNode); + Real64 boxOutletNodeFlow = 0.0; + for (int i = 1; i <= CBVAV(CBVAVNum).NumControlledZones; ++i) { + boxOutletNodeFlow += DataLoopNode::Node(cbVAVBoxOut(i)).MassFlowRate; + } + BypassDuctFlowFraction = max(0.0, 1.0 - (boxOutletNodeFlow / AverageUnitMassFlow)); } } } @@ -4133,38 +3854,11 @@ namespace HVACUnitaryBypassVAV { // SUBROUTINE INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN July 2006 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Fills some of the report variables for the changeover-bypass VAV system - // METHODOLOGY EMPLOYED: - // NA - - // REFERENCES: - // na - - // Using/Aliasing - using DataHVACGlobals::TimeStepSys; - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 ReportingConstant; - - // FLOW - ReportingConstant = TimeStepSys * SecInHour; + Real64 ReportingConstant = DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour; CBVAV(CBVAVNum).TotCoolEnergy = CBVAV(CBVAVNum).TotCoolEnergyRate * ReportingConstant; CBVAV(CBVAVNum).TotHeatEnergy = CBVAV(CBVAVNum).TotHeatEnergyRate * ReportingConstant; @@ -4175,7 +3869,7 @@ namespace HVACUnitaryBypassVAV { CBVAV(CBVAVNum).ElecConsumption = CBVAV(CBVAVNum).ElecPower * ReportingConstant; if (CBVAV(CBVAVNum).FirstPass) { - if (!SysSizingCalc) { + if (!DataGlobals::SysSizingCalc) { DataSizing::resetHVACSizingGlobals(DataSizing::CurZoneEqNum, DataSizing::CurSysNum, CBVAV(CBVAVNum).FirstPass); } } @@ -4195,8 +3889,6 @@ namespace HVACUnitaryBypassVAV { // SUBROUTINE INFORMATION: // AUTHOR Bereket Nigusse, FSEC/UCF // DATE WRITTEN January 2012 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // This subroutine simulates the four non dx heating coil types: Gas, Electric, hot water and steam. @@ -4205,35 +3897,11 @@ namespace HVACUnitaryBypassVAV { // Simply calls the different heating coil component. The hot water flow rate matching the coil load // is calculated iteratively. - // REFERENCES: - // na - - // USE STATEMENTS: - - // Using/Aliasing - using DataHVACGlobals::SmallLoad; - using General::RoundSigDigits; - using General::SolveRoot; - using HeatingCoils::SimulateHeatingCoilComponents; - using PlantUtilities::SetComponentFlowRate; - using SteamCoils::SimulateSteamCoilComponents; - using WaterCoils::SimulateWaterCoilComponents; - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // SUBROUTINE PARAMETER DEFINITIONS: Real64 const ErrTolerance(0.001); // convergence limit for hotwater coil int const SolveMaxIter(50); - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - Real64 QCoilActual; // actual heating load met Real64 mdot; // heating coil steam or hot water mass flow rate Real64 MinWaterFlow; // minimum water mass flow rate Real64 MaxHotWaterFlow; // maximum hot water mass flow rate, kg/s @@ -4241,26 +3909,26 @@ namespace HVACUnitaryBypassVAV { Array1D Par(3); int SolFlag; // error flag - QCoilActual = 0.0; - if (HeatCoilLoad > SmallLoad) { + Real64 QCoilActual = 0.0; // actual heating load met + if (HeatCoilLoad > DataHVACGlobals::SmallLoad) { { auto const SELECT_CASE_var(CBVAV(CBVAVNum).HeatCoilType_Num); if ((SELECT_CASE_var == DataHVACGlobals::Coil_HeatingGasOrOtherFuel) || (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingElectric)) { - SimulateHeatingCoilComponents( + HeatingCoils::SimulateHeatingCoilComponents( CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, HeatCoilLoad, CBVAV(CBVAVNum).HeatCoilIndex, QCoilActual, true, FanMode); } else if (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingWater) { // simulate the heating coil at maximum hot water flow rate MaxHotWaterFlow = CBVAV(CBVAVNum).MaxHeatCoilFluidFlow; - SetComponentFlowRate(MaxHotWaterFlow, - CBVAV(CBVAVNum).CoilControlNode, - CBVAV(CBVAVNum).CoilOutletNode, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum); - SimulateWaterCoilComponents( + PlantUtilities::SetComponentFlowRate(MaxHotWaterFlow, + CBVAV(CBVAVNum).CoilControlNode, + CBVAV(CBVAVNum).CoilOutletNode, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum); + WaterCoils::SimulateWaterCoilComponents( CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex, QCoilActual, FanMode); - if (QCoilActual > (HeatCoilLoad + SmallLoad)) { + if (QCoilActual > (HeatCoilLoad + DataHVACGlobals::SmallLoad)) { // control water flow to obtain output matching HeatCoilLoad SolFlag = 0; MinWaterFlow = 0.0; @@ -4271,17 +3939,18 @@ namespace HVACUnitaryBypassVAV { Par(2) = 0.0; } Par(3) = HeatCoilLoad; - SolveRoot(ErrTolerance, SolveMaxIter, SolFlag, HotWaterMdot, HotWaterCoilResidual, MinWaterFlow, MaxHotWaterFlow, Par); + General::SolveRoot( + ErrTolerance, SolveMaxIter, SolFlag, HotWaterMdot, HotWaterCoilResidual, MinWaterFlow, MaxHotWaterFlow, Par); if (SolFlag == -1) { if (CBVAV(CBVAVNum).HotWaterCoilMaxIterIndex == 0) { ShowWarningMessage("CalcNonDXHeatingCoils: Hot water coil control failed for " + CBVAV(CBVAVNum).UnitType + "=\"" + CBVAV(CBVAVNum).Name + "\""); ShowContinueErrorTimeStamp(""); - ShowContinueError(" Iteration limit [" + RoundSigDigits(SolveMaxIter) + + ShowContinueError(" Iteration limit [" + General::RoundSigDigits(SolveMaxIter) + "] exceeded in calculating hot water mass flow rate"); } ShowRecurringWarningErrorAtEnd("CalcNonDXHeatingCoils: Hot water coil control failed (iteration limit [" + - RoundSigDigits(SolveMaxIter) + "]) for " + CBVAV(CBVAVNum).UnitType + "=\"" + + General::RoundSigDigits(SolveMaxIter) + "]) for " + CBVAV(CBVAVNum).UnitType + "=\"" + CBVAV(CBVAVNum).Name, CBVAV(CBVAVNum).HotWaterCoilMaxIterIndex); } else if (SolFlag == -2) { @@ -4290,8 +3959,8 @@ namespace HVACUnitaryBypassVAV { CBVAV(CBVAVNum).UnitType + "=\"" + CBVAV(CBVAVNum).Name + "\""); ShowContinueErrorTimeStamp(""); ShowContinueError("...Bad hot water maximum flow rate limits"); - ShowContinueError("...Given minimum water flow rate=" + RoundSigDigits(MinWaterFlow, 3) + " kg/s"); - ShowContinueError("...Given maximum water flow rate=" + RoundSigDigits(MaxHotWaterFlow, 3) + " kg/s"); + ShowContinueError("...Given minimum water flow rate=" + General::RoundSigDigits(MinWaterFlow, 3) + " kg/s"); + ShowContinueError("...Given maximum water flow rate=" + General::RoundSigDigits(MaxHotWaterFlow, 3) + " kg/s"); } ShowRecurringWarningErrorAtEnd("CalcNonDXHeatingCoils: Hot water coil control failed (flow limits) for " + CBVAV(CBVAVNum).UnitType + "=\"" + CBVAV(CBVAVNum).Name + "\"", @@ -4305,21 +3974,21 @@ namespace HVACUnitaryBypassVAV { // simulate the hot water heating coil QCoilActual = HeatCoilLoad; // simulate the hot water heating coil - SimulateWaterCoilComponents( + WaterCoils::SimulateWaterCoilComponents( CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex, QCoilActual, FanMode); } - } else if (SELECT_CASE_var == Coil_HeatingSteam) { + } else if (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingSteam) { mdot = CBVAV(CBVAVNum).MaxHeatCoilFluidFlow; - SetComponentFlowRate(mdot, - CBVAV(CBVAVNum).CoilControlNode, - CBVAV(CBVAVNum).CoilOutletNode, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum); + PlantUtilities::SetComponentFlowRate(mdot, + CBVAV(CBVAVNum).CoilControlNode, + CBVAV(CBVAVNum).CoilOutletNode, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum); // simulate the steam heating coil - SimulateSteamCoilComponents( + SteamCoils::SimulateSteamCoilComponents( CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex, HeatCoilLoad, QCoilActual, FanMode); } } @@ -4327,32 +3996,32 @@ namespace HVACUnitaryBypassVAV { { auto const SELECT_CASE_var(CBVAV(CBVAVNum).HeatCoilType_Num); if ((SELECT_CASE_var == DataHVACGlobals::Coil_HeatingGasOrOtherFuel) || (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingElectric)) { - SimulateHeatingCoilComponents( + HeatingCoils::SimulateHeatingCoilComponents( CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, HeatCoilLoad, CBVAV(CBVAVNum).HeatCoilIndex, QCoilActual, true, FanMode); } else if (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingWater) { mdot = 0.0; - SetComponentFlowRate(mdot, - CBVAV(CBVAVNum).CoilControlNode, - CBVAV(CBVAVNum).CoilOutletNode, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum); + PlantUtilities::SetComponentFlowRate(mdot, + CBVAV(CBVAVNum).CoilControlNode, + CBVAV(CBVAVNum).CoilOutletNode, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum); QCoilActual = HeatCoilLoad; // simulate the hot water heating coil - SimulateWaterCoilComponents( + WaterCoils::SimulateWaterCoilComponents( CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex, QCoilActual, FanMode); } else if (SELECT_CASE_var == DataHVACGlobals::Coil_HeatingSteam) { mdot = 0.0; - SetComponentFlowRate(mdot, - CBVAV(CBVAVNum).CoilControlNode, - CBVAV(CBVAVNum).CoilOutletNode, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum); + PlantUtilities::SetComponentFlowRate(mdot, + CBVAV(CBVAVNum).CoilControlNode, + CBVAV(CBVAVNum).CoilOutletNode, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum); // simulate the steam heating coil - SimulateSteamCoilComponents( + SteamCoils::SimulateSteamCoilComponents( CBVAV(CBVAVNum).HeatCoilName, FirstHVACIteration, CBVAV(CBVAVNum).HeatCoilIndex, HeatCoilLoad, QCoilActual, FanMode); } } @@ -4368,8 +4037,6 @@ namespace HVACUnitaryBypassVAV { // FUNCTION INFORMATION: // AUTHOR Bereket Nigusse, FSEC/UCF // DATE WRITTEN January 2012 - // MODIFIED - // RE-ENGINEERED // PURPOSE OF THIS FUNCTION: // Calculates residual function (Actual Coil Output - Requested Coil Load) / Requested Coil Load @@ -4378,51 +4045,25 @@ namespace HVACUnitaryBypassVAV { // METHODOLOGY EMPLOYED: // Calls HotWaterCoilResidual, and calculates the residual as defined above. - // REFERENCES: - - // Using/Aliasing - using PlantUtilities::SetComponentFlowRate; - using WaterCoils::SimulateWaterCoilComponents; - // Return value Real64 Residuum; // residual to be minimized to zero - // Argument array dimensioning - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // FUNCTION PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // FUNCTION LOCAL VARIABLE DECLARATIONS: - int CBVAVNum; - bool FirstHVACSoln; - Real64 QCoilActual; // delivered coild load, W - Real64 HeatCoilLoad; // requested coild load, W - Real64 mdot; - - CBVAVNum = int(Par(1)); - FirstHVACSoln = (Par(2) > 0.0); - HeatCoilLoad = Par(3); - QCoilActual = HeatCoilLoad; - mdot = HWFlow; - SetComponentFlowRate(mdot, - CBVAV(CBVAVNum).CoilControlNode, - CBVAV(CBVAVNum).CoilOutletNode, - CBVAV(CBVAVNum).LoopNum, - CBVAV(CBVAVNum).LoopSide, - CBVAV(CBVAVNum).BranchNum, - CBVAV(CBVAVNum).CompNum); + int CBVAVNum = int(Par(1)); + bool FirstHVACSoln = (Par(2) > 0.0); + Real64 HeatCoilLoad = Par(3); + Real64 QCoilActual = HeatCoilLoad; + Real64 mdot = HWFlow; + PlantUtilities::SetComponentFlowRate(mdot, + CBVAV(CBVAVNum).CoilControlNode, + CBVAV(CBVAVNum).CoilOutletNode, + CBVAV(CBVAVNum).LoopNum, + CBVAV(CBVAVNum).LoopSide, + CBVAV(CBVAVNum).BranchNum, + CBVAV(CBVAVNum).CompNum); // simulate the hot water supplemental heating coil - SimulateWaterCoilComponents(CBVAV(CBVAVNum).HeatCoilName, FirstHVACSoln, CBVAV(CBVAVNum).HeatCoilIndex, QCoilActual, CBVAV(CBVAVNum).OpMode); + WaterCoils::SimulateWaterCoilComponents( + CBVAV(CBVAVNum).HeatCoilName, FirstHVACSoln, CBVAV(CBVAVNum).HeatCoilIndex, QCoilActual, CBVAV(CBVAVNum).OpMode); if (HeatCoilLoad != 0.0) { Residuum = (QCoilActual - HeatCoilLoad) / HeatCoilLoad; } else { // Autodesk:Return Condition added to assure return value is set diff --git a/src/EnergyPlus/HVACUnitaryBypassVAV.hh b/src/EnergyPlus/HVACUnitaryBypassVAV.hh index 866604677ae..6894e0bfbe0 100644 --- a/src/EnergyPlus/HVACUnitaryBypassVAV.hh +++ b/src/EnergyPlus/HVACUnitaryBypassVAV.hh @@ -79,7 +79,8 @@ namespace HVACUnitaryBypassVAV { // Priority control mode (prioritized thermostat signal) extern int const CoolingPriority; // Controls CBVAV system based on cooling priority extern int const HeatingPriority; // Controls CBVAV system based on heating priority - extern int const ZonePriority; // Controls CBVAV system based on zone priority + extern int const ZonePriority; // Controls CBVAV system based on number of zones priority + extern int const LoadPriority; // Controls CBVAV system based on total load priority // Airflow control for contant fan mode extern int const UseCompressorOnFlow; // Set compressor OFF air flow rate equal to compressor ON air flow rate @@ -136,6 +137,7 @@ namespace HVACUnitaryBypassVAV { int MixerReliefAirNode; // Relief air node number for OA mixer int MixerInletAirNode; // Return air node number for OA mixer int SplitterOutletAirNode; // Air node number for splitter (last component outlet node) + int PlenumMixerInletAirNode; // only used when bypass is connected to plenum or mixer std::string OAMixType; // type of outside air mixer std::string OAMixName; // Name of OA mixer int OAMixIndex; // Index to OA mixer @@ -207,7 +209,7 @@ namespace HVACUnitaryBypassVAV { Array1D_int CBVAVBoxOutletNode; // Outlet node of CBVAV Box in controlled zone Array1D_int ZoneSequenceCoolingNum; // Index to cooling sequence/priority for this zone Array1D_int ZoneSequenceHeatingNum; // Index to heating sequence/priority for this zone - int PriorityControl; // Control mode - CoolingPriority, HeatingPriority, or ZonePriority + int PriorityControl; // Control mode - CoolingPriority, HeatingPriority, ZonePriority or LoadPriority int NumZonesCooled; // Number of zones requesting cooling int NumZonesHeated; // Number of zones requesting heating int PLRMaxIter; // Counter for recurring warning message @@ -257,33 +259,38 @@ namespace HVACUnitaryBypassVAV { int CRDXIterationFailed; // Counter for cool reheat multimode DX coil messages int CRDXIterationFailedIndex; // Counter for cool reheat multimode DX coil messages bool FirstPass; // used to determine when first call is made + int plenumIndex; // index to AirloopHVAC:ReturnPlenum + int mixerIndex; // index to AirloopHVAC:ZoneMixer + Real64 changeOverTimer; // timer to avoid rapid change of operating modes (e.g., cooling to heating) + Real64 minModeChangeTime; // time limit before mode change is allowed (hr) // Default Constructor CBVAVData() : SchedPtr(0), MaxCoolAirVolFlow(0.0), MaxHeatAirVolFlow(0.0), MaxNoCoolHeatAirVolFlow(0.0), MaxCoolAirMassFlow(0.0), - MaxHeatAirMassFlow(0.0), MaxNoCoolHeatAirMassFlow(0.0), CoolOutAirVolFlow(0.0), HeatOutAirVolFlow(0.0), NoCoolHeatOutAirVolFlow(0.0), - CoolOutAirMassFlow(0.0), HeatOutAirMassFlow(0.0), NoCoolHeatOutAirMassFlow(0.0), OutAirSchPtr(0), AirInNode(0), AirOutNode(0), - CondenserNodeNum(0), MixerOutsideAirNode(0), MixerMixedAirNode(0), MixerReliefAirNode(0), MixerInletAirNode(0), - SplitterOutletAirNode(0), OAMixIndex(0), FanPlace(0), FanType_Num(0), FanIndex(0), FanOpModeSchedPtr(0), FanVolFlow(0.0), - HeatingSpeedRatio(1.0), CoolingSpeedRatio(1.0), NoHeatCoolSpeedRatio(1.0), CheckFanFlow(true), DXCoolCoilType_Num(0), - CoolCoilCompIndex(0), DXCoolCoilIndexNum(0), DXHeatCoilIndexNum(0), HeatCoilType_Num(0), HeatCoilIndex(0), OpMode(0), - CoilControlNode(0), CoilOutletNode(0), LoopNum(0), LoopSide(0), BranchNum(0), CompNum(0), HotWaterCoilMaxIterIndex(0), - HotWaterCoilMaxIterIndex2(0), MaxHeatCoilFluidFlow(0.0), DesignHeatingCapacity(0.0), DesignSuppHeatingCapacity(0.0), - MinOATCompressor(0.0), MinLATCooling(0.0), MaxLATHeating(0.0), TotHeatEnergyRate(0.0), TotHeatEnergy(0.0), TotCoolEnergyRate(0.0), - TotCoolEnergy(0.0), SensHeatEnergyRate(0.0), SensHeatEnergy(0.0), SensCoolEnergyRate(0.0), SensCoolEnergy(0.0), LatHeatEnergyRate(0.0), - LatHeatEnergy(0.0), LatCoolEnergyRate(0.0), LatCoolEnergy(0.0), ElecPower(0.0), ElecConsumption(0.0), FanPartLoadRatio(0.0), - CompPartLoadRatio(0.0), LastMode(0), AirFlowControl(0), CompPartLoadFrac(0.0), AirLoopNumber(0), NumControlledZones(0), - PriorityControl(0), NumZonesCooled(0), NumZonesHeated(0), PLRMaxIter(0), PLRMaxIterIndex(0), DXCoilInletNode(0), DXCoilOutletNode(0), - HeatingCoilInletNode(0), HeatingCoilOutletNode(0), FanInletNodeNum(0), OutletTempSetPoint(0.0), CoilTempSetPoint(0.0), HeatCoolMode(0), - BypassMassFlowRate(0.0), DehumidificationMode(0), DehumidControlType(0), HumRatMaxCheck(true), DXIterationExceeded(0), - DXIterationExceededIndex(0), DXIterationFailed(0), DXIterationFailedIndex(0), DXCyclingIterationExceeded(0), - DXCyclingIterationExceededIndex(0), DXCyclingIterationFailed(0), DXCyclingIterationFailedIndex(0), DXHeatIterationExceeded(0), - DXHeatIterationExceededIndex(0), DXHeatIterationFailed(0), DXHeatIterationFailedIndex(0), DXHeatCyclingIterationExceeded(0), - DXHeatCyclingIterationExceededIndex(0), DXHeatCyclingIterationFailed(0), DXHeatCyclingIterationFailedIndex(0), HXDXIterationExceeded(0), - HXDXIterationExceededIndex(0), HXDXIterationFailed(0), HXDXIterationFailedIndex(0), MMDXIterationExceeded(0), - MMDXIterationExceededIndex(0), MMDXIterationFailed(0), MMDXIterationFailedIndex(0), DMDXIterationExceeded(0), - DMDXIterationExceededIndex(0), DMDXIterationFailed(0), DMDXIterationFailedIndex(0), CRDXIterationExceeded(0), - CRDXIterationExceededIndex(0), CRDXIterationFailed(0), CRDXIterationFailedIndex(0), FirstPass(true) + MaxHeatAirMassFlow(0.0), MaxNoCoolHeatAirMassFlow(0.0), CoolOutAirVolFlow(0.0), HeatOutAirVolFlow(0.0), NoCoolHeatOutAirVolFlow(0.0), + CoolOutAirMassFlow(0.0), HeatOutAirMassFlow(0.0), NoCoolHeatOutAirMassFlow(0.0), OutAirSchPtr(0), AirInNode(0), AirOutNode(0), + CondenserNodeNum(0), MixerOutsideAirNode(0), MixerMixedAirNode(0), MixerReliefAirNode(0), MixerInletAirNode(0), + SplitterOutletAirNode(0), PlenumMixerInletAirNode(0), OAMixIndex(0), FanPlace(0), FanType_Num(0), FanIndex(0), FanOpModeSchedPtr(0), + FanVolFlow(0.0), HeatingSpeedRatio(1.0), CoolingSpeedRatio(1.0), NoHeatCoolSpeedRatio(1.0), CheckFanFlow(true), DXCoolCoilType_Num(0), + CoolCoilCompIndex(0), DXCoolCoilIndexNum(0), DXHeatCoilIndexNum(0), HeatCoilType_Num(0), HeatCoilIndex(0), OpMode(0), + CoilControlNode(0), CoilOutletNode(0), LoopNum(0), LoopSide(0), BranchNum(0), CompNum(0), HotWaterCoilMaxIterIndex(0), + HotWaterCoilMaxIterIndex2(0), MaxHeatCoilFluidFlow(0.0), DesignHeatingCapacity(0.0), DesignSuppHeatingCapacity(0.0), + MinOATCompressor(0.0), MinLATCooling(0.0), MaxLATHeating(0.0), TotHeatEnergyRate(0.0), TotHeatEnergy(0.0), TotCoolEnergyRate(0.0), + TotCoolEnergy(0.0), SensHeatEnergyRate(0.0), SensHeatEnergy(0.0), SensCoolEnergyRate(0.0), SensCoolEnergy(0.0), LatHeatEnergyRate(0.0), + LatHeatEnergy(0.0), LatCoolEnergyRate(0.0), LatCoolEnergy(0.0), ElecPower(0.0), ElecConsumption(0.0), FanPartLoadRatio(0.0), + CompPartLoadRatio(0.0), LastMode(0), AirFlowControl(0), CompPartLoadFrac(0.0), AirLoopNumber(0), NumControlledZones(0), + PriorityControl(0), NumZonesCooled(0), NumZonesHeated(0), PLRMaxIter(0), PLRMaxIterIndex(0), DXCoilInletNode(0), DXCoilOutletNode(0), + HeatingCoilInletNode(0), HeatingCoilOutletNode(0), FanInletNodeNum(0), OutletTempSetPoint(0.0), CoilTempSetPoint(0.0), HeatCoolMode(0), + BypassMassFlowRate(0.0), DehumidificationMode(0), DehumidControlType(0), HumRatMaxCheck(true), DXIterationExceeded(0), + DXIterationExceededIndex(0), DXIterationFailed(0), DXIterationFailedIndex(0), DXCyclingIterationExceeded(0), + DXCyclingIterationExceededIndex(0), DXCyclingIterationFailed(0), DXCyclingIterationFailedIndex(0), DXHeatIterationExceeded(0), + DXHeatIterationExceededIndex(0), DXHeatIterationFailed(0), DXHeatIterationFailedIndex(0), DXHeatCyclingIterationExceeded(0), + DXHeatCyclingIterationExceededIndex(0), DXHeatCyclingIterationFailed(0), DXHeatCyclingIterationFailedIndex(0), HXDXIterationExceeded(0), + HXDXIterationExceededIndex(0), HXDXIterationFailed(0), HXDXIterationFailedIndex(0), MMDXIterationExceeded(0), + MMDXIterationExceededIndex(0), MMDXIterationFailed(0), MMDXIterationFailedIndex(0), DMDXIterationExceeded(0), + DMDXIterationExceededIndex(0), DMDXIterationFailed(0), DMDXIterationFailedIndex(0), CRDXIterationExceeded(0), + CRDXIterationExceededIndex(0), CRDXIterationFailed(0), CRDXIterationFailedIndex(0), FirstPass(true), plenumIndex(0), mixerIndex(0), + changeOverTimer(-1.0), minModeChangeTime(-1.0) { } }; @@ -304,7 +311,6 @@ namespace HVACUnitaryBypassVAV { void SimCBVAV(int const CBVAVNum, // Index of the current CBVAV system being simulated bool const FirstHVACIteration, // TRUE if 1st HVAC simulation of system timestep - Real64 &QZnReq, // Zone load for all zones served by this air loop system Real64 &QSensUnitOut, // Sensible delivered capacity [W] Real64 &OnOffAirFlowRatio, // Ratio of compressor ON airflow to AVERAGE airflow over timestep bool &HXUnitOn // flag to enable heat exchanger @@ -315,7 +321,6 @@ namespace HVACUnitaryBypassVAV { void InitCBVAV(int const CBVAVNum, // Index of the current CBVAV unit being simulated bool const FirstHVACIteration, // TRUE if first HVAC iteration int const AirLoopNum, // air loop index - Real64 &QZnReq, // Heating/Cooling load for all zones Real64 &OnOffAirFlowRatio, // Ratio of compressor ON airflow to average airflow over timestep bool &HXUnitOn // flag to enable heat exchanger ); @@ -324,7 +329,6 @@ namespace HVACUnitaryBypassVAV { void ControlCBVAVOutput(int const CBVAVNum, // Index to CBVAV system bool const FirstHVACIteration, // Flag for 1st HVAC iteration - Real64 &QZnReq, // Cooling or heating output needed by zone [W] Real64 &PartLoadFrac, // Unit part load fraction Real64 &OnOffAirFlowRatio, // Ratio of compressor ON airflow to AVERAGE airflow over timestep bool &HXUnitOn // flag to enable heat exchanger @@ -334,13 +338,11 @@ namespace HVACUnitaryBypassVAV { bool const FirstHVACIteration, // Flag for 1st HVAC iteration Real64 &PartLoadFrac, // Compressor part load fraction Real64 &LoadMet, // Load met by unit (W) - Real64 &QZnReq, // Zone load (W) Real64 &OnOffAirFlowRatio, // Ratio of compressor ON airflow to AVERAGE airflow over timestep bool const HXUnitOn // flag to enable heat exchanger ); - void GetZoneLoads(int const CBVAVNum, // Index to CBVAV unit being simulated - Real64 &QZoneReq // Total zone load served by this air loop + void GetZoneLoads(int const CBVAVNum // Index to CBVAV unit being simulated ); Real64 CalcSetPointTempTarget(int const CBVAVNumber); // Index to changeover-bypass VAV system diff --git a/src/EnergyPlus/HVACVariableRefrigerantFlow.cc b/src/EnergyPlus/HVACVariableRefrigerantFlow.cc index 76949c736dd..6212e2d8286 100644 --- a/src/EnergyPlus/HVACVariableRefrigerantFlow.cc +++ b/src/EnergyPlus/HVACVariableRefrigerantFlow.cc @@ -10982,7 +10982,7 @@ namespace HVACVariableRefrigerantFlow { if (OnOffAirFlowRatio > 0.0) { HVACFan::fanObjs[VRFTU(VRFTUNum).FanIndex]->simulate(1.0 / OnOffAirFlowRatio, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); } else { - HVACFan::fanObjs[VRFTU(VRFTUNum).FanIndex]->simulate(1.0, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); + HVACFan::fanObjs[VRFTU(VRFTUNum).FanIndex]->simulate(PartLoadRatio, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); } } else { Fans::SimulateFanComponents("", FirstHVACIteration, this->FanIndex, FanSpeedRatio, ZoneCompTurnFansOn, ZoneCompTurnFansOff); @@ -11029,7 +11029,7 @@ namespace HVACVariableRefrigerantFlow { if (OnOffAirFlowRatio > 0.0) { HVACFan::fanObjs[VRFTU(VRFTUNum).FanIndex]->simulate(1.0 / OnOffAirFlowRatio, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); } else { - HVACFan::fanObjs[VRFTU(VRFTUNum).FanIndex]->simulate(1.0, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); + HVACFan::fanObjs[VRFTU(VRFTUNum).FanIndex]->simulate(PartLoadRatio, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); } } else { @@ -11329,7 +11329,11 @@ namespace HVACVariableRefrigerantFlow { // Simulate the blow-through fan if there is any if (VRFTU(VRFTUNum).FanPlace == BlowThru) { if (VRFTU(VRFTUNum).fanType_Num == DataHVACGlobals::FanType_SystemModelObject) { - HVACFan::fanObjs[VRFTU(VRFTUNum).FanIndex]->simulate(1.0 / temp, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); + if (temp > 0) { + HVACFan::fanObjs[VRFTU(VRFTUNum).FanIndex]->simulate(1.0 / temp, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); + } else { + HVACFan::fanObjs[VRFTU(VRFTUNum).FanIndex]->simulate(PartLoadRatio, ZoneCompTurnFansOn, ZoneCompTurnFansOff, _); + } } else { Fans::SimulateFanComponents("", false, VRFTU(VRFTUNum).FanIndex, FanSpeedRatio, ZoneCompTurnFansOn, ZoneCompTurnFansOff); } diff --git a/src/EnergyPlus/HWBaseboardRadiator.cc b/src/EnergyPlus/HWBaseboardRadiator.cc index cf2f906bd7e..9479131386a 100644 --- a/src/EnergyPlus/HWBaseboardRadiator.cc +++ b/src/EnergyPlus/HWBaseboardRadiator.cc @@ -72,6 +72,7 @@ #include #include #include +#include #include #include #include @@ -561,16 +562,32 @@ namespace HWBaseboardRadiator { HWBaseboard(BaseboardNum).FracDistribToSurf.allocate(HWBaseboard(BaseboardNum).TotSurfToDistrib); HWBaseboard(BaseboardNum).FracDistribToSurf = 0.0; + // search zone equipment list structure for zone index + for (int ctrlZone = 1; ctrlZone <= DataGlobals::NumOfZones; ++ctrlZone) { + for (int zoneEquipTypeNum = 1; zoneEquipTypeNum <= DataZoneEquipment::ZoneEquipList(ctrlZone).NumOfEquipTypes; ++zoneEquipTypeNum) { + if (DataZoneEquipment::ZoneEquipList(ctrlZone).EquipType_Num(zoneEquipTypeNum) == DataZoneEquipment::BBWater_Num && + DataZoneEquipment::ZoneEquipList(ctrlZone).EquipName(zoneEquipTypeNum) == HWBaseboard(BaseboardNum).EquipID) { + HWBaseboard(BaseboardNum).ZonePtr = ctrlZone; + } + } + } + if (HWBaseboard(BaseboardNum).ZonePtr <= 0) { + ShowSevereError(RoutineName + cCMO_BBRadiator_Water + "=\"" + HWBaseboard(BaseboardNum).EquipID + + "\" is not on any ZoneHVAC:EquipmentList."); + ErrorsFound = true; + continue; + } + AllFracsSummed = HWBaseboard(BaseboardNum).FracDistribPerson; for (SurfNum = 1; SurfNum <= HWBaseboard(BaseboardNum).TotSurfToDistrib; ++SurfNum) { HWBaseboard(BaseboardNum).SurfaceName(SurfNum) = cAlphaArgs(SurfNum + 5); - HWBaseboard(BaseboardNum).SurfacePtr(SurfNum) = UtilityRoutines::FindItemInList(cAlphaArgs(SurfNum + 5), Surface); + HWBaseboard(BaseboardNum).SurfacePtr(SurfNum) = + HeatBalanceIntRadExchange::GetRadiantSystemSurface(cCMO_BBRadiator_Water, + HWBaseboard(BaseboardNum).EquipID, + HWBaseboard(BaseboardNum).ZonePtr, + HWBaseboard(BaseboardNum).SurfaceName(SurfNum), + ErrorsFound); HWBaseboard(BaseboardNum).FracDistribToSurf(SurfNum) = rNumericArgs(SurfNum + 9); - if (HWBaseboard(BaseboardNum).SurfacePtr(SurfNum) == 0) { - ShowSevereError(RoutineName + cCMO_BBRadiator_Water + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(SurfNum + 5) + "=\"" + - cAlphaArgs(SurfNum + 5) + "\" invalid - not found."); - ErrorsFound = true; - } if (HWBaseboard(BaseboardNum).FracDistribToSurf(SurfNum) > MaxFraction) { ShowWarningError(RoutineName + cCMO_BBRadiator_Water + "=\"" + cAlphaArgs(1) + "\", " + cNumericFieldNames(SurfNum + 9) + "was greater than the allowable maximum."); @@ -601,15 +618,6 @@ namespace HWBaseboardRadiator { "\", Summed radiant fractions for people + surface groups < 1.0"); ShowContinueError("The rest of the radiant energy delivered by the baseboard heater will be lost"); } - // search zone equipment list structure for zone index - for (int ctrlZone = 1; ctrlZone <= DataGlobals::NumOfZones; ++ctrlZone) { - for (int zoneEquipTypeNum = 1; zoneEquipTypeNum <= DataZoneEquipment::ZoneEquipList(ctrlZone).NumOfEquipTypes; ++zoneEquipTypeNum) { - if (DataZoneEquipment::ZoneEquipList(ctrlZone).EquipType_Num(zoneEquipTypeNum) == DataZoneEquipment::BBElectric_Num && - DataZoneEquipment::ZoneEquipList(ctrlZone).EquipName(zoneEquipTypeNum) == HWBaseboard(BaseboardNum).EquipID) { - HWBaseboard(BaseboardNum).ZonePtr = ctrlZone; - } - } - } } if (ErrorsFound) { diff --git a/src/EnergyPlus/HeatBalFiniteDiffManager.cc b/src/EnergyPlus/HeatBalFiniteDiffManager.cc index b05ee1d7c0b..8644e28728f 100644 --- a/src/EnergyPlus/HeatBalFiniteDiffManager.cc +++ b/src/EnergyPlus/HeatBalFiniteDiffManager.cc @@ -766,7 +766,7 @@ namespace HeatBalFiniteDiffManager { Alpha = kt / (Material(CurrentLayer).Density * Material(CurrentLayer).SpecHeat); mAlpha = 0.0; - } else if (Construct(ConstrNum).TypeIsIRT) { // make similar to air? (that didn't seem to work well) + } else if (Construct(ConstrNum).TypeIsIRT || Construct(ConstrNum).TypeIsAirBoundaryIRTSurface) { // make similar to air? (that didn't seem to work well) ShowSevereError("InitHeatBalFiniteDiff: Construction =\"" + Construct(ConstrNum).Name + "\" uses Material:InfraredTransparent. Cannot be used currently with finite difference calculations."); if (Construct(ConstrNum).IsUsed) { @@ -1256,6 +1256,7 @@ namespace HeatBalFiniteDiffManager { if (Construct(ThisNum).TypeIsWindow) continue; if (Construct(ThisNum).TypeIsIRT) continue; + if (Construct(ThisNum).TypeIsAirBoundaryIRTSurface) continue; ObjexxFCL::gio::write(OutputFileInits, Format_700) << Construct(ThisNum).Name << RoundSigDigits(ThisNum) << RoundSigDigits(Construct(ThisNum).TotLayers) diff --git a/src/EnergyPlus/HeatBalanceAirManager.cc b/src/EnergyPlus/HeatBalanceAirManager.cc index 71ec4751725..d7fab22b331 100644 --- a/src/EnergyPlus/HeatBalanceAirManager.cc +++ b/src/EnergyPlus/HeatBalanceAirManager.cc @@ -2736,265 +2736,287 @@ namespace HeatBalanceAirManager { } cCurrentModuleObject = "ZoneCrossMixing"; - TotCrossMixing = inputProcessor->getNumObjectsFound(cCurrentModuleObject); + int inputCrossMixing = inputProcessor->getNumObjectsFound(cCurrentModuleObject); + TotCrossMixing = inputCrossMixing + DataHeatBalance::NumAirBoundaryMixing; CrossMixing.allocate(TotCrossMixing); for (Loop = 1; Loop <= TotCrossMixing; ++Loop) { - inputProcessor->getObjectItem(cCurrentModuleObject, - Loop, - cAlphaArgs, - NumAlpha, - rNumericArgs, - NumNumber, - IOStat, - lNumericFieldBlanks, - lAlphaFieldBlanks, - cAlphaFieldNames, - cNumericFieldNames); - UtilityRoutines::IsNameEmpty(cAlphaArgs(1), cCurrentModuleObject, ErrorsFound); - - CrossMixing(Loop).Name = cAlphaArgs(1); + if (Loop > inputCrossMixing) { + // Create CrossMixing object from air boundary info + int airBoundaryIndex = Loop - inputCrossMixing - 1; //zero-based + int zone1 = DataHeatBalance::AirBoundaryMixingZone1[airBoundaryIndex]; + int zone2 = DataHeatBalance::AirBoundaryMixingZone2[airBoundaryIndex]; + CrossMixing(Loop).Name = "Air Boundary Mixing Zones " + General::RoundSigDigits(zone1) + " and " + General::RoundSigDigits(zone2); + CrossMixing(Loop).ZonePtr = zone1; + CrossMixing(Loop).SchedPtr = DataHeatBalance::AirBoundaryMixingSched[airBoundaryIndex]; + CrossMixing(Loop).DesignLevel = DataHeatBalance::AirBoundaryMixingVol[airBoundaryIndex]; + CrossMixing(Loop).FromZone = zone2; + } + else { + inputProcessor->getObjectItem(cCurrentModuleObject, + Loop, + cAlphaArgs, + NumAlpha, + rNumericArgs, + NumNumber, + IOStat, + lNumericFieldBlanks, + lAlphaFieldBlanks, + cAlphaFieldNames, + cNumericFieldNames); + UtilityRoutines::IsNameEmpty(cAlphaArgs(1), cCurrentModuleObject, ErrorsFound); - CrossMixing(Loop).ZonePtr = UtilityRoutines::FindItemInList(cAlphaArgs(2), Zone); - if (CrossMixing(Loop).ZonePtr == 0) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", invalid (not found) " + cAlphaFieldNames(2) + - "=\"" + cAlphaArgs(2) + "\"."); - ErrorsFound = true; - } + CrossMixing(Loop).Name = cAlphaArgs(1); - CrossMixing(Loop).SchedPtr = GetScheduleIndex(cAlphaArgs(3)); - if (CrossMixing(Loop).SchedPtr == 0) { - if (lAlphaFieldBlanks(3)) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(3) + - " is required but field is blank."); - } else { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", invalid (not found) " + cAlphaFieldNames(3) + - "=\"" + cAlphaArgs(3) + "\"."); + CrossMixing(Loop).ZonePtr = UtilityRoutines::FindItemInList(cAlphaArgs(2), Zone); + if (CrossMixing(Loop).ZonePtr == 0) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", invalid (not found) " + cAlphaFieldNames(2) + + "=\"" + cAlphaArgs(2) + "\"."); + ErrorsFound = true; } - ErrorsFound = true; - } - // Mixing equipment design level calculation method. - { - auto const SELECT_CASE_var(cAlphaArgs(4)); - if ((SELECT_CASE_var == "FLOW/ZONE") || (SELECT_CASE_var == "FLOW")) { - CrossMixing(Loop).DesignLevel = rNumericArgs(1); - if (lNumericFieldBlanks(1)) { - ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + " specifies " + - cNumericFieldNames(1) + ", but that field is blank. 0 Cross Mixing will result."); + CrossMixing(Loop).SchedPtr = GetScheduleIndex(cAlphaArgs(3)); + if (CrossMixing(Loop).SchedPtr == 0) { + if (lAlphaFieldBlanks(3)) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(3) + + " is required but field is blank."); } + else { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", invalid (not found) " + cAlphaFieldNames(3) + + "=\"" + cAlphaArgs(3) + "\"."); + } + ErrorsFound = true; + } - } else if (SELECT_CASE_var == "FLOW/AREA") { - if (CrossMixing(Loop).ZonePtr != 0) { - if (rNumericArgs(2) >= 0.0) { - CrossMixing(Loop).DesignLevel = rNumericArgs(2) * Zone(CrossMixing(Loop).ZonePtr).FloorArea; - if (Zone(CrossMixing(Loop).ZonePtr).FloorArea <= 0.0) { - ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + - " specifies " + cNumericFieldNames(2) + ", but Zone Floor Area = 0. 0 Cross Mixing will result."); - } - } else { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + - "\", invalid flow/person specification [<0.0]=" + RoundSigDigits(rNumericArgs(2), 3)); - ErrorsFound = true; + // Mixing equipment design level calculation method. + { + auto const SELECT_CASE_var(cAlphaArgs(4)); + if ((SELECT_CASE_var == "FLOW/ZONE") || (SELECT_CASE_var == "FLOW")) { + CrossMixing(Loop).DesignLevel = rNumericArgs(1); + if (lNumericFieldBlanks(1)) { + ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + " specifies " + + cNumericFieldNames(1) + ", but that field is blank. 0 Cross Mixing will result."); } - } - if (lNumericFieldBlanks(2)) { - ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + " specifies " + - cNumericFieldNames(2) + ", but that field is blank. 0 Cross Mixing will result."); - } - } else if (SELECT_CASE_var == "FLOW/PERSON") { - if (CrossMixing(Loop).ZonePtr != 0) { - if (rNumericArgs(3) >= 0.0) { - CrossMixing(Loop).DesignLevel = rNumericArgs(3) * Zone(CrossMixing(Loop).ZonePtr).TotOccupants; - if (Zone(CrossMixing(Loop).ZonePtr).TotOccupants <= 0.0) { - ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + - " specifies " + cNumericFieldNames(3) + - ", but Zone Total Occupants = 0. 0 Cross Mixing will result."); + } + else if (SELECT_CASE_var == "FLOW/AREA") { + if (CrossMixing(Loop).ZonePtr != 0) { + if (rNumericArgs(2) >= 0.0) { + CrossMixing(Loop).DesignLevel = rNumericArgs(2) * Zone(CrossMixing(Loop).ZonePtr).FloorArea; + if (Zone(CrossMixing(Loop).ZonePtr).FloorArea <= 0.0) { + ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + + " specifies " + cNumericFieldNames(2) + ", but Zone Floor Area = 0. 0 Cross Mixing will result."); + } + } + else { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + + "\", invalid flow/person specification [<0.0]=" + RoundSigDigits(rNumericArgs(2), 3)); + ErrorsFound = true; } - } else { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + - "\", invalid flow/person specification [<0.0]=" + RoundSigDigits(rNumericArgs(3), 3)); - ErrorsFound = true; } + if (lNumericFieldBlanks(2)) { + ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + " specifies " + + cNumericFieldNames(2) + ", but that field is blank. 0 Cross Mixing will result."); + } + } - if (lNumericFieldBlanks(3)) { - ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + " specifies " + - cNumericFieldNames(3) + ", but that field is blank. 0 Cross Mixing will result."); - } + else if (SELECT_CASE_var == "FLOW/PERSON") { + if (CrossMixing(Loop).ZonePtr != 0) { + if (rNumericArgs(3) >= 0.0) { + CrossMixing(Loop).DesignLevel = rNumericArgs(3) * Zone(CrossMixing(Loop).ZonePtr).TotOccupants; + if (Zone(CrossMixing(Loop).ZonePtr).TotOccupants <= 0.0) { + ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + + " specifies " + cNumericFieldNames(3) + + ", but Zone Total Occupants = 0. 0 Cross Mixing will result."); + } + } + else { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + + "\", invalid flow/person specification [<0.0]=" + RoundSigDigits(rNumericArgs(3), 3)); + ErrorsFound = true; + } + } + if (lNumericFieldBlanks(3)) { + ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + " specifies " + + cNumericFieldNames(3) + ", but that field is blank. 0 Cross Mixing will result."); + } - } else if (SELECT_CASE_var == "AIRCHANGES/HOUR") { - if (CrossMixing(Loop).ZonePtr != 0) { - if (rNumericArgs(4) >= 0.0) { - CrossMixing(Loop).DesignLevel = rNumericArgs(4) * Zone(CrossMixing(Loop).ZonePtr).Volume / SecInHour; - if (Zone(CrossMixing(Loop).ZonePtr).Volume <= 0.0) { - ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + - " specifies " + cNumericFieldNames(4) + ", but Zone Volume = 0. 0 Cross Mixing will result."); + } + else if (SELECT_CASE_var == "AIRCHANGES/HOUR") { + if (CrossMixing(Loop).ZonePtr != 0) { + if (rNumericArgs(4) >= 0.0) { + CrossMixing(Loop).DesignLevel = rNumericArgs(4) * Zone(CrossMixing(Loop).ZonePtr).Volume / SecInHour; + if (Zone(CrossMixing(Loop).ZonePtr).Volume <= 0.0) { + ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + + " specifies " + cNumericFieldNames(4) + ", but Zone Volume = 0. 0 Cross Mixing will result."); + } + } + else { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + + "\", invalid flow/person specification [<0.0]=" + RoundSigDigits(rNumericArgs(4), 3)); + ErrorsFound = true; } - } else { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + - "\", invalid flow/person specification [<0.0]=" + RoundSigDigits(rNumericArgs(4), 3)); - ErrorsFound = true; } + if (lNumericFieldBlanks(4)) { + ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + " specifies " + + cNumericFieldNames(4) + ", but that field is blank. 0 Cross Mixing will result."); + } + } - if (lNumericFieldBlanks(4)) { - ShowWarningError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(4) + " specifies " + - cNumericFieldNames(4) + ", but that field is blank. 0 Cross Mixing will result."); + else { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", invalid calculation method=" + cAlphaArgs(4)); + ErrorsFound = true; } + } - } else { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", invalid calculation method=" + cAlphaArgs(4)); + CrossMixing(Loop).FromZone = UtilityRoutines::FindItemInList(cAlphaArgs(5), Zone); + if (CrossMixing(Loop).FromZone == 0) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", invalid (not found) " + cAlphaFieldNames(5) + + "=\"" + cAlphaArgs(5) + "\"."); ErrorsFound = true; } - } + CrossMixing(Loop).DeltaTemperature = rNumericArgs(5); - CrossMixing(Loop).FromZone = UtilityRoutines::FindItemInList(cAlphaArgs(5), Zone); - if (CrossMixing(Loop).FromZone == 0) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\", invalid (not found) " + cAlphaFieldNames(5) + - "=\"" + cAlphaArgs(5) + "\"."); - ErrorsFound = true; - } - CrossMixing(Loop).DeltaTemperature = rNumericArgs(5); - - if (NumAlpha > 5) { - CrossMixing(Loop).DeltaTempSchedPtr = GetScheduleIndex(cAlphaArgs(6)); - if (CrossMixing(Loop).DeltaTempSchedPtr > 0) { - if (!lNumericFieldBlanks(5)) - ShowWarningError(RoutineName + - "The Delta Temperature value and schedule are provided. The scheduled temperature will be used in the " + - cCurrentModuleObject + " object = " + cAlphaArgs(1)); - if (GetScheduleMinValue(CrossMixing(Loop).DeltaTempSchedPtr) < 0.0) { - ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + - " must have a delta temperature equal to or above 0 C defined in the schedule = " + cAlphaArgs(6)); - ErrorsFound = true; + if (NumAlpha > 5) { + CrossMixing(Loop).DeltaTempSchedPtr = GetScheduleIndex(cAlphaArgs(6)); + if (CrossMixing(Loop).DeltaTempSchedPtr > 0) { + if (!lNumericFieldBlanks(5)) + ShowWarningError(RoutineName + + "The Delta Temperature value and schedule are provided. The scheduled temperature will be used in the " + + cCurrentModuleObject + " object = " + cAlphaArgs(1)); + if (GetScheduleMinValue(CrossMixing(Loop).DeltaTempSchedPtr) < 0.0) { + ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + + " must have a delta temperature equal to or above 0 C defined in the schedule = " + cAlphaArgs(6)); + ErrorsFound = true; + } } } - } - if (CrossMixing(Loop).DeltaTempSchedPtr == 0 && lNumericFieldBlanks(5) && (!lAlphaFieldBlanks(6))) { - ShowWarningError(RoutineName + cNumericFieldNames(5) + - ": the value field is blank and schedule field is invalid. The default value will be used (" + - RoundSigDigits(rNumericArgs(5), 1) + ") "); - ShowContinueError("in " + cCurrentModuleObject + " = " + cAlphaArgs(1) + " and the simulation continues..."); - } - if (!lNumericFieldBlanks(5) && ((!lAlphaFieldBlanks(6)) && CrossMixing(Loop).DeltaTempSchedPtr == 0)) { - ShowWarningError(RoutineName + cAlphaFieldNames(6) + " = " + cAlphaArgs(6) + " is invalid. The constant value will be used at " + - RoundSigDigits(rNumericArgs(5), 1) + " degrees C "); - ShowContinueError("in the " + cCurrentModuleObject + " object = " + cAlphaArgs(1) + " and the simulation continues..."); - } + if (CrossMixing(Loop).DeltaTempSchedPtr == 0 && lNumericFieldBlanks(5) && (!lAlphaFieldBlanks(6))) { + ShowWarningError(RoutineName + cNumericFieldNames(5) + + ": the value field is blank and schedule field is invalid. The default value will be used (" + + RoundSigDigits(rNumericArgs(5), 1) + ") "); + ShowContinueError("in " + cCurrentModuleObject + " = " + cAlphaArgs(1) + " and the simulation continues..."); + } + if (!lNumericFieldBlanks(5) && ((!lAlphaFieldBlanks(6)) && CrossMixing(Loop).DeltaTempSchedPtr == 0)) { + ShowWarningError(RoutineName + cAlphaFieldNames(6) + " = " + cAlphaArgs(6) + " is invalid. The constant value will be used at " + + RoundSigDigits(rNumericArgs(5), 1) + " degrees C "); + ShowContinueError("in the " + cCurrentModuleObject + " object = " + cAlphaArgs(1) + " and the simulation continues..."); + } - if (NumAlpha > 6) { - CrossMixing(Loop).MinIndoorTempSchedPtr = GetScheduleIndex(cAlphaArgs(7)); - if (CrossMixing(Loop).MinIndoorTempSchedPtr == 0) { - if ((!lAlphaFieldBlanks(7))) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(7) + - " not found=" + cAlphaArgs(7) + "\"."); - ErrorsFound = true; + if (NumAlpha > 6) { + CrossMixing(Loop).MinIndoorTempSchedPtr = GetScheduleIndex(cAlphaArgs(7)); + if (CrossMixing(Loop).MinIndoorTempSchedPtr == 0) { + if ((!lAlphaFieldBlanks(7))) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(7) + + " not found=" + cAlphaArgs(7) + "\"."); + ErrorsFound = true; + } } - } - if (CrossMixing(Loop).MinIndoorTempSchedPtr > 0) { - // Check min and max values in the schedule to ensure both values are within the range - if (!CheckScheduleValueMinMax(CrossMixing(Loop).MinIndoorTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { - ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + - " must have a minimum zone temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(7)); - ErrorsFound = true; + if (CrossMixing(Loop).MinIndoorTempSchedPtr > 0) { + // Check min and max values in the schedule to ensure both values are within the range + if (!CheckScheduleValueMinMax(CrossMixing(Loop).MinIndoorTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { + ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + + " must have a minimum zone temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(7)); + ErrorsFound = true; + } } } - } - if (NumAlpha > 7) { - CrossMixing(Loop).MaxIndoorTempSchedPtr = GetScheduleIndex(cAlphaArgs(8)); - if (CrossMixing(Loop).MaxIndoorTempSchedPtr == 0) { - if ((!lAlphaFieldBlanks(8))) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(8) + " not found=\"" + - cAlphaArgs(8) + "\"."); - ErrorsFound = true; + if (NumAlpha > 7) { + CrossMixing(Loop).MaxIndoorTempSchedPtr = GetScheduleIndex(cAlphaArgs(8)); + if (CrossMixing(Loop).MaxIndoorTempSchedPtr == 0) { + if ((!lAlphaFieldBlanks(8))) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(8) + " not found=\"" + + cAlphaArgs(8) + "\"."); + ErrorsFound = true; + } } - } - if (CrossMixing(Loop).MaxIndoorTempSchedPtr > 0) { - // Check min and max values in the schedule to ensure both values are within the range - if (!CheckScheduleValueMinMax(CrossMixing(Loop).MaxIndoorTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { - ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + - " must have a maximum zone temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(8)); - ErrorsFound = true; + if (CrossMixing(Loop).MaxIndoorTempSchedPtr > 0) { + // Check min and max values in the schedule to ensure both values are within the range + if (!CheckScheduleValueMinMax(CrossMixing(Loop).MaxIndoorTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { + ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + + " must have a maximum zone temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(8)); + ErrorsFound = true; + } } } - } - if (NumAlpha > 8) { - CrossMixing(Loop).MinSourceTempSchedPtr = GetScheduleIndex(cAlphaArgs(9)); - if (CrossMixing(Loop).MinSourceTempSchedPtr == 0) { - if ((!lAlphaFieldBlanks(9))) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(9) + " not found=\"" + - cAlphaArgs(9) + "\"."); - ErrorsFound = true; + if (NumAlpha > 8) { + CrossMixing(Loop).MinSourceTempSchedPtr = GetScheduleIndex(cAlphaArgs(9)); + if (CrossMixing(Loop).MinSourceTempSchedPtr == 0) { + if ((!lAlphaFieldBlanks(9))) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(9) + " not found=\"" + + cAlphaArgs(9) + "\"."); + ErrorsFound = true; + } } - } - if (CrossMixing(Loop).MinSourceTempSchedPtr > 0) { - // Check min and max values in the schedule to ensure both values are within the range - if (!CheckScheduleValueMinMax(CrossMixing(Loop).MinSourceTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { - ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + - " must have a minimum source temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(9)); - ErrorsFound = true; + if (CrossMixing(Loop).MinSourceTempSchedPtr > 0) { + // Check min and max values in the schedule to ensure both values are within the range + if (!CheckScheduleValueMinMax(CrossMixing(Loop).MinSourceTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { + ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + + " must have a minimum source temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(9)); + ErrorsFound = true; + } } } - } - if (NumAlpha > 9) { - CrossMixing(Loop).MaxSourceTempSchedPtr = GetScheduleIndex(cAlphaArgs(10)); - if (CrossMixing(Loop).MaxSourceTempSchedPtr == 0) { - if ((!lAlphaFieldBlanks(10))) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(10) + " not found=\"" + - cAlphaArgs(9) + "\"."); - ErrorsFound = true; + if (NumAlpha > 9) { + CrossMixing(Loop).MaxSourceTempSchedPtr = GetScheduleIndex(cAlphaArgs(10)); + if (CrossMixing(Loop).MaxSourceTempSchedPtr == 0) { + if ((!lAlphaFieldBlanks(10))) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(10) + " not found=\"" + + cAlphaArgs(9) + "\"."); + ErrorsFound = true; + } } - } - if (CrossMixing(Loop).MaxSourceTempSchedPtr > 0) { - // Check min and max values in the schedule to ensure both values are within the range - if (!CheckScheduleValueMinMax(CrossMixing(Loop).MaxSourceTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { - ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + - " must have a maximum source temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(10)); - ErrorsFound = true; + if (CrossMixing(Loop).MaxSourceTempSchedPtr > 0) { + // Check min and max values in the schedule to ensure both values are within the range + if (!CheckScheduleValueMinMax(CrossMixing(Loop).MaxSourceTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { + ShowSevereError(RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + + " must have a maximum source temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(10)); + ErrorsFound = true; + } } } - } - if (NumAlpha > 10) { - CrossMixing(Loop).MinOutdoorTempSchedPtr = GetScheduleIndex(cAlphaArgs(11)); - if (CrossMixing(Loop).MinOutdoorTempSchedPtr == 0) { - if ((!lAlphaFieldBlanks(11))) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(11) + " not found=\"" + - cAlphaArgs(9) + "\"."); - ErrorsFound = true; + if (NumAlpha > 10) { + CrossMixing(Loop).MinOutdoorTempSchedPtr = GetScheduleIndex(cAlphaArgs(11)); + if (CrossMixing(Loop).MinOutdoorTempSchedPtr == 0) { + if ((!lAlphaFieldBlanks(11))) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(11) + " not found=\"" + + cAlphaArgs(9) + "\"."); + ErrorsFound = true; + } } - } - if (CrossMixing(Loop).MinOutdoorTempSchedPtr > 0) { - // Check min and max values in the schedule to ensure both values are within the range - if (!CheckScheduleValueMinMax(CrossMixing(Loop).MinOutdoorTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { - ShowSevereError( - RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + - " must have a minimum outdoor temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(11)); - ErrorsFound = true; + if (CrossMixing(Loop).MinOutdoorTempSchedPtr > 0) { + // Check min and max values in the schedule to ensure both values are within the range + if (!CheckScheduleValueMinMax(CrossMixing(Loop).MinOutdoorTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { + ShowSevereError( + RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + + " must have a minimum outdoor temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(11)); + ErrorsFound = true; + } } } - } - if (NumAlpha > 11) { - CrossMixing(Loop).MaxOutdoorTempSchedPtr = GetScheduleIndex(cAlphaArgs(12)); - if (CrossMixing(Loop).MaxOutdoorTempSchedPtr == 0) { - if ((!lAlphaFieldBlanks(12))) { - ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(12) + " not found=\"" + - cAlphaArgs(9) + "\"."); - ErrorsFound = true; + if (NumAlpha > 11) { + CrossMixing(Loop).MaxOutdoorTempSchedPtr = GetScheduleIndex(cAlphaArgs(12)); + if (CrossMixing(Loop).MaxOutdoorTempSchedPtr == 0) { + if ((!lAlphaFieldBlanks(12))) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + cAlphaArgs(1) + "\"," + cAlphaFieldNames(12) + " not found=\"" + + cAlphaArgs(9) + "\"."); + ErrorsFound = true; + } } - } - if (CrossMixing(Loop).MaxOutdoorTempSchedPtr > 0) { - // Check min and max values in the schedule to ensure both values are within the range - if (!CheckScheduleValueMinMax(CrossMixing(Loop).MaxOutdoorTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { - ShowSevereError( - RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + - " must have a maximum outdoor temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(12)); - ErrorsFound = true; + if (CrossMixing(Loop).MaxOutdoorTempSchedPtr > 0) { + // Check min and max values in the schedule to ensure both values are within the range + if (!CheckScheduleValueMinMax(CrossMixing(Loop).MaxOutdoorTempSchedPtr, ">=", -MixingTempLimit, "<=", MixingTempLimit)) { + ShowSevereError( + RoutineName + cCurrentModuleObject + " = " + cAlphaArgs(1) + + " must have a maximum outdoor temperature between -100C and 100C defined in the schedule = " + cAlphaArgs(12)); + ErrorsFound = true; + } } } } diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 84c658a7809..8d70db4a104 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -129,7 +129,7 @@ namespace HeatBalanceIntRadExchange { // na // MODULE VARIABLE DECLARATIONS: - int MaxNumOfZoneSurfaces(0); // Max saved to get large enough space for user input view factors + int MaxNumOfRadEnclosureSurfs(0); // Max saved to get large enough space for SendSurfaceTempInKto4thPrecalc namespace { bool CalcInteriorRadExchangefirstTime(true); // Logical flag for one-time initializations } @@ -138,7 +138,7 @@ namespace HeatBalanceIntRadExchange { // Functions void clear_state() { - MaxNumOfZoneSurfaces = 0; + MaxNumOfRadEnclosureSurfs = 0; CalcInteriorRadExchangefirstTime = true; } @@ -210,9 +210,8 @@ namespace HeatBalanceIntRadExchange { epStartTime("CalcInteriorRadExchange="); #endif if (CalcInteriorRadExchangefirstTime) { - InitInteriorRadExchange(); #ifdef EP_HBIRE_SEQ - SendSurfaceTempInKto4thPrecalc.allocate(MaxNumOfZoneSurfaces); + SendSurfaceTempInKto4thPrecalc.allocate(MaxNumOfRadEnclosureSurfs); #else SendSurfaceTempInKto4thPrecalc.allocate(TotSurfaces); #endif @@ -246,23 +245,24 @@ namespace HeatBalanceIntRadExchange { #endif ConstrNumRec = 0; + int startEnclosure = 1; + int endEnclosure = DataViewFactorInformation::NumOfRadiantEnclosures; if (PartialResimulate) { - auto const &zone(Zone(ZoneToResimulate)); - NetLWRadToSurf({zone.SurfaceFirst, zone.SurfaceLast}) = 0.0; - for (int i = zone.SurfaceFirst; i <= zone.SurfaceLast; ++i) + startEnclosure = endEnclosure = Zone(ZoneToResimulate).RadiantEnclosureNum; + auto const &enclosure(ZoneRadiantInfo(startEnclosure)); + for (int i : enclosure.SurfacePtr) { + NetLWRadToSurf(i) = 0.0; SurfaceWindow(i).IRfromParentZone = 0.0; + } } else { NetLWRadToSurf = 0.0; for (auto &e : SurfaceWindow) e.IRfromParentZone = 0.0; } - for (int ZoneNum = (PartialResimulate ? ZoneToResimulate() : 1), ZoneNum_end = (PartialResimulate ? ZoneToResimulate() : NumOfZones); - ZoneNum <= ZoneNum_end; - ++ZoneNum) { + for (int enclosureNum = startEnclosure; enclosureNum <= endEnclosure; ++enclosureNum) { - auto const &zone(Zone(ZoneNum)); - auto &zone_info(ZoneInfo(ZoneNum)); + auto &zone_info(ZoneRadiantInfo(enclosureNum)); auto &zone_ScriptF(zone_info.ScriptF); // Tuned Transposed auto &zone_SurfacePtr(zone_info.SurfacePtr); int const n_zone_Surfaces(zone_info.NumOfSurfaces); @@ -294,7 +294,8 @@ namespace HeatBalanceIntRadExchange { IntMovInsulChanged = false; if (!BeginEnvrnFlag) { // Check for change in shade/blind status - for (SurfNum = zone.SurfaceFirst; SurfNum <= zone.SurfaceLast; ++SurfNum) { + for (int surfCounter = 1; surfCounter <= zone_info.NumOfSurfaces; ++surfCounter) { + SurfNum = zone_info.SurfacePtr(surfCounter); if (IntShadeOrBlindStatusChanged || IntMovInsulChanged) break; // Need only check if one window's status or one movable insulation status has changed ConstrNum = Surface(SurfNum).Construction; @@ -514,12 +515,8 @@ namespace HeatBalanceIntRadExchange { static ObjexxFCL::gio::Fmt AFormat("(A)"); // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int NumOfZoneSurfaces; // total number of surfaces in the zone. - int ZoneNum; // DO loop counter for zones - int ZoneSurfNum; // DO loop counter for surfaces within a zone (refers to local derived type arrays) int Findex; // index to print view factors int Vindex; // index for vertices - int NumZonesWithUserFbyS; // Zones with user input, used for flag here bool NoUserInputF; // Logical flag signifying no input F's for zone static bool ViewFactorReport; // Flag to output view factor report in eio file static bool ErrorsFound(false); @@ -534,95 +531,94 @@ namespace HeatBalanceIntRadExchange { // FLOW: - ZoneInfo.allocate(NumOfZones); // Allocate the entire derived type - ScanForReports("ViewFactorInfo", ViewFactorReport, _, Option1); if (ViewFactorReport) { // Print heading ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! "; - ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Zone Name,Number of Surfaces"; + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Zone/Enclosure Name,Number of Surfaces"; ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Surface Name,Surface Class,Area {m2},Azimuth,Tilt,Thermal Emissivity,#Sides,Vertices"; ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Surface Name(s)"; ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Surface Name,Surface Class,Row Sum,View Factors for each Surface"; } - cCurrentModuleObject = "ZoneProperty:UserViewFactors:bySurfaceName"; - NumZonesWithUserFbyS = inputProcessor->getNumObjectsFound(cCurrentModuleObject); - - MaxNumOfZoneSurfaces = 0; - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { - - if (ZoneNum == 1) { + MaxNumOfRadEnclosureSurfs = 0; + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfRadiantEnclosures; ++enclosureNum) { + auto & thisEnclosure(DataViewFactorInformation::ZoneRadiantInfo(enclosureNum)); + if (enclosureNum == 1) { if (DisplayAdvancedReportVariables) - ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Zone Name,Original Check Value,Calculated Fixed Check " + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Zone/Enclosure Name,Original Check Value,Calculated Fixed Check " "Value,Final Check Value,Number of Iterations,Fixed RowSum Convergence,Used RowSum " "Convergence"; } - - ZoneInfo(ZoneNum).Name = Zone(ZoneNum).Name; - - NumOfZoneSurfaces = 0; - for (int SurfNum = Zone(ZoneNum).SurfaceFirst, SurfNum_end = Zone(ZoneNum).SurfaceLast; SurfNum <= SurfNum_end; ++SurfNum) { - if (Surface(SurfNum).HeatTransSurf) ++NumOfZoneSurfaces; + int numEnclosureSurfaces = 0; + for (int zoneNum : thisEnclosure.ZoneNums) { + for (int surfNum = Zone(zoneNum).SurfaceFirst, surfNum_end = Zone(zoneNum).SurfaceLast; surfNum <= surfNum_end; ++surfNum) { + if (Surface(surfNum).HeatTransSurf) ++numEnclosureSurfaces; + } } - ZoneInfo(ZoneNum).NumOfSurfaces = NumOfZoneSurfaces; - MaxNumOfZoneSurfaces = max(MaxNumOfZoneSurfaces, NumOfZoneSurfaces); - if (NumOfZoneSurfaces < 1) ShowFatalError("No surfaces in a zone in InitInteriorRadExchange"); + thisEnclosure.NumOfSurfaces = numEnclosureSurfaces; + MaxNumOfRadEnclosureSurfs = max(MaxNumOfRadEnclosureSurfs, numEnclosureSurfaces); + if (numEnclosureSurfaces < 1) ShowFatalError("No surfaces in an enclosure in InitInteriorRadExchange"); // Allocate the parts of the derived type - ZoneInfo(ZoneNum).F.dimension(NumOfZoneSurfaces, NumOfZoneSurfaces, 0.0); - ZoneInfo(ZoneNum).ScriptF.dimension(NumOfZoneSurfaces, NumOfZoneSurfaces, 0.0); - ZoneInfo(ZoneNum).Area.dimension(NumOfZoneSurfaces, 0.0); - ZoneInfo(ZoneNum).Emissivity.dimension(NumOfZoneSurfaces, 0.0); - ZoneInfo(ZoneNum).Azimuth.dimension(NumOfZoneSurfaces, 0.0); - ZoneInfo(ZoneNum).Tilt.dimension(NumOfZoneSurfaces, 0.0); - ZoneInfo(ZoneNum).SurfacePtr.dimension(NumOfZoneSurfaces, 0); + thisEnclosure.F.dimension(numEnclosureSurfaces, numEnclosureSurfaces, 0.0); + thisEnclosure.ScriptF.dimension(numEnclosureSurfaces, numEnclosureSurfaces, 0.0); + thisEnclosure.Area.dimension(numEnclosureSurfaces, 0.0); + thisEnclosure.Emissivity.dimension(numEnclosureSurfaces, 0.0); + thisEnclosure.Azimuth.dimension(numEnclosureSurfaces, 0.0); + thisEnclosure.Tilt.dimension(numEnclosureSurfaces, 0.0); + thisEnclosure.SurfacePtr.dimension(numEnclosureSurfaces, 0); // Initialize the surface pointer array - ZoneSurfNum = 0; - for (int SurfNum = Zone(ZoneNum).SurfaceFirst, SurfNum_end = Zone(ZoneNum).SurfaceLast; SurfNum <= SurfNum_end; ++SurfNum) { - if (!Surface(SurfNum).HeatTransSurf) continue; - ++ZoneSurfNum; - ZoneInfo(ZoneNum).SurfacePtr(ZoneSurfNum) = SurfNum; + int enclosureSurfNum = 0; + for (int zoneNum : thisEnclosure.ZoneNums) { + for (int surfNum = Zone(zoneNum).SurfaceFirst, surfNum_end = Zone(zoneNum).SurfaceLast; surfNum <= surfNum_end; ++surfNum) { + if (!Surface(surfNum).HeatTransSurf) continue; + ++enclosureSurfNum; + thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; + } } // Initialize the area and emissivity arrays - for (ZoneSurfNum = 1; ZoneSurfNum <= NumOfZoneSurfaces; ++ZoneSurfNum) { - int const SurfNum = ZoneInfo(ZoneNum).SurfacePtr(ZoneSurfNum); + for (int enclSurfNum = 1; enclSurfNum <= thisEnclosure.NumOfSurfaces; ++enclSurfNum) { + int const SurfNum = thisEnclosure.SurfacePtr(enclSurfNum); //************************************************ - if (!Construct(Surface(SurfNum).Construction).TypeIsIRT) { - ZoneInfo(ZoneNum).Area(ZoneSurfNum) = Surface(SurfNum).Area; + if ((!Construct(Surface(SurfNum).Construction).TypeIsIRT) && + (!Construct(Surface(SurfNum).Construction).TypeIsAirBoundaryIRTSurface)) { + thisEnclosure.Area(enclSurfNum) = Surface(SurfNum).Area; } else { // Double area for infrared transparent (IRT) surfaces - ZoneInfo(ZoneNum).Area(ZoneSurfNum) = 2.0 * Surface(SurfNum).Area; + thisEnclosure.Area(enclSurfNum) = 2.0 * Surface(SurfNum).Area; } //*********************************************** - ZoneInfo(ZoneNum).Emissivity(ZoneSurfNum) = Construct(Surface(SurfNum).Construction).InsideAbsorpThermal; - ZoneInfo(ZoneNum).Azimuth(ZoneSurfNum) = Surface(SurfNum).Azimuth; - ZoneInfo(ZoneNum).Tilt(ZoneSurfNum) = Surface(SurfNum).Tilt; + thisEnclosure.Emissivity(enclSurfNum) = Construct(Surface(SurfNum).Construction).InsideAbsorpThermal; + thisEnclosure.Azimuth(enclSurfNum) = Surface(SurfNum).Azimuth; + thisEnclosure.Tilt(enclSurfNum) = Surface(SurfNum).Tilt; } - if (NumOfZoneSurfaces == 1) { + if (thisEnclosure.NumOfSurfaces == 1) { // If there is only one surface in a zone, then there is no radiant exchange - ZoneInfo(ZoneNum).F = 0.0; - ZoneInfo(ZoneNum).ScriptF = 0.0; + thisEnclosure.F = 0.0; + thisEnclosure.ScriptF = 0.0; if (DisplayAdvancedReportVariables) - ObjexxFCL::gio::write(OutputFileInits, fmtA) << "Surface View Factor Check Values," + Zone(ZoneNum).Name + ",0,0,0,-1,0,0"; - continue; // Go to the next zone in the ZoneNum DO loop + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "Surface View Factor Check Values," + thisEnclosure.Name + ",0,0,0,-1,0,0"; + continue; // Go to the next enclosure in the loop } // Get user supplied view factors if available in idf. NoUserInputF = true; + std::string cCurrentModuleObject = "ZoneProperty:UserViewFactors:bySurfaceName"; + int NumZonesWithUserFbyS = inputProcessor->getNumObjectsFound(cCurrentModuleObject); if (NumZonesWithUserFbyS > 0) { - GetInputViewFactorsbyName(ZoneInfo(ZoneNum).Name, - NumOfZoneSurfaces, - ZoneInfo(ZoneNum).F, - ZoneInfo(ZoneNum).SurfacePtr, + GetInputViewFactorsbyName(thisEnclosure.Name, + thisEnclosure.NumOfSurfaces, + thisEnclosure.F, + thisEnclosure.SurfacePtr, NoUserInputF, ErrorsFound); // Obtains user input view factors from input file } @@ -630,23 +626,24 @@ namespace HeatBalanceIntRadExchange { if (NoUserInputF) { // Calculate the view factors and make sure they satisfy reciprocity - CalcApproximateViewFactors(NumOfZoneSurfaces, - ZoneInfo(ZoneNum).Area, - ZoneInfo(ZoneNum).Azimuth, - ZoneInfo(ZoneNum).Tilt, - ZoneInfo(ZoneNum).F, - ZoneInfo(ZoneNum).SurfacePtr); + CalcApproximateViewFactors(thisEnclosure.NumOfSurfaces, + thisEnclosure.Area, + thisEnclosure.Azimuth, + thisEnclosure.Tilt, + thisEnclosure.F, + thisEnclosure.SurfacePtr); } if (ViewFactorReport) { // Allocate and save user or approximate view factors for reporting. - SaveApproximateViewFactors.allocate(NumOfZoneSurfaces, NumOfZoneSurfaces); - SaveApproximateViewFactors = ZoneInfo(ZoneNum).F; + SaveApproximateViewFactors.allocate(thisEnclosure.NumOfSurfaces, thisEnclosure.NumOfSurfaces); + SaveApproximateViewFactors = thisEnclosure.F; } - FixViewFactors(NumOfZoneSurfaces, - ZoneInfo(ZoneNum).Area, - ZoneInfo(ZoneNum).F, - ZoneNum, + FixViewFactors(thisEnclosure.NumOfSurfaces, + thisEnclosure.Area, + thisEnclosure.F, + thisEnclosure.Name, + thisEnclosure.ZoneNums, CheckValue1, CheckValue2, FinalCheckValue, @@ -654,22 +651,22 @@ namespace HeatBalanceIntRadExchange { FixedRowSum); // Calculate the script F factors - CalcScriptF(NumOfZoneSurfaces, ZoneInfo(ZoneNum).Area, ZoneInfo(ZoneNum).F, ZoneInfo(ZoneNum).Emissivity, ZoneInfo(ZoneNum).ScriptF); + CalcScriptF(thisEnclosure.NumOfSurfaces, thisEnclosure.Area, thisEnclosure.F, thisEnclosure.Emissivity, thisEnclosure.ScriptF); if (ViewFactorReport) { // Write to SurfInfo File // Zone Surface Information Output - ObjexxFCL::gio::write(OutputFileInits, fmtA) << "Surface View Factor - Zone Information," + ZoneInfo(ZoneNum).Name + ',' + - RoundSigDigits(NumOfZoneSurfaces); + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "Surface View Factor - Zone/Enclosure Information," + thisEnclosure.Name + ',' + + RoundSigDigits(thisEnclosure.NumOfSurfaces); - for (int SurfNum = 1; SurfNum <= NumOfZoneSurfaces; ++SurfNum) { + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { ObjexxFCL::gio::write(OutputFileInits, "(A,',',A,$)") - << "Surface View Factor - Surface Information," + Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Name + ',' + - cSurfaceClass(Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Class) - << RoundSigDigits(ZoneInfo(ZoneNum).Area(SurfNum), 4) + ',' + RoundSigDigits(ZoneInfo(ZoneNum).Azimuth(SurfNum), 4) + ',' + - RoundSigDigits(ZoneInfo(ZoneNum).Tilt(SurfNum), 4) + ',' + RoundSigDigits(ZoneInfo(ZoneNum).Emissivity(SurfNum), 4) + - ',' + RoundSigDigits(Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Sides); - for (Vindex = 1; Vindex <= Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Sides; ++Vindex) { - auto &Vertex = Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Vertex(Vindex); + << "Surface View Factor - Surface Information," + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + cSurfaceClass(Surface(thisEnclosure.SurfacePtr(SurfNum)).Class) + << RoundSigDigits(thisEnclosure.Area(SurfNum), 4) + ',' + RoundSigDigits(thisEnclosure.Azimuth(SurfNum), 4) + ',' + + RoundSigDigits(thisEnclosure.Tilt(SurfNum), 4) + ',' + RoundSigDigits(thisEnclosure.Emissivity(SurfNum), 4) + + ',' + RoundSigDigits(Surface(thisEnclosure.SurfacePtr(SurfNum)).Sides); + for (Vindex = 1; Vindex <= Surface(thisEnclosure.SurfacePtr(SurfNum)).Sides; ++Vindex) { + auto &Vertex = Surface(thisEnclosure.SurfacePtr(SurfNum)).Vertex(Vindex); ObjexxFCL::gio::write(OutputFileInits, "(3(',',A),$)") << RoundSigDigits(Vertex.x, 4) << RoundSigDigits(Vertex.y, 4) << RoundSigDigits(Vertex.z, 4); } @@ -678,17 +675,17 @@ namespace HeatBalanceIntRadExchange { ObjexxFCL::gio::write(OutputFileInits, "(A,A,$)") << "Approximate or User Input ViewFactors" << ",To Surface,Surface Class,RowSum"; - for (int SurfNum = 1; SurfNum <= NumOfZoneSurfaces; ++SurfNum) { - ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Name; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << Surface(thisEnclosure.SurfacePtr(SurfNum)).Name; } ObjexxFCL::gio::write(OutputFileInits); - for (Findex = 1; Findex <= NumOfZoneSurfaces; ++Findex) { + for (Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { RowSum = sum(SaveApproximateViewFactors(_, Findex)); ObjexxFCL::gio::write(OutputFileInits, "(A,3(',',A),$)") - << "View Factor" << Surface(ZoneInfo(ZoneNum).SurfacePtr(Findex)).Name - << cSurfaceClass(Surface(ZoneInfo(ZoneNum).SurfacePtr(Findex)).Class) << RoundSigDigits(RowSum, 4); - for (int SurfNum = 1; SurfNum <= NumOfZoneSurfaces; ++SurfNum) { + << "View Factor" << Surface(thisEnclosure.SurfacePtr(Findex)).Name + << cSurfaceClass(Surface(thisEnclosure.SurfacePtr(Findex)).Class) << RoundSigDigits(RowSum, 4); + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << RoundSigDigits(SaveApproximateViewFactors(SurfNum, Findex), 4); } ObjexxFCL::gio::write(OutputFileInits); @@ -698,52 +695,52 @@ namespace HeatBalanceIntRadExchange { if (ViewFactorReport) { ObjexxFCL::gio::write(OutputFileInits, "(A,A,$)") << "Final ViewFactors" << ",To Surface,Surface Class,RowSum"; - for (int SurfNum = 1; SurfNum <= NumOfZoneSurfaces; ++SurfNum) { - ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Name; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << Surface(thisEnclosure.SurfacePtr(SurfNum)).Name; } ObjexxFCL::gio::write(OutputFileInits); - for (Findex = 1; Findex <= NumOfZoneSurfaces; ++Findex) { - RowSum = sum(ZoneInfo(ZoneNum).F(_, Findex)); + for (Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + RowSum = sum(thisEnclosure.F(_, Findex)); ObjexxFCL::gio::write(OutputFileInits, "(A,3(',',A),$)") - << "View Factor" << Surface(ZoneInfo(ZoneNum).SurfacePtr(Findex)).Name - << cSurfaceClass(Surface(ZoneInfo(ZoneNum).SurfacePtr(Findex)).Class) << RoundSigDigits(RowSum, 4); - for (int SurfNum = 1; SurfNum <= NumOfZoneSurfaces; ++SurfNum) { - ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << RoundSigDigits(ZoneInfo(ZoneNum).F(SurfNum, Findex), 4); + << "View Factor" << Surface(thisEnclosure.SurfacePtr(Findex)).Name + << cSurfaceClass(Surface(thisEnclosure.SurfacePtr(Findex)).Class) << RoundSigDigits(RowSum, 4); + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << RoundSigDigits(thisEnclosure.F(SurfNum, Findex), 4); } ObjexxFCL::gio::write(OutputFileInits); } if (Option1 == "IDF") { ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "!======== original input factors ==========================="; - ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "ZoneProperty:UserViewFactors:bySurfaceName," + ZoneInfo(ZoneNum).Name + ','; - for (int SurfNum = 1; SurfNum <= NumOfZoneSurfaces; ++SurfNum) { - for (Findex = 1; Findex <= NumOfZoneSurfaces; ++Findex) { - if (!(SurfNum == NumOfZoneSurfaces && Findex == NumOfZoneSurfaces)) { - ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Name + ',' + - Surface(ZoneInfo(ZoneNum).SurfacePtr(Findex)).Name + ',' + - RoundSigDigits(ZoneInfo(ZoneNum).F(Findex, SurfNum), 6) + ','; + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "ZoneProperty:UserViewFactors:bySurfaceName," + thisEnclosure.Name + ','; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + for (Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + if (!(SurfNum == thisEnclosure.NumOfSurfaces && Findex == thisEnclosure.NumOfSurfaces)) { + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + Surface(thisEnclosure.SurfacePtr(Findex)).Name + ',' + + RoundSigDigits(thisEnclosure.F(Findex, SurfNum), 6) + ','; } else { - ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Name + ',' + - Surface(ZoneInfo(ZoneNum).SurfacePtr(Findex)).Name + ',' + - RoundSigDigits(ZoneInfo(ZoneNum).F(Findex, SurfNum), 6) + ';'; + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + Surface(thisEnclosure.SurfacePtr(Findex)).Name + ',' + + RoundSigDigits(thisEnclosure.F(Findex, SurfNum), 6) + ';'; } } } ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "!============= end of data ======================"; ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "!============ final view factors ======================="; - ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "ZoneProperty:UserViewFactors:bySurfaceName," + ZoneInfo(ZoneNum).Name + ','; - for (int SurfNum = 1; SurfNum <= NumOfZoneSurfaces; ++SurfNum) { - for (Findex = 1; Findex <= NumOfZoneSurfaces; ++Findex) { - if (!(SurfNum == NumOfZoneSurfaces && Findex == NumOfZoneSurfaces)) { - ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Name + ',' + - Surface(ZoneInfo(ZoneNum).SurfacePtr(Findex)).Name + ',' + - RoundSigDigits(ZoneInfo(ZoneNum).F(Findex, SurfNum), 6) + ','; + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "ZoneProperty:UserViewFactors:bySurfaceName," + thisEnclosure.Name + ','; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + for (Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + if (!(SurfNum == thisEnclosure.NumOfSurfaces && Findex == thisEnclosure.NumOfSurfaces)) { + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + Surface(thisEnclosure.SurfacePtr(Findex)).Name + ',' + + RoundSigDigits(thisEnclosure.F(Findex, SurfNum), 6) + ','; } else { - ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Name + ',' + - Surface(ZoneInfo(ZoneNum).SurfacePtr(Findex)).Name + ',' + - RoundSigDigits(ZoneInfo(ZoneNum).F(Findex, SurfNum), 6) + ';'; + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + Surface(thisEnclosure.SurfacePtr(Findex)).Name + ',' + + RoundSigDigits(thisEnclosure.F(Findex, SurfNum), 6) + ';'; } } } @@ -754,14 +751,14 @@ namespace HeatBalanceIntRadExchange { if (ViewFactorReport) { ObjexxFCL::gio::write(OutputFileInits, "(A,A,$)") << "Script F Factors" << ",X Surface"; - for (int SurfNum = 1; SurfNum <= NumOfZoneSurfaces; ++SurfNum) { - ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << Surface(ZoneInfo(ZoneNum).SurfacePtr(SurfNum)).Name; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << Surface(thisEnclosure.SurfacePtr(SurfNum)).Name; } ObjexxFCL::gio::write(OutputFileInits); - for (Findex = 1; Findex <= NumOfZoneSurfaces; ++Findex) { - ObjexxFCL::gio::write(OutputFileInits, "(A,',',A,$)") << "Script F Factor" << Surface(ZoneInfo(ZoneNum).SurfacePtr(Findex)).Name; - for (int SurfNum = 1; SurfNum <= NumOfZoneSurfaces; ++SurfNum) { - ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << RoundSigDigits(ZoneInfo(ZoneNum).ScriptF(Findex, SurfNum), 4); + for (Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + ObjexxFCL::gio::write(OutputFileInits, "(A,',',A,$)") << "Script F Factor" << Surface(thisEnclosure.SurfacePtr(Findex)).Name; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << RoundSigDigits(thisEnclosure.ScriptF(Findex, SurfNum), 4); } ObjexxFCL::gio::write(OutputFileInits); } @@ -772,13 +769,13 @@ namespace HeatBalanceIntRadExchange { } RowSum = 0.0; - for (Findex = 1; Findex <= NumOfZoneSurfaces; ++Findex) { - RowSum += sum(ZoneInfo(ZoneNum).F(_, Findex)); + for (Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + RowSum += sum(thisEnclosure.F(_, Findex)); } - RowSum = std::abs(RowSum - NumOfZoneSurfaces); - FixedRowSum = std::abs(FixedRowSum - NumOfZoneSurfaces); + RowSum = std::abs(RowSum - thisEnclosure.NumOfSurfaces); + FixedRowSum = std::abs(FixedRowSum - thisEnclosure.NumOfSurfaces); if (DisplayAdvancedReportVariables) { - ObjexxFCL::gio::write(OutputFileInits, "(8A)") << "Surface View Factor Check Values," + Zone(ZoneNum).Name + ',' + + ObjexxFCL::gio::write(OutputFileInits, "(8A)") << "Surface View Factor Check Values," + thisEnclosure.Name + ',' + RoundSigDigits(CheckValue1, 6) + ',' + RoundSigDigits(CheckValue2, 6) + ',' + RoundSigDigits(FinalCheckValue, 6) + ',' + RoundSigDigits(NumIterations) + ',' + RoundSigDigits(FixedRowSum, 6) + ',' + RoundSigDigits(RowSum, 6); @@ -790,6 +787,252 @@ namespace HeatBalanceIntRadExchange { } } + void InitSolarViewFactors() + { + + // Initializes view factors for diffuse solar distribution between surfaces in an enclosure. + + static ObjexxFCL::gio::Fmt AFormat("(A)"); + + Array2D SaveApproximateViewFactors; // Save for View Factor reporting + std::string Option1; // view factor report option + + bool ErrorsFound = false; + bool ViewFactorReport = false; + General::ScanForReports("ViewFactorInfo", ViewFactorReport, _, Option1); + + if (ViewFactorReport) { // Print heading + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! "; + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Zone/Enclosure Name,Number of Surfaces"; + ObjexxFCL::gio::write(OutputFileInits, fmtA) + << "! ,Surface Name,Surface Class,Area {m2},Azimuth,Tilt,Solar Absorbtance,#Sides,Vertices"; + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Surface Name(s)"; + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Surface Name,Surface Class,Row Sum,View Factors for each Surface"; + } + + std::string cCurrentModuleObject = "ZoneProperty:UserViewFactors:bySurfaceName"; + int NumZonesWithUserFbyS = inputProcessor->getNumObjectsFound(cCurrentModuleObject); + if (NumZonesWithUserFbyS > 0) AlignInputViewFactors(cCurrentModuleObject, ErrorsFound); + + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { + auto & thisEnclosure(DataViewFactorInformation::ZoneSolarInfo(enclosureNum)); + if (enclosureNum == 1) { + if (DisplayAdvancedReportVariables) + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "! ,Zone/Enclosure Name,Original Check Value,Calculated Fixed Check " + "Value,Final Check Value,Number of Iterations,Fixed RowSum Convergence,Used RowSum " + "Convergence"; + } + int numEnclosureSurfaces = 0; + for (int zoneNum : thisEnclosure.ZoneNums) { + for (int surfNum = Zone(zoneNum).SurfaceFirst, surfNum_end = Zone(zoneNum).SurfaceLast; surfNum <= surfNum_end; ++surfNum) { + if (Surface(surfNum).HeatTransSurf) ++numEnclosureSurfaces; + } + } + thisEnclosure.NumOfSurfaces = numEnclosureSurfaces; + if (numEnclosureSurfaces < 1) ShowFatalError("No surfaces in an enclosure in InitSolarViewFactors"); + + // Allocate the parts of the derived type + thisEnclosure.F.dimension(numEnclosureSurfaces, numEnclosureSurfaces, 0.0); + thisEnclosure.Area.dimension(numEnclosureSurfaces, 0.0); + thisEnclosure.SolAbsorptance.dimension(numEnclosureSurfaces, 0.0); + thisEnclosure.Azimuth.dimension(numEnclosureSurfaces, 0.0); + thisEnclosure.Tilt.dimension(numEnclosureSurfaces, 0.0); + thisEnclosure.SurfacePtr.dimension(numEnclosureSurfaces, 0); + + // Initialize the surface pointer array + int enclosureSurfNum = 0; + for (int zoneNum : thisEnclosure.ZoneNums) { + for (int surfNum = Zone(zoneNum).SurfaceFirst, surfNum_end = Zone(zoneNum).SurfaceLast; surfNum <= surfNum_end; ++surfNum) { + // Do not include non-heat transfer surfaces, unless it is an air boundary interior window + if (!Surface(surfNum).HeatTransSurf && !Construct(Surface(surfNum).Construction).TypeIsAirBoundaryInteriorWindow) continue; + ++enclosureSurfNum; + thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; + // Store pointers back to here + Surface(surfNum).SolarEnclSurfIndex = enclosureSurfNum; + Surface(surfNum).SolarEnclIndex = enclosureNum; + } + } + // Initialize the area and related arrays + for (int enclSurfNum = 1; enclSurfNum <= thisEnclosure.NumOfSurfaces; ++enclSurfNum) { + int const SurfNum = thisEnclosure.SurfacePtr(enclSurfNum); + thisEnclosure.Area(enclSurfNum) = Surface(SurfNum).Area; + thisEnclosure.SolAbsorptance(enclSurfNum) = Construct(Surface(SurfNum).Construction).InsideAbsorpSolar; + thisEnclosure.Azimuth(enclSurfNum) = Surface(SurfNum).Azimuth; + thisEnclosure.Tilt(enclSurfNum) = Surface(SurfNum).Tilt; + } + + if (thisEnclosure.NumOfSurfaces == 1) { + // If there is only one surface in a zone, then there is no solar distribution + if (DisplayAdvancedReportVariables) + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "Solar View Factor Check Values," + thisEnclosure.Name + ",0,0,0,-1,0,0"; + continue; // Go to the next enclosure in the loop + } + + // Get user supplied view factors if available in idf. + + bool NoUserInputF = true; + + if (NumZonesWithUserFbyS > 0) { + + GetInputViewFactorsbyName(thisEnclosure.Name, + thisEnclosure.NumOfSurfaces, + thisEnclosure.F, + thisEnclosure.SurfacePtr, + NoUserInputF, + ErrorsFound); // Obtains user input view factors from input file + } + + if (NoUserInputF) { + + // Calculate the view factors and make sure they satisfy reciprocity + CalcApproximateViewFactors(thisEnclosure.NumOfSurfaces, + thisEnclosure.Area, + thisEnclosure.Azimuth, + thisEnclosure.Tilt, + thisEnclosure.F, + thisEnclosure.SurfacePtr); + } + + if (ViewFactorReport) { // Allocate and save user or approximate view factors for reporting. + SaveApproximateViewFactors.allocate(thisEnclosure.NumOfSurfaces, thisEnclosure.NumOfSurfaces); + SaveApproximateViewFactors = thisEnclosure.F; + } + + Real64 CheckValue1 = 0.0; + Real64 CheckValue2 = 0.0; + Real64 FinalCheckValue = 0.0; + Real64 FixedRowSum = 0.0; + int NumIterations = 0; + + FixViewFactors(thisEnclosure.NumOfSurfaces, + thisEnclosure.Area, + thisEnclosure.F, + thisEnclosure.Name, + thisEnclosure.ZoneNums, + CheckValue1, + CheckValue2, + FinalCheckValue, + NumIterations, + FixedRowSum); + + if (ViewFactorReport) { // Write to SurfInfo File + // Zone Surface Information Output + ObjexxFCL::gio::write(OutputFileInits, fmtA) << "Solar View Factor - Zone/Enclosure Information," + thisEnclosure.Name + ',' + + General::RoundSigDigits(thisEnclosure.NumOfSurfaces); + + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(A,',',A,$)") + << "Solar View Factor - Surface Information," + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + cSurfaceClass(Surface(thisEnclosure.SurfacePtr(SurfNum)).Class) + << General::RoundSigDigits(thisEnclosure.Area(SurfNum), 4) + ',' + General::RoundSigDigits(thisEnclosure.Azimuth(SurfNum), 4) + ',' + + General::RoundSigDigits(thisEnclosure.Tilt(SurfNum), 4) + ',' + General::RoundSigDigits(thisEnclosure.SolAbsorptance(SurfNum), 4) + + ',' + General::RoundSigDigits(Surface(thisEnclosure.SurfacePtr(SurfNum)).Sides); + for (int Vindex = 1; Vindex <= Surface(thisEnclosure.SurfacePtr(SurfNum)).Sides; ++Vindex) { + auto &Vertex = Surface(thisEnclosure.SurfacePtr(SurfNum)).Vertex(Vindex); + ObjexxFCL::gio::write(OutputFileInits, "(3(',',A),$)") + << General::RoundSigDigits(Vertex.x, 4) << General::RoundSigDigits(Vertex.y, 4) << General::RoundSigDigits(Vertex.z, 4); + } + ObjexxFCL::gio::write(OutputFileInits); + } + + ObjexxFCL::gio::write(OutputFileInits, "(A,A,$)") << "Approximate or User Input Solar ViewFactors" + << ",To Surface,Surface Class,RowSum"; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << Surface(thisEnclosure.SurfacePtr(SurfNum)).Name; + } + ObjexxFCL::gio::write(OutputFileInits); + + for (int Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + Real64 RowSum = sum(SaveApproximateViewFactors(_, Findex)); + ObjexxFCL::gio::write(OutputFileInits, "(A,3(',',A),$)") + << "Solar View Factor" << Surface(thisEnclosure.SurfacePtr(Findex)).Name + << cSurfaceClass(Surface(thisEnclosure.SurfacePtr(Findex)).Class) << General::RoundSigDigits(RowSum, 4); + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << General::RoundSigDigits(SaveApproximateViewFactors(SurfNum, Findex), 4); + } + ObjexxFCL::gio::write(OutputFileInits); + } + } + + if (ViewFactorReport) { + ObjexxFCL::gio::write(OutputFileInits, "(A,A,$)") << "Final Solar ViewFactors" + << ",To Surface,Surface Class,RowSum"; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << Surface(thisEnclosure.SurfacePtr(SurfNum)).Name; + } + ObjexxFCL::gio::write(OutputFileInits); + + for (int Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + Real64 RowSum = sum(thisEnclosure.F(_, Findex)); + ObjexxFCL::gio::write(OutputFileInits, "(A,3(',',A),$)") + << "Solar View Factor" << Surface(thisEnclosure.SurfacePtr(Findex)).Name + << cSurfaceClass(Surface(thisEnclosure.SurfacePtr(Findex)).Class) << General::RoundSigDigits(RowSum, 4); + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + ObjexxFCL::gio::write(OutputFileInits, "(',',A,$)") << General::RoundSigDigits(thisEnclosure.F(SurfNum, Findex), 4); + } + ObjexxFCL::gio::write(OutputFileInits); + } + + if (Option1 == "IDF") { + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "!======== original input factors ==========================="; + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "ZoneProperty:UserViewFactors:bySurfaceName," + thisEnclosure.Name + ','; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + for (int Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + if (!(SurfNum == thisEnclosure.NumOfSurfaces && Findex == thisEnclosure.NumOfSurfaces)) { + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + Surface(thisEnclosure.SurfacePtr(Findex)).Name + ',' + + General::RoundSigDigits(thisEnclosure.F(Findex, SurfNum), 6) + ','; + } else { + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + Surface(thisEnclosure.SurfacePtr(Findex)).Name + ',' + + General::RoundSigDigits(thisEnclosure.F(Findex, SurfNum), 6) + ';'; + } + } + } + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "!============= end of data ======================"; + + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "!============ final view factors ======================="; + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "ZoneProperty:UserViewFactors:bySurfaceName," + thisEnclosure.Name + ','; + for (int SurfNum = 1; SurfNum <= thisEnclosure.NumOfSurfaces; ++SurfNum) { + for (int Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + if (!(SurfNum == thisEnclosure.NumOfSurfaces && Findex == thisEnclosure.NumOfSurfaces)) { + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + Surface(thisEnclosure.SurfacePtr(Findex)).Name + ',' + + General::RoundSigDigits(thisEnclosure.F(Findex, SurfNum), 6) + ','; + } else { + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << " " + Surface(thisEnclosure.SurfacePtr(SurfNum)).Name + ',' + + Surface(thisEnclosure.SurfacePtr(Findex)).Name + ',' + + General::RoundSigDigits(thisEnclosure.F(Findex, SurfNum), 6) + ';'; + } + } + } + ObjexxFCL::gio::write(OutputFileDebug, fmtA) << "!============= end of data ======================"; + } + } + + if (ViewFactorReport) { // Deallocate saved approximate/user view factors + SaveApproximateViewFactors.deallocate(); + } + + Real64 RowSum = 0.0; + for (int Findex = 1; Findex <= thisEnclosure.NumOfSurfaces; ++Findex) { + RowSum += sum(thisEnclosure.F(_, Findex)); + } + RowSum = std::abs(RowSum - thisEnclosure.NumOfSurfaces); + FixedRowSum = std::abs(FixedRowSum - thisEnclosure.NumOfSurfaces); + if (DisplayAdvancedReportVariables) { + ObjexxFCL::gio::write(OutputFileInits, "(8A)") << "Solar View Factor Check Values," + thisEnclosure.Name + ',' + + General::RoundSigDigits(CheckValue1, 6) + ',' + General::RoundSigDigits(CheckValue2, 6) + ',' + + General::RoundSigDigits(FinalCheckValue, 6) + ',' + General::RoundSigDigits(NumIterations) + ',' + + General::RoundSigDigits(FixedRowSum, 6) + ',' + General::RoundSigDigits(RowSum, 6); + } + } + + if (ErrorsFound) { + ShowFatalError("InitSolarViewFactors: Errors found during initialization of diffuse solar distribution. Program terminated."); + } + } + void GetInputViewFactors(std::string const &ZoneName, // Needed to check for user input view factors. int const N, // NUMBER OF SURFACES Array2A F, // USER INPUT DIRECT VIEW FACTOR MATRIX (N X N) @@ -861,12 +1104,128 @@ namespace HeatBalanceIntRadExchange { } } - void GetInputViewFactorsbyName(std::string const &ZoneName, // Needed to check for user input view factors. - int const N, // NUMBER OF SURFACES - Array2A F, // USER INPUT DIRECT VIEW FACTOR MATRIX (N X N) - Array1A_int const SPtr, // pointer to actual surface number - bool &NoUserInputF, // Flag signifying no input F's for this - bool &ErrorsFound // True when errors are found in number of fields vs max args + void AlignInputViewFactors(std::string const &cCurrentModuleObject, // Object type + bool &ErrorsFound // True when errors are found + ) + { + auto const instances = inputProcessor->epJSON.find(cCurrentModuleObject); + auto &instancesValue = instances.value(); + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + auto const &fields = instance.value(); + std::string const thisZoneOrZoneListName = fields.at("zone_or_zonelist_name"); + // do not mark object as used here - let GetInputViewFactorsbyName do that + + // Look for matching solar enclosure name + bool enclMatchFound = false; + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfRadiantEnclosures; ++enclosureNum) { + auto &thisEnclosure(DataViewFactorInformation::ZoneRadiantInfo(enclosureNum)); + if (UtilityRoutines::SameString(thisZoneOrZoneListName, thisEnclosure.Name)) { + // View factor zone name matches enclosure name + enclMatchFound = true; + break; + } + } + if (enclMatchFound) continue; // We're done with this instance + // Look for matching solar enclosure name + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { + auto &thisEnclosure(DataViewFactorInformation::ZoneSolarInfo(enclosureNum)); + if (UtilityRoutines::SameString(thisZoneOrZoneListName, thisEnclosure.Name)) { + // View factor zone name matches enclosure name + enclMatchFound = true; + break; + } + } + if (enclMatchFound) continue; // We're done with this instance + // Find matching ZoneList name + int zoneListNum = UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase(thisZoneOrZoneListName), DataHeatBalance::ZoneList, DataHeatBalance::NumOfZoneLists); + if (zoneListNum > 0) { + // Look for radiant enclosure with same list of zones + auto &thisZoneList(DataHeatBalance::ZoneList(zoneListNum)); + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfRadiantEnclosures; ++enclosureNum) { + auto &thisEnclosure(DataViewFactorInformation::ZoneRadiantInfo(enclosureNum)); + bool anyZoneNotFound = false; + // If the number of enclosure zones is not the same as the number of zonelist zone, go to the next enclosure + int zlistNumZones = thisEnclosure.ZoneNums.size(); + if (thisZoneList.NumOfZones != zlistNumZones) continue; + for (int zListZoneNum : thisZoneList.Zone) { + // Search for matching zones + bool thisZoneFound = false; + for (int enclZoneNum : thisEnclosure.ZoneNums) { + if (enclZoneNum == zListZoneNum) { + thisZoneFound = true; + break; + } + } + if (!thisZoneFound){ + anyZoneNotFound = true; + break; + } + } + if (anyZoneNotFound){ + continue; // On to the next enclosure + } else { + enclMatchFound = true; + // If matching ZoneList found, set the enclosure name to match + thisEnclosure.Name = thisZoneOrZoneListName; + break; // We're done with radiant enclosures + } + } + if (!enclMatchFound) { + // Look for solar enclosure with same list of zones + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { + auto &thisEnclosure(DataViewFactorInformation::ZoneSolarInfo(enclosureNum)); + bool anyZoneNotFound = false; + // If the number of enclosure zones is not the same as the number of zonelist zone, go to the next enclosure + int zlistNumZones = thisEnclosure.ZoneNums.size(); + if (thisZoneList.NumOfZones != zlistNumZones) continue; + for (int zListZoneNum : thisZoneList.Zone) { + // Search for matching zones + bool thisZoneFound = false; + for (int enclZoneNum : thisEnclosure.ZoneNums) { + if (enclZoneNum == zListZoneNum) { + thisZoneFound = true; + break; + } + } + if (!thisZoneFound) { + anyZoneNotFound = true; + break; + } + } + if (anyZoneNotFound) { + continue; // On to the next enclosure + } + else { + enclMatchFound = true; + // If matching ZoneList found, set the enclosure name to match + thisEnclosure.Name = thisZoneOrZoneListName; + break; // We're done with radiant enclosures + } + } + } + } + if (!enclMatchFound) { + if (zoneListNum > 0) { + ShowSevereError("AlignInputViewFactors: " + cCurrentModuleObject + "=\"" + thisZoneOrZoneListName + + "\" found a matching ZoneList, but did not find a matching radiant or solar enclosure with the same zones."); + ErrorsFound = true; + + } else { + ShowSevereError("AlignInputViewFactors: " + cCurrentModuleObject + "=\"" + thisZoneOrZoneListName + + "\" did not find a matching radiant or solar enclosure name."); + ErrorsFound = true; + } + } + } + } + + void GetInputViewFactorsbyName(std::string const &EnclosureName, // Needed to check for user input view factors. + int const N, // NUMBER OF SURFACES + Array2A F, // USER INPUT DIRECT VIEW FACTOR MATRIX (N X N) + Array1A_int const SPtr, // pointer to actual surface number + bool &NoUserInputF, // Flag signifying no input F's for this + bool &ErrorsFound // True when errors are found in number of fields vs max args ) { @@ -874,10 +1233,9 @@ namespace HeatBalanceIntRadExchange { // AUTHOR Curt Pedersen // DATE WRITTEN September 2005 // MODIFIED Linda Lawrie;September 2010 - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: - // This routine gets the user view factor info. + // This routine gets the user view factor info for an enclosure which could be a zone or a group of zones // Using/Aliasing using namespace DataIPShortCuts; @@ -896,15 +1254,15 @@ namespace HeatBalanceIntRadExchange { int numinx1; int inx1; int inx2; - Array1D_string ZoneSurfaceNames; + Array1D_string enclosureSurfaceNames; NoUserInputF = true; - UserFZoneIndex = inputProcessor->getObjectItemNum("ZoneProperty:UserViewFactors:bySurfaceName", "zone_name", ZoneName); + UserFZoneIndex = inputProcessor->getObjectItemNum("ZoneProperty:UserViewFactors:bySurfaceName", "zone_or_zonelist_name", EnclosureName); if (UserFZoneIndex > 0) { - ZoneSurfaceNames.allocate(N); + enclosureSurfaceNames.allocate(N); for (index = 1; index <= N; ++index) { - ZoneSurfaceNames(index) = Surface(SPtr(index)).Name; + enclosureSurfaceNames(index) = Surface(SPtr(index)).Name; } NoUserInputF = false; @@ -921,32 +1279,30 @@ namespace HeatBalanceIntRadExchange { cNumericFieldNames); if (NumNums < pow_2(N)) { - ShowSevereError("GetInputViewFactors: " + cCurrentModuleObject + "=\"" + ZoneName + "\", not enough values."); + ShowWarningError("GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", not enough values."); ShowContinueError("...Number of input values [" + TrimSigDigits(NumNums) + "] is less than the required number=[" + - TrimSigDigits(pow_2(N)) + "]."); - ErrorsFound = true; - NumNums = 0; // cancel getting any coordinates + TrimSigDigits(pow_2(N)) + "] Missing surface pairs will have a zero view factor."); } F = 0.0; numinx1 = 0; for (index = 2; index <= NumAlphas; index += 2) { - inx1 = UtilityRoutines::FindItemInList(cAlphaArgs(index), ZoneSurfaceNames, N); - inx2 = UtilityRoutines::FindItemInList(cAlphaArgs(index + 1), ZoneSurfaceNames, N); + inx1 = UtilityRoutines::FindItemInList(cAlphaArgs(index), enclosureSurfaceNames, N); + inx2 = UtilityRoutines::FindItemInList(cAlphaArgs(index + 1), enclosureSurfaceNames, N); if (inx1 == 0) { - ShowSevereError("GetInputViewFactors: " + cCurrentModuleObject + "=\"" + ZoneName + "\", invalid surface name."); - ShowContinueError("...Surface name=\"" + cAlphaArgs(index) + "\", not in this zone."); + ShowSevereError("GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); + ShowContinueError("...Surface name=\"" + cAlphaArgs(index) + "\", not in this zone or enclosure."); ErrorsFound = true; } if (inx2 == 0) { - ShowSevereError("GetInputViewFactors: " + cCurrentModuleObject + "=\"" + ZoneName + "\", invalid surface name."); - ShowContinueError("...Surface name=\"" + cAlphaArgs(index + 2) + "\", not in this zone."); + ShowSevereError("GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); + ShowContinueError("...Surface name=\"" + cAlphaArgs(index + 2) + "\", not in this zone or enclosure."); ErrorsFound = true; } ++numinx1; if (inx1 > 0 && inx2 > 0) F(inx2, inx1) = rNumericArgs(numinx1); } - ZoneSurfaceNames.deallocate(); + enclosureSurfaceNames.deallocate(); } } @@ -1071,15 +1427,16 @@ namespace HeatBalanceIntRadExchange { ZoneArea.deallocate(); } - void FixViewFactors(int const N, // NUMBER OF SURFACES - Array1A const A, // AREA VECTOR- ASSUMED,BE N ELEMENTS LONG - Array2A F, // APPROXIMATE DIRECT VIEW FACTOR MATRIX (N X N) - int const ZoneNum, // Zone number being fixe - Real64 &OriginalCheckValue, // check of SUM(F) - N - Real64 &FixedCheckValue, // check after fixed of SUM(F) - N - Real64 &FinalCheckValue, // the one to go with - int &NumIterations, // number of iterations to fixed - Real64 &RowSum // RowSum of Fixed + void FixViewFactors(int const N, // NUMBER OF SURFACES + Array1A const A, // AREA VECTOR- ASSUMED,BE N ELEMENTS LONG + Array2A F, // APPROXIMATE DIRECT VIEW FACTOR MATRIX (N X N) + std::string &enclName, // Name of Enclosure being fixed + std::vector const zoneNums, // Zones which are part of this enclosure + Real64 &OriginalCheckValue, // check of SUM(F) - N + Real64 &FixedCheckValue, // check after fixed of SUM(F) - N + Real64 &FinalCheckValue, // the one to go with + int &NumIterations, // number of iterations to fixed + Real64 &RowSum // RowSum of Fixed ) { @@ -1188,7 +1545,7 @@ namespace HeatBalanceIntRadExchange { } } - ShowWarningError("Surfaces in Zone=\"" + Zone(ZoneNum).Name + "\" do not define an enclosure."); + ShowWarningError("Surfaces in Zone/Enclosure=\"" + enclName + "\" do not define an enclosure."); ShowContinueError("Number of surfaces <= 3, view factors are set to force reciprocity but may not fulfill completeness."); ShowContinueError("Reciprocity means that radiant exchange between two surfaces will match and not lead to an energy loss."); ShowContinueError("Completeness means that all of the view factors between a surface and the other surfaces in a zone add up to unity."); @@ -1227,7 +1584,9 @@ namespace HeatBalanceIntRadExchange { } FinalCheckValue = FixedCheckValue = std::abs(RowSum - N); F = FixedF; - Zone(ZoneNum).EnforcedReciprocity = true; + for (int zoneNum : zoneNums) { + Zone(zoneNum).EnforcedReciprocity = true; + } return; // Do not iterate, stop with reciprocity satisfied. } // N <= 3 Case @@ -1281,7 +1640,7 @@ namespace HeatBalanceIntRadExchange { FinalCheckValue = FixedCheckValue = CheckConvergeTolerance = std::abs(sum_FixedF - N); if (CheckConvergeTolerance > 0.005) { ShowWarningError("FixViewFactors: View factors not complete. Check for bad surface descriptions or unenclosed zone=\"" + - Zone(ZoneNum).Name + "\"."); + enclName + "\"."); ShowContinueError("Enforced reciprocity has tolerance (ideal is 0)=[" + RoundSigDigits(CheckConvergeTolerance, 6) + "], Row Sum (ideal is " + RoundSigDigits(N) + ")=[" + RoundSigDigits(RowSum, 2) + "]."); ShowContinueError("If zone is unusual, or tolerance is on the order of 0.001, view factors are probably OK."); @@ -1306,7 +1665,7 @@ namespace HeatBalanceIntRadExchange { FinalCheckValue = FixedCheckValue; } else { ShowWarningError("FixViewFactors: View factors not complete. Check for bad surface descriptions or unenclosed zone=\"" + - Zone(ZoneNum).Name + "\"."); + enclName + "\"."); } } } @@ -1530,6 +1889,55 @@ namespace HeatBalanceIntRadExchange { } } + int GetRadiantSystemSurface(std::string const &cCurrentModuleObject, // Calling Object type + std::string const &RadSysName, // Calling Object name + int const RadSysZoneNum, // Radiant system zone number + std::string const &SurfaceName, // Referenced surface name + bool &ErrorsFound // True when errors are found + ) + { + static std::string const routineName("GetRadiantSystemSurface: "); // include trailing blank space + + // For radiant zone equipment, find the referenced surface and check if it is in the same zone or radiant enclosure + int const surfNum = UtilityRoutines::FindItemInList(SurfaceName, DataSurfaces::Surface); + + // Trap for surfaces that do not exist + if (surfNum == 0) { + ShowSevereError(routineName + "Invalid Surface name = " + SurfaceName); + ShowContinueError("Occurs for " + cCurrentModuleObject + " = " + RadSysName); + ErrorsFound = true; + return surfNum; + } + + if (RadSysZoneNum == 0) { + ShowSevereError(routineName + "Invalid Zone number passed by " + cCurrentModuleObject + " = " + RadSysName); + ErrorsFound = true; + return surfNum; + } + + // Check if the surface and equipment are in the same zone or radiant enclosure + int const surfRadEnclNum = DataHeatBalance::Zone(DataSurfaces::Surface(surfNum).Zone).RadiantEnclosureNum; + int const radSysEnclNum = DataHeatBalance::Zone(RadSysZoneNum).RadiantEnclosureNum; + if (radSysEnclNum == 0) { + // This should never happen - but it does in some simple unit tests that are designed to throw errors + ShowSevereError(routineName + "Somehow the radiant system enclosure number is zero for" + cCurrentModuleObject + " = " + + RadSysName); + ErrorsFound = true; + } else if (surfRadEnclNum == 0) { + // This should never happen + ShowSevereError(routineName + "Somehow the surface enclosure number is zero for" + cCurrentModuleObject + " = " + RadSysName + + " and Surface = " + SurfaceName); // LCOV_EXCL_LINE + ErrorsFound = true; // LCOV_EXCL_LINE + } else if (surfRadEnclNum != radSysEnclNum) { + ShowSevereError(routineName + "Surface = " + SurfaceName + " is not in the same zone or enclosure as the radiant equipment."); + ShowContinueError("Surface zone or enclosure = " + DataViewFactorInformation::ZoneRadiantInfo(surfRadEnclNum).Name); + ShowContinueError("Radiant equipment zone or enclosure = " + DataViewFactorInformation::ZoneRadiantInfo(radSysEnclNum).Name); + ShowContinueError("Occurs for " + cCurrentModuleObject + " = " + RadSysName); + ErrorsFound = true; + } + return surfNum; + } + } // namespace HeatBalanceIntRadExchange } // namespace EnergyPlus diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.hh b/src/EnergyPlus/HeatBalanceIntRadExchange.hh index f34b81dc7e6..72182378db0 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.hh +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.hh @@ -71,7 +71,7 @@ namespace HeatBalanceIntRadExchange { // na // MODULE VARIABLE DECLARATIONS: - extern int MaxNumOfZoneSurfaces; // Max saved to get large enough space for user input view factors + extern int MaxNumOfRadEnclosureSurfs; // Max saved to get large enough space for SendSurfaceTempInKto4thPrecalc // SUBROUTINE SPECIFICATIONS FOR MODULE HeatBalanceIntRadExchange @@ -90,12 +90,18 @@ namespace HeatBalanceIntRadExchange { void InitInteriorRadExchange(); - void GetInputViewFactors(std::string const &ZoneName, // Needed to check for user input view factors. - int const N, // NUMBER OF SURFACES - Array2A F, // USER INPUT DIRECT VIEW FACTOR MATRIX (N X N) - Array1A_int const SPtr, // pointer to actual surface number - bool &NoUserInputF, // Flag signifying no input F's for this - bool &ErrorsFound // True when errors are found in number of fields vs max args + void InitSolarViewFactors(); + + void AlignInputViewFactors(std::string const &cCurrentModuleObject, // Object type + bool &ErrorsFound // True when errors are found + ); + + void GetInputViewFactors(std::string const &EnclosureName, // Needed to check for user input view factors. + int const N, // NUMBER OF SURFACES + Array2A F, // USER INPUT DIRECT VIEW FACTOR MATRIX (N X N) + Array1A_int const SPtr, // pointer to actual surface number + bool &NoUserInputF, // Flag signifying no input F's for this + bool &ErrorsFound // True when errors are found in number of fields vs max args ); void GetInputViewFactorsbyName(std::string const &ZoneName, // Needed to check for user input view factors. @@ -114,15 +120,16 @@ namespace HeatBalanceIntRadExchange { Array1A_int const SPtr // pointer to REAL(r64) surface number (for error message) ); - void FixViewFactors(int const N, // NUMBER OF SURFACES - Array1A const A, // AREA VECTOR- ASSUMED,BE N ELEMENTS LONG - Array2A F, // APPROXIMATE DIRECT VIEW FACTOR MATRIX (N X N) - int const ZoneNum, // Zone number being fixe - Real64 &OriginalCheckValue, // check of SUM(F) - N - Real64 &FixedCheckValue, // check after fixed of SUM(F) - N - Real64 &FinalCheckValue, // the one to go with - int &NumIterations, // number of iterations to fixed - Real64 &RowSum // RowSum of Fixed + void FixViewFactors(int const N, // NUMBER OF SURFACES + Array1A const A, // AREA VECTOR- ASSUMED,BE N ELEMENTS LONG + Array2A F, // APPROXIMATE DIRECT VIEW FACTOR MATRIX (N X N) + std::string &enclName, // Name of Enclosure being fixed + std::vector const zoneNums, // Zones which are part of this enclosure + Real64 &OriginalCheckValue, // check of SUM(F) - N + Real64 &FixedCheckValue, // check after fixed of SUM(F) - N + Real64 &FinalCheckValue, // the one to go with + int &NumIterations, // number of iterations to fixed + Real64 &RowSum // RowSum of Fixed ); void CalcScriptF(int const N, // Number of surfaces @@ -136,6 +143,13 @@ namespace HeatBalanceIntRadExchange { Array2 &I // Returned as inverse matrix ); + int GetRadiantSystemSurface(std::string const &cCurrentModuleObject, // Calling Object type + std::string const &RadSysName, // Calling Object name + int const RadSysZoneNum, // Radiant system zone number + std::string const &SurfaceName, // Referenced surface name + bool &ErrorsFound // True when errors are found + ); + } // namespace HeatBalanceIntRadExchange } // namespace EnergyPlus diff --git a/src/EnergyPlus/HeatBalanceKivaManager.cc b/src/EnergyPlus/HeatBalanceKivaManager.cc index d51d6f6d485..359ce4fc144 100644 --- a/src/EnergyPlus/HeatBalanceKivaManager.cc +++ b/src/EnergyPlus/HeatBalanceKivaManager.cc @@ -101,9 +101,9 @@ namespace HeatBalanceKivaManager { } KivaInstanceMap::KivaInstanceMap( - Kiva::Foundation &foundation, int floorSurface, std::vector wallSurfaces, int zoneNum, Real64 floorWeight, int constructionNum, KivaManager* kmPtr) + Kiva::Foundation &foundation, int floorSurface, std::vector wallSurfaces, int zoneNum, Real64 zoneAssumedTemperature, Real64 floorWeight, int constructionNum, KivaManager* kmPtr) : instance(foundation), floorSurface(floorSurface), wallSurfaces(wallSurfaces), zoneNum(zoneNum), zoneControlType(KIVAZONE_UNCONTROLLED), - zoneControlNum(0), floorWeight(floorWeight), constructionNum(constructionNum), kmPtr(kmPtr) + zoneControlNum(0), zoneAssumedTemperature(zoneAssumedTemperature), floorWeight(floorWeight), constructionNum(constructionNum), kmPtr(kmPtr) { for (int i = 1; i <= DataZoneControls::NumTempControlledZones; ++i) { @@ -228,60 +228,94 @@ namespace HeatBalanceKivaManager { bcs->deepGroundTemperature = kivaWeather.annualAverageDrybulbTemp + DataGlobals::KelvinConv; // Estimate indoor temperature + static const Real64 defaultFlagTemp = -999; // default sets this below -999 at -9999 so uses value if entered const Real64 standardTemp = 22; // degC Real64 assumedFloatingTemp = standardTemp; // degC (somewhat arbitrary assumption--not knowing anything else // about the building at this point) Real64 Tin; - switch (zoneControlType) { - case KIVAZONE_UNCONTROLLED: { - Tin = assumedFloatingTemp + DataGlobals::KelvinConv; - break; - } - case KIVAZONE_TEMPCONTROL: { + if (zoneAssumedTemperature > defaultFlagTemp) { + Tin = zoneAssumedTemperature + DataGlobals::KelvinConv; + } else { + switch (zoneControlType) { + case KIVAZONE_UNCONTROLLED: { + Tin = assumedFloatingTemp + DataGlobals::KelvinConv; + break; + } + case KIVAZONE_TEMPCONTROL: { - int controlTypeSchId = DataZoneControls::TempControlledZone(zoneControlNum).CTSchedIndex; - int controlType = ScheduleManager::LookUpScheduleValue(controlTypeSchId, hour, timestep); + int controlTypeSchId = DataZoneControls::TempControlledZone(zoneControlNum).CTSchedIndex; + int controlType = ScheduleManager::LookUpScheduleValue(controlTypeSchId, hour, timestep); - if (controlType == 0) { // Uncontrolled + if (controlType == 0) { // Uncontrolled - Tin = assumedFloatingTemp + DataGlobals::KelvinConv; + Tin = assumedFloatingTemp + DataGlobals::KelvinConv; + + } else if (controlType == DataHVACGlobals::SingleHeatingSetPoint) { + + int schNameId = DataZoneControls::TempControlledZone(zoneControlNum).SchIndx_SingleHeatSetPoint; + int schTypeId = DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchIndx(schNameId); + int spSchId = ZoneTempPredictorCorrector::SetPointSingleHeating(schTypeId).TempSchedIndex; + Real64 setpoint = ScheduleManager::LookUpScheduleValue(spSchId, hour, timestep); + Tin = setpoint + DataGlobals::KelvinConv; - } else if (controlType == DataHVACGlobals::SingleHeatingSetPoint) { + } else if (controlType == DataHVACGlobals::SingleCoolingSetPoint) { - int schNameId = DataZoneControls::TempControlledZone(zoneControlNum).SchIndx_SingleHeatSetPoint; - int schTypeId = DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchIndx(schNameId); - int spSchId = ZoneTempPredictorCorrector::SetPointSingleHeating(schTypeId).TempSchedIndex; - Real64 setpoint = ScheduleManager::LookUpScheduleValue(spSchId, hour, timestep); - Tin = setpoint + DataGlobals::KelvinConv; + int schNameId = DataZoneControls::TempControlledZone(zoneControlNum).SchIndx_SingleCoolSetPoint; + int schTypeId = DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchIndx(schNameId); + int spSchId = ZoneTempPredictorCorrector::SetPointSingleCooling(schTypeId).TempSchedIndex; + Real64 setpoint = ScheduleManager::LookUpScheduleValue(spSchId, hour, timestep); + Tin = setpoint + DataGlobals::KelvinConv; - } else if (controlType == DataHVACGlobals::SingleCoolingSetPoint) { + } else if (controlType == DataHVACGlobals::SingleHeatCoolSetPoint) { - int schNameId = DataZoneControls::TempControlledZone(zoneControlNum).SchIndx_SingleCoolSetPoint; - int schTypeId = DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchIndx(schNameId); - int spSchId = ZoneTempPredictorCorrector::SetPointSingleCooling(schTypeId).TempSchedIndex; - Real64 setpoint = ScheduleManager::LookUpScheduleValue(spSchId, hour, timestep); - Tin = setpoint + DataGlobals::KelvinConv; + int schNameId = DataZoneControls::TempControlledZone(zoneControlNum).SchIndx_SingleHeatCoolSetPoint; + int schTypeId = DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchIndx(schNameId); + int spSchId = ZoneTempPredictorCorrector::SetPointSingleHeatCool(schTypeId).TempSchedIndex; + Real64 setpoint = ScheduleManager::LookUpScheduleValue(spSchId, hour, timestep); + Tin = setpoint + DataGlobals::KelvinConv; - } else if (controlType == DataHVACGlobals::SingleHeatCoolSetPoint) { + } else if (controlType == DataHVACGlobals::DualSetPointWithDeadBand) { - int schNameId = DataZoneControls::TempControlledZone(zoneControlNum).SchIndx_SingleHeatCoolSetPoint; - int schTypeId = DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchIndx(schNameId); - int spSchId = ZoneTempPredictorCorrector::SetPointSingleHeatCool(schTypeId).TempSchedIndex; - Real64 setpoint = ScheduleManager::LookUpScheduleValue(spSchId, hour, timestep); - Tin = setpoint + DataGlobals::KelvinConv; + int schNameId = DataZoneControls::TempControlledZone(zoneControlNum).SchIndx_DualSetPointWDeadBand; + int schTypeId = DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchIndx(schNameId); + int heatSpSchId = ZoneTempPredictorCorrector::SetPointDualHeatCool(schTypeId).HeatTempSchedIndex; + int coolSpSchId = ZoneTempPredictorCorrector::SetPointDualHeatCool(schTypeId).CoolTempSchedIndex; + Real64 heatSetpoint = ScheduleManager::LookUpScheduleValue(heatSpSchId, hour, timestep); + Real64 coolSetpoint = ScheduleManager::LookUpScheduleValue(coolSpSchId, hour, timestep); + const Real64 heatBalanceTemp = 10.0; // (assumed) degC + const Real64 coolBalanceTemp = 15.0; // (assumed) degC - } else if (controlType == DataHVACGlobals::DualSetPointWithDeadBand) { + if (bcs->outdoorTemp < heatBalanceTemp) { + Tin = heatSetpoint + DataGlobals::KelvinConv; + } else if (bcs->outdoorTemp > coolBalanceTemp) { + Tin = coolSetpoint + DataGlobals::KelvinConv; + } else { + Real64 weight = (coolBalanceTemp - bcs->outdoorTemp) / (coolBalanceTemp - heatBalanceTemp); + Tin = heatSetpoint * weight + coolSetpoint * (1.0 - weight) + DataGlobals::KelvinConv; + } + + } else { + Tin = 0.0; + ShowSevereError("Illegal control type for Zone=" + DataHeatBalance::Zone(zoneNum).Name + + ", Found value=" + General::TrimSigDigits(controlType) + + ", in Schedule=" + DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchedName); + } + break; + } + case KIVAZONE_COMFORTCONTROL: { - int schNameId = DataZoneControls::TempControlledZone(zoneControlNum).SchIndx_DualSetPointWDeadBand; - int schTypeId = DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchIndx(schNameId); - int heatSpSchId = ZoneTempPredictorCorrector::SetPointDualHeatCool(schTypeId).HeatTempSchedIndex; - int coolSpSchId = ZoneTempPredictorCorrector::SetPointDualHeatCool(schTypeId).CoolTempSchedIndex; + Tin = standardTemp + DataGlobals::KelvinConv; + break; + } + case KIVAZONE_STAGEDCONTROL: { + + int heatSpSchId = DataZoneControls::StageControlledZone(zoneControlNum).HSBchedIndex; + int coolSpSchId = DataZoneControls::StageControlledZone(zoneControlNum).CSBchedIndex; Real64 heatSetpoint = ScheduleManager::LookUpScheduleValue(heatSpSchId, hour, timestep); Real64 coolSetpoint = ScheduleManager::LookUpScheduleValue(coolSpSchId, hour, timestep); const Real64 heatBalanceTemp = 10.0; // (assumed) degC const Real64 coolBalanceTemp = 15.0; // (assumed) degC - if (bcs->outdoorTemp < heatBalanceTemp) { Tin = heatSetpoint + DataGlobals::KelvinConv; } else if (bcs->outdoorTemp > coolBalanceTemp) { @@ -290,43 +324,14 @@ namespace HeatBalanceKivaManager { Real64 weight = (coolBalanceTemp - bcs->outdoorTemp) / (coolBalanceTemp - heatBalanceTemp); Tin = heatSetpoint * weight + coolSetpoint * (1.0 - weight) + DataGlobals::KelvinConv; } - - } else { - Tin = 0.0; - ShowSevereError("Illegal control type for Zone=" + DataHeatBalance::Zone(zoneNum).Name + - ", Found value=" + General::TrimSigDigits(controlType) + - ", in Schedule=" + DataZoneControls::TempControlledZone(zoneControlNum).ControlTypeSchedName); + break; + } + default: { + // error? + Tin = assumedFloatingTemp + DataGlobals::KelvinConv; + break; } - break; - } - case KIVAZONE_COMFORTCONTROL: { - - Tin = standardTemp + DataGlobals::KelvinConv; - break; - } - case KIVAZONE_STAGEDCONTROL: { - - int heatSpSchId = DataZoneControls::StageControlledZone(zoneControlNum).HSBchedIndex; - int coolSpSchId = DataZoneControls::StageControlledZone(zoneControlNum).CSBchedIndex; - Real64 heatSetpoint = ScheduleManager::LookUpScheduleValue(heatSpSchId, hour, timestep); - Real64 coolSetpoint = ScheduleManager::LookUpScheduleValue(coolSpSchId, hour, timestep); - const Real64 heatBalanceTemp = 10.0; // (assumed) degC - const Real64 coolBalanceTemp = 15.0; // (assumed) degC - if (bcs->outdoorTemp < heatBalanceTemp) { - Tin = heatSetpoint + DataGlobals::KelvinConv; - } else if (bcs->outdoorTemp > coolBalanceTemp) { - Tin = coolSetpoint + DataGlobals::KelvinConv; - } else { - Real64 weight = (coolBalanceTemp - bcs->outdoorTemp) / (coolBalanceTemp - heatBalanceTemp); - Tin = heatSetpoint * weight + coolSetpoint * (1.0 - weight) + DataGlobals::KelvinConv; } - break; - } - default: { - // error? - Tin = assumedFloatingTemp + DataGlobals::KelvinConv; - break; - } } bcs->slabConvectiveTemp = bcs->wallConvectiveTemp = bcs->slabRadiantTemp = bcs->wallRadiantTemp = Tin; @@ -996,7 +1001,7 @@ namespace HeatBalanceKivaManager { fnd.polygon = floorPolygon; // point surface to associated ground intance(s) - kivaInstances.emplace_back(fnd, surfNum, wallIDs, surface.Zone, floorWeight, constructionNum, this); + kivaInstances.emplace_back(fnd, surfNum, wallIDs, surface.Zone, foundationInputs[surface.OSCPtr].assumedIndoorTemperature, floorWeight, constructionNum, this); // Floors can point to any number of foundaiton surfaces floorAggregator.add_instance(kivaInstances[inst].instance.ground.get(), floorWeight); @@ -1265,6 +1270,7 @@ namespace HeatBalanceKivaManager { defaultFoundation.foundation = defFnd; defaultFoundation.name = ""; + defaultFoundation.assumedIndoorTemperature = -9999; } void KivaManager::addDefaultFoundation() diff --git a/src/EnergyPlus/HeatBalanceKivaManager.hh b/src/EnergyPlus/HeatBalanceKivaManager.hh index 063a402afd5..88f6196f412 100644 --- a/src/EnergyPlus/HeatBalanceKivaManager.hh +++ b/src/EnergyPlus/HeatBalanceKivaManager.hh @@ -88,19 +88,21 @@ namespace HeatBalanceKivaManager { std::string name; std::vector surfaces; int wallConstructionIndex; + Real64 assumedIndoorTemperature; }; class KivaInstanceMap { public: KivaInstanceMap( - Kiva::Foundation &foundation, int floorSurface, std::vector wallSurfaces, int zoneNum, Real64 floorWeight, int constructionNum, class KivaManager* kmPtr = nullptr); + Kiva::Foundation &foundation, int floorSurface, std::vector wallSurfaces, int zoneNum, Real64 zoneAssumedTemperature, Real64 floorWeight, int constructionNum, class KivaManager* kmPtr = nullptr); Kiva::Instance instance; int floorSurface; std::vector wallSurfaces; int zoneNum; int zoneControlType; // Uncontrolled=0, Temperature=1, Operative=2, Comfort=3, HumidityAndTemperature=4 int zoneControlNum; + Real64 zoneAssumedTemperature; void initGround(const KivaWeatherData &kivaWeather); void setInitialBoundaryConditions(const KivaWeatherData &kivaWeather, const int date, const int hour, const int timestep); void setBoundaryConditions(); diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index d11c70a5fa7..0711b90348c 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -77,6 +77,7 @@ #include #include #include +#include #include #include #include @@ -86,6 +87,7 @@ #include #include #include +#include #include #include #include @@ -331,6 +333,7 @@ namespace HeatBalanceManager { // Get the heat balance input at the beginning of the simulation only if (ManageHeatBalanceGetInputFlag) { GetHeatBalanceInput(); // Obtains heat balance related parameters from input file + HeatBalanceIntRadExchange::InitSolarViewFactors(); // Surface octree setup // The surface octree holds live references to surfaces so it must be updated @@ -1493,11 +1496,7 @@ namespace HeatBalanceManager { // Using/Aliasing using CurveManager::GetCurveIndex; - using CurveManager::GetCurveInterpolationMethodNum; using CurveManager::GetCurveMinMaxValues; - using CurveManager::LinearInterpolationOfTable; - using CurveManager::PerfCurve; - using CurveManager::SetSameIndeVariableValues; using General::RoundSigDigits; using General::ScanForReports; using General::TrimSigDigits; @@ -1558,6 +1557,7 @@ namespace HeatBalanceManager { static ObjexxFCL::gio::Fmt Format_702("(' Material:Air',2(',',A))"); // FLOW: + std::string RoutineName("GetMaterialData: "); RegMat = inputProcessor->getNumObjectsFound("Material"); RegRMat = inputProcessor->getNumObjectsFound("Material:NoMass"); @@ -1602,6 +1602,10 @@ namespace HeatBalanceManager { TotMaterials += 1 + TotFfactorConstructs + TotCfactorConstructs; } + // Add an internally generated Material:InfraredTransparent if there are any Construction:AirBoundary objects + int totAirBoundaryConstructs = inputProcessor->getNumObjectsFound("Construction:AirBoundary"); + if (totAirBoundaryConstructs > 0) TotMaterials += 1; + Material.allocate(TotMaterials); // Allocate the array Size to the number of materials UniqueMaterialNames.reserve(static_cast(TotMaterials)); @@ -1830,6 +1834,7 @@ namespace HeatBalanceManager { Material(MaterNum).ROnly = true; } else { Material(MaterNum).Resistance = 0.01; + Material(MaterNum).ROnly = true; } if (MaterialNumProp >= 2) { Material(MaterNum).AbsorpThermal = MaterialProps(2); @@ -1856,6 +1861,28 @@ namespace HeatBalanceManager { NominalR(MaterNum) = Material(MaterNum).Resistance; } + // Add an internally generated Material:InfraredTransparent if there are any Construction:AirBoundary objects + if (totAirBoundaryConstructs > 0) { + ++MaterNum; + Material(MaterNum).Group = IRTMaterial; + Material(MaterNum).Name = "~AirBoundary-IRTMaterial"; + Material(MaterNum).ROnly = true; + Material(MaterNum).Resistance = 0.01; + Material(MaterNum).AbsorpThermal = 0.9999; + Material(MaterNum).AbsorpThermalInput = 0.9999; + // Air boundaries should not participate in solar or daylighting + Material(MaterNum).AbsorpSolar = 0.0; + Material(MaterNum).AbsorpSolarInput = 0.0; + Material(MaterNum).AbsorpVisible = 0.0; + Material(MaterNum).AbsorpVisibleInput = 0.0; + NominalR(MaterNum) = Material(MaterNum).Resistance; + if (GlobalNames::VerifyUniqueInterObjectName( + UniqueMaterialNames, Material(MaterNum).Name, CurrentModuleObject, cAlphaFieldNames(1), ErrorsFound)) { + ShowContinueError("...All Material names must be unique regardless of subtype."); + ShowContinueError("...\"~AirBoundary-IRTMaterial\" is a reserved name used internally by Construction:AirBoundary."); + } + } + // Glass materials, regular input: transmittance and front/back reflectance CurrentModuleObject = "WindowMaterial:Glazing"; @@ -2090,54 +2117,41 @@ namespace HeatBalanceManager { ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid name."); ShowContinueError(cAlphaFieldNames(5) + " requires a valid table object name, entered input=" + MaterialNames(5)); } else { - // TODO: Use CurveManager::CheckCurveDims and allow any 2D Curve/Table - if (PerfCurve(Material(MaterNum).GlassSpecAngTransDataPtr).ObjectType != "Table:TwoIndependentVariables") { + ErrorsFound |= CurveManager::CheckCurveDims(Material(MaterNum).GlassSpecAngTransDataPtr, // Curve index + {2}, // Valid dimensions + RoutineName, // Routine name + CurrentModuleObject, // Object Type + Material(MaterNum).Name, // Object Name + cAlphaFieldNames(5)); // Field Name + + GetCurveMinMaxValues(Material(MaterNum).GlassSpecAngTransDataPtr, minAngValue, maxAngValue, minLamValue, maxLamValue); + if (minAngValue > 1.0e-6) { ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid table type."); + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid minimum value of angle = " + RoundSigDigits(minAngValue, 2) + "."); ShowContinueError(cAlphaFieldNames(5) + - " requires a valid Table:TwoIndependentVariables object name, entered input=" + MaterialNames(5)); - } else { - if (GetCurveInterpolationMethodNum(Material(MaterNum).GlassSpecAngTransDataPtr) != LinearInterpolationOfTable) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid Interpolation Method."); - ShowContinueError(cAlphaFieldNames(5) + - " requires LinearInterpolationOfTable, entered table name=" + MaterialNames(5)); - } - if (!PerfCurve(Material(MaterNum).GlassSpecAngTransDataPtr).OpticalProperty) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid Table input."); - ShowContinueError(cAlphaFieldNames(5) + - " requires X unit is Angle and Y unit is Wavelength, entered table name=" + MaterialNames(5)); - } - GetCurveMinMaxValues(Material(MaterNum).GlassSpecAngTransDataPtr, minAngValue, maxAngValue, minLamValue, maxLamValue); - if (minAngValue > 1.0e-6) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid minimum value of angle = " + RoundSigDigits(minAngValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the minumum value = 0.0 in the entered table name=" + MaterialNames(5)); - } - if (std::abs(maxAngValue - 90.0) > 1.0e-6) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid maximum value of angle = " + RoundSigDigits(maxAngValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the maximum value = 90.0 in the entered table name=" + MaterialNames(5)); - } - if (minLamValue < 0.1) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid minimum value of wavelength = " + RoundSigDigits(minLamValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the minumum value = 0.1 micron in the entered table name=" + MaterialNames(5)); - } - if (maxLamValue > 4.0) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid maximum value of wavelength = " + RoundSigDigits(maxLamValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the maximum value = 4.0 microns in the entered table name=" + MaterialNames(5)); - } + " requires the minumum value = 0.0 in the entered table name=" + MaterialNames(5)); + } + if (std::abs(maxAngValue - 90.0) > 1.0e-6) { + ErrorsFound = true; + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid maximum value of angle = " + RoundSigDigits(maxAngValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the maximum value = 90.0 in the entered table name=" + MaterialNames(5)); + } + if (minLamValue < 0.1) { + ErrorsFound = true; + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid minimum value of wavelength = " + RoundSigDigits(minLamValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the minumum value = 0.1 micron in the entered table name=" + MaterialNames(5)); + } + if (maxLamValue > 4.0) { + ErrorsFound = true; + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid maximum value of wavelength = " + RoundSigDigits(maxLamValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the maximum value = 4.0 microns in the entered table name=" + MaterialNames(5)); } } } @@ -2152,48 +2166,41 @@ namespace HeatBalanceManager { ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid name."); ShowContinueError(cAlphaFieldNames(6) + " requires a valid table object name, entered input=" + MaterialNames(6)); } else { - // TODO: Use CurveManager::CheckCurveDims and allow any 2D Curve/Table - if (PerfCurve(Material(MaterNum).GlassSpecAngFRefleDataPtr).ObjectType != "Table:TwoIndependentVariables") { + ErrorsFound |= CurveManager::CheckCurveDims(Material(MaterNum).GlassSpecAngFRefleDataPtr, // Curve index + {2}, // Valid dimensions + RoutineName, // Routine name + CurrentModuleObject, // Object Type + Material(MaterNum).Name, // Object Name + cAlphaFieldNames(6)); // Field Name + + GetCurveMinMaxValues(Material(MaterNum).GlassSpecAngFRefleDataPtr, minAngValue, maxAngValue, minLamValue, maxLamValue); + if (minAngValue > 1.0e-6) { ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid table type."); - ShowContinueError(cAlphaFieldNames(6) + - " requires a valid Table:TwoIndependentVariables object name, entered input=" + MaterialNames(6)); - } else { - if (GetCurveInterpolationMethodNum(Material(MaterNum).GlassSpecAngFRefleDataPtr) != LinearInterpolationOfTable) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid Interpolation Method."); - ShowContinueError(cAlphaFieldNames(6) + - " requires LinearInterpolationOfTable, entered table name=" + MaterialNames(6)); - } - GetCurveMinMaxValues(Material(MaterNum).GlassSpecAngTransDataPtr, minAngValue, maxAngValue, minLamValue, maxLamValue); - if (minAngValue > 1.0e-6) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid minimum value of angle = " + RoundSigDigits(minAngValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the minumum value = 0.0 in the entered table name=" + MaterialNames(5)); - } - if (std::abs(maxAngValue - 90.0) > 1.0e-6) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid maximum value of angle = " + RoundSigDigits(maxAngValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the maximum value = 90.0 in the entered table name=" + MaterialNames(5)); - } - if (minLamValue < 0.1) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid minimum value of wavelength = " + RoundSigDigits(minLamValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the minumum value = 0.1 micron in the entered table name=" + MaterialNames(5)); - } - if (maxLamValue > 4.0) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid maximum value of wavelength = " + RoundSigDigits(maxLamValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the maximum value = 4.0 microns in the entered table name=" + MaterialNames(5)); - } + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid minimum value of angle = " + RoundSigDigits(minAngValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the minumum value = 0.0 in the entered table name=" + MaterialNames(5)); + } + if (std::abs(maxAngValue - 90.0) > 1.0e-6) { + ErrorsFound = true; + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid maximum value of angle = " + RoundSigDigits(maxAngValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the maximum value = 90.0 in the entered table name=" + MaterialNames(5)); + } + if (minLamValue < 0.1) { + ErrorsFound = true; + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid minimum value of wavelength = " + RoundSigDigits(minLamValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the minumum value = 0.1 micron in the entered table name=" + MaterialNames(5)); + } + if (maxLamValue > 4.0) { + ErrorsFound = true; + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid maximum value of wavelength = " + RoundSigDigits(maxLamValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the maximum value = 4.0 microns in the entered table name=" + MaterialNames(5)); } } } @@ -2208,54 +2215,44 @@ namespace HeatBalanceManager { ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid name."); ShowContinueError(cAlphaFieldNames(7) + " requires a valid table object name, entered input=" + MaterialNames(7)); } else { - // TODO: Use CurveManager::CheckCurveDims and allow any 2D Curve/Table - if (PerfCurve(Material(MaterNum).GlassSpecAngBRefleDataPtr).ObjectType != "Table:TwoIndependentVariables") { + ErrorsFound |= CurveManager::CheckCurveDims(Material(MaterNum).GlassSpecAngBRefleDataPtr, // Curve index + {2}, // Valid dimensions + RoutineName, // Routine name + CurrentModuleObject, // Object Type + Material(MaterNum).Name, // Object Name + cAlphaFieldNames(7)); // Field Name + + GetCurveMinMaxValues(Material(MaterNum).GlassSpecAngBRefleDataPtr, minAngValue, maxAngValue, minLamValue, maxLamValue); + if (minAngValue > 1.0e-6) { ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid table type."); - ShowContinueError(cAlphaFieldNames(7) + - " requires a valid Table:TwoIndependentVariables object name, entered input=" + MaterialNames(7)); - } else { - if (GetCurveInterpolationMethodNum(Material(MaterNum).GlassSpecAngBRefleDataPtr) != LinearInterpolationOfTable) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + "\", Invalid Interpolation Method."); - ShowContinueError(cAlphaFieldNames(7) + - " requires LinearInterpolationOfTable, entered table name=" + MaterialNames(7)); - } - GetCurveMinMaxValues(Material(MaterNum).GlassSpecAngTransDataPtr, minAngValue, maxAngValue, minLamValue, maxLamValue); - if (minAngValue > 1.0e-6) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid minimum value of angle = " + RoundSigDigits(minAngValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the minumum value = 0.0 in the entered table name=" + MaterialNames(5)); - } - if (std::abs(maxAngValue - 90.0) > 1.0e-6) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid maximum value of angle = " + RoundSigDigits(maxAngValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the maximum value = 90.0 in the entered table name=" + MaterialNames(5)); - } - if (minLamValue < 0.1) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid minimum value of wavelength = " + RoundSigDigits(minLamValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the minumum value = 0.1 micron in the entered table name=" + MaterialNames(5)); - } - if (maxLamValue > 4.0) { - ErrorsFound = true; - ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + - "\", Invalid maximum value of wavelength = " + RoundSigDigits(maxLamValue, 2) + "."); - ShowContinueError(cAlphaFieldNames(5) + - " requires the maximum value = 4.0 microns in the entered table name=" + MaterialNames(5)); - } + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid minimum value of angle = " + RoundSigDigits(minAngValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the minumum value = 0.0 in the entered table name=" + MaterialNames(5)); + } + if (std::abs(maxAngValue - 90.0) > 1.0e-6) { + ErrorsFound = true; + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid maximum value of angle = " + RoundSigDigits(maxAngValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the maximum value = 90.0 in the entered table name=" + MaterialNames(5)); + } + if (minLamValue < 0.1) { + ErrorsFound = true; + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid minimum value of wavelength = " + RoundSigDigits(minLamValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the minumum value = 0.1 micron in the entered table name=" + MaterialNames(5)); + } + if (maxLamValue > 4.0) { + ErrorsFound = true; + ShowSevereError(CurrentModuleObject + "=\"" + MaterialNames(1) + + "\", Invalid maximum value of wavelength = " + RoundSigDigits(maxLamValue, 2) + "."); + ShowContinueError(cAlphaFieldNames(5) + + " requires the maximum value = 4.0 microns in the entered table name=" + MaterialNames(5)); } } } - SetSameIndeVariableValues(Material(MaterNum).GlassSpecAngTransDataPtr, - Material(MaterNum).GlassSpecAngFRefleDataPtr, - Material(MaterNum).GlassSpecAngBRefleDataPtr); } } @@ -2398,6 +2395,8 @@ namespace HeatBalanceManager { Material(MaterNum).TausThermal = MaterialProps(23); Material(MaterNum).EmissThermalFront = MaterialProps(24); Material(MaterNum).EmissThermalBack = MaterialProps(25); + Material(MaterNum).Resistance = MaterialProps(26); + if (Material(MaterNum).Resistance <= 0.0) Material(MaterNum).Resistance = 0.158; // equivalent to single pane of 1/4" inch standard glass // Assumes thermal emissivity is the same as thermal absorptance Material(MaterNum).AbsorpThermalFront = Material(MaterNum).EmissThermalFront; Material(MaterNum).AbsorpThermalBack = Material(MaterNum).EmissThermalBack; @@ -4203,6 +4202,7 @@ namespace HeatBalanceManager { // Get the Total number of Constructions from the input TotRegConstructs = inputProcessor->getNumObjectsFound("Construction"); TotSourceConstructs = inputProcessor->getNumObjectsFound("Construction:InternalSource"); + int totAirBoundaryConstructs = inputProcessor->getNumObjectsFound("Construction:AirBoundary"); TotFfactorConstructs = inputProcessor->getNumObjectsFound("Construction:FfactorGroundFloor"); TotCfactorConstructs = inputProcessor->getNumObjectsFound("Construction:CfactorUndergroundWall"); @@ -4221,8 +4221,8 @@ namespace HeatBalanceManager { WConstructNames.allocate(TotWindow5Constructs); - TotConstructs = - TotRegConstructs + TotFfactorConstructs + TotCfactorConstructs + TotSourceConstructs + TotComplexFenStates + TotWinEquivLayerConstructs; + TotConstructs = TotRegConstructs + TotFfactorConstructs + TotCfactorConstructs + TotSourceConstructs + totAirBoundaryConstructs + + TotComplexFenStates + TotWinEquivLayerConstructs; NominalRforNominalUCalculation.dimension(TotConstructs, 0.0); NominalU.dimension(TotConstructs, 0.0); @@ -4346,6 +4346,14 @@ namespace HeatBalanceManager { TotRegConstructs += TotFfactorConstructs + TotCfactorConstructs; } + if (totAirBoundaryConstructs >= 1) { + CreateAirBoundaryConstructions(ConstrNum, ErrorsFound); + if (ErrorsFound) { + ShowSevereError("Errors found in creating the constructions defined with Construction:AirBoundary."); + } + TotRegConstructs += totAirBoundaryConstructs; + } + // Added BG 6/2010 for complex fenestration if (TotComplexFenStates > 0) { SetupComplexFenestrationStateInput(ConstrNum, ErrorsFound); @@ -4591,6 +4599,8 @@ namespace HeatBalanceManager { // set some (default) properties of the Construction Derived Type for (ConstrNum = 1; ConstrNum <= TotConstructs; ++ConstrNum) { + // For air boundaries, skip TypeIsAirBoundaryGroupedRadiant, process TypeIsAirBoundaryIRTSurface + if (Construct(ConstrNum).TypeIsAirBoundaryGroupedRadiant) continue; if (NominalRforNominalUCalculation(ConstrNum) != 0.0) { NominalU(ConstrNum) = 1.0 / NominalRforNominalUCalculation(ConstrNum); } else { @@ -4700,7 +4710,8 @@ namespace HeatBalanceManager { NumOfZones = inputProcessor->getNumObjectsFound(cCurrentModuleObject); Zone.allocate(NumOfZones); - + DataViewFactorInformation::ZoneRadiantInfo.allocate(NumOfZones); + DataViewFactorInformation::ZoneSolarInfo.allocate(NumOfZones); ZoneDaylight.allocate(NumOfZones); ZoneLoop = 0; @@ -5930,12 +5941,12 @@ namespace HeatBalanceManager { if (!WarmupFlag && DoOutputReporting) { CalcMoreNodeInfo(); - UpdateDataandReport(ZoneTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); if (KindOfSim == ksHVACSizeDesignDay || KindOfSim == ksHVACSizeRunPeriodDesign) { if (hvacSizingSimulationManager) hvacSizingSimulationManager->UpdateSizingLogsZoneStep(); } - UpdateTabularReports(ZoneTSReporting); + UpdateTabularReports(OutputProcessor::TimeStepType::TimeStepZone); UpdateUtilityBills(); } else if (!KickOffSimulation && DoOutputReporting && ReportDuringWarmup) { if (BeginDayFlag && !PrintEnvrnStampWarmupPrinted) { @@ -5960,13 +5971,13 @@ namespace HeatBalanceManager { } } CalcMoreNodeInfo(); - UpdateDataandReport(ZoneTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); if (KindOfSim == ksHVACSizeDesignDay || KindOfSim == ksHVACSizeRunPeriodDesign) { if (hvacSizingSimulationManager) hvacSizingSimulationManager->UpdateSizingLogsZoneStep(); } } else if (UpdateDataDuringWarmupExternalInterface) { // added for FMI - UpdateDataandReport(ZoneTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); if (KindOfSim == ksHVACSizeDesignDay || KindOfSim == ksHVACSizeRunPeriodDesign) { if (hvacSizingSimulationManager) hvacSizingSimulationManager->UpdateSizingLogsZoneStep(); } @@ -7485,6 +7496,95 @@ namespace HeatBalanceManager { } } + void CreateAirBoundaryConstructions(int &constrNum, // Counter for Constructions + bool &errorsFound // If errors found in input + ) + { + cCurrentModuleObject = "Construction:AirBoundary"; + std::string RoutineName = "CreateAirBoundaryConstructions"; + int numAirBoundaryConstructs = inputProcessor->getNumObjectsFound(cCurrentModuleObject); + if (numAirBoundaryConstructs > 0) { + auto const instances = inputProcessor->epJSON.find(cCurrentModuleObject); + if (instances == inputProcessor->epJSON.end()) { + // Cannot imagine how you would have numAirBoundaryConstructs > 0 and yet the instances is empty + // this would indicate a major problem in the input processor, not a problem here + // I'll still catch this with errorsFound but I cannot make a unit test for it so excluding the line from coverage + ShowSevereError( // LCOV_EXCL_LINE + cCurrentModuleObject + ": Somehow getNumObjectsFound was > 0 but epJSON.find found 0"); // LCOV_EXCL_LINE + errorsFound = true; // LCOV_EXCL_LINE + } + auto &instancesValue = instances.value(); + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + auto const &fields = instance.value(); + auto thisObjectName = instance.key(); + inputProcessor->markObjectAsUsed(cCurrentModuleObject, thisObjectName); + + if (GlobalNames::VerifyUniqueInterObjectName(UniqueConstructNames, thisObjectName, cCurrentModuleObject, "Name", errorsFound)) { + continue; + } + + ++constrNum; + auto &thisConstruct = Construct(constrNum); + + thisConstruct.Name = UtilityRoutines::MakeUPPERCase(thisObjectName); + thisConstruct.TypeIsAirBoundary = true; + thisConstruct.IsUsedCTF = false; + + // Solar and Daylighting Method + std::string const solarMethod = fields.at("solar_and_daylighting_method"); + if (UtilityRoutines::SameString(solarMethod, "GroupedZones")) { + thisConstruct.TypeIsAirBoundarySolar = true; + } else if (UtilityRoutines::SameString(solarMethod, "InteriorWindow")) { + thisConstruct.TypeIsAirBoundaryInteriorWindow = true; + thisConstruct.TransDiff = 1.0; + thisConstruct.TransDiffVis = 1.0; + thisConstruct.TotGlassLayers = 0; // Yes, zero, so it doesn't calculate any glass absorbed solar + thisConstruct.TransSolBeamCoef = 1.0; + thisConstruct.ReflectSolDiffBack = 0.0; + } + + // Radiant Exchange Method + std::string const radMethod = fields.at("radiant_exchange_method"); + if (UtilityRoutines::SameString(radMethod, "GroupedZones")) { + thisConstruct.TypeIsAirBoundaryGroupedRadiant = true; + } else if (UtilityRoutines::SameString(radMethod, "IRTSurface")) { + thisConstruct.IsUsedCTF = true; + thisConstruct.TypeIsAirBoundaryIRTSurface = true; + thisConstruct.TotLayers = 1; + // Find the auto-generated special IRT material for air boundaries + int materNum = UtilityRoutines::FindItemInList("~AirBoundary-IRTMaterial", DataHeatBalance::Material); + thisConstruct.LayerPoint(1) = materNum; + NominalRforNominalUCalculation(constrNum) = NominalR(materNum); + } + + // Air Exchange Method + std::string const airMethod = fields.at("air_exchange_method"); + if (UtilityRoutines::SameString(airMethod, "SimpleMixing")) { + thisConstruct.TypeIsAirBoundaryMixing = true; + if (fields.find("simple_mixing_air_changes_per_hour") != fields.end()) { + thisConstruct.AirBoundaryACH = fields.at("simple_mixing_air_changes_per_hour"); + } else { + if (!inputProcessor->getDefaultValue( + cCurrentModuleObject, "simple_mixing_air_changes_per_hour", thisConstruct.AirBoundaryACH)) { + errorsFound = true; + } + } + if (fields.find("simple_mixing_schedule_name") != fields.end()) { + auto &schedName = fields.at("simple_mixing_schedule_name"); + thisConstruct.AirBoundaryMixingSched = ScheduleManager::GetScheduleIndex(UtilityRoutines::MakeUPPERCase(schedName)); + if (thisConstruct.AirBoundaryMixingSched == 0) { + ShowSevereError(RoutineName + cCurrentModuleObject + "=\"" + thisConstruct.Name + "\", invalid (not found) " + + "Simple Mixing Schedule Name" + "=\"" + schedName.get() + "\"."); + errorsFound = true; + } + } else { + thisConstruct.AirBoundaryMixingSched = DataGlobals::ScheduleAlwaysOn; + } + } + } + } + } + void GetScheduledSurfaceGains(bool &ErrorsFound) // If errors found in input { diff --git a/src/EnergyPlus/HeatBalanceManager.hh b/src/EnergyPlus/HeatBalanceManager.hh index 49f164e3f7c..33593ca4a06 100644 --- a/src/EnergyPlus/HeatBalanceManager.hh +++ b/src/EnergyPlus/HeatBalanceManager.hh @@ -236,6 +236,10 @@ namespace HeatBalanceManager { bool &ErrorsFound // If errors found in input ); + void CreateAirBoundaryConstructions(int &ConstrNum, // Counter for Constructions + bool &ErrorsFound // If errors found in input + ); + void GetScheduledSurfaceGains(bool &ErrorsFound); // If errors found in input void CheckScheduledSurfaceGains(int const ZoneNum); // Zone number for which error check will be performed diff --git a/src/EnergyPlus/HeatBalanceSurfaceManager.cc b/src/EnergyPlus/HeatBalanceSurfaceManager.cc index b88e7eb4bfe..59980669aa5 100644 --- a/src/EnergyPlus/HeatBalanceSurfaceManager.cc +++ b/src/EnergyPlus/HeatBalanceSurfaceManager.cc @@ -83,6 +83,7 @@ #include #include #include +#include #include #include #include @@ -507,6 +508,8 @@ namespace HeatBalanceSurfaceManager { // Calculate factors that are used to determine how much long-wave radiation from internal // gains is absorbed by interior surfaces if (InitSurfaceHeatBalancefirstTime) DisplayString("Computing Interior Absorption Factors"); + if (InitSurfaceHeatBalancefirstTime) HeatBalanceIntRadExchange::InitInteriorRadExchange(); + ComputeIntThermalAbsorpFactors(); // Calculate factors for diffuse solar absorbed by room surfaces and interior shades @@ -2221,23 +2224,11 @@ namespace HeatBalanceSurfaceManager { using SolarShading::SurfaceScheduledSolarInc; using SolarShading::WindowScheduledSolarAbs; - // Locals - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: Real64 AbsExt; // Absorptivity of outer most layer (or movable insulation if present) int ConstrNum; // Index for the Construct derived type int ConstrNumSh; // Shaded window construction Real64 HMovInsul; // Resistance or "h" value of movable insulation (from EvalOutsideMovableInsulation, not used) int RoughIndexMovInsul; // Roughness index of movable insulation - int SurfNum; // DO loop counter for surfaces int SurfNum2; // TDD:DOME object number int PipeNum; // TDD pipe object number int ShelfNum; // Daylighting shelf object number @@ -2246,7 +2237,6 @@ namespace HeatBalanceSurfaceManager { Real64 ShelfSolarRad; // Shelf diffuse solar radiation int ShadeFlag; // Window shading flag Real64 SwitchFac; // Switching factor for switchable glazing - int ZoneNum; // DO loop counter for zones Real64 BeamSolar; // Local variable for BeamSolarRad Real64 SkySolarInc; // Sky diffuse solar incident on a surface Real64 GndSolarInc; // Ground diffuse solar incident on a surface @@ -2319,7 +2309,6 @@ namespace HeatBalanceSurfaceManager { Real64 AbsDiffBlindSky; // System blind front sky diffuse solar absorptance at a particular slat angle Real64 AbsDiffGlassLayGnd; // System glass layer ground diffuse solar absorptance with blind on Real64 AbsDiffGlassLaySky; // System glass layer sky diffuse solar absorptance with blind on - int OtherZoneNum; // Adjacent zone number int SurfSolAbs; // Pointer to scheduled surface gains object for fenestration systems int SurfSolIncPtr; // Pointer to schedule surface gain object for interior side of the surface @@ -2360,7 +2349,7 @@ namespace HeatBalanceSurfaceManager { BSDFBeamPhiRep = 0.0; OpaqSurfInsFaceBeamSolAbsorbed = 0.0; - for (SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { // Faster "inline" than calling SurfaceWindow( SurfNum ).InitSolarHeatGains() + for (int SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { // Faster "inline" than calling SurfaceWindow( SurfNum ).InitSolarHeatGains() auto &window(SurfaceWindow(SurfNum)); window.FrameQRadOutAbs = 0.0; window.FrameQRadInAbs = 0.0; @@ -2521,7 +2510,7 @@ namespace HeatBalanceSurfaceManager { assert(equal_dimensions(ReflFacBmToBmSolObs, ReflFacBmToDiffSolGnd)); // For linear indexing Array2D::size_type lSH(CalcSolRefl ? ReflFacBmToBmSolObs.index(HourOfDay, 1) : 0u); Array2D::size_type lSP(CalcSolRefl ? ReflFacBmToBmSolObs.index(PreviousHour, 1) : 0u); - for (SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { + for (int SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { SurfaceWindow(SurfNum).SkySolarInc = DifSolarRad * AnisoSkyMult(SurfNum); SurfaceWindow(SurfNum).GndSolarInc = GndSolarRad * Surface(SurfNum).ViewFactorGround; // For Complex Fenestrations: @@ -2557,7 +2546,7 @@ namespace HeatBalanceSurfaceManager { CalcInteriorSolarDistribution(); } - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int ZoneNum = 1; ZoneNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++ZoneNum) { // TH 3/24/2010 - QBV is not used! // unused QBV(ZoneNum) = (CBZone(ZoneNum) + DBZone(ZoneNum))*BeamSolarRad @@ -2593,16 +2582,16 @@ namespace HeatBalanceSurfaceManager { // Flux of diffuse solar in each zone QSDifSol = 0.0; - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int ZoneNum = 1; ZoneNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++ZoneNum) { QSDifSol(ZoneNum) = QDforDaylight(ZoneNum); } if (InterZoneWindow) { - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int ZoneNum = 1; ZoneNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++ZoneNum) { if (RecDifShortFromZ(ZoneNum)) { Real64 QSDifSol_sum(0.0); // Accumulator auto lZone(FractDifShortZtoZ.index(ZoneNum, 1)); // Tuned Linear indexing - for (OtherZoneNum = 1; OtherZoneNum <= NumOfZones; ++OtherZoneNum, ++lZone) { + for (int OtherZoneNum = 1; OtherZoneNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++OtherZoneNum, ++lZone) { if ((OtherZoneNum != ZoneNum) && (RecDifShortFromZ(OtherZoneNum))) { QSDifSol_sum += FractDifShortZtoZ[lZone] * QDforDaylight(OtherZoneNum); // [ lZone ] == ( ZoneNum, OtherZoneNum ) } @@ -2612,7 +2601,7 @@ namespace HeatBalanceSurfaceManager { } } - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int ZoneNum = 1; ZoneNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++ZoneNum) { QSDifSol(ZoneNum) *= FractDifShortZtoZ(ZoneNum, ZoneNum) * VMULT(ZoneNum); } @@ -2631,7 +2620,7 @@ namespace HeatBalanceSurfaceManager { // DifIncInsSurfAmountRepEnergy(SurfNum) = DifIncInsSurfAmountRep(SurfNum) * TimeStepZoneSec // END DO - for (SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { + for (int SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { if (Surface(SurfNum).HeatTransSurf) { ConstrNum = Surface(SurfNum).Construction; if (SurfaceWindow(SurfNum).StormWinFlag == 1) ConstrNum = Surface(SurfNum).StormWinConstruction; @@ -3225,11 +3214,9 @@ namespace HeatBalanceSurfaceManager { Real64 AbsIntSurf; // Inside opaque surface solar absorptance Real64 AbsIntSurfVis; // Inside opaque surface visible absorptance Real64 HMovInsul; // Resistance or "h" value of movable insulation (from EvalOutsideMovableInsulation, not used) - int OtherZoneNum; // DO loop counter for zones int RoughIndexMovInsul; // Roughness index of movable insulation int ConstrNum; // Construction number int SurfNum; // Surface number - int ZoneNum; // Zone number int ConstrNumSh; // Shaded construction number int SurfNumAdjZone; // Surface number in adjacent zone for interzone surfaces int IGlass; // Glass layer counter @@ -3255,31 +3242,39 @@ namespace HeatBalanceSurfaceManager { // FLOW: - if (!allocated(QS)) QS.allocate(NumOfZones); - if (!allocated(QSLights)) QSLights.allocate(NumOfZones); + if (!allocated(QS)) QS.allocate(DataViewFactorInformation::NumOfSolarEnclosures); + if (!allocated(QSLights)) QSLights.allocate(DataViewFactorInformation::NumOfSolarEnclosures); QS = 0.0; QSLights = 0.0; // COMPUTE TOTAL SHORT-WAVE RADIATION ORIGINATING IN ZONE. // Note: If sun is not up, QS is only internal gains - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { - QS(ZoneNum) = QD(ZoneNum) + ZoneIntGain(ZoneNum).QLTSW; - QSLights(ZoneNum) = ZoneIntGain(ZoneNum).QLTSW; + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { + Real64 sumZoneQLTSW = 0.0; + for (int zoneNum : DataViewFactorInformation::ZoneSolarInfo(enclosureNum).ZoneNums) { + sumZoneQLTSW += ZoneIntGain(zoneNum).QLTSW; + } + QS(enclosureNum) = QD(enclosureNum) + sumZoneQLTSW; + QSLights(enclosureNum) = sumZoneQLTSW; } if (InterZoneWindow) { // DO INTERZONE DISTRIBUTION. - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { - if (RecDifShortFromZ(ZoneNum)) { + if (RecDifShortFromZ(enclosureNum)) { - for (OtherZoneNum = 1; OtherZoneNum <= NumOfZones; ++OtherZoneNum) { + for (int OtherenclosureNum = 1; OtherenclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++OtherenclosureNum) { - if ((OtherZoneNum != ZoneNum) && (RecDifShortFromZ(OtherZoneNum))) { - QS(ZoneNum) += FractDifShortZtoZ(ZoneNum, OtherZoneNum) * (QD(OtherZoneNum) + ZoneIntGain(OtherZoneNum).QLTSW); - ZoneDifSolFrIntWinsRep(ZoneNum) += FractDifShortZtoZ(ZoneNum, OtherZoneNum) * QD(OtherZoneNum); - ZoneDifSolFrIntWinsRepEnergy(ZoneNum) = ZoneDifSolFrIntWinsRep(ZoneNum) * TimeStepZoneSec; + if ((OtherenclosureNum != enclosureNum) && (RecDifShortFromZ(OtherenclosureNum))) { + Real64 sumZoneQLTSW = 0.0; + for (int zoneNum : DataViewFactorInformation::ZoneSolarInfo(OtherenclosureNum).ZoneNums) { + sumZoneQLTSW += ZoneIntGain(zoneNum).QLTSW; + } + QS(enclosureNum) += FractDifShortZtoZ(enclosureNum, OtherenclosureNum) * (QD(OtherenclosureNum) + sumZoneQLTSW); + ZoneDifSolFrIntWinsRep(enclosureNum) += FractDifShortZtoZ(enclosureNum, OtherenclosureNum) * QD(OtherenclosureNum); + ZoneDifSolFrIntWinsRepEnergy(enclosureNum) = ZoneDifSolFrIntWinsRep(enclosureNum) * TimeStepZoneSec; } } } @@ -3292,8 +3287,8 @@ namespace HeatBalanceSurfaceManager { if (!Surface(SurfNum).HeatTransSurf) continue; //!!! Following may need to be removed or changed when shelves are considered in adjacent reflection calculations if (Surface(SurfNum).Class == SurfaceClass_Shading) continue; - ZoneNum = Surface(SurfNum).Zone; - IntBmIncInsSurfIntensRep(SurfNum) = ZoneBmSolFrIntWinsRep(ZoneNum) / Zone(ZoneNum).TotalSurfArea; + int enclosureNum = Surface(SurfNum).SolarEnclIndex; + IntBmIncInsSurfIntensRep(SurfNum) = ZoneBmSolFrIntWinsRep(enclosureNum) / DataViewFactorInformation::ZoneSolarInfo(enclosureNum).TotalSurfArea; IntBmIncInsSurfAmountRep(SurfNum) = IntBmIncInsSurfIntensRep(SurfNum) * (Surface(SurfNum).Area + SurfaceWindow(SurfNum).DividerArea); IntBmIncInsSurfAmountRepEnergy(SurfNum) = IntBmIncInsSurfAmountRep(SurfNum) * TimeStepZoneSec; // IntDifIncInsSurfIntensRep(SurfNum) = ZoneDifSolFrIntWinsRep(ZoneNum)/Zone(ZoneNum)%TotalSurfArea @@ -3303,18 +3298,20 @@ namespace HeatBalanceSurfaceManager { } // COMPUTE CONVECTIVE GAINS AND ZONE FLUX DENSITY. - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { - QS(ZoneNum) *= FractDifShortZtoZ(ZoneNum, ZoneNum) * VMULT(ZoneNum); + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { + QS(enclosureNum) *= FractDifShortZtoZ(enclosureNum, enclosureNum) * VMULT(enclosureNum); // CR 8695, VMULT not based on visible - QSLights(ZoneNum) *= FractDifShortZtoZ(ZoneNum, ZoneNum) * VMULT(ZoneNum); + QSLights(enclosureNum) *= FractDifShortZtoZ(enclosureNum, enclosureNum) * VMULT(enclosureNum); } // COMPUTE RADIANT GAINS ON SURFACES for (SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { - ZoneNum = Surface(SurfNum).Zone; - if (!Surface(SurfNum).HeatTransSurf || ZoneNum == 0) continue; // Skip non-heat transfer surfaces + int zoneNum = Surface(SurfNum).Zone; + if (!Surface(SurfNum).HeatTransSurf || zoneNum == 0) continue; // Skip non-heat transfer surfaces if (Surface(SurfNum).Class == SurfaceClass_TDD_Dome) continue; // Skip tubular daylighting device domes + int radEnclosureNum = Zone(zoneNum).RadiantEnclosureNum; + int solEnclosureNum = Zone(zoneNum).SolarEnclosureNum; ConstrNum = Surface(SurfNum).Construction; @@ -3324,8 +3321,8 @@ namespace HeatBalanceSurfaceManager { HMovInsul = 0.0; if (Surface(SurfNum).MaterialMovInsulInt > 0) EvalInsideMovableInsulation(SurfNum, HMovInsul, AbsInt); if (HMovInsul > 0.0) AbsIntSurf = AbsInt; - QRadSWInAbs(SurfNum) += QS(ZoneNum) * AbsIntSurf; - QRadSWLightsInAbs(SurfNum) += QSLights(ZoneNum) * AbsIntSurfVis; + QRadSWInAbs(SurfNum) += QS(solEnclosureNum) * AbsIntSurf; + QRadSWLightsInAbs(SurfNum) += QSLights(solEnclosureNum) * AbsIntSurfVis; } else { // Window if (SurfaceWindow(SurfNum).WindowModelType != WindowEQLModel) { @@ -3340,48 +3337,48 @@ namespace HeatBalanceSurfaceManager { // These calculations are repeated from InitInternalHeatGains for the Zone Component Loads Report pulseMultipler = 0.01; // the W/sqft pulse for the zone if (!doLoadComponentPulseNow) { - QRadThermInAbs(SurfNum) = QL(ZoneNum) * TMULT(ZoneNum) * ITABSF(SurfNum); + QRadThermInAbs(SurfNum) = QL(radEnclosureNum) * TMULT(radEnclosureNum) * ITABSF(SurfNum); } else { - curQL = QL(ZoneNum); + curQL = QL(radEnclosureNum); // for the loads component report during the special sizing run increase the radiant portion // a small amount to create a "pulse" of heat that is used for the - adjQL = curQL + Zone(ZoneNum).FloorArea * pulseMultipler; + adjQL = curQL + DataViewFactorInformation::ZoneRadiantInfo(radEnclosureNum).FloorArea * pulseMultipler; // ITABSF is the Inside Thermal Absorptance - // TMULT is a mulipliter for each zone + // TMULT is a multiplier for each zone/enclosure // QRadThermInAbs is the thermal radiation absorbed on inside surfaces - QRadThermInAbs(SurfNum) = adjQL * TMULT(ZoneNum) * ITABSF(SurfNum); + QRadThermInAbs(SurfNum) = adjQL * TMULT(radEnclosureNum) * ITABSF(SurfNum); } if (ShadeFlag <= 0) { // No window shading for (IGlass = 1; IGlass <= TotGlassLayers; ++IGlass) { - QRadSWwinAbs(IGlass, SurfNum) += QS(ZoneNum) * Construct(ConstrNum).AbsDiffBack(IGlass); + QRadSWwinAbs(IGlass, SurfNum) += QS(solEnclosureNum) * Construct(ConstrNum).AbsDiffBack(IGlass); } } else if (ConstrNumSh != 0 && (ShadeFlag == IntShadeOn || ShadeFlag >= 3)) { // Interior, exterior or between-glass shade, screen or blind in place for (IGlass = 1; IGlass <= Construct(ConstrNumSh).TotGlassLayers; ++IGlass) { if (ShadeFlag == IntShadeOn || ShadeFlag == ExtShadeOn || ShadeFlag == BGShadeOn || ShadeFlag == ExtScreenOn) - QRadSWwinAbs(IGlass, SurfNum) += QS(ZoneNum) * Construct(ConstrNumSh).AbsDiffBack(IGlass); + QRadSWwinAbs(IGlass, SurfNum) += QS(solEnclosureNum) * Construct(ConstrNumSh).AbsDiffBack(IGlass); if (ShadeFlag == IntBlindOn || ShadeFlag == ExtBlindOn) { BlAbsDiffBk = InterpSlatAng(SurfaceWindow(SurfNum).SlatAngThisTS, SurfaceWindow(SurfNum).MovableSlats, Construct(ConstrNumSh).BlAbsDiffBack(_, IGlass)); - QRadSWwinAbs(IGlass, SurfNum) += QS(ZoneNum) * BlAbsDiffBk; + QRadSWwinAbs(IGlass, SurfNum) += QS(solEnclosureNum) * BlAbsDiffBk; } } BlNum = SurfaceWindow(SurfNum).BlindNumber; if (ShadeFlag == IntShadeOn) - SurfaceWindow(SurfNum).IntLWAbsByShade = QL(ZoneNum) * Construct(ConstrNumSh).ShadeAbsorpThermal * TMULT(ZoneNum); + SurfaceWindow(SurfNum).IntLWAbsByShade = QL(radEnclosureNum) * Construct(ConstrNumSh).ShadeAbsorpThermal * TMULT(radEnclosureNum); if (ShadeFlag == IntBlindOn) { EffBlEmiss = InterpSlatAng( SurfaceWindow(SurfNum).SlatAngThisTS, SurfaceWindow(SurfNum).MovableSlats, SurfaceWindow(SurfNum).EffShBlindEmiss); - SurfaceWindow(SurfNum).IntLWAbsByShade = QL(ZoneNum) * EffBlEmiss * TMULT(ZoneNum); + SurfaceWindow(SurfNum).IntLWAbsByShade = QL(radEnclosureNum) * EffBlEmiss * TMULT(radEnclosureNum); } if (ShadeFlag == IntShadeOn || ShadeFlag == ExtShadeOn || ShadeFlag == BGShadeOn || ShadeFlag == ExtScreenOn) - SurfaceWindow(SurfNum).IntSWAbsByShade = QS(ZoneNum) * Construct(ConstrNumSh).AbsDiffBackShade; + SurfaceWindow(SurfNum).IntSWAbsByShade = QS(solEnclosureNum) * Construct(ConstrNumSh).AbsDiffBackShade; if (ShadeFlag == IntBlindOn || ShadeFlag == ExtBlindOn || ShadeFlag == BGBlindOn) { AbsDiffBkBl = InterpSlatAng( SurfaceWindow(SurfNum).SlatAngThisTS, SurfaceWindow(SurfNum).MovableSlats, Construct(ConstrNumSh).AbsDiffBackBlind); - SurfaceWindow(SurfNum).IntSWAbsByShade = QS(ZoneNum) * AbsDiffBkBl; + SurfaceWindow(SurfNum).IntSWAbsByShade = QS(solEnclosureNum) * AbsDiffBkBl; } // Correct for divider shadowing if (ShadeFlag == ExtShadeOn || ShadeFlag == ExtBlindOn || ShadeFlag == ExtScreenOn) @@ -3389,7 +3386,7 @@ namespace HeatBalanceSurfaceManager { } else if (ShadeFlag == SwitchableGlazing) { // Switchable glazing for (IGlass = 1; IGlass <= TotGlassLayers; ++IGlass) { - QRadSWwinAbs(IGlass, SurfNum) += QS(ZoneNum) * InterpSw(SurfaceWindow(SurfNum).SwitchingFactor, + QRadSWwinAbs(IGlass, SurfNum) += QS(solEnclosureNum) * InterpSw(SurfaceWindow(SurfNum).SwitchingFactor, Construct(ConstrNum).AbsDiffBack(IGlass), Construct(ConstrNumSh).AbsDiffBack(IGlass)); } @@ -3399,8 +3396,8 @@ namespace HeatBalanceSurfaceManager { // Note that FrameQRadInAbs is initially calculated in InitSolarHeatGains if (SurfaceWindow(SurfNum).FrameArea > 0.0) SurfaceWindow(SurfNum).FrameQRadInAbs += - (QS(ZoneNum) * SurfaceWindow(SurfNum).FrameSolAbsorp + - (QL(ZoneNum) * TMULT(ZoneNum) + QHTRadSysSurf(SurfNum) + QCoolingPanelSurf(SurfNum) + QHWBaseboardSurf(SurfNum) + + (QS(solEnclosureNum) * SurfaceWindow(SurfNum).FrameSolAbsorp + + (QL(radEnclosureNum) * TMULT(radEnclosureNum) + QHTRadSysSurf(SurfNum) + QCoolingPanelSurf(SurfNum) + QHWBaseboardSurf(SurfNum) + QSteamBaseboardSurf(SurfNum) + QElecBaseboardSurf(SurfNum)) * SurfaceWindow(SurfNum).FrameEmis) * (1.0 + 0.5 * SurfaceWindow(SurfNum).ProjCorrFrIn); // Window has a frame @@ -3429,7 +3426,7 @@ namespace HeatBalanceSurfaceManager { } // Note that DividerQRadInAbs is initially calculated in InitSolarHeatGains SurfaceWindow(SurfNum).DividerQRadInAbs += - (QS(ZoneNum) * DividerSolAbs + (QL(ZoneNum) * TMULT(ZoneNum) + QHTRadSysSurf(SurfNum) + QCoolingPanelSurf(SurfNum) + + (QS(solEnclosureNum) * DividerSolAbs + (QL(radEnclosureNum) * TMULT(radEnclosureNum) + QHTRadSysSurf(SurfNum) + QCoolingPanelSurf(SurfNum) + QHWBaseboardSurf(SurfNum) + QSteamBaseboardSurf(SurfNum) + QElecBaseboardSurf(SurfNum)) * DividerThermAbs) * (1.0 + SurfaceWindow(SurfNum).ProjCorrDivIn); @@ -3444,21 +3441,21 @@ namespace HeatBalanceSurfaceManager { // These calculations are repeated from InitInternalHeatGains for the Zone Component Loads Report pulseMultipler = 0.01; // the W/sqft pulse for the zone if (!doLoadComponentPulseNow) { - QRadThermInAbs(SurfNum) = QL(ZoneNum) * TMULT(ZoneNum) * ITABSF(SurfNum); + QRadThermInAbs(SurfNum) = QL(radEnclosureNum) * TMULT(radEnclosureNum) * ITABSF(SurfNum); } else { - curQL = QL(ZoneNum); + curQL = QL(radEnclosureNum); // for the loads component report during the special sizing run increase the radiant portion // a small amount to create a "pulse" of heat that is used for the - adjQL = curQL + Zone(ZoneNum).FloorArea * pulseMultipler; + adjQL = curQL + DataViewFactorInformation::ZoneRadiantInfo(radEnclosureNum).FloorArea * pulseMultipler; // ITABSF is the Inside Thermal Absorptance - // TMULT is a mulipliter for each zone + // TMULT is a multiplier for each zone/radiant enclosure // QRadThermInAbs is the thermal radiation absorbed on inside surfaces - QRadThermInAbs(SurfNum) = adjQL * TMULT(ZoneNum) * ITABSF(SurfNum); + QRadThermInAbs(SurfNum) = adjQL * TMULT(radEnclosureNum) * ITABSF(SurfNum); } // Radiations absorbed by the window layers coming from zone side EQLNum = Construct(ConstrNum).EQLConsPtr; for (Lay = 1; Lay <= CFS(EQLNum).NL; ++Lay) { - QRadSWwinAbs(Lay, SurfNum) += QS(ZoneNum) * Construct(ConstrNum).AbsDiffBackEQL(Lay); + QRadSWwinAbs(Lay, SurfNum) += QS(solEnclosureNum) * Construct(ConstrNum).AbsDiffBackEQL(Lay); } // Window frame has not been included for equivalent layer model yet @@ -3476,7 +3473,7 @@ namespace HeatBalanceSurfaceManager { if (SurfaceWindow(SurfNumAdjZone).WindowModelType != WindowEQLModel) { for (IGlass = 1; IGlass <= TotGlassLayers; ++IGlass) { - QRadSWwinAbs(IGlass, SurfNumAdjZone) += QS(ZoneNum) * Construct(Surface(SurfNumAdjZone).Construction).AbsDiff(IGlass); + QRadSWwinAbs(IGlass, SurfNumAdjZone) += QS(solEnclosureNum) * Construct(Surface(SurfNumAdjZone).Construction).AbsDiff(IGlass); // Note that AbsDiff rather than AbsDiffBack is used in the above since the // radiation from the current zone is incident on the outside of the adjacent // zone's window. @@ -3485,7 +3482,7 @@ namespace HeatBalanceSurfaceManager { ConstrNum = Surface(SurfNumAdjZone).Construction; EQLNum = Construct(ConstrNum).EQLConsPtr; for (Lay = 1; Lay <= CFS(EQLNum).NL; ++Lay) { - QRadSWwinAbs(Lay, SurfNumAdjZone) += QS(ZoneNum) * Construct(ConstrNum).AbsDiffFrontEQL(Lay); + QRadSWwinAbs(Lay, SurfNumAdjZone) += QS(solEnclosureNum) * Construct(ConstrNum).AbsDiffFrontEQL(Lay); // Note that AbsDiffFrontEQL rather than AbsDiffBackEQL is used in the above // since the radiation from the current zone is incident on the outside of the // adjacent zone's window. @@ -3515,8 +3512,8 @@ namespace HeatBalanceSurfaceManager { // RJH 08/30/07 - Add InitialDifSolInAbs, InitialDifSolwinAbs, and InitialDifSolAbsByShade // calced in CalcWinTransDifSolInitialDistribution to QRadSWInAbs, QRadSWwinAbs, and IntSWAbsByShade here for (SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { - ZoneNum = Surface(SurfNum).Zone; - if (!Surface(SurfNum).HeatTransSurf || ZoneNum == 0) continue; // Skip non-heat transfer surfaces + int zoneNum = Surface(SurfNum).Zone; + if (!Surface(SurfNum).HeatTransSurf || zoneNum == 0) continue; // Skip non-heat transfer surfaces if (Surface(SurfNum).Class == SurfaceClass_TDD_Dome) continue; // Skip tubular daylighting device domes ConstrNum = Surface(SurfNum).Construction; if (Construct(ConstrNum).TransDiff <= 0.0) { // Opaque surface @@ -3572,8 +3569,8 @@ namespace HeatBalanceSurfaceManager { SWInAbsTotalReport(SurfNum) = 0.0; InitialDifSolInAbsReport(SurfNum) = 0.0; InitialDifSolInTransReport(SurfNum) = 0.0; - ZoneNum = Surface(SurfNum).Zone; - if (!Surface(SurfNum).HeatTransSurf || ZoneNum == 0) continue; // Skip non-heat transfer surfaces + int zoneNum = Surface(SurfNum).Zone; + if (!Surface(SurfNum).HeatTransSurf || zoneNum == 0) continue; // Skip non-heat transfer surfaces if (Surface(SurfNum).Class == SurfaceClass_TDD_Dome) continue; // Skip tubular daylighting device domes ConstrNum = Surface(SurfNum).Construction; if (Construct(ConstrNum).TransDiff <= 0.0) { // Opaque surface @@ -3664,34 +3661,13 @@ namespace HeatBalanceSurfaceManager { // REFERENCES: // BLAST Routine: CITAF - Compute Interior Thermal Absorption Factors - // Using/Aliasing using namespace HeatBalanceMovableInsulation; using General::InterpSlatAng; using General::InterpSw; using HeatBalanceMovableInsulation::EvalInsideMovableInsulation; - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // na - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: int ConstrNum; // Construction number int ConstrNumSh; // Shaded construction number - int FirstZoneSurf; // Index of first surface in current zone - int LastZoneSurf; // Index of last surface in current zone - Real64 SUM1; // Intermediate calculation value - Real64 SUM2; // Intermediate calculation value - int SurfNum; // DO loop counter for zone surfaces - int ZoneNum; // Loop counter for Zones int ShadeFlag; // Window shading flag Real64 HMovInsul; // Conductance of movable insulation Real64 AbsInt; // Solar absorptance of movable insulation @@ -3703,10 +3679,9 @@ namespace HeatBalanceSurfaceManager { if (!allocated(ITABSF)) { ITABSF.dimension(TotSurfaces, 0.0); TMULT.dimension(NumOfZones, 0.0); - TCONV.dimension(NumOfZones, 0.0); } - for (SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { + for (int SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { if (!Surface(SurfNum).HeatTransSurf) continue; ConstrNum = Surface(SurfNum).Construction; ShadeFlag = SurfaceWindow(SurfNum).ShadingFlag; @@ -3727,15 +3702,12 @@ namespace HeatBalanceSurfaceManager { SurfaceWindow(SurfNum).EffGlassEmiss); // For shades, following interpolation just returns value of first element in array } - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int radEnclosureNum = 1; radEnclosureNum <= DataViewFactorInformation::NumOfRadiantEnclosures; ++radEnclosureNum) { - SUM1 = 0.0; - SUM2 = 0.0; + Real64 SUM1 = 0.0; + auto & thisEnclosure(DataViewFactorInformation::ZoneRadiantInfo(radEnclosureNum)); - FirstZoneSurf = Zone(ZoneNum).SurfaceFirst; - LastZoneSurf = Zone(ZoneNum).SurfaceLast; - - for (SurfNum = FirstZoneSurf; SurfNum <= LastZoneSurf; ++SurfNum) { + for (int SurfNum : thisEnclosure.SurfacePtr ) { if (!Surface(SurfNum).HeatTransSurf) continue; @@ -3781,10 +3753,9 @@ namespace HeatBalanceSurfaceManager { } } - } // End of loop over surfaces in zone + } // End of loop over surfaces in zone/enclosure - TMULT(ZoneNum) = 1.0 / SUM1; - TCONV(ZoneNum) = SUM2 / SUM1; + TMULT(radEnclosureNum) = 1.0 / SUM1; } // End of loop over zones } @@ -3828,28 +3799,12 @@ namespace HeatBalanceSurfaceManager { using General::InterpSw; using namespace DataWindowEquivalentLayer; - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // na - - // SUBROUTINE PARAMETER DEFINITIONS: Real64 const SmallestAreaAbsProductAllowed(0.01); // Avoid a division by zero of the user has entered a bunch // of surfaces with zero absorptivity on the inside - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: int ConstrNum; // DO loop counter for constructions - int FirstZoneSurf; // Index of first surface in current zone - int LastZoneSurf; // Index of last surface in current zone Real64 SUM1; // Intermediate calculation value for solar absorbed and transmitted // by windows (including shade, blind or insulation, if present) - int SurfNum; // DO loop counter for zone surfaces - int ZoneNum; // Loop counter for Zones int ShadeFlag; // Shading flag int ConstrNumSh; // Shaded construction number Real64 SwitchFac; // Switching factor @@ -3873,24 +3828,20 @@ namespace HeatBalanceSurfaceManager { // FLOW: if (!allocated(VMULT)) { - VMULT.dimension(NumOfZones, 0.0); - VCONV.dimension(NumOfZones, 0.0); + VMULT.dimension(DataViewFactorInformation::NumOfSolarEnclosures, 0.0); + VCONV.dimension(DataViewFactorInformation::NumOfSolarEnclosures, 0.0); } if (ComputeIntSWAbsorpFactorsfirstTime) { FirstCalcZone.dimension(NumOfZones, true); ComputeIntSWAbsorpFactorsfirstTime = false; } - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { SUM1 = 0.0; - FirstZoneSurf = Zone(ZoneNum).SurfaceFirst; - LastZoneSurf = Zone(ZoneNum).SurfaceLast; - - for (SurfNum = FirstZoneSurf; SurfNum <= LastZoneSurf; ++SurfNum) { - if (!Surface(SurfNum).HeatTransSurf) continue; + for (int SurfNum : DataViewFactorInformation::ZoneSolarInfo(enclosureNum).SurfacePtr) { ConstrNum = Surface(SurfNum).Construction; @@ -4001,7 +3952,7 @@ namespace HeatBalanceSurfaceManager { } // End of loop over surfaces in zone if (SUM1 > SmallestAreaAbsProductAllowed) { // Everything is okay, proceed with the regular calculation - VMULT(ZoneNum) = 1.0 / SUM1; + VMULT(enclosureNum) = 1.0 / SUM1; } else { // the sum of area*solar absorptance for all surfaces in the zone is zero--either the user screwed up // or they really want to disallow any solar from being absorbed on the inside surfaces. Fire off a @@ -4009,17 +3960,17 @@ namespace HeatBalanceSurfaceManager { // back out whatever window is there. Note that this also assumes that the shade has no effect. // That's probably not correct, but how correct is it to assume that no solar is absorbed anywhere // in the zone? - if (FirstCalcZone(ZoneNum)) { + if (FirstCalcZone(enclosureNum)) { ShowWarningError("ComputeIntSWAbsorbFactors: Sum of area times inside solar absorption for all surfaces is zero in Zone: " + - Zone(ZoneNum).Name); - FirstCalcZone(ZoneNum) = false; + DataViewFactorInformation::ZoneSolarInfo(enclosureNum).Name); + FirstCalcZone(enclosureNum) = false; } - VMULT(ZoneNum) = 0.0; + VMULT(enclosureNum) = 0.0; } - } // End of zone loop + } // End of zone/enclosure loop } - void ComputeDifSolExcZonesWIZWindows(int const NumberOfZones) // Number of zones + void ComputeDifSolExcZonesWIZWindows(int const NumberOfEnclosures) // Number of solar enclosures { // SUBROUTINE INFORMATION: @@ -4032,41 +3983,12 @@ namespace HeatBalanceSurfaceManager { // This subroutine computes the diffuse solar exchange factors between zones with // interzone windows. - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // USE STATEMENTS: - // na - - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: static Array2D D; - int SurfNum; - int IZ; - int JZ; - int KZ; - int LZ; - int MZ; - int NZ; if (!allocated(FractDifShortZtoZ)) { - FractDifShortZtoZ.allocate(NumberOfZones, NumberOfZones); - RecDifShortFromZ.allocate(NumberOfZones); - D.allocate(NumberOfZones, NumberOfZones); + FractDifShortZtoZ.allocate(NumberOfEnclosures, NumberOfEnclosures); + RecDifShortFromZ.allocate(NumberOfEnclosures); + D.allocate(NumberOfEnclosures, NumberOfEnclosures); } RecDifShortFromZ = false; @@ -4077,25 +3999,26 @@ namespace HeatBalanceSurfaceManager { if (KickOffSimulation || KickOffSizing) return; // Compute fraction transmitted in one pass. - for (SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { + for (int SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { if (!Surface(SurfNum).HeatTransSurf) continue; if (Surface(SurfNum).ExtBoundCond <= 0) continue; if (Surface(SurfNum).ExtBoundCond == SurfNum) continue; if (Construct(Surface(SurfNum).Construction).TransDiff <= 0.0) continue; - NZ = Surface(SurfNum).Zone; - if (!Zone(NZ).HasInterZoneWindow) continue; - MZ = Surface(Surface(SurfNum).ExtBoundCond).Zone; + int surfZoneNum = Surface(SurfNum).Zone; + if (!Zone(surfZoneNum).HasInterZoneWindow) continue; + int NZ = Surface(SurfNum).SolarEnclIndex; + int MZ = Surface(Surface(SurfNum).ExtBoundCond).SolarEnclIndex; FractDifShortZtoZ(NZ, MZ) += Construct(Surface(SurfNum).Construction).TransDiff * VMULT(NZ) * Surface(SurfNum).Area; if (VMULT(NZ) != 0.0) RecDifShortFromZ(NZ) = true; } // Compute fractions for multiple passes. Array2D::size_type l(0u), m(0u), d(0u); - for (NZ = 1; NZ <= NumberOfZones; ++NZ, d += NumberOfZones + 1) { + for (int NZ = 1; NZ <= NumberOfEnclosures; ++NZ, d += NumberOfEnclosures + 1) { m = NZ - 1; Real64 D_d(0.0); // Local accumulator - for (MZ = 1; MZ <= NumberOfZones; ++MZ, ++l, m += NumberOfZones) { + for (int MZ = 1; MZ <= NumberOfEnclosures; ++MZ, ++l, m += NumberOfEnclosures) { if (MZ == NZ) continue; D[l] = FractDifShortZtoZ[l] / (1.0 - FractDifShortZtoZ[l] * FractDifShortZtoZ[m]); // [ l ] == ( MZ, NZ ), [ m ] == ( NZ, MZ ) D_d += FractDifShortZtoZ[m] * D[l]; @@ -4105,11 +4028,11 @@ namespace HeatBalanceSurfaceManager { FractDifShortZtoZ = D; // added for CR 7999 & 7869 - assert(FractDifShortZtoZ.isize1() == NumberOfZones); - assert(FractDifShortZtoZ.isize2() == NumberOfZones); + assert(FractDifShortZtoZ.isize1() == NumberOfEnclosures); + assert(FractDifShortZtoZ.isize2() == NumberOfEnclosures); l = 0u; - for (NZ = 1; NZ <= NumberOfZones; ++NZ) { - for (MZ = 1; MZ <= NumberOfZones; ++MZ, ++l) { + for (int NZ = 1; NZ <= NumberOfEnclosures; ++NZ) { + for (int MZ = 1; MZ <= NumberOfEnclosures; ++MZ, ++l) { if (MZ == NZ) continue; if (FractDifShortZtoZ[l] > 0.0) { // [ l ] == ( MZ, NZ ) RecDifShortFromZ(NZ) = true; @@ -4120,22 +4043,22 @@ namespace HeatBalanceSurfaceManager { // Compute fractions for multiple zones. - for (IZ = 1; IZ <= NumberOfZones; ++IZ) { + for (int IZ = 1; IZ <= NumberOfEnclosures; ++IZ) { if (!RecDifShortFromZ(IZ)) continue; - for (JZ = 1; JZ <= NumberOfZones; ++JZ) { + for (int JZ = 1; JZ <= NumberOfEnclosures; ++JZ) { if (!RecDifShortFromZ(JZ)) continue; if (IZ == JZ) continue; if (D(IZ, JZ) == 0.0) continue; - for (KZ = 1; KZ <= NumberOfZones; ++KZ) { + for (int KZ = 1; KZ <= NumberOfEnclosures; ++KZ) { if (!RecDifShortFromZ(KZ)) continue; if (IZ == KZ) continue; if (JZ == KZ) continue; if (D(JZ, KZ) == 0.0) continue; FractDifShortZtoZ(IZ, KZ) += D(JZ, KZ) * D(IZ, JZ); - for (LZ = 1; LZ <= NumberOfZones; ++LZ) { + for (int LZ = 1; LZ <= NumberOfEnclosures; ++LZ) { if (!RecDifShortFromZ(LZ)) continue; if (IZ == LZ) continue; if (JZ == LZ) continue; @@ -4143,7 +4066,7 @@ namespace HeatBalanceSurfaceManager { if (D(KZ, LZ) == 0.0) continue; FractDifShortZtoZ(IZ, LZ) += D(KZ, LZ) * D(JZ, KZ) * D(IZ, JZ); - for (MZ = 1; MZ <= NumberOfZones; ++MZ) { + for (int MZ = 1; MZ <= NumberOfEnclosures; ++MZ) { if (!RecDifShortFromZ(MZ)) continue; if (IZ == MZ) continue; if (JZ == MZ) continue; @@ -6431,7 +6354,7 @@ namespace HeatBalanceSurfaceManager { Construct(surface.Construction).InsideAbsorpThermal * surface.Area * (Sigma_Temp_4 - (SurfaceWindow(SurfNum).IRfromParentZone + QHTRadSysSurf(SurfNum) + QCoolingPanelSurf(SurfNum) + QHWBaseboardSurf(SurfNum) + QSteamBaseboardSurf(SurfNum) + QElecBaseboardSurf(SurfNum))) - - QS(surface.Zone) * surface.Area * + QS(surface.SolarEnclIndex) * surface.Area * Construct(surface.Construction).TransDiff; // Transmitted solar | Convection | IR exchange | IR // Zone diffuse interior shortwave reflected back into the TDD WinHeatTransfer(SurfNum) = WinHeatGain(SurfNum); @@ -7347,12 +7270,6 @@ namespace HeatBalanceSurfaceManager { // METHODOLOGY EMPLOYED: // Save sequence of values for report during sizing. - // REFERENCES: - // na - - // USE STATEMENTS: - // na - // Using/Aliasing using DataGlobals::CompLoadReportIsReq; using DataGlobals::HourOfDay; using DataGlobals::isPulseZoneSizing; @@ -7368,31 +7285,16 @@ namespace HeatBalanceSurfaceManager { using OutputReportTabular::ITABSFseq; using OutputReportTabular::TMULTseq; - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // na - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS: - // na - - // DERIVED TYPE DEFINITIONS: - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - static int iZone(0); static int jSurf(0); static int TimeStepInDay(0); if (CompLoadReportIsReq && !isPulseZoneSizing) { TimeStepInDay = (HourOfDay - 1) * NumOfTimeStepInHour + TimeStep; - for (iZone = 1; iZone <= NumOfZones; ++iZone) { - TMULTseq(CurOverallSimDay, TimeStepInDay, iZone) = TMULT(iZone); + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfRadiantEnclosures; ++enclosureNum) { + TMULTseq(CurOverallSimDay, TimeStepInDay, enclosureNum) = TMULT(enclosureNum); } for (jSurf = 1; jSurf <= TotSurfaces; ++jSurf) { - iZone = Surface(jSurf).Zone; + int iZone = Surface(jSurf).Zone; if (!Surface(jSurf).HeatTransSurf || iZone == 0) continue; // Skip non-heat transfer surfaces if (Surface(jSurf).Class == SurfaceClass_TDD_Dome) continue; // Skip tubular daylighting device domes ITABSFseq(CurOverallSimDay, TimeStepInDay, jSurf) = ITABSF(jSurf); diff --git a/src/EnergyPlus/HeatBalanceSurfaceManager.hh b/src/EnergyPlus/HeatBalanceSurfaceManager.hh index bc0eb7ee310..327103ab472 100644 --- a/src/EnergyPlus/HeatBalanceSurfaceManager.hh +++ b/src/EnergyPlus/HeatBalanceSurfaceManager.hh @@ -112,7 +112,7 @@ namespace HeatBalanceSurfaceManager { void ComputeIntSWAbsorpFactors(); - void ComputeDifSolExcZonesWIZWindows(int const NumberOfZones); // Number of zones + void ComputeDifSolExcZonesWIZWindows(int const NumberOfEnclosures); // Number of solar enclosures void InitEMSControlledSurfaceProperties(); diff --git a/src/EnergyPlus/HeatingCoils.cc b/src/EnergyPlus/HeatingCoils.cc index 0d89a2723d3..5d968e12abb 100644 --- a/src/EnergyPlus/HeatingCoils.cc +++ b/src/EnergyPlus/HeatingCoils.cc @@ -1114,34 +1114,21 @@ namespace HeatingCoils { HeatingCoil(CoilNum).ReclaimHeatingSourceIndexNum == HeatingCoil(RemainingCoils).ReclaimHeatingSourceIndexNum) { SourceIndexNum = HeatingCoil(CoilNum).ReclaimHeatingSourceIndexNum; if (HeatingCoil(CoilNum).ReclaimHeatingSource == COMPRESSORRACK_REFRIGERATEDCASE) { - SourceTypeString = "Refrigeration:CompressorRack"; + SourceTypeString = HeatReclaimRefrigeratedRack(SourceIndexNum).SourceType; SourceNameString = HeatReclaimRefrigeratedRack(SourceIndexNum).Name; } if (HeatingCoil(CoilNum).ReclaimHeatingSource == CONDENSER_REFRIGERATION) { + SourceTypeString = HeatReclaimRefrigCondenser(SourceIndexNum).SourceType; SourceNameString = HeatReclaimRefrigCondenser(SourceIndexNum).Name; - if (HeatReclaimRefrigCondenser(SourceIndexNum).SourceType == RefrigCondenserTypeAir) - SourceTypeString = "Refrigeration:Condenser:AirCooled"; - if (HeatReclaimRefrigCondenser(SourceIndexNum).SourceType == RefrigCondenserTypeEvap) - SourceTypeString = "Refrigeration:Condenser:EvaporativeCooled"; - if (HeatReclaimRefrigCondenser(SourceIndexNum).SourceType == RefrigCondenserTypeWater) - SourceTypeString = "Refrigeration:Condenser:WaterCooled"; } - if (HeatingCoil(CoilNum).ReclaimHeatingSource == COIL_DX_COOLING) { - SourceTypeString = "Coil:Cooling:DX:SingleSpeed"; + if (HeatingCoil(CoilNum).ReclaimHeatingSource == COIL_DX_COOLING || + HeatingCoil(CoilNum).ReclaimHeatingSource == COIL_DX_MULTISPEED || + HeatingCoil(CoilNum).ReclaimHeatingSource == COIL_DX_MULTIMODE || + HeatingCoil(CoilNum).ReclaimHeatingSource == COIL_DX_VARIABLE_COOLING) { + SourceTypeString = HeatReclaimDXCoil(SourceIndexNum).SourceType; SourceNameString = HeatReclaimDXCoil(SourceIndexNum).Name; } - if (HeatingCoil(CoilNum).ReclaimHeatingSource == COIL_DX_MULTISPEED) { - SourceTypeString = "Coil:Cooling:DX:TwoSpeed"; - SourceNameString = HeatReclaimDXCoil(SourceIndexNum).Name; - } - if (HeatingCoil(CoilNum).ReclaimHeatingSource == COIL_DX_MULTIMODE) { - SourceTypeString = "Coil:Cooling:DX:TwoStageWithHumidityControlMode"; - SourceNameString = HeatReclaimDXCoil(SourceIndexNum).Name; - } - if (HeatingCoil(CoilNum).ReclaimHeatingSource == COIL_DX_VARIABLE_COOLING) { - SourceTypeString = "Coil:Cooling:DX:VariableSpeed"; - SourceNameString = DataHeatBalance::HeatReclaimVS_DXCoil(SourceIndexNum).Name; - } + ShowSevereError("Coil:Heating:Desuperheater, \"" + HeatingCoil(CoilNum).Name + "\" and \"" + HeatingCoil(RemainingCoils).Name + "\" cannot use the same"); ShowContinueError(" heat source object " + SourceTypeString + ", \"" + SourceNameString + "\""); diff --git a/src/EnergyPlus/HighTempRadiantSystem.cc b/src/EnergyPlus/HighTempRadiantSystem.cc index 1251e93cec8..c48b3eef4d3 100644 --- a/src/EnergyPlus/HighTempRadiantSystem.cc +++ b/src/EnergyPlus/HighTempRadiantSystem.cc @@ -62,10 +62,12 @@ #include #include #include +#include #include #include #include #include +#include #include #include #include @@ -274,7 +276,6 @@ namespace HighTempRadiantSystem { using DataSizing::CapacityPerFloorArea; using DataSizing::FractionOfAutosizedHeatingCapacity; using DataSizing::HeatingDesignCapacity; - using DataSurfaces::Surface; using General::TrimSigDigits; using ScheduleManager::GetScheduleIndex; using namespace DataIPShortCuts; @@ -560,20 +561,13 @@ namespace HighTempRadiantSystem { AllFracsSummed = HighTempRadSys(Item).FracDistribPerson; for (SurfNum = 1; SurfNum <= HighTempRadSys(Item).TotSurfToDistrib; ++SurfNum) { HighTempRadSys(Item).SurfaceName(SurfNum) = cAlphaArgs(SurfNum + 7); - HighTempRadSys(Item).SurfacePtr(SurfNum) = UtilityRoutines::FindItemInList(cAlphaArgs(SurfNum + 7), Surface); + HighTempRadSys(Item).SurfacePtr(SurfNum) = + HeatBalanceIntRadExchange::GetRadiantSystemSurface(cCurrentModuleObject, + HighTempRadSys(Item).Name, + HighTempRadSys(Item).ZonePtr, + HighTempRadSys(Item).SurfaceName(SurfNum), + ErrorsFound); HighTempRadSys(Item).FracDistribToSurf(SurfNum) = rNumericArgs(SurfNum + 9); - // Error trap for surfaces that do not exist or surfaces not in the zone the radiant heater is in - if (HighTempRadSys(Item).SurfacePtr(SurfNum) == 0) { - ShowSevereError(RoutineName + "Invalid Surface name = " + HighTempRadSys(Item).SurfaceName(SurfNum)); - ShowContinueError("Occurs for " + cCurrentModuleObject + " = " + cAlphaArgs(1)); - ErrorsFound = true; - } else if (Surface(HighTempRadSys(Item).SurfacePtr(SurfNum)).Zone != HighTempRadSys(Item).ZonePtr) { - ShowWarningError("Surface referenced in ZoneHVAC:HighTemperatureRadiant not in same zone as Radiant System, surface=" + - HighTempRadSys(Item).SurfaceName(SurfNum)); - ShowContinueError("Surface is in Zone=" + Zone(Surface(HighTempRadSys(Item).SurfacePtr(SurfNum)).Zone).Name + - " ZoneHVAC:HighTemperatureRadiant in Zone=" + cAlphaArgs(3)); - ShowContinueError("Occurs for " + cCurrentModuleObject + " = " + cAlphaArgs(1)); - } // Error trap for fractions that are out of range if (HighTempRadSys(Item).FracDistribToSurf(SurfNum) < MinFraction) { HighTempRadSys(Item).FracDistribToSurf(SurfNum) = MinFraction; @@ -587,7 +581,7 @@ namespace HighTempRadiantSystem { } if (HighTempRadSys(Item).SurfacePtr(SurfNum) != 0) { - Surface(HighTempRadSys(Item).SurfacePtr(SurfNum)).IntConvSurfGetsRadiantHeat = true; + DataSurfaces::Surface(HighTempRadSys(Item).SurfacePtr(SurfNum)).IntConvSurfGetsRadiantHeat = true; } AllFracsSummed += HighTempRadSys(Item).FracDistribToSurf(SurfNum); diff --git a/src/EnergyPlus/Humidifiers.cc b/src/EnergyPlus/Humidifiers.cc index d2711d48f76..53aa217e876 100644 --- a/src/EnergyPlus/Humidifiers.cc +++ b/src/EnergyPlus/Humidifiers.cc @@ -1439,6 +1439,67 @@ namespace Humidifiers { AuxElecUseEnergy = AuxElecUseRate * TimeStepSys * SecInHour; } + int GetAirInletNodeNum(std::string const &HumidifierName, + bool &ErrorsFound + ) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given humidifier and returns the air inlet node number. + // If incorrect humidifier name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichHumidifier; + + // Obtains and Allocates heat exchanger related parameters from input file + if (GetInputFlag) { + GetHumidifierInput(); + GetInputFlag = false; + } + + WhichHumidifier = UtilityRoutines::FindItemInList(HumidifierName, Humidifier); + if (WhichHumidifier != 0) { + NodeNum = Humidifier(WhichHumidifier).AirInNode; + } else { + ShowSevereError("GetAirInletNodeNum: Could not find Humidifier = \"" + HumidifierName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + + int GetAirOutletNodeNum(std::string const &HumidifierName, + bool &ErrorsFound + ) + { + // PURPOSE OF THIS FUNCTION: + // This function looks up the given humidifier and returns the air outlet node number. + // If incorrect humidifier name is given, ErrorsFound is returned as true and node number as zero. + + if (GetInputFlag) { + GetHumidifierInput(); + GetInputFlag = false; + } + + int WhichHumidifier = UtilityRoutines::FindItemInList(HumidifierName, Humidifier); + if (WhichHumidifier != 0) { + return Humidifier(WhichHumidifier).AirOutNode; + } else { + ShowSevereError("GetAirInletNodeNum: Could not find Humidifier = \"" + HumidifierName + "\""); + ErrorsFound = true; + return 0; + } + } + } // namespace Humidifiers } // namespace EnergyPlus diff --git a/src/EnergyPlus/Humidifiers.hh b/src/EnergyPlus/Humidifiers.hh index bea5e1e95be..8fac5ba34ec 100644 --- a/src/EnergyPlus/Humidifiers.hh +++ b/src/EnergyPlus/Humidifiers.hh @@ -190,6 +190,14 @@ namespace Humidifiers { void GetHumidifierInput(); + int GetAirInletNodeNum(std::string const &HumidifierName, + bool &ErrorsFound + ); + + int GetAirOutletNodeNum(std::string const &HumidifierName, + bool &ErrorsFound + ); + } // namespace Humidifiers } // namespace EnergyPlus diff --git a/src/EnergyPlus/HybridEvapCoolingModel.cc b/src/EnergyPlus/HybridEvapCoolingModel.cc index 64d598f45c3..5b1fc7e9f95 100644 --- a/src/EnergyPlus/HybridEvapCoolingModel.cc +++ b/src/EnergyPlus/HybridEvapCoolingModel.cc @@ -256,6 +256,7 @@ namespace HybridEvapCoolingModel { if (ValidPointer(HRsa_curve_pointer)) { Y_val = NormalizationReference * CurveValue(HRsa_curve_pointer, X_1, X_2, X_3, X_4, X_5, X_6); + Y_val = max(min(Y_val,1.0),0.0); } else { Y_val = X_4; // return HR } @@ -473,6 +474,7 @@ namespace HybridEvapCoolingModel { bool CMode::CheckNormalizationReference(int CurveID, std::string cCurrentModuleObject) { + // Note: This is abusing the table normalization value Real64 CheckNormalizationReference = GetNormalPoint(CurveID); if (NormalizationReference == -1) { // should never happen, because to get to this function we need a valid curve but check anyway. diff --git a/src/EnergyPlus/InputProcessing/InputProcessor.cc b/src/EnergyPlus/InputProcessing/InputProcessor.cc index a9b66af3f3a..f8d07b52d52 100644 --- a/src/EnergyPlus/InputProcessing/InputProcessor.cc +++ b/src/EnergyPlus/InputProcessing/InputProcessor.cc @@ -540,6 +540,11 @@ std::pair InputProcessor::getObjectItemValue(std::string cons return output; } +const json& InputProcessor::getObjectInstances(std::string const &ObjType) +{ + return epJSON.find(ObjType).value(); +} + void InputProcessor::getObjectItem(std::string const &Object, int const Number, Array1S_string Alphas, diff --git a/src/EnergyPlus/InputProcessing/InputProcessor.hh b/src/EnergyPlus/InputProcessing/InputProcessor.hh index fe8bb93c40d..6b796febaff 100644 --- a/src/EnergyPlus/InputProcessing/InputProcessor.hh +++ b/src/EnergyPlus/InputProcessing/InputProcessor.hh @@ -177,6 +177,8 @@ public: void reportOrphanRecordObjects(); + const json& getObjectInstances(std::string const &ObjType); + private: struct ObjectInfo { diff --git a/src/EnergyPlus/InternalHeatGains.cc b/src/EnergyPlus/InternalHeatGains.cc index 6f78eafd282..2b678aef11e 100644 --- a/src/EnergyPlus/InternalHeatGains.cc +++ b/src/EnergyPlus/InternalHeatGains.cc @@ -72,6 +72,7 @@ #include #include #include +#include #include #include #include @@ -5647,7 +5648,6 @@ namespace InternalHeatGains { using OutputReportTabular::AllocateLoadComponentArrays; using OutputReportTabular::radiantPulseReceived; using OutputReportTabular::radiantPulseTimestep; - using OutputReportTabular::radiantPulseUsed; using Psychrometrics::PsyRhoAirFnPbTdbW; using RefrigeratedCase::FigureRefrigerationZoneGains; using WaterThermalTanks::CalcWaterThermalTankZoneGains; @@ -6025,7 +6025,6 @@ namespace InternalHeatGains { UpdateInternalGainValues(); for (NZ = 1; NZ <= NumOfZones; ++NZ) { - SumAllInternalRadiationGains(NZ, QL(NZ)); SumAllInternalLatentGains(NZ, ZoneLatentGain(NZ)); // Added for hybrid model @@ -6034,6 +6033,17 @@ namespace InternalHeatGains { } } + // QL is per radiant enclosure (one or more zones if grouped by air boundaries) + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfRadiantEnclosures; ++enclosureNum) { + auto & thisEnclosure(DataViewFactorInformation::ZoneRadiantInfo(enclosureNum)); + QL(enclosureNum) = 0.0; + for (int zoneNum : thisEnclosure.ZoneNums) { + Real64 zoneQL; + SumAllInternalRadiationGains(zoneNum, zoneQL); + QL(enclosureNum) += zoneQL; + } + } + SumConvHTRadSys = 0.0; pulseMultipler = 0.01; // the W/sqft pulse for the zone @@ -6041,23 +6051,23 @@ namespace InternalHeatGains { AllocateLoadComponentArrays(); } for (SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { - NZ = Surface(SurfNum).Zone; + int NZ = Surface(SurfNum).Zone; if (!Surface(SurfNum).HeatTransSurf || NZ == 0) continue; // Skip non-heat transfer surfaces + int radEnclosureNum = Zone(Surface(SurfNum).Zone).RadiantEnclosureNum; if (!doLoadComponentPulseNow) { - QRadThermInAbs(SurfNum) = QL(NZ) * TMULT(NZ) * ITABSF(SurfNum); + QRadThermInAbs(SurfNum) = QL(radEnclosureNum) * TMULT(radEnclosureNum) * ITABSF(SurfNum); } else { - curQL = QL(NZ); + curQL = QL(radEnclosureNum); // for the loads component report during the special sizing run increase the radiant portion // a small amount to create a "pulse" of heat that is used for the - adjQL = curQL + Zone(NZ).FloorArea * pulseMultipler; + adjQL = curQL + DataViewFactorInformation::ZoneRadiantInfo(radEnclosureNum).FloorArea * pulseMultipler; // ITABSF is the Inside Thermal Absorptance // TMULT is a mulipliter for each zone // QRadThermInAbs is the thermal radiation absorbed on inside surfaces - QRadThermInAbs(SurfNum) = adjQL * TMULT(NZ) * ITABSF(SurfNum); + QRadThermInAbs(SurfNum) = adjQL * TMULT(radEnclosureNum) * ITABSF(SurfNum); // store the magnitude and time of the pulse - radiantPulseUsed(CurOverallSimDay, NZ) = adjQL - curQL; radiantPulseTimestep(CurOverallSimDay, NZ) = (HourOfDay - 1) * NumOfTimeStepInHour + TimeStep; - radiantPulseReceived(CurOverallSimDay, SurfNum) = (adjQL - curQL) * TMULT(NZ) * ITABSF(SurfNum) * Surface(SurfNum).Area; + radiantPulseReceived(CurOverallSimDay, SurfNum) = (adjQL - curQL) * TMULT(radEnclosureNum) * ITABSF(SurfNum) * Surface(SurfNum).Area; } } } diff --git a/src/EnergyPlus/LowTempRadiantSystem.cc b/src/EnergyPlus/LowTempRadiantSystem.cc index 8567b7f8f08..046a6f5e3bc 100644 --- a/src/EnergyPlus/LowTempRadiantSystem.cc +++ b/src/EnergyPlus/LowTempRadiantSystem.cc @@ -144,7 +144,6 @@ namespace LowTempRadiantSystem { using DataHeatBalance::Construct; using DataHeatBalance::Material; using DataHeatBalance::MaxLayersInConstruct; - using DataHeatBalance::QRadThermInAbs; using DataHeatBalance::RegularMaterial; using DataHeatBalance::TotConstructs; using DataHeatBalance::TotMaterials; diff --git a/src/EnergyPlus/MixedAir.cc b/src/EnergyPlus/MixedAir.cc index 502b682caa0..3c2cd5cd925 100644 --- a/src/EnergyPlus/MixedAir.cc +++ b/src/EnergyPlus/MixedAir.cc @@ -507,7 +507,9 @@ namespace MixedAir { // END DO CurOASysNum = OASysNum; auto &CurrentOASystem(OutsideAirSys(OASysNum)); - SimOAController(CurrentOASystem.OAControllerName, CurrentOASystem.OAControllerIndex, FirstHVACIteration, AirLoopNum); + if (OutsideAirSys(OASysNum).AirLoopDOASNum == -1) { + SimOAController(CurrentOASystem.OAControllerName, CurrentOASystem.OAControllerIndex, FirstHVACIteration, AirLoopNum); + } SimOASysComponents(OASysNum, FirstHVACIteration, AirLoopNum); if (MyOneTimeErrorFlag(OASysNum)) { @@ -549,7 +551,9 @@ namespace MixedAir { } CurOASysNum = 0; - AirLoopControlInfo(AirLoopNum).OASysComponentsSimulated = true; + if (OutsideAirSys(OASysNum).AirLoopDOASNum == -1) { + AirLoopControlInfo(AirLoopNum).OASysComponentsSimulated = true; + } } void SimOAComponent(std::string const &CompType, // the component type @@ -587,14 +591,14 @@ namespace MixedAir { using DataAirLoop::AirLoopInputsFilled; using DesiccantDehumidifiers::SimDesiccantDehumidifier; using EvaporativeCoolers::SimEvapCooler; + using HeatingCoils::SimulateHeatingCoilComponents; + using HeatRecovery::SimHeatRecovery; + using Humidifiers::SimHumidifier; using HVACControllers::ControllerProps; using HVACDXHeatPumpSystem::SimDXHeatPumpSystem; using HVACDXSystem::SimDXCoolingSystem; using HVACHXAssistedCoolingCoil::HXAssistedCoil; using HVACHXAssistedCoolingCoil::SimHXAssistedCoolingCoil; - using HeatRecovery::SimHeatRecovery; - using HeatingCoils::SimulateHeatingCoilComponents; - using Humidifiers::SimHumidifier; using PhotovoltaicThermalCollectors::CalledFromOutsideAirSystem; using PhotovoltaicThermalCollectors::SimPVTcollectors; using SimAirServingZones::SolveWaterCoilController; @@ -767,30 +771,39 @@ namespace MixedAir { } else if (SELECT_CASE_var == HeatXchngr) { // 'HeatExchanger:AirToAir:FlatPlate', 'HeatExchanger:AirToAir:SensibleAndLatent', // 'HeatExchanger:Desiccant:BalancedFlow' if (Sim) { - if (AirLoopControlInfo(AirLoopNum).FanOpMode == DataHVACGlobals::CycFanCycCoil) { - FanOpMode = DataHVACGlobals::CycFanCycCoil; - } else { + if (OutsideAirSys(OASysNum).AirLoopDOASNum > -1) { + AirloopPLR = 1.0; FanOpMode = DataHVACGlobals::ContFanCycCoil; + } else { + if (AirLoopControlInfo(AirLoopNum).FanOpMode == DataHVACGlobals::CycFanCycCoil) { + FanOpMode = DataHVACGlobals::CycFanCycCoil; + } else { + FanOpMode = DataHVACGlobals::ContFanCycCoil; + } + if (FanOpMode == DataHVACGlobals::CycFanCycCoil) { + // HX's in the OA system can be troublesome given that the OA flow rate is not necessarily proportional to air loop PLR + // adding that user input for branch flow rate, HX nominal flow rate, OA system min/max flow rate will not necessarily be + // perfectly input, a compromise is used for OA sys HX's as the ratio of flow to max. Issue #4298. + // AirloopPLR = AirLoopFlow( AirLoopNum ).FanPLR; + AirloopPLR = OAController(OASysNum).OAMassFlow / OAController(OASysNum).MaxOAMassFlowRate; + } else { + AirloopPLR = 1.0; + } } - if (FanOpMode == DataHVACGlobals::CycFanCycCoil) { - // HX's in the OA system can be troublesome given that the OA flow rate is not necessarily proportional to air loop PLR - // adding that user input for branch flow rate, HX nominal flow rate, OA system min/max flow rate will not necessarily be - // perfectly input, a compromise is used for OA sys HX's as the ratio of flow to max. Issue #4298. - // AirloopPLR = AirLoopFlow( AirLoopNum ).FanPLR; - AirloopPLR = OAController(OASysNum).OAMassFlow / OAController(OASysNum).MaxOAMassFlowRate; + if (OutsideAirSys(OASysNum).AirLoopDOASNum > -1) { + SimHeatRecovery(CompName, FirstHVACIteration, CompIndex, FanOpMode, AirloopPLR, _, _, _, _, _); } else { - AirloopPLR = 1.0; + SimHeatRecovery(CompName, + FirstHVACIteration, + CompIndex, + FanOpMode, + AirloopPLR, + _, + _, + _, + AirLoopControlInfo(AirLoopNum).HeatRecoveryBypass, + AirLoopControlInfo(AirLoopNum).HighHumCtrlActive); } - SimHeatRecovery(CompName, - FirstHVACIteration, - CompIndex, - FanOpMode, - AirloopPLR, - _, - _, - _, - AirLoopControlInfo(AirLoopNum).HeatRecoveryBypass, - AirLoopControlInfo(AirLoopNum).HighHumCtrlActive); } OAHX = true; @@ -1070,7 +1083,9 @@ namespace MixedAir { cNumericFields); UtilityRoutines::IsNameEmpty(AlphArray(1), CurrentModuleObject, ErrorsFound); OutsideAirSys(OASysNum).Name = AlphArray(1); - GlobalNames::IntraObjUniquenessCheck(AlphArray(2), CurrentModuleObject, cAlphaFields(2), ControllerListUniqueNames, ErrorsFound); + if (!AlphArray(2).empty()) { + GlobalNames::IntraObjUniquenessCheck(AlphArray(2), CurrentModuleObject, cAlphaFields(2), ControllerListUniqueNames, ErrorsFound); + } ControllerListName = AlphArray(2); OutsideAirSys(OASysNum).ControllerListName = AlphArray(2); ComponentListName = AlphArray(3); @@ -1089,6 +1104,8 @@ namespace MixedAir { OutsideAirSys(OASysNum).ComponentType.allocate(NumInList); OutsideAirSys(OASysNum).ComponentType_Num.dimension(NumInList, 0); OutsideAirSys(OASysNum).ComponentIndex.dimension(NumInList, 0); + OutsideAirSys(OASysNum).InletNodeNum.dimension(NumInList, 0); + OutsideAirSys(OASysNum).OutletNodeNum.dimension(NumInList, 0); OutsideAirSys(OASysNum).compPointer.resize(NumInList + 1, nullptr); for (InListNum = 1; InListNum <= NumInList; ++InListNum) { OutsideAirSys(OASysNum).ComponentName(InListNum) = AlphArray(InListNum * 2 + 1); @@ -1136,8 +1153,14 @@ namespace MixedAir { ErrorsFound = true; } } else { - ShowSevereError(CurrentModuleObject + " = \"" + AlphArray(1) + "\" invalid " + cAlphaFields(2) + " is blank and must be entered."); - ErrorsFound = true; + if (inputProcessor->getNumObjectsFound("AirLoopHVAC:DedicatedOutdoorAirSystem") == 0) { + ShowSevereError(CurrentModuleObject + " = \"" + AlphArray(1) + "\" invalid " + cAlphaFields(2) + + " is blank and must be entered."); + ErrorsFound = true; + } else { + ShowWarningError(CurrentModuleObject + " = \"" + AlphArray(1) + "\": blank " + cAlphaFields(2) + + " must be used with AirLoopHVAC:DedicatedOutdoorAirSystem."); + } } OutsideAirSys(OASysNum).ControllerListNum = ListNum; OutsideAirSys(OASysNum).NumSimpleControllers = NumSimpControllers; @@ -1344,9 +1367,10 @@ namespace MixedAir { int i; // Formats - static ObjexxFCL::gio::Fmt Format_700("('!,Name,Availability Schedule Name,Demand Controlled Ventilation " - "{Yes/No},','System Outdoor Air Method,Zone Maximum Outdoor Air Fraction,Number of Zones,Zone Name,DSOA " - "Name,DSZAD Name')"); + static ObjexxFCL::gio::Fmt Format_700( + "('!,Name,Availability Schedule Name,Demand Controlled Ventilation " + "{Yes/No},','System Outdoor Air Method,Zone Maximum Outdoor Air Fraction,Number of Zones,Zone Name,DSOA " + "Name,DSZAD Name')"); static ObjexxFCL::gio::Fmt fmtA("(A)"); // First, call other get input routines in this module to make sure data is filled during this routine. @@ -1949,8 +1973,9 @@ namespace MixedAir { { IOFlags flags; flags.ADVANCE("NO"); - ObjexxFCL::gio::write(OutputFileInits, fmtA, flags) << " Controller:MechanicalVentilation," + VentilationMechanical(VentMechNum).Name + ',' + - VentilationMechanical(VentMechNum).SchName + ','; + ObjexxFCL::gio::write(OutputFileInits, fmtA, flags) << " Controller:MechanicalVentilation," + + VentilationMechanical(VentMechNum).Name + ',' + + VentilationMechanical(VentMechNum).SchName + ','; } if (VentilationMechanical(VentMechNum).DCVFlag) { { @@ -2023,26 +2048,29 @@ namespace MixedAir { { IOFlags flags; flags.ADVANCE("NO"); - ObjexxFCL::gio::write(OutputFileInits, fmtA, flags) << RoundSigDigits(VentilationMechanical(VentMechNum).ZoneMaxOAFraction, 2) + ','; + ObjexxFCL::gio::write(OutputFileInits, fmtA, flags) + << RoundSigDigits(VentilationMechanical(VentMechNum).ZoneMaxOAFraction, 2) + ','; } { IOFlags flags; flags.ADVANCE("NO"); - ObjexxFCL::gio::write(OutputFileInits, fmtA, flags) << RoundSigDigits(VentilationMechanical(VentMechNum).NumofVentMechZones) + ','; + ObjexxFCL::gio::write(OutputFileInits, fmtA, flags) + << RoundSigDigits(VentilationMechanical(VentMechNum).NumofVentMechZones) + ','; } for (jZone = 1; jZone <= VentilationMechanical(VentMechNum).NumofVentMechZones; ++jZone) { if (jZone < VentilationMechanical(VentMechNum).NumofVentMechZones) { { IOFlags flags; flags.ADVANCE("NO"); - ObjexxFCL::gio::write(OutputFileInits, fmtA, flags) << Zone(VentilationMechanical(VentMechNum).VentMechZone(jZone)).Name + ',' + - VentilationMechanical(VentMechNum).ZoneDesignSpecOAObjName(jZone) + ',' + - VentilationMechanical(VentMechNum).ZoneDesignSpecADObjName(jZone) + ','; + ObjexxFCL::gio::write(OutputFileInits, fmtA, flags) + << Zone(VentilationMechanical(VentMechNum).VentMechZone(jZone)).Name + ',' + + VentilationMechanical(VentMechNum).ZoneDesignSpecOAObjName(jZone) + ',' + + VentilationMechanical(VentMechNum).ZoneDesignSpecADObjName(jZone) + ','; } } else { ObjexxFCL::gio::write(OutputFileInits, fmtA) << VentilationMechanical(VentMechNum).VentMechZoneName(jZone) + ',' + - VentilationMechanical(VentMechNum).ZoneDesignSpecOAObjName(jZone) + ',' + - VentilationMechanical(VentMechNum).ZoneDesignSpecADObjName(jZone); + VentilationMechanical(VentMechNum).ZoneDesignSpecOAObjName(jZone) + ',' + + VentilationMechanical(VentMechNum).ZoneDesignSpecADObjName(jZone); } } } @@ -2614,6 +2642,8 @@ namespace MixedAir { // if ( BeginDayFlag ) { // } + if (OutsideAirSys(OASysNum).AirLoopDOASNum > -1) return; + if (initOASysFlag(OASysNum)) { AirLoopControlInfo(AirLoopNum).OASysNum = OASysNum; initOASysFlag(OASysNum) = false; diff --git a/src/EnergyPlus/MixerComponent.cc b/src/EnergyPlus/MixerComponent.cc index 94d83356db2..3514f573f58 100644 --- a/src/EnergyPlus/MixerComponent.cc +++ b/src/EnergyPlus/MixerComponent.cc @@ -683,6 +683,34 @@ namespace MixerComponent { } } + int getZoneMixerIndexFromInletNode(int const &InNodeNum) + { + + // SUBROUTINE LOCAL VARIABLE DECLARATIONS: + int MixerNum; // loop counter + int InNodeCtr; // loop counter + int thisMixer; + + if (GetZoneMixerIndexInputFlag) { // First time subroutine has been entered + GetMixerInput(); + GetZoneMixerIndexInputFlag = false; + } + + thisMixer = 0; + if (NumMixers > 0) { + for (MixerNum = 1; MixerNum <= NumMixers; ++MixerNum) { + for (InNodeCtr = 1; InNodeCtr <= MixerCond(MixerNum).NumInletNodes; ++InNodeCtr) { + if (InNodeNum != MixerCond(MixerNum).InletNode(InNodeCtr)) continue; + thisMixer = MixerNum; + break; + } + if (thisMixer > 0) break; + } + } + + return thisMixer; + } + // End of Utility subroutines for the Mixer Component // ***************************************************************************** diff --git a/src/EnergyPlus/MixerComponent.hh b/src/EnergyPlus/MixerComponent.hh index eb408f52c3a..f4317fb2999 100644 --- a/src/EnergyPlus/MixerComponent.hh +++ b/src/EnergyPlus/MixerComponent.hh @@ -161,6 +161,8 @@ namespace MixerComponent { // ***************************************************************************** void GetZoneMixerIndex(std::string const &MixerName, int &MixerIndex, bool &ErrorsFound, std::string const &ThisObjectType = std::string()); + int getZoneMixerIndexFromInletNode(int const &InNodeNum); + // End of Utility subroutines for the Mixer Component // ***************************************************************************** diff --git a/src/EnergyPlus/OutputProcessor.cc b/src/EnergyPlus/OutputProcessor.cc index da88f7c97d9..9c230d4b0cc 100644 --- a/src/EnergyPlus/OutputProcessor.cc +++ b/src/EnergyPlus/OutputProcessor.cc @@ -121,13 +121,11 @@ namespace OutputProcessor { using DataGlobals::DayOfSim; using DataGlobals::DayOfSimChr; using DataGlobals::HourOfDay; - using DataGlobals::HVACTSReporting; using DataGlobals::MaxNameLength; using DataGlobals::MinutesPerTimeStep; using DataGlobals::OutputFileMeters; using DataGlobals::OutputFileStandard; using DataGlobals::StdOutputRecordCount; - using DataGlobals::ZoneTSReporting; using namespace DataGlobalConstants; // Data @@ -143,9 +141,6 @@ namespace OutputProcessor { int const IMinSetValue(999999); int const IMaxSetValue(-999999); - int const ZoneVar(1); // Type value for those variables reported on the Zone Time Step - int const HVACVar(2); // Type value for those variables reported on the System Time Step - int const VarType_NotFound(0); // ref: GetVariableKeyCountandType, 0 = not found int const VarType_Integer(1); // ref: GetVariableKeyCountandType, 1 = integer int const VarType_Real(2); // ref: GetVariableKeyCountandType, 2 = real @@ -282,7 +277,9 @@ namespace OutputProcessor { // PUBLIC SetReportNow // Object Data - Array1D TimeValue(2); // Pointers to the actual TimeStep variables + + // Pointers to the actual TimeStep variables + std::map TimeValue; Array1D RVariableTypes; // Variable Types structure (use NumOfRVariables to traverse) Array1D IVariableTypes; // Variable Types structure (use NumOfIVariables to traverse) Array1D DDVariableTypes; // Variable Types structure (use NumVariablesForOutput to traverse) @@ -379,7 +376,7 @@ namespace OutputProcessor { LEndMin = -1.0; GetMeterIndexFirstCall = true; InitFlag = true; - TimeValue.deallocate(); + TimeValue.clear(); RVariableTypes.deallocate(); IVariableTypes.deallocate(); DDVariableTypes.deallocate(); @@ -494,7 +491,7 @@ namespace OutputProcessor { InitializeMeters(); } - void SetupTimePointers(std::string const &IndexKey, // Which timestep is being set up, 'Zone'=1, 'HVAC'=2 + void SetupTimePointers(std::string const &TimeStepTypeKey, // Which timestep is being set up, 'Zone'=1, 'HVAC'=2 Real64 &TimeStep // The timestep variable. Used to get the address ) { @@ -515,22 +512,16 @@ namespace OutputProcessor { // SUBROUTINE LOCAL VARIABLE DECLARATIONS: std::string cValue; - int Index; - - Index = ValidateIndexType(IndexKey, "SetupTimePointers"); - - if (Index == 1) { - TimeValue(Index).TimeStep >>= TimeStep; - TimeValue(Index).CurMinute = 0.0; - - } else if (Index == 2) { - TimeValue(Index).TimeStep >>= TimeStep; - TimeValue(Index).CurMinute = 0.0; + // ValidateTimeStepType will throw a Fatal if not valid + TimeStepType timeStepType = ValidateTimeStepType(TimeStepTypeKey, "SetupTimePointers"); - } else { - ObjexxFCL::gio::write(cValue, fmtLD) << Index; - ShowSevereError("Illegal value passed to SetupTimePointers, must be 1 or 2 == " + cValue, OutputFileStandard); + TimeSteps tPtr; + tPtr.TimeStep >>= TimeStep; + if ( !TimeValue.insert( std::make_pair( timeStepType, tPtr ) ).second ) { + // The element was already present... shouldn't happen + ShowFatalError("SetupTimePointers was already called for " + TimeStepTypeKey); } + } void CheckReportVariable(std::string const &KeyedValue, // Associated Key for this variable @@ -1105,8 +1096,8 @@ namespace OutputProcessor { String = StrOut; } - int ValidateIndexType(std::string const &IndexTypeKey, // Index type (Zone, HVAC) for variables - std::string const &CalledFrom // Routine called from (for error messages) + TimeStepType ValidateTimeStepType(std::string const &TimeStepTypeKey, // Index type (Zone, HVAC) for variables + std::string const &CalledFrom // Routine called from (for error messages) ) { @@ -1123,43 +1114,30 @@ namespace OutputProcessor { // METHODOLOGY EMPLOYED: // Look it up in a list of valid index types. - // Return value - int ValidateIndexType; - // FUNCTION LOCAL VARIABLE DECLARATIONS: - static Array1D_string ZoneIndexTypes(3); - static Array1D_string SystemIndexTypes(3); - static bool Initialized(false); - int Item; - if (!Initialized) { - ZoneIndexTypes(1) = "ZONE"; - ZoneIndexTypes(2) = "HEATBALANCE"; - ZoneIndexTypes(3) = "HEAT BALANCE"; - SystemIndexTypes(1) = "HVAC"; - SystemIndexTypes(2) = "SYSTEM"; - SystemIndexTypes(3) = "PLANT"; - Initialized = true; - } + // TODO: , "HEATBALANCE", "HEAT BALANCE" are used nowhere aside from tests. Should we remove them? + static std::vector zoneIndexes({"ZONE", "HEATBALANCE", "HEAT BALANCE"}); + static std::vector systemIndexes({"HVAC", "SYSTEM", "PLANT"}); + std::string uppercase(UtilityRoutines::MakeUPPERCase(TimeStepTypeKey)); - ValidateIndexType = 1; - Item = UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase(IndexTypeKey), ZoneIndexTypes, 3); - if (Item != 0) return ValidateIndexType; + if (std::find(zoneIndexes.begin(), zoneIndexes.end(), uppercase) != zoneIndexes.end()) { + return TimeStepType::TimeStepZone; + } - ValidateIndexType = 2; - Item = UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase(IndexTypeKey), SystemIndexTypes, 3); - if (Item != 0) return ValidateIndexType; + if (std::find(systemIndexes.begin(), systemIndexes.end(), uppercase) != systemIndexes.end()) { + return TimeStepType::TimeStepSystem; + } - ValidateIndexType = 0; // The following should never happen to a user!!!! - ShowSevereError("OutputProcessor/ValidateIndexType: Invalid Index Key passed to ValidateIndexType=" + IndexTypeKey); - ShowContinueError("..Should be \"ZONE\", \"SYSTEM\", \"HVAC\"... was called from:" + CalledFrom); + ShowSevereError("OutputProcessor/ValidateTimeStepType: Invalid Index Key passed to ValidateTimeStepType=" + TimeStepTypeKey); + ShowContinueError("..Should be \"ZONE\", \"SYSTEM\", \"HVAC\", or \"PLANT\"... was called from:" + CalledFrom); ShowFatalError("Preceding condition causes termination."); - return ValidateIndexType; + return TimeStepType::TimeStepZone; } - std::string StandardIndexTypeKey(int const IndexType) + std::string StandardTimeStepTypeKey(TimeStepType const timeStepType) { // FUNCTION INFORMATION: @@ -1182,7 +1160,7 @@ namespace OutputProcessor { // na // Return value - std::string StandardIndexTypeKey; + std::string StandardTimeStepTypeKey; // Locals // FUNCTION ARGUMENT DEFINITIONS: @@ -1199,15 +1177,15 @@ namespace OutputProcessor { // FUNCTION LOCAL VARIABLE DECLARATIONS: // na - if (IndexType == 1) { - StandardIndexTypeKey = "Zone"; - } else if (IndexType == 2) { - StandardIndexTypeKey = "HVAC"; + if (timeStepType == TimeStepType::TimeStepZone) { + StandardTimeStepTypeKey = "Zone"; + } else if (timeStepType == TimeStepType::TimeStepSystem) { + StandardTimeStepTypeKey = "HVAC"; } else { - StandardIndexTypeKey = "UNKW"; + StandardTimeStepTypeKey = "UNKW"; } - return StandardIndexTypeKey; + return StandardTimeStepTypeKey; } StoreType validateVariableType(std::string const &VariableTypeKey) @@ -1465,7 +1443,7 @@ namespace OutputProcessor { int KeyCount; int TypeVar; OutputProcessor::StoreType AvgSumVar; - int StepTypeVar; + OutputProcessor::TimeStepType StepTypeVar; int iKey; int iKey1; bool MeterCreated; @@ -4222,7 +4200,7 @@ namespace OutputProcessor { std::string const &reportIDChr, // The reporting ID for the data std::string const &keyedValue, // The key name for the data std::string const &variableName, // The variable's actual name - int const indexType, + TimeStepType const timeStepType, OutputProcessor::Unit const &unitsForVar, // The variables units Optional_string_const customUnitName, Optional_string_const ScheduleName) @@ -4320,7 +4298,7 @@ namespace OutputProcessor { indexGroup, keyedValue, variableName, - indexType, + static_cast(timeStepType), UnitsString, static_cast(reportingInterval), false, @@ -5567,7 +5545,7 @@ namespace OutputProcessor { void SetupOutputVariable(std::string const &VariableName, // String Name of variable (with units) OutputProcessor::Unit const &VariableUnit, // Actual units corresponding to the actual variable Real64 &ActualVariable, // Actual Variable, used to set up pointer - std::string const &IndexTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 + std::string const &TimeStepTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 std::string const &VariableTypeKey, // State, Average=1, NonState, Sum=2 std::string const &KeyedValue, // Associated Key for this variable Optional_string_const ReportFreq, // Internal use -- causes reporting at this freqency @@ -5605,7 +5583,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na // SUBROUTINE LOCAL VARIABLE DECLARATIONS: int CV; std::string IDOut; - int IndexType; // 1=TimeStepZone, 2=TimeStepSys + TimeStepType TimeStepType; // 1=TimeStepZone, 2=TimeStepSys StoreType VariableType; // 1=Average, 2=Sum, 3=Min/Max int Loop; ReportingFrequency RepFreq(ReportingFrequency::Hourly); @@ -5681,13 +5659,13 @@ void SetupOutputVariable(std::string const &VariableName, // String Na } } - IndexType = ValidateIndexType(IndexTypeKey, "SetupOutputVariable"); + TimeStepType = ValidateTimeStepType(TimeStepTypeKey, "SetupOutputVariable"); VariableType = validateVariableType(VariableTypeKey); if (present(customUnitName)) { - AddToOutputVariableList(VarName, IndexType, VariableType, VarType_Real, VariableUnit, customUnitName); + AddToOutputVariableList(VarName, TimeStepType, VariableType, VarType_Real, VariableUnit, customUnitName); } else { - AddToOutputVariableList(VarName, IndexType, VariableType, VarType_Real, VariableUnit); + AddToOutputVariableList(VarName, TimeStepType, VariableType, VarType_Real, VariableUnit); } ++NumTotalRVariable; @@ -5704,7 +5682,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na ReallocateRVar(); } CV = NumOfRVariable; - RVariableTypes(CV).IndexType = IndexType; + RVariableTypes(CV).timeStepType = TimeStepType; RVariableTypes(CV).storeType = VariableType; RVariableTypes(CV).VarName = KeyedValue + ':' + VarName; RVariableTypes(CV).VarNameOnly = VarName; @@ -5788,11 +5766,11 @@ void SetupOutputVariable(std::string const &VariableName, // String Na RVariable().storeType, RVariable().ReportID, localIndexGroupKey, - IndexTypeKey, + TimeStepTypeKey, RVariable().ReportIDChr, KeyedValue, VarName, - RVariableTypes(CV).IndexType, + RVariableTypes(CV).timeStepType, RVariableTypes(CV).units, RVariableTypes(CV).unitNameCustomEMS, ReqRepVars(ReportList(Loop)).SchedName); @@ -5801,11 +5779,11 @@ void SetupOutputVariable(std::string const &VariableName, // String Na RVariable().storeType, RVariable().ReportID, localIndexGroupKey, - IndexTypeKey, + TimeStepTypeKey, RVariable().ReportIDChr, KeyedValue, VarName, - RVariableTypes(CV).IndexType, + RVariableTypes(CV).timeStepType, RVariableTypes(CV).units, RVariableTypes(CV).unitNameCustomEMS); } @@ -5816,7 +5794,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na void SetupOutputVariable(std::string const &VariableName, // String Name of variable OutputProcessor::Unit const &VariableUnit, // Actual units corresponding to the actual variable int &ActualVariable, // Actual Variable, used to set up pointer - std::string const &IndexTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 + std::string const &TimeStepTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 std::string const &VariableTypeKey, // State, Average=1, NonState, Sum=2 std::string const &KeyedValue, // Associated Key for this variable Optional_string_const ReportFreq, // Internal use -- causes reporting at this freqency @@ -5846,7 +5824,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na int CV; std::string IDOut; // CHARACTER(len=MaxNameLength) :: VariableNamewithUnits ! Variable name with units std format - int IndexType; // 1=TimeStepZone, 2=TimeStepSys + TimeStepType TimeStepType; // 1=TimeStepZone, 2=TimeStepSys StoreType VariableType; // 1=Average, 2=Sum, 3=Min/Max int localIndexGroupKey; bool ThisOneOnTheList; @@ -5880,10 +5858,10 @@ void SetupOutputVariable(std::string const &VariableName, // String Na if (Loop == 1) ++NumOfIVariable_Setup; - IndexType = ValidateIndexType(IndexTypeKey, "SetupOutputVariable"); + TimeStepType = ValidateTimeStepType(TimeStepTypeKey, "SetupOutputVariable"); VariableType = validateVariableType(VariableTypeKey); - AddToOutputVariableList(VarName, IndexType, VariableType, VarType_Integer, VariableUnit); + AddToOutputVariableList(VarName, TimeStepType, VariableType, VarType_Integer, VariableUnit); ++NumTotalIVariable; if (!ThisOneOnTheList) continue; @@ -5897,7 +5875,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na } CV = NumOfIVariable; - IVariableTypes(CV).IndexType = IndexType; + IVariableTypes(CV).timeStepType = TimeStepType; IVariableTypes(CV).storeType = VariableType; IVariableTypes(CV).VarName = KeyedValue + ':' + VarName; IVariableTypes(CV).VarNameOnly = VarName; @@ -5953,11 +5931,11 @@ void SetupOutputVariable(std::string const &VariableName, // String Na IVariable().storeType, IVariable().ReportID, localIndexGroupKey, - IndexTypeKey, + TimeStepTypeKey, IVariable().ReportIDChr, KeyedValue, VarName, - IVariableTypes(CV).IndexType, + IVariableTypes(CV).timeStepType, IVariableTypes(CV).units, ReqRepVars(ReportList(Loop)).SchedName); } else { @@ -5965,11 +5943,11 @@ void SetupOutputVariable(std::string const &VariableName, // String Na IVariable().storeType, IVariable().ReportID, localIndexGroupKey, - IndexTypeKey, + TimeStepTypeKey, IVariable().ReportIDChr, KeyedValue, VarName, - IVariableTypes(CV).IndexType, + IVariableTypes(CV).timeStepType, IVariableTypes(CV).units); } } @@ -5979,7 +5957,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na void SetupOutputVariable(std::string const &VariableName, // String Name of variable OutputProcessor::Unit const &VariableUnit, // Actual units corresponding to the actual variable Real64 &ActualVariable, // Actual Variable, used to set up pointer - std::string const &IndexTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 + std::string const &TimeStepTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 std::string const &VariableTypeKey, // State, Average=1, NonState, Sum=2 int const KeyedValue, // Associated Key for this variable Optional_string_const ReportFreq, // Internal use -- causes reporting at this freqency @@ -6036,7 +6014,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na SetupOutputVariable(VariableName, VariableUnit, ActualVariable, - IndexTypeKey, + TimeStepTypeKey, VariableTypeKey, IDOut, ReportFreq, @@ -6050,7 +6028,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na indexGroupKey); } -void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update (Zone, HVAC) +void UpdateDataandReport(OutputProcessor::TimeStepType const t_TimeStepTypeKey) // What kind of data to update (Zone, HVAC) { // SUBROUTINE INFORMATION: @@ -6098,7 +6076,6 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update // SUBROUTINE LOCAL VARIABLE DECLARATIONS: int Loop; // Loop Variable - int IndexType; // Translate Zone=>1, HVAC=>2 Real64 CurVal; // Current value for real variables Real64 ICurVal; // Current value for integer variables int MDHM; // Month,Day,Hour,Minute @@ -6115,235 +6092,229 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update static bool EndTimeStepFlag(false); // True when it's the end of the Zone Time Step Real64 rxTime; // (MinuteNow-StartMinute)/REAL(MinutesPerTimeStep,r64) - for execution time - IndexType = IndexTypeKey; - if (IndexType != ZoneTSReporting && IndexType != HVACTSReporting) { + if (t_TimeStepTypeKey != TimeStepType::TimeStepZone && t_TimeStepTypeKey != TimeStepType::TimeStepSystem) { ShowFatalError("Invalid reporting requested -- UpdateDataAndReport"); } - if ((IndexType >= ZoneVar) && (IndexType <= HVACVar)) { - - // Basic record keeping and report out if "detailed" - - StartMinute = TimeValue(IndexType).CurMinute; - TimeValue(IndexType).CurMinute += TimeValue(IndexType).TimeStep * 60.0; - if (IndexType == HVACVar && TimeValue(HVACVar).CurMinute == TimeValue(ZoneVar).CurMinute) { - EndTimeStepFlag = true; - } else if (IndexType == ZoneVar) { - EndTimeStepFlag = true; - } else { - EndTimeStepFlag = false; - } - MinuteNow = TimeValue(IndexType).CurMinute; + // Basic record keeping and report out if "detailed" + StartMinute = TimeValue.at(t_TimeStepTypeKey).CurMinute; + TimeValue.at(t_TimeStepTypeKey).CurMinute += TimeValue.at(t_TimeStepTypeKey).TimeStep * 60.0; + if (t_TimeStepTypeKey == TimeStepType::TimeStepSystem && + (TimeValue.at(TimeStepType::TimeStepSystem).CurMinute == TimeValue.at(TimeStepType::TimeStepZone).CurMinute)) { + EndTimeStepFlag = true; + } else if (t_TimeStepTypeKey == TimeStepType::TimeStepZone) { + EndTimeStepFlag = true; + } else { + EndTimeStepFlag = false; + } + MinuteNow = TimeValue.at(t_TimeStepTypeKey).CurMinute; - EncodeMonDayHrMin(MDHM, Month, DayOfMonth, HourOfDay, int(MinuteNow)); - TimePrint = true; + EncodeMonDayHrMin(MDHM, Month, DayOfMonth, HourOfDay, int(MinuteNow)); + TimePrint = true; - rxTime = (MinuteNow - StartMinute) / double(MinutesPerTimeStep); + rxTime = (MinuteNow - StartMinute) / double(MinutesPerTimeStep); - if (ResultsFramework::OutputSchema->timeSeriesEnabled()) { - // R and I data frames for ZoneVar - if (IndexType == ZoneVar && !ResultsFramework::OutputSchema->RIDetailedZoneTSData.rVariablesScanned()) { - ResultsFramework::OutputSchema->initializeRTSDataFrame(ReportingFrequency::EachCall, RVariableTypes, NumOfRVariable, ZoneVar); - } - if (IndexType == ZoneVar && !ResultsFramework::OutputSchema->RIDetailedZoneTSData.iVariablesScanned()) { - ResultsFramework::OutputSchema->initializeITSDataFrame(ReportingFrequency::EachCall, IVariableTypes, NumOfIVariable, ZoneVar); - } + if (ResultsFramework::OutputSchema->timeSeriesEnabled()) { + // R and I data frames for TimeStepType::TimeStepZone + if (t_TimeStepTypeKey == TimeStepType::TimeStepZone && !ResultsFramework::OutputSchema->RIDetailedZoneTSData.rVariablesScanned()) { + ResultsFramework::OutputSchema->initializeRTSDataFrame(ReportingFrequency::EachCall, RVariableTypes, NumOfRVariable, TimeStepType::TimeStepZone); + } + if (t_TimeStepTypeKey == TimeStepType::TimeStepZone && !ResultsFramework::OutputSchema->RIDetailedZoneTSData.iVariablesScanned()) { + ResultsFramework::OutputSchema->initializeITSDataFrame(ReportingFrequency::EachCall, IVariableTypes, NumOfIVariable, TimeStepType::TimeStepZone); + } - // R and I data frames for HVACVar - if (IndexType == HVACVar && !ResultsFramework::OutputSchema->RIDetailedHVACTSData.rVariablesScanned()) { - ResultsFramework::OutputSchema->initializeRTSDataFrame(ReportingFrequency::EachCall, RVariableTypes, NumOfRVariable, HVACVar); - } - if (IndexType == HVACVar && !ResultsFramework::OutputSchema->RIDetailedHVACTSData.iVariablesScanned()) { - ResultsFramework::OutputSchema->initializeITSDataFrame(ReportingFrequency::EachCall, IVariableTypes, NumOfIVariable, HVACVar); - } + // R and I data frames for TimeStepType::TimeStepSystem + if (t_TimeStepTypeKey == TimeStepType::TimeStepSystem && !ResultsFramework::OutputSchema->RIDetailedHVACTSData.rVariablesScanned()) { + ResultsFramework::OutputSchema->initializeRTSDataFrame(ReportingFrequency::EachCall, RVariableTypes, NumOfRVariable, TimeStepType::TimeStepSystem); + } + if (t_TimeStepTypeKey == TimeStepType::TimeStepSystem && !ResultsFramework::OutputSchema->RIDetailedHVACTSData.iVariablesScanned()) { + ResultsFramework::OutputSchema->initializeITSDataFrame(ReportingFrequency::EachCall, IVariableTypes, NumOfIVariable, TimeStepType::TimeStepSystem); } + } - if (ResultsFramework::OutputSchema->timeSeriesEnabled()) { - if (IndexType == ZoneVar) { - ResultsFramework::OutputSchema->RIDetailedZoneTSData.newRow(Month, DayOfMonth, HourOfDay, TimeValue(1).CurMinute); - } - if (IndexType == HVACVar) { - ResultsFramework::OutputSchema->RIDetailedHVACTSData.newRow(Month, DayOfMonth, HourOfDay, TimeValue(1).CurMinute); - } + if (ResultsFramework::OutputSchema->timeSeriesEnabled()) { + if (t_TimeStepTypeKey == TimeStepType::TimeStepZone) { + ResultsFramework::OutputSchema->RIDetailedZoneTSData.newRow(Month, DayOfMonth, HourOfDay, TimeValue.at(TimeStepType::TimeStepZone).CurMinute); } + if (t_TimeStepTypeKey == TimeStepType::TimeStepSystem) { + // TODO this was an error probably, was using TimeValue(1) + ResultsFramework::OutputSchema->RIDetailedHVACTSData.newRow(Month, DayOfMonth, HourOfDay, TimeValue.at(TimeStepType::TimeStepSystem).CurMinute); + } + } - // Main "Record Keeping" Loops for R and I variables - for (Loop = 1; Loop <= NumOfRVariable; ++Loop) { - if (RVariableTypes(Loop).IndexType != IndexType) continue; + // Main "Record Keeping" Loops for R and I variables + for (Loop = 1; Loop <= NumOfRVariable; ++Loop) { + if (RVariableTypes(Loop).timeStepType != t_TimeStepTypeKey) continue; - // Act on the RVariables variable - auto &rVar(RVariableTypes(Loop).VarPtr()); - rVar.Stored = true; - if (rVar.storeType == StoreType::Averaged) { - CurVal = rVar.Which * rxTime; - // CALL SetMinMax(RVar%Which,MDHM,RVar%MaxValue,RVar%maxValueDate,RVar%MinValue,RVar%minValueDate) - if (rVar.Which > rVar.MaxValue) { - rVar.MaxValue = rVar.Which; - rVar.maxValueDate = MDHM; - } - if (rVar.Which < rVar.MinValue) { - rVar.MinValue = rVar.Which; - rVar.minValueDate = MDHM; - } - rVar.TSValue += CurVal; - rVar.EITSValue = rVar.TSValue; // CR - 8481 fix - 09/06/2011 - } else { - // CurVal=RVar%Which - if (rVar.Which > rVar.MaxValue) { - rVar.MaxValue = rVar.Which; - rVar.maxValueDate = MDHM; - } - if (rVar.Which < rVar.MinValue) { - rVar.MinValue = rVar.Which; - rVar.minValueDate = MDHM; - } - rVar.TSValue += rVar.Which; - rVar.EITSValue = rVar.TSValue; // CR - 8481 fix - 09/06/2011 - } - - // End of "record keeping" Report if applicable - if (!rVar.Report) continue; - ReportNow = true; - if (rVar.SchedPtr > 0) ReportNow = (GetCurrentScheduleValue(rVar.SchedPtr) != 0.0); // SetReportNow(RVar%SchedPtr) - if (!ReportNow) continue; - rVar.tsStored = true; - if (!rVar.thisTSStored) { - ++rVar.thisTSCount; - rVar.thisTSStored = true; - } - - if (rVar.frequency == ReportingFrequency::EachCall) { - if (TimePrint) { - if (LHourP != HourOfDay || std::abs(LStartMin - StartMinute) > 0.001 || - std::abs(LEndMin - TimeValue(IndexType).CurMinute) > 0.001) { - CurDayType = DayOfWeek; - if (HolidayIndex > 0) { - CurDayType = 7 + HolidayIndex; - } - WriteTimeStampFormatData(eso_stream, - ReportingFrequency::EachCall, - TimeStepStampReportNbr, - TimeStepStampReportChr, - DayOfSim, - DayOfSimChr, - true, - Month, - DayOfMonth, - HourOfDay, - TimeValue(IndexType).CurMinute, - StartMinute, - DSTIndicator, - DayTypes(CurDayType)); - LHourP = HourOfDay; - LStartMin = StartMinute; - LEndMin = TimeValue(IndexType).CurMinute; + // Act on the RVariables variable + auto &rVar(RVariableTypes(Loop).VarPtr()); + rVar.Stored = true; + if (rVar.storeType == StoreType::Averaged) { + CurVal = rVar.Which * rxTime; + // CALL SetMinMax(RVar%Which,MDHM,RVar%MaxValue,RVar%maxValueDate,RVar%MinValue,RVar%minValueDate) + if (rVar.Which > rVar.MaxValue) { + rVar.MaxValue = rVar.Which; + rVar.maxValueDate = MDHM; + } + if (rVar.Which < rVar.MinValue) { + rVar.MinValue = rVar.Which; + rVar.minValueDate = MDHM; + } + rVar.TSValue += CurVal; + rVar.EITSValue = rVar.TSValue; // CR - 8481 fix - 09/06/2011 + } else { + // CurVal=RVar%Which + if (rVar.Which > rVar.MaxValue) { + rVar.MaxValue = rVar.Which; + rVar.maxValueDate = MDHM; + } + if (rVar.Which < rVar.MinValue) { + rVar.MinValue = rVar.Which; + rVar.minValueDate = MDHM; + } + rVar.TSValue += rVar.Which; + rVar.EITSValue = rVar.TSValue; // CR - 8481 fix - 09/06/2011 + } + + // End of "record keeping" Report if applicable + if (!rVar.Report) continue; + ReportNow = true; + if (rVar.SchedPtr > 0) ReportNow = (GetCurrentScheduleValue(rVar.SchedPtr) != 0.0); // SetReportNow(RVar%SchedPtr) + if (!ReportNow) continue; + rVar.tsStored = true; + if (!rVar.thisTSStored) { + ++rVar.thisTSCount; + rVar.thisTSStored = true; + } + + if (rVar.frequency == ReportingFrequency::EachCall) { + if (TimePrint) { + if (LHourP != HourOfDay || std::abs(LStartMin - StartMinute) > 0.001 || + std::abs(LEndMin - TimeValue.at(t_TimeStepTypeKey).CurMinute) > 0.001) { + CurDayType = DayOfWeek; + if (HolidayIndex > 0) { + CurDayType = 7 + HolidayIndex; } - TimePrint = false; + WriteTimeStampFormatData(eso_stream, + ReportingFrequency::EachCall, + TimeStepStampReportNbr, + TimeStepStampReportChr, + DayOfSim, + DayOfSimChr, + true, + Month, + DayOfMonth, + HourOfDay, + TimeValue.at(t_TimeStepTypeKey).CurMinute, + StartMinute, + DSTIndicator, + DayTypes(CurDayType)); + LHourP = HourOfDay; + LStartMin = StartMinute; + LEndMin = TimeValue.at(t_TimeStepTypeKey).CurMinute; } - WriteNumericData(rVar.ReportID, rVar.ReportIDChr, rVar.Which); - ++StdOutputRecordCount; + TimePrint = false; + } + WriteNumericData(rVar.ReportID, rVar.ReportIDChr, rVar.Which); + ++StdOutputRecordCount; - if (ResultsFramework::OutputSchema->timeSeriesEnabled()) { - if (IndexType == ZoneVar) { - ResultsFramework::OutputSchema->RIDetailedZoneTSData.pushVariableValue(rVar.ReportID, rVar.Which); - } - if (IndexType == HVACVar) { - ResultsFramework::OutputSchema->RIDetailedHVACTSData.pushVariableValue(rVar.ReportID, rVar.Which); - } + if (ResultsFramework::OutputSchema->timeSeriesEnabled()) { + if (t_TimeStepTypeKey == TimeStepType::TimeStepZone) { + ResultsFramework::OutputSchema->RIDetailedZoneTSData.pushVariableValue(rVar.ReportID, rVar.Which); + } + if (t_TimeStepTypeKey == TimeStepType::TimeStepSystem) { + ResultsFramework::OutputSchema->RIDetailedHVACTSData.pushVariableValue(rVar.ReportID, rVar.Which); } } } + } - for (Loop = 1; Loop <= NumOfIVariable; ++Loop) { - if (IVariableTypes(Loop).IndexType != IndexType) continue; - - // Act on the IVariables variable - auto &iVar(IVariableTypes(Loop).VarPtr()); - iVar.Stored = true; - // ICurVal=IVar%Which - if (iVar.storeType == StoreType::Averaged) { - ICurVal = iVar.Which * rxTime; - iVar.TSValue += ICurVal; - iVar.EITSValue = iVar.TSValue; // CR - 8481 fix - 09/06/2011 - if (nint(ICurVal) > iVar.MaxValue) { - iVar.MaxValue = nint(ICurVal); // Record keeping for date and time go here too - iVar.maxValueDate = MDHM; //+ TimeValue(IndexType)%TimeStep - } - if (nint(ICurVal) < iVar.MinValue) { - iVar.MinValue = nint(ICurVal); - iVar.minValueDate = MDHM; //+ TimeValue(IndexType)%TimeStep - } - } else { - if (iVar.Which > iVar.MaxValue) { - iVar.MaxValue = iVar.Which; // Record keeping for date and time go here too - iVar.maxValueDate = MDHM; //+ TimeValue(IndexType)%TimeStep - } - if (iVar.Which < iVar.MinValue) { - iVar.MinValue = iVar.Which; - iVar.minValueDate = MDHM; //+ TimeValue(IndexType)%TimeStep - } - iVar.TSValue += iVar.Which; - iVar.EITSValue = iVar.TSValue; // CR - 8481 fix - 09/06/2011 - } - - if (!iVar.Report) continue; - ReportNow = true; - if (iVar.SchedPtr > 0) ReportNow = (GetCurrentScheduleValue(iVar.SchedPtr) != 0.0); // SetReportNow(IVar%SchedPtr) - if (!ReportNow) continue; - iVar.tsStored = true; - if (!iVar.thisTSStored) { - ++iVar.thisTSCount; - iVar.thisTSStored = true; - } - - if (iVar.frequency == ReportingFrequency::EachCall) { - if (TimePrint) { - if (LHourP != HourOfDay || std::abs(LStartMin - StartMinute) > 0.001 || - std::abs(LEndMin - TimeValue(IndexType).CurMinute) > 0.001) { - CurDayType = DayOfWeek; - if (HolidayIndex > 0) { - CurDayType = 7 + HolidayIndex; - } - WriteTimeStampFormatData(eso_stream, - ReportingFrequency::EachCall, - TimeStepStampReportNbr, - TimeStepStampReportChr, - DayOfSim, - DayOfSimChr, - true, - Month, - DayOfMonth, - HourOfDay, - TimeValue(IndexType).CurMinute, - StartMinute, - DSTIndicator, - DayTypes(CurDayType)); - LHourP = HourOfDay; - LStartMin = StartMinute; - LEndMin = TimeValue(IndexType).CurMinute; + for (Loop = 1; Loop <= NumOfIVariable; ++Loop) { + if (IVariableTypes(Loop).timeStepType != t_TimeStepTypeKey) continue; + + // Act on the IVariables variable + auto &iVar(IVariableTypes(Loop).VarPtr()); + iVar.Stored = true; + // ICurVal=IVar%Which + if (iVar.storeType == StoreType::Averaged) { + ICurVal = iVar.Which * rxTime; + iVar.TSValue += ICurVal; + iVar.EITSValue = iVar.TSValue; // CR - 8481 fix - 09/06/2011 + if (nint(ICurVal) > iVar.MaxValue) { + iVar.MaxValue = nint(ICurVal); // Record keeping for date and time go here too + iVar.maxValueDate = MDHM; //+ TimeValue.at(t_TimeStepTypeKey)%TimeStep + } + if (nint(ICurVal) < iVar.MinValue) { + iVar.MinValue = nint(ICurVal); + iVar.minValueDate = MDHM; //+ TimeValue.at(t_TimeStepTypeKey)%TimeStep + } + } else { + if (iVar.Which > iVar.MaxValue) { + iVar.MaxValue = iVar.Which; // Record keeping for date and time go here too + iVar.maxValueDate = MDHM; //+ TimeValue(TimeStepType)%TimeStep + } + if (iVar.Which < iVar.MinValue) { + iVar.MinValue = iVar.Which; + iVar.minValueDate = MDHM; //+ TimeValue(TimeStepType)%TimeStep + } + iVar.TSValue += iVar.Which; + iVar.EITSValue = iVar.TSValue; // CR - 8481 fix - 09/06/2011 + } + + if (!iVar.Report) continue; + ReportNow = true; + if (iVar.SchedPtr > 0) ReportNow = (GetCurrentScheduleValue(iVar.SchedPtr) != 0.0); // SetReportNow(IVar%SchedPtr) + if (!ReportNow) continue; + iVar.tsStored = true; + if (!iVar.thisTSStored) { + ++iVar.thisTSCount; + iVar.thisTSStored = true; + } + + if (iVar.frequency == ReportingFrequency::EachCall) { + if (TimePrint) { + if (LHourP != HourOfDay || std::abs(LStartMin - StartMinute) > 0.001 || + std::abs(LEndMin - TimeValue.at(t_TimeStepTypeKey).CurMinute) > 0.001) { + CurDayType = DayOfWeek; + if (HolidayIndex > 0) { + CurDayType = 7 + HolidayIndex; } - TimePrint = false; + WriteTimeStampFormatData(eso_stream, + ReportingFrequency::EachCall, + TimeStepStampReportNbr, + TimeStepStampReportChr, + DayOfSim, + DayOfSimChr, + true, + Month, + DayOfMonth, + HourOfDay, + TimeValue.at(t_TimeStepTypeKey).CurMinute, + StartMinute, + DSTIndicator, + DayTypes(CurDayType)); + LHourP = HourOfDay; + LStartMin = StartMinute; + LEndMin = TimeValue.at(t_TimeStepTypeKey).CurMinute; } - // only time integer vars actual report as integer only is "detailed" - WriteNumericData(iVar.ReportID, iVar.ReportIDChr, iVar.Which); - ++StdOutputRecordCount; + TimePrint = false; + } + // only time integer vars actual report as integer only is "detailed" + WriteNumericData(iVar.ReportID, iVar.ReportIDChr, iVar.Which); + ++StdOutputRecordCount; - if (ResultsFramework::OutputSchema->timeSeriesEnabled()) { - if (IndexType == ZoneVar) { - ResultsFramework::OutputSchema->RIDetailedZoneTSData.pushVariableValue(iVar.ReportID, iVar.Which); - } - if (IndexType == HVACVar) { - ResultsFramework::OutputSchema->RIDetailedHVACTSData.pushVariableValue(iVar.ReportID, iVar.Which); - } + if (ResultsFramework::OutputSchema->timeSeriesEnabled()) { + if (t_TimeStepTypeKey == TimeStepType::TimeStepZone) { + ResultsFramework::OutputSchema->RIDetailedZoneTSData.pushVariableValue(iVar.ReportID, iVar.Which); + } + if (t_TimeStepTypeKey == TimeStepType::TimeStepSystem) { + ResultsFramework::OutputSchema->RIDetailedHVACTSData.pushVariableValue(iVar.ReportID, iVar.Which); } } } - - } else { - ShowSevereError("Illegal Index passed to Report Variables"); } - if (IndexType == HVACVar) return; // All other stuff happens at the "zone" time step call to this routine. + if (t_TimeStepTypeKey == TimeStepType::TimeStepSystem) return; // All other stuff happens at the "zone" time step call to this routine. // TimeStep Block (Report on Zone TimeStep) @@ -6355,12 +6326,12 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update if (!ResultsFramework::OutputSchema->RITimestepTSData.iVariablesScanned()) { ResultsFramework::OutputSchema->initializeITSDataFrame(ReportingFrequency::TimeStep, IVariableTypes, NumOfIVariable); } - ResultsFramework::OutputSchema->RITimestepTSData.newRow(Month, DayOfMonth, HourOfDay, TimeValue(1).CurMinute); + ResultsFramework::OutputSchema->RITimestepTSData.newRow(Month, DayOfMonth, HourOfDay, TimeValue.at(TimeStepType::TimeStepZone).CurMinute); } - for (IndexType = 1; IndexType <= 2; ++IndexType) { + for (auto& thisTimeStepType: {TimeStepType::TimeStepZone, TimeStepType::TimeStepSystem}) { // Zone, HVAC for (Loop = 1; Loop <= NumOfRVariable; ++Loop) { - if (RVariableTypes(Loop).IndexType != IndexType) continue; + if (RVariableTypes(Loop).timeStepType != thisTimeStepType) continue; auto &rVar(RVariableTypes(Loop).VarPtr()); // Update meters on the TimeStep (Zone) if (rVar.MeterArrayPtr != 0) { @@ -6392,7 +6363,7 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update if (rVar.frequency == ReportingFrequency::TimeStep) { if (TimePrint) { if (LHourP != HourOfDay || std::abs(LStartMin - StartMinute) > 0.001 || - std::abs(LEndMin - TimeValue(IndexType).CurMinute) > 0.001) { + std::abs(LEndMin - TimeValue.at(thisTimeStepType).CurMinute) > 0.001) { CurDayType = DayOfWeek; if (HolidayIndex > 0) { CurDayType = 7 + HolidayIndex; @@ -6407,13 +6378,13 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update Month, DayOfMonth, HourOfDay, - TimeValue(IndexType).CurMinute, + TimeValue.at(thisTimeStepType).CurMinute, StartMinute, DSTIndicator, DayTypes(CurDayType)); LHourP = HourOfDay; LStartMin = StartMinute; - LEndMin = TimeValue(IndexType).CurMinute; + LEndMin = TimeValue.at(thisTimeStepType).CurMinute; } TimePrint = false; } @@ -6430,7 +6401,7 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update } // Number of R Variables for (Loop = 1; Loop <= NumOfIVariable; ++Loop) { - if (IVariableTypes(Loop).IndexType != IndexType) continue; + if (IVariableTypes(Loop).timeStepType != thisTimeStepType) continue; auto &iVar(IVariableTypes(Loop).VarPtr()); ReportNow = true; if (iVar.SchedPtr > 0) ReportNow = (GetCurrentScheduleValue(iVar.SchedPtr) != 0.0); // SetReportNow(IVar%SchedPtr) @@ -6448,7 +6419,7 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update if (iVar.frequency == ReportingFrequency::TimeStep) { if (TimePrint) { if (LHourP != HourOfDay || std::abs(LStartMin - StartMinute) > 0.001 || - std::abs(LEndMin - TimeValue(IndexType).CurMinute) > 0.001) { + std::abs(LEndMin - TimeValue.at(thisTimeStepType).CurMinute) > 0.001) { CurDayType = DayOfWeek; if (HolidayIndex > 0) { CurDayType = 7 + HolidayIndex; @@ -6463,13 +6434,13 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update Month, DayOfMonth, HourOfDay, - TimeValue(IndexType).CurMinute, + TimeValue.at(thisTimeStepType).CurMinute, StartMinute, DSTIndicator, DayTypes(CurDayType)); LHourP = HourOfDay; LStartMin = StartMinute; - LEndMin = TimeValue(IndexType).CurMinute; + LEndMin = TimeValue.at(thisTimeStepType).CurMinute; } TimePrint = false; } @@ -6488,7 +6459,7 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update UpdateMeters(MDHM); - ReportTSMeters(StartMinute, TimeValue(1).CurMinute, TimePrint, TimePrint); + ReportTSMeters(StartMinute, TimeValue.at(TimeStepType::TimeStepZone).CurMinute, TimePrint, TimePrint); } // TimeStep Block @@ -6526,10 +6497,10 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update ResultsFramework::OutputSchema->RIHourlyTSData.newRow(Month, DayOfMonth, HourOfDay, 0); } - for (IndexType = 1; IndexType <= 2; ++IndexType) { // Zone, HVAC - TimeValue(IndexType).CurMinute = 0.0; + for (auto& thisTimeStepType: {TimeStepType::TimeStepZone, TimeStepType::TimeStepSystem}) { // Zone, HVAC + TimeValue.at(thisTimeStepType).CurMinute = 0.0; for (Loop = 1; Loop <= NumOfRVariable; ++Loop) { - if (RVariableTypes(Loop).IndexType != IndexType) continue; + if (RVariableTypes(Loop).timeStepType != thisTimeStepType) continue; auto &rVar(RVariableTypes(Loop).VarPtr()); // ReportNow=.TRUE. // IF (RVar%SchedPtr > 0) & @@ -6559,7 +6530,7 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update } // Number of R Variables for (Loop = 1; Loop <= NumOfIVariable; ++Loop) { - if (IVariableTypes(Loop).IndexType != IndexType) continue; + if (IVariableTypes(Loop).timeStepType != thisTimeStepType) continue; auto &iVar(IVariableTypes(Loop).VarPtr()); // ReportNow=.TRUE. // IF (IVar%SchedPtr > 0) & @@ -6585,7 +6556,7 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update iVar.thisTSCount = 0; iVar.Value = 0.0; } // Number of I Variables - } // IndexType (Zone or HVAC) + } // thisTimeStepType (Zone or HVAC) ReportHRMeters(TimePrint); @@ -6627,19 +6598,19 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update } NumHoursInMonth += 24; - for (IndexType = 1; IndexType <= 2; ++IndexType) { + for (auto& thisTimeStepType: {TimeStepType::TimeStepZone, TimeStepType::TimeStepSystem}) { // Zone, HVAC for (Loop = 1; Loop <= NumOfRVariable; ++Loop) { - if (RVariableTypes(Loop).IndexType == IndexType) { + if (RVariableTypes(Loop).timeStepType == thisTimeStepType) { WriteRealVariableOutput(RVariableTypes(Loop).VarPtr, ReportingFrequency::Daily); } } // Number of R Variables for (Loop = 1; Loop <= NumOfIVariable; ++Loop) { - if (IVariableTypes(Loop).IndexType == IndexType) { + if (IVariableTypes(Loop).timeStepType == thisTimeStepType) { WriteIntegerVariableOutput(IVariableTypes(Loop).VarPtr, ReportingFrequency::Daily); } } // Number of I Variables - } // Index type (Zone or HVAC) + } // thisTimeStepType (Zone or HVAC) ReportDYMeters(TimePrint); @@ -6668,19 +6639,19 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update NumHoursInSim += NumHoursInMonth; EndMonthFlag = false; - for (IndexType = 1; IndexType <= 2; ++IndexType) { // Zone, HVAC - for (Loop = 1; Loop <= NumOfRVariable; ++Loop) { - if (RVariableTypes(Loop).IndexType == IndexType) { + for (auto& thisTimeStepType: {TimeStepType::TimeStepZone, TimeStepType::TimeStepSystem}) { // Zone, HVAC + for (Loop = 1; Loop <= NumOfRVariable; ++Loop) { + if (RVariableTypes(Loop).timeStepType == thisTimeStepType) { WriteRealVariableOutput(RVariableTypes(Loop).VarPtr, ReportingFrequency::Monthly); } } // Number of R Variables for (Loop = 1; Loop <= NumOfIVariable; ++Loop) { - if (IVariableTypes(Loop).IndexType == IndexType) { + if (IVariableTypes(Loop).timeStepType == thisTimeStepType) { WriteIntegerVariableOutput(IVariableTypes(Loop).VarPtr, ReportingFrequency::Monthly); } } // Number of I Variables - } // IndexType (Zone, HVAC) + } // thisTimeStepType (Zone, HVAC) ReportMNMeters(TimePrint); @@ -6704,19 +6675,19 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update } ResultsFramework::OutputSchema->RIRunPeriodTSData.newRow(Month, DayOfMonth, HourOfDay, 0); } - for (IndexType = 1; IndexType <= 2; ++IndexType) { // Zone, HVAC + for (auto& thisTimeStepType: {TimeStepType::TimeStepZone, TimeStepType::TimeStepSystem}) { // Zone, HVAC for (Loop = 1; Loop <= NumOfRVariable; ++Loop) { - if (RVariableTypes(Loop).IndexType == IndexType) { + if (RVariableTypes(Loop).timeStepType == thisTimeStepType) { WriteRealVariableOutput(RVariableTypes(Loop).VarPtr, ReportingFrequency::Simulation); } } // Number of R Variables for (Loop = 1; Loop <= NumOfIVariable; ++Loop) { - if (IVariableTypes(Loop).IndexType == IndexType) { + if (IVariableTypes(Loop).timeStepType == thisTimeStepType) { WriteIntegerVariableOutput(IVariableTypes(Loop).VarPtr, ReportingFrequency::Simulation); } } // Number of I Variables - } // Index Type (Zone, HVAC) + } // thisTimeStepType (Zone, HVAC) ReportSMMeters(TimePrint); @@ -6729,19 +6700,19 @@ void UpdateDataandReport(int const IndexTypeKey) // What kind of data to update WriteYearlyTimeStamp(eso_stream, YearlyStampReportChr, DataGlobals::CalendarYearChr, true); TimePrint = false; } - for (IndexType = 1; IndexType <= 2; ++IndexType) { // Zone, HVAC + for (auto& thisTimeStepType: {TimeStepType::TimeStepZone, TimeStepType::TimeStepSystem}) { // Zone, HVAC for (Loop = 1; Loop <= NumOfRVariable; ++Loop) { - if (RVariableTypes(Loop).IndexType == IndexType) { + if (RVariableTypes(Loop).timeStepType == thisTimeStepType) { WriteRealVariableOutput(RVariableTypes(Loop).VarPtr, ReportingFrequency::Yearly); } } // Number of R Variables for (Loop = 1; Loop <= NumOfIVariable; ++Loop) { - if (IVariableTypes(Loop).IndexType == IndexType) { + if (IVariableTypes(Loop).timeStepType == thisTimeStepType) { WriteIntegerVariableOutput(IVariableTypes(Loop).VarPtr, ReportingFrequency::Yearly); } } // Number of I Variables - } // Index Type (Zone, HVAC) + } // thisTimeStepType (Zone, HVAC) ReportYRMeters(TimePrint); @@ -7656,7 +7627,7 @@ Real64 GetCurrentMeterValue(int const MeterNumber) // Which Meter Number (from G } Real64 GetInstantMeterValue(int const MeterNumber, // Which Meter Number (from GetMeterIndex) - int const IndexType // Whether this is zone of HVAC + OutputProcessor::TimeStepType const t_timeStepType // Whether this is zone of HVAC ) { @@ -7668,7 +7639,7 @@ Real64 GetInstantMeterValue(int const MeterNumber, // Which Meter Number (from G // PURPOSE OF THIS FUNCTION: // This function returns the Instantaneous meter value (timestep) for the meter number indicated - // using IndexType to differentiate between Zone and HVAC values. + // using TimeStepType to differentiate between Zone and HVAC values. // METHODOLOGY EMPLOYED: // Uses internal EnergyMeters structure to get value. @@ -7735,8 +7706,8 @@ Real64 GetInstantMeterValue(int const MeterNumber, // Which Meter Number (from G } for (int Loop = cache_beg; Loop <= cache_end; ++Loop) { auto &r_var_loop(RVariableTypes(InstMeterCache(Loop))); - // Separate the Zone variables from the HVAC variables using IndexType - if (r_var_loop.IndexType == IndexType) { + // Separate the Zone variables from the HVAC variables using TimeStepType + if (r_var_loop.timeStepType == t_timeStepType) { auto &rVar(r_var_loop.VarPtr()); // Add to the total all of the appropriate variables InstantMeterValue += rVar.Which * rVar.ZoneMult * rVar.ZoneListMult; @@ -7751,8 +7722,8 @@ Real64 GetInstantMeterValue(int const MeterNumber, // Which Meter Number (from G auto const &var_meter_on(VarMeterArrays(Loop).OnMeters); for (int Meter = 1, Meter_end = VarMeterArrays(Loop).NumOnMeters; Meter <= Meter_end; ++Meter) { if (var_meter_on(Meter) == energy_meter.SourceMeter) { - // Separate the Zone variables from the HVAC variables using IndexType - if (r_var_loop.IndexType == IndexType) { + // Separate the Zone variables from the HVAC variables using TimeStepType + if (r_var_loop.timeStepType == t_timeStepType) { auto &rVar(r_var_loop.VarPtr()); // Add to the total all of the appropriate variables InstantMeterValue += rVar.Which * rVar.ZoneMult * rVar.ZoneListMult; @@ -7764,8 +7735,8 @@ Real64 GetInstantMeterValue(int const MeterNumber, // Which Meter Number (from G auto const &var_meter_on_custom(VarMeterArrays(Loop).OnCustomMeters); for (int Meter = 1, Meter_end = VarMeterArrays(Loop).NumOnCustomMeters; Meter <= Meter_end; ++Meter) { if (var_meter_on_custom(Meter) == energy_meter.SourceMeter) { - // Separate the Zone variables from the HVAC variables using IndexType - if (r_var_loop.IndexType == IndexType) { + // Separate the Zone variables from the HVAC variables using TimeStepType + if (r_var_loop.timeStepType == t_timeStepType) { auto &rVar(r_var_loop.VarPtr()); // Add to the total all of the appropriate variables InstantMeterValue += rVar.Which * rVar.ZoneMult * rVar.ZoneListMult; @@ -7781,8 +7752,8 @@ Real64 GetInstantMeterValue(int const MeterNumber, // Which Meter Number (from G auto const &var_meter_on(VarMeterArrays(Loop).OnMeters); for (int Meter = 1, Meter_end = VarMeterArrays(Loop).NumOnMeters; Meter <= Meter_end; ++Meter) { if (var_meter_on(Meter) == MeterNumber) { - // Separate the Zone variables from the HVAC variables using IndexType - if (r_var_loop.IndexType == IndexType) { + // Separate the Zone variables from the HVAC variables using TimeStepType + if (r_var_loop.timeStepType == t_timeStepType) { auto &rVar(r_var_loop.VarPtr()); // Add to the total all of the appropriate variables InstantMeterValue -= rVar.Which * rVar.ZoneMult * rVar.ZoneListMult; @@ -7794,8 +7765,8 @@ Real64 GetInstantMeterValue(int const MeterNumber, // Which Meter Number (from G auto const &var_meter_on_custom(VarMeterArrays(Loop).OnCustomMeters); for (int Meter = 1, Meter_end = VarMeterArrays(Loop).NumOnCustomMeters; Meter <= Meter_end; ++Meter) { if (var_meter_on_custom(Meter) == MeterNumber) { - // Separate the Zone variables from the HVAC variables using IndexType - if (r_var_loop.IndexType == IndexType) { + // Separate the Zone variables from the HVAC variables using TimeStepType + if (r_var_loop.timeStepType == t_timeStepType) { auto &rVar(r_var_loop.VarPtr()); // Add to the total all of the appropriate variables InstantMeterValue -= rVar.Which * rVar.ZoneMult * rVar.ZoneListMult; @@ -8071,7 +8042,7 @@ void GetMeteredVariables(std::string const &ComponentType, // Given Co std::string const &ComponentName, // Given Component Name (user defined) Array1S_int VarIndexes, // Variable Numbers Array1S_int VarTypes, // Variable Types (1=integer, 2=real, 3=meter) - Array1S_int IndexTypes, // Variable Index Types (1=Zone,2=HVAC) + Array1A TimeStepTypes, // Variable Index Types (1=Zone,2=HVAC) Array1A unitsForVar, // units from enum for each variable Array1S_int ResourceTypes, // ResourceTypes for each variable Optional EndUses, // EndUses for each variable @@ -8118,7 +8089,7 @@ void GetMeteredVariables(std::string const &ComponentType, // Given Co ++NumVariables; VarIndexes(NumVariables) = Loop; VarTypes(NumVariables) = 2; - IndexTypes(NumVariables) = RVariableTypes(Loop).IndexType; + TimeStepTypes(NumVariables) = RVariableTypes(Loop).timeStepType; unitsForVar(NumVariables) = RVariableTypes(Loop).units; ResourceTypes(NumVariables) = AssignResourceTypeNum(UtilityRoutines::MakeUPPERCase(EnergyMeters(MeterPtr).ResourceType)); @@ -8128,7 +8099,7 @@ void GetMeteredVariables(std::string const &ComponentType, // Given Co if (present(EndUses)) { for (MeterNum = 1; MeterNum <= NumOnMeterPtr; ++MeterNum) { MeterPtr = VarMeterArrays(rVar.MeterArrayPtr).OnMeters(MeterNum); - if (EnergyMeters(MeterPtr).EndUse != "") { + if (!EnergyMeters(MeterPtr).EndUse.empty()) { EndUses()(NumVariables) = UtilityRoutines::MakeUPPERCase(EnergyMeters(MeterPtr).EndUse); break; } @@ -8137,7 +8108,7 @@ void GetMeteredVariables(std::string const &ComponentType, // Given Co if (present(Groups)) { for (MeterNum = 1; MeterNum <= NumOnMeterPtr; ++MeterNum) { MeterPtr = VarMeterArrays(rVar.MeterArrayPtr).OnMeters(MeterNum); - if (EnergyMeters(MeterPtr).Group != "") { + if (!EnergyMeters(MeterPtr).Group.empty()) { Groups()(NumVariables) = UtilityRoutines::MakeUPPERCase(EnergyMeters(MeterPtr).Group); break; } @@ -8160,7 +8131,7 @@ void GetVariableKeyCountandType(std::string const &varName, // Standa int &numKeys, // Number of keys found int &varType, // 0=not found, 1=integer, 2=real, 3=meter OutputProcessor::StoreType &varAvgSum, // Variable is Averaged=1 or Summed=2 - int &varStepType, // Variable time step is Zone=1 or HVAC=2 + OutputProcessor::TimeStepType &varStepType, // Variable time step is Zone=1 or HVAC=2 OutputProcessor::Unit &varUnits // Units enumeration ) { @@ -8255,7 +8226,7 @@ void GetVariableKeyCountandType(std::string const &varName, // Standa varType = VarType_NotFound; numKeys = 0; varAvgSum = StoreType::Averaged; - varStepType = 0; + varStepType = TimeStepType::TimeStepZone; varUnits = OutputProcessor::Unit::None; Found = false; Duplicate = false; @@ -8290,7 +8261,7 @@ void GetVariableKeyCountandType(std::string const &varName, // Standa } keyVarIndexes(numKeys) = Loop; varAvgSum = DDVariableTypes(ivarNames(VFound)).storeType; - varStepType = DDVariableTypes(ivarNames(VFound)).IndexType; + varStepType = DDVariableTypes(ivarNames(VFound)).timeStepType; varUnits = DDVariableTypes(ivarNames(VFound)).units; } } @@ -8317,7 +8288,7 @@ void GetVariableKeyCountandType(std::string const &varName, // Standa } keyVarIndexes(numKeys) = Loop; varAvgSum = DDVariableTypes(ivarNames(VFound)).storeType; - varStepType = DDVariableTypes(ivarNames(VFound)).IndexType; + varStepType = DDVariableTypes(ivarNames(VFound)).timeStepType; varUnits = DDVariableTypes(ivarNames(VFound)).units; } } @@ -8335,7 +8306,7 @@ void GetVariableKeyCountandType(std::string const &varName, // Standa varType = VarType_Meter; varUnits = EnergyMeters(keyVarIndexes(1)).Units; varAvgSum = StoreType::Summed; - varStepType = ZoneVar; + varStepType = TimeStepType::TimeStepZone; } } @@ -8350,7 +8321,7 @@ void GetVariableKeyCountandType(std::string const &varName, // Standa varType = VarType_Schedule; varUnits = unitStringToEnum(GetScheduleType(keyVarIndexes(1))); varAvgSum = StoreType::Averaged; - varStepType = ZoneVar; + varStepType = TimeStepType::TimeStepZone; } } } @@ -8784,12 +8755,12 @@ void ProduceRDDMDD() // Members int RealIntegerType; // Real= 1, Integer=2 int VarPtr; // pointer to real/integer VariableTypes structures - int IndexType; + int TimeStepType; int StoreType; std::string UnitsString; // Default Constructor - VariableTypes() : RealIntegerType(0), VarPtr(0), IndexType(0), StoreType(0) + VariableTypes() : RealIntegerType(0), VarPtr(0), TimeStepType(0), StoreType(0) { } }; @@ -8802,10 +8773,10 @@ void ProduceRDDMDD() if (DoReport) { ProduceReportVDD = ReportVDD_Yes; - if (VarOption1 == "IDF") { + if (VarOption1 == std::string("IDF")) { ProduceReportVDD = ReportVDD_IDF; } - if (VarOption2 != "") { + if (!VarOption2.empty()) { if (UtilityRoutines::SameString(VarOption2, "Name") || UtilityRoutines::SameString(VarOption2, "AscendingName")) { SortByName = true; } @@ -8859,10 +8830,10 @@ void ProduceRDDMDD() if (ProduceReportVDD == ReportVDD_Yes) { ItemPtr = iVariableNames(Item); if (!DDVariableTypes(ItemPtr).ReportedOnDDFile) { - rdd_stream << StandardIndexTypeKey(DDVariableTypes(ItemPtr).IndexType) << ',' + rdd_stream << StandardTimeStepTypeKey(DDVariableTypes(ItemPtr).timeStepType) << ',' << standardVariableTypeKey(DDVariableTypes(ItemPtr).storeType) << ',' << VariableNames(Item) << unitStringFromDDitem(ItemPtr) << '\n'; - ResultsFramework::OutputSchema->RDD.push_back(StandardIndexTypeKey(DDVariableTypes(ItemPtr).IndexType) + "," + + ResultsFramework::OutputSchema->RDD.push_back(StandardTimeStepTypeKey(DDVariableTypes(ItemPtr).timeStepType) + "," + standardVariableTypeKey(DDVariableTypes(ItemPtr).storeType) + "," + VariableNames(Item) + unitStringFromDDitem(ItemPtr)); DDVariableTypes(ItemPtr).ReportedOnDDFile = true; @@ -8872,10 +8843,10 @@ void ProduceRDDMDD() } else { ItemPtr = DDVariableTypes(ItemPtr).Next; } - rdd_stream << StandardIndexTypeKey(DDVariableTypes(ItemPtr).IndexType) << ',' + rdd_stream << StandardTimeStepTypeKey(DDVariableTypes(ItemPtr).timeStepType) << ',' << standardVariableTypeKey(DDVariableTypes(ItemPtr).storeType) << ',' << VariableNames(Item) << unitStringFromDDitem(ItemPtr) << '\n'; - ResultsFramework::OutputSchema->RDD.push_back(StandardIndexTypeKey(DDVariableTypes(ItemPtr).IndexType) + "," + + ResultsFramework::OutputSchema->RDD.push_back(StandardTimeStepTypeKey(DDVariableTypes(ItemPtr).timeStepType) + "," + standardVariableTypeKey(DDVariableTypes(ItemPtr).storeType) + "," + VariableNames(Item) + unitStringFromDDitem(ItemPtr)); DDVariableTypes(ItemPtr).ReportedOnDDFile = true; @@ -8885,9 +8856,9 @@ void ProduceRDDMDD() ItemPtr = iVariableNames(Item); if (!DDVariableTypes(ItemPtr).ReportedOnDDFile) { rdd_stream << "Output:Variable,*," << VariableNames(Item) << ",hourly; !- " - << StandardIndexTypeKey(DDVariableTypes(ItemPtr).IndexType) << ' ' + << StandardTimeStepTypeKey(DDVariableTypes(ItemPtr).timeStepType) << ' ' << standardVariableTypeKey(DDVariableTypes(ItemPtr).storeType) << unitStringFromDDitem(ItemPtr) << '\n'; - ResultsFramework::OutputSchema->RDD.push_back(StandardIndexTypeKey(DDVariableTypes(ItemPtr).IndexType) + "," + + ResultsFramework::OutputSchema->RDD.push_back(StandardTimeStepTypeKey(DDVariableTypes(ItemPtr).timeStepType) + "," + standardVariableTypeKey(DDVariableTypes(ItemPtr).storeType) + "," + VariableNames(Item) + unitStringFromDDitem(ItemPtr)); DDVariableTypes(ItemPtr).ReportedOnDDFile = true; @@ -8898,9 +8869,9 @@ void ProduceRDDMDD() ItemPtr = DDVariableTypes(ItemPtr).Next; } rdd_stream << "Output:Variable,*," << VariableNames(Item) << ",hourly; !- " - << StandardIndexTypeKey(DDVariableTypes(ItemPtr).IndexType) << ' ' + << StandardTimeStepTypeKey(DDVariableTypes(ItemPtr).timeStepType) << ' ' << standardVariableTypeKey(DDVariableTypes(ItemPtr).storeType) << unitStringFromDDitem(ItemPtr) << '\n'; - ResultsFramework::OutputSchema->RDD.push_back(StandardIndexTypeKey(DDVariableTypes(ItemPtr).IndexType) + "," + + ResultsFramework::OutputSchema->RDD.push_back(StandardTimeStepTypeKey(DDVariableTypes(ItemPtr).timeStepType) + "," + standardVariableTypeKey(DDVariableTypes(ItemPtr).storeType) + "," + VariableNames(Item) + unitStringFromDDitem(ItemPtr)); DDVariableTypes(ItemPtr).ReportedOnDDFile = true; @@ -8946,7 +8917,7 @@ void ProduceRDDMDD() } void AddToOutputVariableList(std::string const &VarName, // Variable Name - int const IndexType, + OutputProcessor::TimeStepType const TimeStepType, OutputProcessor::StoreType const StateType, int const VariableType, OutputProcessor::Unit const unitsForVar, @@ -8999,7 +8970,7 @@ void AddToOutputVariableList(std::string const &VarName, // Variable Name if (NumVariablesForOutput > MaxVariablesForOutput) { DDVariableTypes.redimension(MaxVariablesForOutput += LVarAllocInc); } - DDVariableTypes(NumVariablesForOutput).IndexType = IndexType; + DDVariableTypes(NumVariablesForOutput).timeStepType = TimeStepType; DDVariableTypes(NumVariablesForOutput).storeType = StateType; DDVariableTypes(NumVariablesForOutput).VariableType = VariableType; DDVariableTypes(NumVariablesForOutput).VarNameOnly = VarName; @@ -9022,7 +8993,7 @@ void AddToOutputVariableList(std::string const &VarName, // Variable Name if (NumVariablesForOutput > MaxVariablesForOutput) { DDVariableTypes.redimension(MaxVariablesForOutput += LVarAllocInc); } - DDVariableTypes(NumVariablesForOutput).IndexType = IndexType; + DDVariableTypes(NumVariablesForOutput).timeStepType = TimeStepType; DDVariableTypes(NumVariablesForOutput).storeType = StateType; DDVariableTypes(NumVariablesForOutput).VariableType = VariableType; DDVariableTypes(NumVariablesForOutput).VarNameOnly = VarName; diff --git a/src/EnergyPlus/OutputProcessor.hh b/src/EnergyPlus/OutputProcessor.hh index 515d1c05eda..01c26c3a2fe 100644 --- a/src/EnergyPlus/OutputProcessor.hh +++ b/src/EnergyPlus/OutputProcessor.hh @@ -50,6 +50,7 @@ // C++ Headers #include +#include // ObjexxFCL Headers #include @@ -81,9 +82,6 @@ namespace OutputProcessor { extern int const IMinSetValue; extern int const IMaxSetValue; - extern int const ZoneVar; // Type value for those variables reported on the Zone Time Step - extern int const HVACVar; // Type value for those variables reported on the System Time Step - extern int const VarType_NotFound; // ref: GetVariableKeyCountandType, 0 = not found extern int const VarType_Integer; // ref: GetVariableKeyCountandType, 1 = integer extern int const VarType_Real; // ref: GetVariableKeyCountandType, 2 = real @@ -257,14 +255,21 @@ namespace OutputProcessor { Summed // Type value for "summed" variables }; + enum class TimeStepType + { + TimeStepZone = 1, // Type value for "zone" timestep variables + TimeStepSystem = 2, // Type value for "system" timestep variables + }; + struct TimeSteps { // Members - Reference TimeStep; // Pointer to the Actual Time Step Variable (Zone or HVAC) + Reference TimeStep; // fortran POINTER Pointer to the Actual Time Step Variable (Zone or HVAC) Real64 CurMinute; // Current minute (decoded from real Time Step Value) // Default Constructor TimeSteps() + : CurMinute(0.0) { } }; @@ -341,7 +346,7 @@ namespace OutputProcessor { struct VariableTypeForDDOutput { // Members - int IndexType; // Type whether Zone or HVAC + TimeStepType timeStepType; // Type whether Zone or HVAC StoreType storeType; // Variable Type (Summed/Non-Static or Average/Static) int VariableType; // Integer, Real. int Next; // Next variable of same name (different units) @@ -352,7 +357,7 @@ namespace OutputProcessor { // Default Constructor VariableTypeForDDOutput() - : IndexType(0), storeType(StoreType::Averaged), VariableType(VarType_NotFound), Next(0), ReportedOnDDFile(false), + : timeStepType(TimeStepType::TimeStepZone), storeType(StoreType::Averaged), VariableType(VarType_NotFound), Next(0), ReportedOnDDFile(false), units(OutputProcessor::Unit::None) { } @@ -361,7 +366,7 @@ namespace OutputProcessor { struct RealVariableType { // Members - int IndexType; // Type whether Zone or HVAC + TimeStepType timeStepType; // Type whether Zone or HVAC StoreType storeType; // Variable Type (Summed/Non-Static or Average/Static) int ReportID; // Report variable ID number std::string VarName; // Name of Variable key:variable @@ -374,7 +379,7 @@ namespace OutputProcessor { Reference VarPtr; // Pointer used to real Variables structure // Default Constructor - RealVariableType() : IndexType(0), storeType(StoreType::Averaged), ReportID(0), units(OutputProcessor::Unit::None) + RealVariableType() : timeStepType(TimeStepType::TimeStepZone), storeType(StoreType::Averaged), ReportID(0), units(OutputProcessor::Unit::None) { } }; @@ -382,7 +387,7 @@ namespace OutputProcessor { struct IntegerVariableType { // Members - int IndexType; // Type whether Zone or HVAC + TimeStepType timeStepType; // Type whether Zone or HVAC StoreType storeType; // Variable Type (Summed/Non-Static or Average/Static) int ReportID; // Report variable ID number std::string VarName; // Name of Variable @@ -392,7 +397,7 @@ namespace OutputProcessor { Reference VarPtr; // Pointer used to integer Variables structure // Default Constructor - IntegerVariableType() : IndexType(0), storeType(StoreType::Averaged), ReportID(0), units(OutputProcessor::Unit::None) + IntegerVariableType() : timeStepType(TimeStepType::TimeStepZone), storeType(StoreType::Averaged), ReportID(0), units(OutputProcessor::Unit::None) { } }; @@ -561,7 +566,7 @@ namespace OutputProcessor { }; // Object Data - extern Array1D TimeValue; // Pointers to the actual TimeStep variables + extern std::map TimeValue; // Pointers to the actual TimeStep variables extern Array1D RVariableTypes; // Variable Types structure (use NumOfRVariables to traverse) extern Array1D IVariableTypes; // Variable Types structure (use NumOfIVariables to traverse) extern Array1D DDVariableTypes; // Variable Types structure (use NumVariablesForOutput to traverse) @@ -631,11 +636,11 @@ namespace OutputProcessor { IVariableTypes.redimension(MaxIVariable += IVarAllocInc); } - int ValidateIndexType(std::string const &IndexTypeKey, // Index type (Zone, HVAC) for variables - std::string const &CalledFrom // Routine called from (for error messages) + TimeStepType ValidateTimeStepType(std::string const &TimeStepTypeKey, // Index type (Zone, HVAC) for variables + std::string const &CalledFrom // Routine called from (for error messages) ); - std::string StandardIndexTypeKey(int const IndexType); + std::string StandardTimeStepTypeKey(TimeStepType const timeStepType); StoreType validateVariableType(std::string const &VariableTypeKey); @@ -771,7 +776,7 @@ namespace OutputProcessor { std::string const &reportIDChr, // The reporting ID for the data std::string const &keyedValue, // The key name for the data std::string const &variableName, // The variable's actual name - int const indexType, + TimeStepType const timeStepType, OutputProcessor::Unit const &unitsForVar, // The variables units Optional_string_const customUnitName = _, Optional_string_const ScheduleName = _); @@ -871,6 +876,8 @@ namespace OutputProcessor { std::string unitStringFromDDitem(int const ddItemPtr // index provided for DDVariableTypes ); + std::string timeStepTypeEnumToString(OutputProcessor::TimeStepType const &t_timeStepType); + } // namespace OutputProcessor //============================================================================================== @@ -884,7 +891,7 @@ namespace OutputProcessor { void SetupOutputVariable(std::string const &VariableName, // String Name of variable (with units) OutputProcessor::Unit const &VariableUnit, // Actual units corresponding to the actual variable Real64 &ActualVariable, // Actual Variable, used to set up pointer - std::string const &IndexTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 + std::string const &TimeStepTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 std::string const &VariableTypeKey, // State, Average=1, NonState, Sum=2 std::string const &KeyedValue, // Associated Key for this variable Optional_string_const ReportFreq = _, // Internal use -- causes reporting at this freqency @@ -902,7 +909,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na void SetupOutputVariable(std::string const &VariableName, // String Name of variable OutputProcessor::Unit const &VariableUnit, // Actual units corresponding to the actual variable int &ActualVariable, // Actual Variable, used to set up pointer - std::string const &IndexTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 + std::string const &TimeStepTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 std::string const &VariableTypeKey, // State, Average=1, NonState, Sum=2 std::string const &KeyedValue, // Associated Key for this variable Optional_string_const ReportFreq = _, // Internal use -- causes reporting at this freqency @@ -912,7 +919,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na void SetupOutputVariable(std::string const &VariableName, // String Name of variable OutputProcessor::Unit const &VariableUnit, // Actual units corresponding to the actual variable Real64 &ActualVariable, // Actual Variable, used to set up pointer - std::string const &IndexTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 + std::string const &TimeStepTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2 std::string const &VariableTypeKey, // State, Average=1, NonState, Sum=2 int const KeyedValue, // Associated Key for this variable Optional_string_const ReportFreq = _, // Internal use -- causes reporting at this freqency @@ -926,7 +933,7 @@ void SetupOutputVariable(std::string const &VariableName, // String Na Optional_int_const indexGroupKey = _ // Group identifier for SQL output ); -void UpdateDataandReport(int const IndexTypeKey); // What kind of data to update (Zone, HVAC) +void UpdateDataandReport(OutputProcessor::TimeStepType const TimeStepTypeKey); // What kind of data to update (Zone, HVAC) void AssignReportNumber(int &ReportNumber); @@ -947,7 +954,7 @@ std::string GetMeterResourceType(int const MeterNumber); // Which Meter Number ( Real64 GetCurrentMeterValue(int const MeterNumber); // Which Meter Number (from GetMeterIndex) Real64 GetInstantMeterValue(int const MeterNumber, // Which Meter Number (from GetMeterIndex) - int const IndexType // Whether this is zone of HVAC + OutputProcessor::TimeStepType const TimeStepType // Whether this is zone of HVAC ); void IncrementInstMeterCache(); @@ -968,7 +975,7 @@ void GetMeteredVariables(std::string const &ComponentType, // Given Co std::string const &ComponentName, // Given Component Name (user defined) Array1S_int VarIndexes, // Variable Numbers Array1S_int VarTypes, // Variable Types (1=integer, 2=real, 3=meter) - Array1S_int IndexTypes, // Variable Index Types (1=Zone,2=HVAC) + Array1A TimeStepTypes, // Variable Index Types (1=Zone,2=HVAC), Array1A unitsForVar, // units from enum for each variable Array1S_int ResourceTypes, // ResourceTypes for each variable Optional EndUses = _, // EndUses for each variable @@ -982,7 +989,7 @@ void GetVariableKeyCountandType(std::string const &varName, // Standa int &numKeys, // Number of keys found int &varType, // 0=not found, 1=integer, 2=real, 3=meter OutputProcessor::StoreType &varAvgSum, // Variable is Averaged=1 or Summed=2 - int &varStepType, // Variable time step is Zone=1 or HVAC=2 + OutputProcessor::TimeStepType &varStepType, // Variable time step is Zone=1 or HVAC=2 OutputProcessor::Unit &varUnits // Units enumeration ); @@ -999,7 +1006,7 @@ void InitPollutionMeterReporting(std::string const &ReportFreqName); void ProduceRDDMDD(); void AddToOutputVariableList(std::string const &VarName, // Variable Name - int const IndexType, + OutputProcessor::TimeStepType const TimeStepType, OutputProcessor::StoreType const StateType, int const VariableType, OutputProcessor::Unit const unitsForVar, diff --git a/src/EnergyPlus/OutputReportData.cc b/src/EnergyPlus/OutputReportData.cc index fe5ca1be51d..2f484fe18cd 100644 --- a/src/EnergyPlus/OutputReportData.cc +++ b/src/EnergyPlus/OutputReportData.cc @@ -73,7 +73,7 @@ AnnualFieldSet::AnnualFieldSet(std::string varName, AnnualFieldSet::AggregationK int AnnualFieldSet::getVariableKeyCountandTypeFromFldSt(int &typeVar, OutputProcessor::StoreType &avgSumVar, - int &stepTypeVar, + OutputProcessor::TimeStepType &stepTypeVar, OutputProcessor::Unit &unitsVar) { int numkeys; diff --git a/src/EnergyPlus/OutputReportData.hh b/src/EnergyPlus/OutputReportData.hh index d3f28574f8f..2dc92463ead 100644 --- a/src/EnergyPlus/OutputReportData.hh +++ b/src/EnergyPlus/OutputReportData.hh @@ -116,7 +116,8 @@ public: std::vector m_timeInBin; // amount of time in each bin (usually 10 bins) }; - int getVariableKeyCountandTypeFromFldSt(int &typeVar, OutputProcessor::StoreType &avgSumVar, int &stepTypeVar, OutputProcessor::Unit &unitsVar); + int getVariableKeyCountandTypeFromFldSt(int &typeVar, OutputProcessor::StoreType &avgSumVar, + OutputProcessor::TimeStepType &stepTypeVar, OutputProcessor::Unit &unitsVar); void getVariableKeysFromFldSt(int &typeVar, int keyCount, std::vector &namesOfKeys, std::vector &indexesForKeyVar); @@ -128,7 +129,7 @@ public: int m_typeOfVar; // 0=not found, 1=integer, 2=real, 3=meter int m_keyCount; OutputProcessor::StoreType m_varAvgSum; // Variable is Averaged=1 or Summed=2 - int m_varStepType; // Variable time step is Zone=1 or HVAC=2 + OutputProcessor::TimeStepType m_varStepType; // Variable time step is Zone=1 or HVAC=2 std::vector m_namesOfKeys; // stored version of name of keys from getVariableKeys std::vector m_indexesForKeyVar; // stored version of name of keys from getVariableKeys std::vector m_cell; // for each row contains the results and details for one cell of the table diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 8b0b685f49f..8849979a83e 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -175,7 +175,6 @@ namespace OutputReportTabular { using DataGlobals::DoOutputReporting; using DataGlobals::DoWeathSim; using DataGlobals::HourOfDay; - using DataGlobals::HVACTSReporting; using DataGlobals::KindOfSim; using DataGlobals::ksDesignDay; using DataGlobals::ksRunPeriodDesign; @@ -187,7 +186,6 @@ namespace OutputReportTabular { using DataGlobals::TimeStep; using DataGlobals::TimeStepZone; using DataGlobals::TimeStepZoneSec; - using DataGlobals::ZoneTSReporting; using namespace DataGlobalConstants; using namespace OutputReportPredefined; using namespace DataHeatBalance; @@ -226,9 +224,6 @@ namespace OutputReportTabular { int const unitsStyleInchPound(4); int const unitsStyleNotFound(5); - int const stepTypeZone(ZoneTSReporting); - int const stepTypeHVAC(HVACTSReporting); - // BEPS Report Related Variables // From Report:Table:Predefined - BEPS int const numResourceTypes(14); @@ -418,7 +413,6 @@ namespace OutputReportTabular { int DesignDayCount(0); // arrays related to pulse and load component reporting - Array2D radiantPulseUsed; Array2D_int radiantPulseTimestep; Array2D radiantPulseReceived; Array3D loadConvectedNormal; @@ -676,7 +670,6 @@ namespace OutputReportTabular { sourceFactorOtherFuel2 = 0.0; DesignDayName.deallocate(); DesignDayCount = 0; - radiantPulseUsed.deallocate(); radiantPulseTimestep.deallocate(); radiantPulseReceived.deallocate(); loadConvectedNormal.deallocate(); @@ -731,7 +724,7 @@ namespace OutputReportTabular { OutputReportTabular::ResetTabularReports(); } - void UpdateTabularReports(int const IndexTypeKey) // What kind of data to update (Zone, HVAC) + void UpdateTabularReports(OutputProcessor::TimeStepType t_timeStepType) // What kind of data to update (Zone, HVAC) { // SUBROUTINE INFORMATION: // AUTHOR Jason Glazer @@ -766,7 +759,7 @@ namespace OutputReportTabular { // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - if (IndexTypeKey != ZoneTSReporting && IndexTypeKey != HVACTSReporting) { + if (t_timeStepType != OutputProcessor::TimeStepType::TimeStepZone && t_timeStepType != OutputProcessor::TimeStepType::TimeStepSystem) { ShowFatalError("Invalid reporting requested -- UpdateTabularReports"); } @@ -789,18 +782,18 @@ namespace OutputReportTabular { date_and_time(_, _, _, td); } if (DoOutputReporting && WriteTabularFiles && (KindOfSim == ksRunPeriodWeather)) { - if (IndexTypeKey == stepTypeZone) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone) { gatherElapsedTimeBEPS += TimeStepZone; } if (DoWeathSim) { - GatherMonthlyResultsForTimestep(IndexTypeKey); - OutputReportTabularAnnual::GatherAnnualResultsForTimeStep(IndexTypeKey); - GatherBinResultsForTimestep(IndexTypeKey); - GatherBEPSResultsForTimestep(IndexTypeKey); - GatherSourceEnergyEndUseResultsForTimestep(IndexTypeKey); - GatherPeakDemandForTimestep(IndexTypeKey); - GatherHeatGainReport(IndexTypeKey); - GatherHeatEmissionReport(IndexTypeKey); + GatherMonthlyResultsForTimestep(t_timeStepType); + OutputReportTabularAnnual::GatherAnnualResultsForTimeStep(t_timeStepType); + GatherBinResultsForTimestep(t_timeStepType); + GatherBEPSResultsForTimestep(t_timeStepType); + GatherSourceEnergyEndUseResultsForTimestep(t_timeStepType); + GatherPeakDemandForTimestep(t_timeStepType); + GatherHeatGainReport(t_timeStepType); + GatherHeatEmissionReport(t_timeStepType); } } } @@ -1099,7 +1092,7 @@ namespace OutputReportTabular { int KeyCount; int TypeVar; OutputProcessor::StoreType AvgSumVar; - int StepTypeVar; + OutputProcessor::TimeStepType StepTypeVar; OutputProcessor::Unit UnitsVar(OutputProcessor::Unit::None); // Units enum // CHARACTER(len=MaxNameLength), DIMENSION(:), ALLOCATABLE :: NamesOfKeys ! Specific key name // INTEGER, DIMENSION(:) , ALLOCATABLE :: IndexesForKeyVar ! Array index @@ -1244,7 +1237,7 @@ namespace OutputReportTabular { e.varNum = 0; e.typeOfVar = 0; e.avgSum = OutputProcessor::StoreType::Averaged; - e.stepType = 0; + e.stepType = OutputProcessor::TimeStepType::TimeStepZone; e.units = OutputProcessor::Unit::None; e.aggType = 0; } @@ -1459,7 +1452,7 @@ namespace OutputReportTabular { MonthlyColumns(mColumn).varNum = 0; MonthlyColumns(mColumn).typeOfVar = 0; MonthlyColumns(mColumn).avgSum = OutputProcessor::StoreType::Averaged; - MonthlyColumns(mColumn).stepType = 0; + MonthlyColumns(mColumn).stepType = OutputProcessor::TimeStepType::TimeStepZone; MonthlyColumns(mColumn).units = OutputProcessor::Unit::None; MonthlyColumns(mColumn).aggType = aggTypeSumOrAvg; } @@ -3917,7 +3910,7 @@ namespace OutputReportTabular { //====================================================================================================================== //====================================================================================================================== - void GatherBinResultsForTimestep(int const IndexTypeKey) // What kind of data to update (Zone, HVAC) + void GatherBinResultsForTimestep(OutputProcessor::TimeStepType t_timeStepType) // What kind of data to update (Zone, HVAC) { // SUBROUTINE INFORMATION: // AUTHOR Jason Glazer @@ -3963,7 +3956,7 @@ namespace OutputReportTabular { Real64 topValue; int binNum; int repIndex; - int curStepType; + OutputProcessor::TimeStepType curStepType; // REAL(r64), external :: GetInternalVariableValue @@ -3994,12 +3987,12 @@ namespace OutputReportTabular { if (gatherThisTime) { for (jTable = 1; jTable <= curNumTables; ++jTable) { repIndex = curResIndex + (jTable - 1); - if (((curStepType == stepTypeZone) && (IndexTypeKey == ZoneTSReporting)) || - ((curStepType == stepTypeHVAC) && (IndexTypeKey == HVACTSReporting))) { + if (((curStepType == OutputProcessor::TimeStepType::TimeStepZone) && (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone)) || + ((curStepType == OutputProcessor::TimeStepType::TimeStepSystem) && (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem))) { // put actual value from OutputProcesser arrays curValue = GetInternalVariableValue(curTypeOfVar, BinObjVarID(repIndex).varMeterNum); // per MJW when a summed variable is used divide it by the length of the time step - if (IndexTypeKey == HVACTSReporting) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { elapsedTime = TimeStepSys; } else { elapsedTime = TimeStepZone; @@ -4045,7 +4038,7 @@ namespace OutputReportTabular { } } - void GatherMonthlyResultsForTimestep(int const IndexTypeKey) // What kind of data to update (Zone, HVAC) + void GatherMonthlyResultsForTimestep(OutputProcessor::TimeStepType t_timeStepType) // What kind of data to update (Zone, HVAC) { // SUBROUTINE INFORMATION: // AUTHOR Jason Glazer @@ -4095,7 +4088,7 @@ namespace OutputReportTabular { // LOGICAL,SAVE :: activeHoursShown=.FALSE. !fix by LKL addressing CR6482 bool activeHoursShown; bool activeNewValue; - int curStepType; + OutputProcessor::TimeStepType curStepType; int minuteCalculated; int kOtherColumn; // variable used in loop to scan through additional columns int scanColumn; @@ -4107,7 +4100,7 @@ namespace OutputReportTabular { // profiling showed that they were slow. static Array1D_int MonthlyColumnsTypeOfVar; - static Array1D_int MonthlyColumnsStepType; + static Array1D MonthlyColumnsStepType; static Array1D_int MonthlyColumnsAggType; static Array1D_int MonthlyColumnsVarNum; static Array1D_int MonthlyTablesNumColumns; @@ -4141,7 +4134,7 @@ namespace OutputReportTabular { } elapsedTime = TimeStepSys; - if (IndexTypeKey == HVACTSReporting) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { elapsedTime = TimeStepSys; } else { elapsedTime = TimeStepZone; @@ -4155,8 +4148,8 @@ namespace OutputReportTabular { curCol = jColumn + curFirstColumn - 1; curTypeOfVar = MonthlyColumnsTypeOfVar(curCol); curStepType = MonthlyColumnsStepType(curCol); - if (((curStepType == stepTypeZone) && (IndexTypeKey == ZoneTSReporting)) || - ((curStepType == stepTypeHVAC) && (IndexTypeKey == HVACTSReporting))) { + if (((curStepType == OutputProcessor::TimeStepType::TimeStepZone) && (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone)) || + ((curStepType == OutputProcessor::TimeStepType::TimeStepSystem) && (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem))) { // the above condition used to include the following prior to new scan method // (MonthlyColumns(curCol)%aggType .EQ. aggTypeValueWhenMaxMin) curVarNum = MonthlyColumnsVarNum(curCol); @@ -4171,9 +4164,9 @@ namespace OutputReportTabular { newDuration = 0.0; activeNewValue = false; // the current timestamp - minuteCalculated = DetermineMinuteForReporting(IndexTypeKey); + minuteCalculated = DetermineMinuteForReporting(t_timeStepType); // minuteCalculated = (CurrentTime - INT(CurrentTime))*60 - // IF (IndexTypeKey .EQ. stepTypeHVAC) minuteCalculated = minuteCalculated + SysTimeElapsed * 60 + // IF (t_timeStepType .EQ. OutputProcessor::TimeStepType::TimeStepSystem) minuteCalculated = minuteCalculated + SysTimeElapsed * 60 // minuteCalculated = INT((TimeStep-1) * TimeStepZone * 60) + INT((SysTimeElapsed + TimeStepSys) * 60) EncodeMonDayHrMin(timestepTimeStamp, Month, DayOfMonth, HourOfDay, minuteCalculated); // perform the selected aggregation type @@ -4191,7 +4184,7 @@ namespace OutputReportTabular { } else if (SELECT_CASE_var == aggTypeMaximum) { // per MJW when a summed variable is used divide it by the length of the time step if (MonthlyColumns(curCol).avgSum == OutputProcessor::StoreType::Summed) { // if it is a summed variable - if (IndexTypeKey == HVACTSReporting) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { curValue /= (TimeStepSys * SecInHour); } else { curValue /= TimeStepZoneSec; @@ -4208,7 +4201,7 @@ namespace OutputReportTabular { } else if (SELECT_CASE_var == aggTypeMinimum) { // per MJW when a summed variable is used divide it by the length of the time step if (MonthlyColumns(curCol).avgSum == OutputProcessor::StoreType::Summed) { // if it is a summed variable - if (IndexTypeKey == HVACTSReporting) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { curValue /= (TimeStepSys * SecInHour); } else { curValue /= TimeStepZoneSec; @@ -4305,7 +4298,7 @@ namespace OutputReportTabular { scanValue = GetInternalVariableValue(scanTypeOfVar, scanVarNum); // When a summed variable is used divide it by the length of the time step if (MonthlyColumns(scanColumn).avgSum == OutputProcessor::StoreType::Summed) { // if it is a summed variable - if (IndexTypeKey == HVACTSReporting) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { scanValue /= (TimeStepSys * SecInHour); } else { scanValue /= TimeStepZoneSec; @@ -4349,7 +4342,7 @@ namespace OutputReportTabular { MonthlyColumns(scanColumn).duration(Month) += elapsedTime; } else if (SELECT_CASE_var == aggTypeMaximumDuringHoursShown) { if (MonthlyColumns(scanColumn).avgSum == OutputProcessor::StoreType::Summed) { // if it is a summed variable - if (IndexTypeKey == HVACTSReporting) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { scanValue /= (TimeStepSys * SecInHour); } else { scanValue /= TimeStepZoneSec; @@ -4361,7 +4354,7 @@ namespace OutputReportTabular { } } else if (SELECT_CASE_var == aggTypeMinimumDuringHoursShown) { if (MonthlyColumns(scanColumn).avgSum == OutputProcessor::StoreType::Summed) { // if it is a summed variable - if (IndexTypeKey == HVACTSReporting) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { scanValue /= (TimeStepSys * SecInHour); } else { scanValue /= TimeStepZoneSec; @@ -4383,7 +4376,7 @@ namespace OutputReportTabular { } } - void GatherBEPSResultsForTimestep(int const IndexTypeKey) // What kind of data to update (Zone, HVAC) + void GatherBEPSResultsForTimestep(OutputProcessor::TimeStepType t_timeStepType) // What kind of data to update (Zone, HVAC) { // SUBROUTINE INFORMATION: // AUTHOR Jason Glazer @@ -4463,7 +4456,7 @@ namespace OutputReportTabular { // if no beps report is called then skip - if ((displayTabularBEPS || displayLEEDSummary) && (IndexTypeKey == stepTypeZone)) { + if ((displayTabularBEPS || displayLEEDSummary) && (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone)) { // add the current time to the total elapsed time // FOLLOWING LINE MOVED TO UPDATETABULARREPORTS because used even when beps is not called // gatherElapsedTimeBEPS = gatherElapsedTimeBEPS + TimeStepZone @@ -4535,7 +4528,7 @@ namespace OutputReportTabular { } } - void GatherSourceEnergyEndUseResultsForTimestep(int const IndexTypeKey) // What kind of data to update (Zone, HVAC) + void GatherSourceEnergyEndUseResultsForTimestep(OutputProcessor::TimeStepType t_timeStepType) // What kind of data to update (Zone, HVAC) { // SUBROUTINE INFORMATION: // AUTHOR Mangesh Basarkar @@ -4624,7 +4617,7 @@ namespace OutputReportTabular { // if no beps by source report is called then skip - if ((displaySourceEnergyEndUseSummary) && (IndexTypeKey == stepTypeZone)) { + if ((displaySourceEnergyEndUseSummary) && (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone)) { // loop through all of the resources and end uses for the entire facility for (iResource = 1; iResource <= numResourceTypes; ++iResource) { @@ -4663,7 +4656,7 @@ namespace OutputReportTabular { } } - void GatherPeakDemandForTimestep(int const IndexTypeKey) // What kind of data to update (Zone, HVAC) + void GatherPeakDemandForTimestep(OutputProcessor::TimeStepType t_timeStepType) // What kind of data to update (Zone, HVAC) { // SUBROUTINE INFORMATION: // AUTHOR Jason Glazer @@ -4748,7 +4741,7 @@ namespace OutputReportTabular { int minuteCalculated; int timestepTimeStamp; - if ((displayDemandEndUse) && (IndexTypeKey == stepTypeZone)) { + if ((displayDemandEndUse) && (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone)) { // loop through all of the resources and end uses for the entire facility for (iResource = 1; iResource <= numResourceTypes; ++iResource) { curMeterNumber = meterNumTotalsBEPS(iResource); @@ -4759,7 +4752,7 @@ namespace OutputReportTabular { gatherDemandTotal(iResource) = curDemandValue; // save the time that the peak demand occurred // minuteCalculated = (CurrentTime - INT(CurrentTime))*60 - minuteCalculated = DetermineMinuteForReporting(IndexTypeKey); + minuteCalculated = DetermineMinuteForReporting(t_timeStepType); EncodeMonDayHrMin(timestepTimeStamp, Month, DayOfMonth, HourOfDay, minuteCalculated); gatherDemandTimeStamp(iResource) = timestepTimeStamp; // if new peak demand is set, then gather all of the end use values at this particular @@ -4784,7 +4777,7 @@ namespace OutputReportTabular { } // gather the peak demands of each individual enduse subcategory for the LEED report - if ((displayLEEDSummary) && (IndexTypeKey == stepTypeZone)) { + if ((displayLEEDSummary) && (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone)) { // loop through all of the resources and end uses for the entire facility for (iResource = 1; iResource <= numResourceTypes; ++iResource) { for (jEndUse = 1; jEndUse <= NumEndUses; ++jEndUse) { @@ -4810,7 +4803,7 @@ namespace OutputReportTabular { } } - void GatherHeatEmissionReport(int const IndexTypeKey) + void GatherHeatEmissionReport(OutputProcessor::TimeStepType t_timeStepType) { // PURPOSE OF THIS SUBROUTINE: // Gathers the data each zone timestep for the heat gain report. @@ -4894,7 +4887,7 @@ namespace OutputReportTabular { if (!displayHeatEmissionsSummary) return; // don't gather data if report isn't requested // Only gather zone report at zone time steps - if (IndexTypeKey == stepTypeZone) { + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone) { BuildingPreDefRep.emiEnvelopConv += SumSurfaceHeatEmission * convertJtoGJ; return; } @@ -5067,7 +5060,7 @@ namespace OutputReportTabular { BuildingPreDefRep.emiHVACRelief + BuildingPreDefRep.emiHVACReject; } - void GatherHeatGainReport(int const IndexTypeKey) // What kind of data to update (Zone, HVAC) + void GatherHeatGainReport(OutputProcessor::TimeStepType t_timeStepType) // What kind of data to update (Zone, HVAC) { // SUBROUTINE INFORMATION: // AUTHOR Jason Glazer @@ -5195,7 +5188,7 @@ namespace OutputReportTabular { if (!reportName(pdrSensibleGain).show) return; // don't gather data if report isn't requested - if (IndexTypeKey == stepTypeZone) return; // only add values over the HVAC timestep basis + if (t_timeStepType == OutputProcessor::TimeStepType::TimeStepZone) return; // only add values over the HVAC timestep basis if (GatherHeatGainReportfirstTime) { radiantHeat.allocate(NumOfZones); @@ -5355,7 +5348,7 @@ namespace OutputReportTabular { // ActualtimeE = ActualTimeS+TimeStepSys // ActualTimeHrS=INT(ActualTimeS) // ActualTimeMin=NINT((ActualtimeE - ActualTimeHrS)*FracToMin) - ActualTimeMin = DetermineMinuteForReporting(IndexTypeKey); + ActualTimeMin = DetermineMinuteForReporting(t_timeStepType); EncodeMonDayHrMin(timestepTimeStamp, Month, DayOfMonth, HourOfDay, ActualTimeMin); ZonePreDefRep(iZone).htPtTimeStamp = timestepTimeStamp; // HVAC Input Sensible Air Heating @@ -5434,7 +5427,7 @@ namespace OutputReportTabular { // ActualtimeE = ActualTimeS+TimeStepSys // ActualTimeHrS=INT(ActualTimeS) // ActualTimeMin=NINT((ActualtimeE - ActualTimeHrS)*FracToMin) - ActualTimeMin = DetermineMinuteForReporting(IndexTypeKey); + ActualTimeMin = DetermineMinuteForReporting(t_timeStepType); EncodeMonDayHrMin(timestepTimeStamp, Month, DayOfMonth, HourOfDay, ActualTimeMin); ZonePreDefRep(iZone).clPtTimeStamp = timestepTimeStamp; // HVAC Input Sensible Air Heating @@ -5525,7 +5518,7 @@ namespace OutputReportTabular { // ActualtimeE = ActualTimeS+TimeStepSys // ActualTimeHrS=INT(ActualTimeS) // ActualTimeMin=NINT((ActualtimeE - ActualTimeHrS)*FracToMin) - ActualTimeMin = DetermineMinuteForReporting(IndexTypeKey); + ActualTimeMin = DetermineMinuteForReporting(t_timeStepType); EncodeMonDayHrMin(timestepTimeStamp, Month, DayOfMonth, HourOfDay, ActualTimeMin); BuildingPreDefRep.htPtTimeStamp = timestepTimeStamp; // reset building level results to zero prior to accumulating across zones @@ -5613,7 +5606,7 @@ namespace OutputReportTabular { // ActualtimeE = ActualTimeS+TimeStepSys // ActualTimeHrS=INT(ActualTimeS) // ActualTimeMin=NINT((ActualtimeE - ActualTimeHrS)*FracToMin) - ActualTimeMin = DetermineMinuteForReporting(IndexTypeKey); + ActualTimeMin = DetermineMinuteForReporting(t_timeStepType); EncodeMonDayHrMin(timestepTimeStamp, Month, DayOfMonth, HourOfDay, ActualTimeMin); BuildingPreDefRep.clPtTimeStamp = timestepTimeStamp; // reset building level results to zero prior to accumulating across zones @@ -12077,8 +12070,6 @@ namespace OutputReportTabular { if (AllocateLoadComponentArraysDoAllocate) { // For many of the following arrays the last dimension is the number of environments and is same as sizing arrays - radiantPulseUsed.allocate({0, TotDesDays + TotRunDesPersDays}, NumOfZones); - radiantPulseUsed = 0.0; radiantPulseTimestep.allocate({0, TotDesDays + TotRunDesPersDays}, NumOfZones); radiantPulseTimestep = 0; radiantPulseReceived.allocate({0, TotDesDays + TotRunDesPersDays}, TotSurfaces); @@ -12197,7 +12188,6 @@ namespace OutputReportTabular { // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - radiantPulseUsed.deallocate(); radiantPulseTimestep.deallocate(); radiantPulseReceived.deallocate(); // need for reporting DEALLOCATE(loadConvectedNormal) @@ -12540,7 +12530,7 @@ namespace OutputReportTabular { // The overall methodology is explained below: // // Determine decay curve - Pulse of radiant heat which is about 5% of lighting and - // equipment input [radiantPulseUsed(iZone)] for a single timestep a few hours after + // equipment input for a single timestep a few hours after // cooling or heat is scheduled on for each zone [radiantPulseTimestep(iZone)]. // The radiant heat received on each wall is stored [radiantPulseReceived(jSurface)]. // The load convected in the normal case [loadConvectedNormal(jSurface, kTime, mode)] @@ -13183,6 +13173,7 @@ namespace OutputReportTabular { powerGenRadIntoSurf = 0.; lightLWRadIntoSurf.allocate(NumOfTimeStepInHour * 24); lightLWRadIntoSurf = 0.; + int radEnclosureNum = Zone(zoneIndex).RadiantEnclosureNum; if (desDaySelected != 0) { @@ -13209,7 +13200,7 @@ namespace OutputReportTabular { // determine for each timestep the amount of radiant heat for each end use absorbed in each surface Real64 QRadThermInAbsMult = - TMULTseq(desDaySelected, kTimeStep, zoneIndex) * ITABSFseq(desDaySelected, kTimeStep, jSurf) * Surface(jSurf).Area; + TMULTseq(desDaySelected, kTimeStep, radEnclosureNum) * ITABSFseq(desDaySelected, kTimeStep, jSurf) * Surface(jSurf).Area; peopleRadIntoSurf(kTimeStep) = peopleRadSeq(desDaySelected, kTimeStep, zoneIndex) * QRadThermInAbsMult; equipRadIntoSurf(kTimeStep) = equipRadSeq(desDaySelected, kTimeStep, zoneIndex) * QRadThermInAbsMult; hvacLossRadIntoSurf(kTimeStep) = hvacLossRadSeq(desDaySelected, kTimeStep, zoneIndex) * QRadThermInAbsMult; diff --git a/src/EnergyPlus/OutputReportTabular.hh b/src/EnergyPlus/OutputReportTabular.hh index 35a05c8eb20..6dfe85d0044 100644 --- a/src/EnergyPlus/OutputReportTabular.hh +++ b/src/EnergyPlus/OutputReportTabular.hh @@ -325,7 +325,6 @@ namespace OutputReportTabular { extern int DesignDayCount; // arrays related to pulse and load component reporting - extern Array2D radiantPulseUsed; extern Array2D_int radiantPulseTimestep; extern Array2D radiantPulseReceived; extern Array3D loadConvectedNormal; @@ -410,7 +409,7 @@ namespace OutputReportTabular { int numTables; int typeOfVar; // 0=not found, 1=integer, 2=real, 3=meter OutputProcessor::StoreType avgSum; // Variable is Averaged=1 or Summed=2 - int stepType; // Variable time step is Zone=1 or HVAC=2 + OutputProcessor::TimeStepType stepType; // Variable time step is Zone=1 or HVAC=2 OutputProcessor::Unit units; // the units enumeration std::string ScheduleName; // the name of the schedule int scheduleIndex; // index to the schedule specified - if no schedule use zero @@ -418,7 +417,7 @@ namespace OutputReportTabular { // Default Constructor OutputTableBinnedType() : intervalStart(0.0), intervalSize(0.0), intervalCount(0), resIndex(0), numTables(0), typeOfVar(0), - avgSum(OutputProcessor::StoreType::Averaged), stepType(0), scheduleIndex(0) + avgSum(OutputProcessor::StoreType::Averaged), stepType(OutputProcessor::TimeStepType::TimeStepZone), scheduleIndex(0) { } }; @@ -501,14 +500,14 @@ namespace OutputReportTabular { int typeOfVar; // 0=not found, 1=integer, 2=real, 3=meter int keyCount; // noel OutputProcessor::StoreType varAvgSum; // Variable is Averaged=1 or Summed=2 - int varStepType; // Variable time step is Zone=1 or HVAC=2 + OutputProcessor::TimeStepType varStepType; // Variable time step is Zone=1 or HVAC=2 Array1D_string NamesOfKeys; // keyNames !noel Array1D_int IndexesForKeyVar; // keyVarIndexes !noel // Default Constructor MonthlyFieldSetInputType() : aggregate(0), varUnits(OutputProcessor::Unit::None), typeOfVar(0), keyCount(0), varAvgSum(OutputProcessor::StoreType::Averaged), - varStepType(1) + varStepType(OutputProcessor::TimeStepType::TimeStepZone) { } }; @@ -534,7 +533,7 @@ namespace OutputReportTabular { int varNum; // variable or meter number int typeOfVar; // 0=not found, 1=integer, 2=real, 3=meter OutputProcessor::StoreType avgSum; // Variable is Averaged=1 or Summed=2 - int stepType; // Variable time step is Zone=1 or HVAC=2 + OutputProcessor::TimeStepType stepType; // Variable time step is Zone=1 or HVAC=2 OutputProcessor::Unit units; // the units string, may be blank int aggType; // index to the type of aggregation (see list of parameters) Array1D reslt; // monthly results @@ -545,7 +544,7 @@ namespace OutputReportTabular { // Default Constructor MonthlyColumnsType() - : varNum(0), typeOfVar(0), avgSum(OutputProcessor::StoreType::Averaged), stepType(0), units(OutputProcessor::Unit::None), aggType(0), + : varNum(0), typeOfVar(0), avgSum(OutputProcessor::StoreType::Averaged), stepType(OutputProcessor::TimeStepType::TimeStepZone), units(OutputProcessor::Unit::None), aggType(0), reslt(12, 0.0), duration(12, 0.0), timeStamp(12, 0), aggForStep(0.0) { } @@ -670,7 +669,7 @@ namespace OutputReportTabular { // Functions void clear_state(); - void UpdateTabularReports(int const IndexTypeKey); // What kind of data to update (Zone, HVAC) + void UpdateTabularReports(OutputProcessor::TimeStepType t_timeStepType); // What kind of data to update (Zone, HVAC) //====================================================================================================================== //====================================================================================================================== @@ -732,19 +731,19 @@ namespace OutputReportTabular { //====================================================================================================================== //====================================================================================================================== - void GatherBinResultsForTimestep(int const IndexTypeKey); // What kind of data to update (Zone, HVAC) + void GatherBinResultsForTimestep(OutputProcessor::TimeStepType t_timeStepType); // What kind of data to update (Zone, HVAC) - void GatherMonthlyResultsForTimestep(int const IndexTypeKey); // What kind of data to update (Zone, HVAC) + void GatherMonthlyResultsForTimestep(OutputProcessor::TimeStepType t_timeStepType); // What kind of data to update (Zone, HVAC) - void GatherBEPSResultsForTimestep(int const IndexTypeKey); // What kind of data to update (Zone, HVAC) + void GatherBEPSResultsForTimestep(OutputProcessor::TimeStepType t_timeStepType); // What kind of data to update (Zone, HVAC) - void GatherSourceEnergyEndUseResultsForTimestep(int const IndexTypeKey); // What kind of data to update (Zone, HVAC) + void GatherSourceEnergyEndUseResultsForTimestep(OutputProcessor::TimeStepType t_timeStepType); // What kind of data to update (Zone, HVAC) - void GatherPeakDemandForTimestep(int const IndexTypeKey); // What kind of data to update (Zone, HVAC) + void GatherPeakDemandForTimestep(OutputProcessor::TimeStepType t_timeStepType); // What kind of data to update (Zone, HVAC) - void GatherHeatGainReport(int const IndexTypeKey); // What kind of data to update (Zone, HVAC) + void GatherHeatGainReport(OutputProcessor::TimeStepType t_timeStepType); // What kind of data to update (Zone, HVAC) - void GatherHeatEmissionReport(int const IndexTypeKey); + void GatherHeatEmissionReport(OutputProcessor::TimeStepType t_timeStepType); //====================================================================================================================== //====================================================================================================================== diff --git a/src/EnergyPlus/OutputReportTabularAnnual.cc b/src/EnergyPlus/OutputReportTabularAnnual.cc index b630ac43688..4cbeadcdcba 100644 --- a/src/EnergyPlus/OutputReportTabularAnnual.cc +++ b/src/EnergyPlus/OutputReportTabularAnnual.cc @@ -176,7 +176,7 @@ namespace OutputReportTabularAnnual { int keyCount = 0; int typeVar = 0; OutputProcessor::StoreType avgSumVar; - int stepTypeVar = 0; + OutputProcessor::TimeStepType stepTypeVar; OutputProcessor::Unit unitsVar = OutputProcessor::Unit::None; Array1D_string namesOfKeys; // keyNames Array1D_int indexesForKeyVar; // keyVarIndexes @@ -304,7 +304,7 @@ namespace OutputReportTabularAnnual { return (missingHourAggError || missingMaxOrMinError); } - void GatherAnnualResultsForTimeStep(int kindOfTimeStep) + void GatherAnnualResultsForTimeStep(OutputProcessor::TimeStepType kindOfTimeStep) { // Jason Glazer, August 2015 // This function is not part of the class but acts as an interface between procedural code and the class by @@ -315,7 +315,7 @@ namespace OutputReportTabularAnnual { } } - void AnnualTable::gatherForTimestep(int kindOfTimeStep) + void AnnualTable::gatherForTimestep(OutputProcessor::TimeStepType kindOfTimeStep) { // Jason Glazer, August 2015 // For each cell of the table, gather the value as indicated by the type of aggregation @@ -337,7 +337,7 @@ namespace OutputReportTabularAnnual { for (unsigned int row = 0; row != m_objectNames.size(); row++) { // loop through by row. for (fldStIt = m_annualFields.begin(); fldStIt != m_annualFields.end(); ++fldStIt) { int curTypeOfVar = fldStIt->m_typeOfVar; - int curStepType = fldStIt->m_varStepType; + OutputProcessor::TimeStepType curStepType = fldStIt->m_varStepType; if (curStepType == kindOfTimeStep) // this is a much simpler conditional than the code in monthly gathering { int curVarNum = fldStIt->m_cell[row].indexesForKeyVar; @@ -601,10 +601,10 @@ namespace OutputReportTabularAnnual { } } - Real64 AnnualTable::getElapsedTime(int kindOfTimeStep) + Real64 AnnualTable::getElapsedTime(OutputProcessor::TimeStepType kindOfTimeStep) { Real64 elapsedTime; - if (kindOfTimeStep == DataGlobals::HVACTSReporting) { + if (kindOfTimeStep == OutputProcessor::TimeStepType::TimeStepZone) { elapsedTime = DataHVACGlobals::TimeStepSys; } else { elapsedTime = DataGlobals::TimeStepZone; @@ -612,10 +612,10 @@ namespace OutputReportTabularAnnual { return elapsedTime; } - Real64 AnnualTable::getSecondsInTimeStep(int kindOfTimeStep) + Real64 AnnualTable::getSecondsInTimeStep(OutputProcessor::TimeStepType kindOfTimeStep) { Real64 secondsInTimeStep; - if (kindOfTimeStep == DataGlobals::HVACTSReporting) { + if (kindOfTimeStep == OutputProcessor::TimeStepType::TimeStepZone) { secondsInTimeStep = DataHVACGlobals::TimeStepSys * DataGlobals::SecInHour; } else { secondsInTimeStep = DataGlobals::TimeStepZoneSec; @@ -1399,7 +1399,7 @@ namespace OutputReportTabularAnnual { ret.push_back(outStr); outStr = std::to_string(static_cast(fldSt.m_varAvgSum)); ret.push_back(outStr); - outStr = std::to_string(fldSt.m_varStepType); + outStr = std::to_string(static_cast(fldSt.m_varStepType)); ret.push_back(outStr); outStr = std::to_string(fldSt.m_aggregate); ret.push_back(outStr); diff --git a/src/EnergyPlus/OutputReportTabularAnnual.hh b/src/EnergyPlus/OutputReportTabularAnnual.hh index 9b33ab80757..11934b8bd3a 100644 --- a/src/EnergyPlus/OutputReportTabularAnnual.hh +++ b/src/EnergyPlus/OutputReportTabularAnnual.hh @@ -76,7 +76,7 @@ namespace OutputReportTabularAnnual { void checkAggregationOrderForAnnual(); - void GatherAnnualResultsForTimeStep(int kindOfTypeStep); + void GatherAnnualResultsForTimeStep(OutputProcessor::TimeStepType kindOfTypeStep); void ResetAnnualGathering(); @@ -115,7 +115,7 @@ namespace OutputReportTabularAnnual { bool invalidAggregationOrder(); - void gatherForTimestep(int kindOfTypeStep); + void gatherForTimestep(OutputProcessor::TimeStepType kindOfTypeStep); void resetGathering(); @@ -142,9 +142,9 @@ namespace OutputReportTabularAnnual { std::vector m_objectNames; // for each row of annual table std::vector m_annualFields; // for each column - Real64 getElapsedTime(int); + Real64 getElapsedTime(OutputProcessor::TimeStepType kindOfTimeStep); - Real64 getSecondsInTimeStep(int); + Real64 getSecondsInTimeStep(OutputProcessor::TimeStepType kindOfTimeStep); void computeBinColumns(); diff --git a/src/EnergyPlus/OutputReports.cc b/src/EnergyPlus/OutputReports.cc index 1e87f3b9705..ce2a2338cda 100644 --- a/src/EnergyPlus/OutputReports.cc +++ b/src/EnergyPlus/OutputReports.cc @@ -1975,6 +1975,10 @@ void DetailsForSurfaces(int const RptType) // (1=Vertices only, 10=Details only, AlgoName = "Window7 Complex Fenestration"; } else if (SELECT_CASE_var == HeatTransferModel_TDD) { AlgoName = "Tubular Daylighting Device"; + } else if (SELECT_CASE_var == HeatTransferModel_AirBoundaryNoHT) { + AlgoName = "Air Boundary - No Heat Transfer"; + } else if (SELECT_CASE_var == HeatTransferModel_AirBoundaryIntWin) { + AlgoName = "Air Boundary - Interior Window"; } } // Default Convection Coefficient Calculation Algorithms @@ -2220,6 +2224,10 @@ void DetailsForSurfaces(int const RptType) // (1=Vertices only, 10=Details only, AlgoName = "Window7 Complex Fenestration"; } else if (SELECT_CASE_var == HeatTransferModel_TDD) { AlgoName = "Tubular Daylighting Device"; + } else if (SELECT_CASE_var == HeatTransferModel_AirBoundaryNoHT) { + AlgoName = "Air Boundary - No Heat Transfer"; + } else if (SELECT_CASE_var == HeatTransferModel_AirBoundaryIntWin) { + AlgoName = "Air Boundary - Interior Window"; } } *eiostream << "HeatTransfer Surface," << Surface(surf).Name << "," << cSurfaceClass(Surface(surf).Class) << "," << BaseSurfName << "," @@ -2500,6 +2508,10 @@ void VRMLOut(std::string &PolygonAction, std::string &ColorScheme) // Do all detached shading surfaces first for (surf = 1; surf <= TotSurfaces; ++surf) { if (Surface(surf).HeatTransSurf) continue; + int constrNum = Surface(surf).Construction; + if (constrNum > 0) { + if (DataHeatBalance::Construct(constrNum).TypeIsAirBoundary) continue; + } if (Surface(surf).Class == SurfaceClass_Shading) continue; if (Surface(surf).Sides == 0) continue; if (Surface(surf).Class == SurfaceClass_Detached_F) colorindex = 3; diff --git a/src/EnergyPlus/PhotovoltaicThermalCollectors.cc b/src/EnergyPlus/PhotovoltaicThermalCollectors.cc index fbdee18ddfc..56a6a77a1fc 100644 --- a/src/EnergyPlus/PhotovoltaicThermalCollectors.cc +++ b/src/EnergyPlus/PhotovoltaicThermalCollectors.cc @@ -139,6 +139,7 @@ namespace PhotovoltaicThermalCollectors { Real64 const SimplePVTWaterSizeFactor(1.905e-5); // [ m3/s/m2 ] average of collectors in SolarCollectors.idf static std::string const BlankString; + static bool GetInputFlag(true); // First time, input is "gotten" // DERIVED TYPE DEFINITIONS: @@ -180,7 +181,6 @@ namespace PhotovoltaicThermalCollectors { using General::TrimSigDigits; // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - static bool GetInputFlag(true); // First time, input is "gotten" if (GetInputFlag) { GetPVTcollectorsInput(); @@ -1411,6 +1411,79 @@ namespace PhotovoltaicThermalCollectors { } } + int GetAirInletNodeNum(std::string const &PVTName, + bool &ErrorsFound + ) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given PVT and returns the air inlet node number. + // If incorrect PVT name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichPVT; + + if (GetInputFlag) { + GetPVTcollectorsInput(); + GetInputFlag = false; + } + + WhichPVT = UtilityRoutines::FindItemInList(PVTName, PVT); + if (WhichPVT != 0) { + NodeNum = PVT(WhichPVT).HVACInletNodeNum; + } else { + ShowSevereError("GetAirInletNodeNum: Could not find SolarCollector FlatPlate PhotovoltaicThermal = \"" + PVTName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + int GetAirOutletNodeNum(std::string const &PVTName, + bool &ErrorsFound + ) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given PVT and returns the air outlet node number. + // If incorrect PVT name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichPVT; + + if (GetInputFlag) { + GetPVTcollectorsInput(); + GetInputFlag = false; + } + + WhichPVT = UtilityRoutines::FindItemInList(PVTName, PVT); + if (WhichPVT != 0) { + NodeNum = PVT(WhichPVT).HVACOutletNodeNum; + } else { + ShowSevereError("GetAirInletNodeNum: Could not find SolarCollector FlatPlate PhotovoltaicThermal = \"" + PVTName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + //===================== Utility/Other routines for module. // Insert as appropriate diff --git a/src/EnergyPlus/PhotovoltaicThermalCollectors.hh b/src/EnergyPlus/PhotovoltaicThermalCollectors.hh index bf1623f59d3..1e94fe0c10d 100644 --- a/src/EnergyPlus/PhotovoltaicThermalCollectors.hh +++ b/src/EnergyPlus/PhotovoltaicThermalCollectors.hh @@ -208,6 +208,13 @@ namespace PhotovoltaicThermalCollectors { void GetPVTThermalPowerProduction(int const PVindex, // index of PV generator (not PVT collector) Real64 &ThermalPower, Real64 &ThermalEnergy); + int GetAirInletNodeNum(std::string const &PVTName, + bool &ErrorsFound + ); + + int GetAirOutletNodeNum(std::string const &PVTName, + bool &ErrorsFound + ); //===================== Utility/Other routines for module. // Insert as appropriate diff --git a/src/EnergyPlus/Plant/MeterData.hh b/src/EnergyPlus/Plant/MeterData.hh index 6a502a8e775..fb1ee5bb223 100644 --- a/src/EnergyPlus/Plant/MeterData.hh +++ b/src/EnergyPlus/Plant/MeterData.hh @@ -63,14 +63,14 @@ namespace DataPlant { int EndUse_CompMode; std::string Group; int ReportVarIndex; - int ReportVarIndexType; + OutputProcessor::TimeStepType ReportVarIndexType; int ReportVarType; Real64 CurMeterReading; // Default Constructor MeterData() - : ReportVarUnits(OutputProcessor::Unit::None), ResourceType(0), EndUse_CompMode(0), ReportVarIndex(0), ReportVarIndexType(0), - ReportVarType(0), CurMeterReading(0.0) + : ReportVarUnits(OutputProcessor::Unit::None), ResourceType(0), EndUse_CompMode(0), ReportVarIndex(0), + ReportVarIndexType(OutputProcessor::TimeStepType::TimeStepZone), ReportVarType(0), CurMeterReading(0.0) { } }; diff --git a/src/EnergyPlus/PollutionModule.cc b/src/EnergyPlus/PollutionModule.cc index 61da93df0a1..0490819c28a 100644 --- a/src/EnergyPlus/PollutionModule.cc +++ b/src/EnergyPlus/PollutionModule.cc @@ -5718,37 +5718,50 @@ namespace PollutionModule { // SUBROUTINE LOCAL VARIABLE DECLARATIONS: FuelType.ElecFacility = - GetInstantMeterValue(FuelType.ElecFacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.ElecFacilityIndex, 2); + GetInstantMeterValue(FuelType.ElecFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.ElecFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.DieselFacility = - GetInstantMeterValue(FuelType.DieselFacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.DieselFacilityIndex, 2); + GetInstantMeterValue(FuelType.DieselFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.DieselFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.PurchCoolFacility = - GetInstantMeterValue(FuelType.PurchCoolFacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.PurchCoolFacilityIndex, 2); + GetInstantMeterValue(FuelType.PurchCoolFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.PurchCoolFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.PurchHeatFacility = - GetInstantMeterValue(FuelType.PurchHeatFacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.PurchHeatFacilityIndex, 2); + GetInstantMeterValue(FuelType.PurchHeatFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.PurchHeatFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.NatGasFacility = - GetInstantMeterValue(FuelType.NatGasFacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.NatGasFacilityIndex, 2); + GetInstantMeterValue(FuelType.NatGasFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.NatGasFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.GasolineFacility = - GetInstantMeterValue(FuelType.GasolineFacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.GasolineFacilityIndex, 2); + GetInstantMeterValue(FuelType.GasolineFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.GasolineFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.CoalFacility = - GetInstantMeterValue(FuelType.CoalFacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.CoalFacilityIndex, 2); + GetInstantMeterValue(FuelType.CoalFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.CoalFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.FuelOil1Facility = - GetInstantMeterValue(FuelType.FuelOil1FacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.FuelOil1FacilityIndex, 2); + GetInstantMeterValue(FuelType.FuelOil1FacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.FuelOil1FacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.FuelOil2Facility = - GetInstantMeterValue(FuelType.FuelOil2FacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.FuelOil2FacilityIndex, 2); + GetInstantMeterValue(FuelType.FuelOil2FacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.FuelOil2FacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.PropaneFacility = - GetInstantMeterValue(FuelType.PropaneFacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.PropaneFacilityIndex, 2); + GetInstantMeterValue(FuelType.PropaneFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.PropaneFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.OtherFuel1Facility = - GetInstantMeterValue(FuelType.OtherFuel1FacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.OtherFuel1FacilityIndex, 2); + GetInstantMeterValue(FuelType.OtherFuel1FacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.OtherFuel1FacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.OtherFuel2Facility = - GetInstantMeterValue(FuelType.OtherFuel2FacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.OtherFuel2FacilityIndex, 2); - FuelType.ElecProducedFacility = GetInstantMeterValue(FuelType.ElecProducedFacilityIndex, 1) * FracTimeStepZone + - GetInstantMeterValue(FuelType.ElecProducedFacilityIndex, 2); + GetInstantMeterValue(FuelType.OtherFuel2FacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.OtherFuel2FacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); + FuelType.ElecProducedFacility = GetInstantMeterValue(FuelType.ElecProducedFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.ElecProducedFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); FuelType.SteamFacility = - GetInstantMeterValue(FuelType.SteamFacilityIndex, 1) * FracTimeStepZone + GetInstantMeterValue(FuelType.SteamFacilityIndex, 2); - FuelType.ElecPurchasedFacility = GetInstantMeterValue(FuelType.ElecPurchasedFacilityIndex, 1) * FracTimeStepZone + - GetInstantMeterValue(FuelType.ElecPurchasedFacilityIndex, 2); - FuelType.ElecSurplusSoldFacility = GetInstantMeterValue(FuelType.ElecSurplusSoldFacilityIndex, 1) * FracTimeStepZone + - GetInstantMeterValue(FuelType.ElecSurplusSoldFacilityIndex, 2); + GetInstantMeterValue(FuelType.SteamFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.SteamFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); + FuelType.ElecPurchasedFacility = GetInstantMeterValue(FuelType.ElecPurchasedFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.ElecPurchasedFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); + FuelType.ElecSurplusSoldFacility = GetInstantMeterValue(FuelType.ElecSurplusSoldFacilityIndex, OutputProcessor::TimeStepType::TimeStepZone) * FracTimeStepZone + + GetInstantMeterValue(FuelType.ElecSurplusSoldFacilityIndex, OutputProcessor::TimeStepType::TimeStepSystem); // Now these fuel types have to be sorted and summed into categories that we have pollution factors for. // The Off-Site Electricity is the total needed by the facility minus the amount generated on-site. diff --git a/src/EnergyPlus/RefrigeratedCase.cc b/src/EnergyPlus/RefrigeratedCase.cc index 41083f2b0da..58cc3e5ca27 100644 --- a/src/EnergyPlus/RefrigeratedCase.cc +++ b/src/EnergyPlus/RefrigeratedCase.cc @@ -2429,6 +2429,13 @@ namespace RefrigeratedCase { ShowContinueError("...invalid curve " + cAlphaFieldNames(AlphaNum) + "=\"" + Alphas(AlphaNum) + "\"."); ErrorsFound = true; } + ErrorsFound |= CurveManager::CheckCurveDims( + WarehouseCoil(CoilID).SHRCorrectionCurvePtr, // Curve index + {3}, // Valid dimensions + RoutineName, // Routine name + CurrentModuleObject, // Object Type + WarehouseCoil(CoilID).Name, // Object Name + cAlphaFieldNames(AlphaNum)); // Field Name // IF(WarehouseCoil(CoilID)%SHRCorrectionCurvePtr == 0) THEN // CALL ShowSevereError(RoutineName//TRIM(CurrentModuleObject)//'="'//TRIM(WarehouseCoil(CoilID)%Name)//& // '", not found '//TRIM(cAlphaFieldNames(AlphaNum))) @@ -3267,7 +3274,7 @@ namespace RefrigeratedCase { // set CondenserType and rated temperature difference (51.7 - 35)C per ARI 460 Condenser(CondNum).CondenserType = RefrigCondenserTypeAir; - HeatReclaimRefrigCondenser(CondNum).SourceType = RefrigCondenserTypeAir; + HeatReclaimRefrigCondenser(CondNum).SourceType = CurrentModuleObject; Condenser(CondNum).RatedDelT = CondARI460DelT; //= 16.7d0 ,Rated sat cond temp - dry bulb air T for air-cooled Condensers, ARI460 Condenser(CondNum).RatedTCondense = CondARI460Tcond; if (Condenser(CondNum).CapCurvePtr > 0) { @@ -3387,7 +3394,7 @@ namespace RefrigeratedCase { // set CondenserType and rated Heat Rejection per ARI 490 rating Condenser(CondNum).CondenserType = RefrigCondenserTypeEvap; - HeatReclaimRefrigCondenser(CondNum).SourceType = RefrigCondenserTypeEvap; + HeatReclaimRefrigCondenser(CondNum).SourceType = CurrentModuleObject; Condenser(CondNum).RatedTCondense = CondARI490Tcond; Condenser(CondNum).RatedDelT = CondARI490DelT; @@ -3614,7 +3621,7 @@ namespace RefrigeratedCase { // set CondenserType and rated Heat Rejection per ARI 450 rating Condenser(CondNum).CondenserType = RefrigCondenserTypeWater; - HeatReclaimRefrigCondenser(CondNum).SourceType = RefrigCondenserTypeWater; + HeatReclaimRefrigCondenser(CondNum).SourceType = CurrentModuleObject; if ((!lNumericBlanks(1)) && (Numbers(1) > 0.0)) { Condenser(CondNum).RatedCapacity = Numbers(1); } else { diff --git a/src/EnergyPlus/ReportSizingManager.cc b/src/EnergyPlus/ReportSizingManager.cc index 0d396243ac0..7b01d8a89a2 100644 --- a/src/EnergyPlus/ReportSizingManager.cc +++ b/src/EnergyPlus/ReportSizingManager.cc @@ -52,6 +52,7 @@ #include // EnergyPlus Headers +#include #include #include #include @@ -74,6 +75,7 @@ #include #include #include +#include #include #include #include @@ -450,7 +452,7 @@ namespace ReportSizingManager { HardSizeNoDesRun = true; } - if (CurSysNum > 0) { + if (CurSysNum > 0 && CurSysNum <= NumPrimaryAirSys) { CheckThisAirSystemForSizing(CurSysNum, SizingDesRunThisAirSys); AirLoopSysFlag = UnitarySysEqSizing(CurSysNum).CoolingCapacity || UnitarySysEqSizing(CurSysNum).HeatingCapacity; // logicals used when parent sizes coil @@ -2547,6 +2549,9 @@ namespace ReportSizingManager { } else if (OASysEqSizing(CurOASysNum).CoolingAirFlow) { // Parent object sets flow rate AutosizeDes = OASysEqSizing(CurOASysNum).CoolingAirVolFlow; + } else if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = + AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].SizingMassFlow / StdRhoAir; } else { AutosizeDes = FinalSysSizing(CurSysNum).DesOutAirVolFlow; } @@ -2580,6 +2585,9 @@ namespace ReportSizingManager { } else if (OASysEqSizing(CurOASysNum).HeatingAirFlow) { // Parent object sets heating flow rate AutosizeDes = OASysEqSizing(CurOASysNum).HeatingAirVolFlow; + } else if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = + AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].SizingMassFlow / StdRhoAir; } else { AutosizeDes = FinalSysSizing(CurSysNum).DesOutAirVolFlow; } @@ -2821,6 +2829,8 @@ namespace ReportSizingManager { // coil inlet temperature if (CurOASysNum == 0 && PrimaryAirSystem(CurSysNum).NumOAHeatCoils > 0) { AutosizeDes = OutAirFrac * FinalSysSizing(CurSysNum).PreheatTemp + (1.0 - OutAirFrac) * FinalSysSizing(CurSysNum).HeatRetTemp; + } else if (CurOASysNum > 0 && DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].HeatOutTemp; } else { AutosizeDes = OutAirFrac * FinalSysSizing(CurSysNum).HeatOutTemp + (1.0 - OutAirFrac) * FinalSysSizing(CurSysNum).HeatRetTemp; } @@ -2838,10 +2848,12 @@ namespace ReportSizingManager { } else { OutAirFrac = 1.0; } - // coil inlet temperature + // coil inlet humidity ratio if (CurOASysNum == 0 && PrimaryAirSystem(CurSysNum).NumOAHeatCoils > 0) { AutosizeDes = OutAirFrac * FinalSysSizing(CurSysNum).PreheatHumRat + (1.0 - OutAirFrac) * FinalSysSizing(CurSysNum).HeatRetHumRat; + } else if (CurOASysNum > 0 && DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].HeatOutHumRat; } else { AutosizeDes = OutAirFrac * FinalSysSizing(CurSysNum).HeatOutHumRat + (1.0 - OutAirFrac) * FinalSysSizing(CurSysNum).HeatRetHumRat; @@ -2849,7 +2861,11 @@ namespace ReportSizingManager { bCheckForZero = false; } else if (SizingType == CoolingWaterDesAirInletTempSizing) { if (CurOASysNum > 0) { // coil is in OA stream - AutosizeDes = FinalSysSizing(CurSysNum).OutTempAtCoolPeak; + if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].SizingCoolOATemp; + } else { + AutosizeDes = FinalSysSizing(CurSysNum).OutTempAtCoolPeak; + } } else { // coil is in main air loop if (PrimaryAirSystem(CurSysNum).NumOACoolCoils == 0) { // there is no precooling of the OA stream AutosizeDes = FinalSysSizing(CurSysNum).MixTempAtCoolPeak; @@ -2896,7 +2912,11 @@ namespace ReportSizingManager { bCheckForZero = false; } else if (SizingType == CoolingWaterDesAirOutletTempSizing) { if (CurOASysNum > 0) { - AutosizeDes = FinalSysSizing(CurSysNum).PrecoolTemp; + if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].PrecoolTemp; + } else { + AutosizeDes = FinalSysSizing(CurSysNum).PrecoolTemp; + } } else if (DataDesOutletAirTemp > 0.0) { AutosizeDes = DataDesOutletAirTemp; Real64 fanDeltaT = 0.0; @@ -2956,7 +2976,11 @@ namespace ReportSizingManager { bCheckForZero = false; } else if (SizingType == CoolingWaterDesAirInletHumRatSizing) { if (CurOASysNum > 0) { // coil is in OA stream - AutosizeDes = FinalSysSizing(CurSysNum).OutHumRatAtCoolPeak; + if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].SizingCoolOAHumRat; + } else { + AutosizeDes = FinalSysSizing(CurSysNum).OutHumRatAtCoolPeak; + } } else if (DataDesInletAirHumRat > 0.0) { AutosizeDes = DataDesInletAirHumRat; } else { // coil is in main air loop @@ -2976,7 +3000,11 @@ namespace ReportSizingManager { bCheckForZero = false; } else if (SizingType == CoolingWaterDesAirOutletHumRatSizing) { if (CurOASysNum > 0) { - AutosizeDes = FinalSysSizing(CurSysNum).PrecoolHumRat; + if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].PrecoolHumRat; + } else { + AutosizeDes = FinalSysSizing(CurSysNum).PrecoolHumRat; + } } else if (DataDesOutletAirHumRat > 0.0) { AutosizeDes = DataDesOutletAirHumRat; } else { @@ -3057,6 +3085,8 @@ namespace ReportSizingManager { AutosizeDes = 0.431 + 6086.0 * MaxRatedVolFlowPerRatedTotCap(DXCT); } else if (RatedVolFlowPerRatedTotCap < MinRatedVolFlowPerRatedTotCap(DXCT)) { AutosizeDes = 0.431 + 6086.0 * MinRatedVolFlowPerRatedTotCap(DXCT); + } else if (CurOASysNum > 0 && DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = 0.431 + 6086.0 * RatedVolFlowPerRatedTotCap; } else { AutosizeDes = 0.431 + 6086.0 * RatedVolFlowPerRatedTotCap; } @@ -3100,6 +3130,27 @@ namespace ReportSizingManager { CoilOutHumRat = DataSizing::DataCoilSizingAirOutHumRat; FanCoolLoad = DataSizing::DataCoilSizingFanCoolLoad; TotCapTempModFac = DataSizing::DataCoilSizingCapFT; + } else if (CurOASysNum > 0 && DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + DesVolFlow = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].SizingMassFlow / StdRhoAir; + if (AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].DXCoilFlag) { + AutosizeDes = DesVolFlow / 0.00005; + } else { + CoilInTemp = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].SizingCoolOATemp; + if (AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].m_FanIndex > -1 && + AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].FanBlowTroughFlag && + AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].m_FanTypeNum == + SimAirServingZones::Fan_System_Object) { + int FanIndex = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].m_FanIndex; + Real64 DeltaT = HVACFan::fanObjs[FanIndex]->getFanDesignTemperatureRise(); + CoilInTemp += DeltaT; + } + CoilInHumRat = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].SizingCoolOAHumRat; + CoilOutTemp = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].PrecoolTemp; + CoilOutHumRat = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].PrecoolHumRat; + AutosizeDes = + DesVolFlow * StdRhoAir * + (Psychrometrics::PsyHFnTdbW(CoilInTemp, CoilInHumRat) - Psychrometrics::PsyHFnTdbW(CoilOutTemp, CoilOutHumRat)); + } } else { CheckSysSizing(CompType, CompName); DesVolFlow = DataFlowUsedForSizing; @@ -3277,6 +3328,9 @@ namespace ReportSizingManager { DesVolFlow = OASysEqSizing(CurOASysNum).AirVolFlow; } else if (OASysEqSizing(CurOASysNum).HeatingAirFlow) { DesVolFlow = OASysEqSizing(CurOASysNum).HeatingAirVolFlow; + } else if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + DesVolFlow = + AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].SizingMassFlow / StdRhoAir; } else { DesVolFlow = FinalSysSizing(CurSysNum).DesOutAirVolFlow; } @@ -3329,6 +3383,16 @@ namespace ReportSizingManager { // coil inlet temperature if (CurOASysNum == 0 && PrimaryAirSystem(CurSysNum).NumOAHeatCoils > 0) { CoilInTemp = OutAirFrac * FinalSysSizing(CurSysNum).PreheatTemp + (1.0 - OutAirFrac) * FinalSysSizing(CurSysNum).HeatRetTemp; + } else if (CurOASysNum > 0 && DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + CoilInTemp = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].HeatOutTemp; + if (AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].m_FanIndex > -1 && + AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].FanBlowTroughFlag && + AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].m_FanTypeNum == + SimAirServingZones::Fan_System_Object) { + int FanIndex = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].m_FanIndex; + Real64 DeltaT = HVACFan::fanObjs[FanIndex]->getFanDesignTemperatureRise(); + CoilInTemp += DeltaT; + } } else { CoilInTemp = OutAirFrac * FinalSysSizing(CurSysNum).HeatOutTemp + (1.0 - OutAirFrac) * FinalSysSizing(CurSysNum).HeatRetTemp; } @@ -3340,6 +3404,11 @@ namespace ReportSizingManager { } else if (DataDesicRegCoil) { DesCoilLoad = CpAirStd * DesMassFlow * (DataDesOutletAirTemp - DataDesInletAirTemp); CoilOutTemp = DataDesOutletAirTemp; + } else if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + DesCoilLoad = + CpAirStd * DesMassFlow * + (AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].PreheatTemp - CoilInTemp); + CoilOutTemp = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].PreheatTemp; } else { DesCoilLoad = CpAirStd * DesMassFlow * (FinalSysSizing(CurSysNum).PreheatTemp - CoilInTemp); CoilOutTemp = FinalSysSizing(CurSysNum).PreheatTemp; @@ -3356,7 +3425,7 @@ namespace ReportSizingManager { CoilOutTemp = FinalSysSizing(CurSysNum).HeatSupTemp; } } - if (AirLoopControlInfo(CurSysNum).UnitarySys) { + if (CurSysNum <= NumPrimaryAirSys && AirLoopControlInfo(CurSysNum).UnitarySys) { if (DataCoilIsSuppHeater) { NominalCapacityDes = SuppHeatCap; } else if (DataCoolCoilCap > 0.0) { @@ -3377,10 +3446,10 @@ namespace ReportSizingManager { } DesCoilLoad = NominalCapacityDes; CoilOutTemp = -999.0; - } else if (FinalSysSizing(CurSysNum).HeatingCapMethod == CapacityPerFloorArea) { + } else if (CurSysNum <= NumPrimaryAirSys && FinalSysSizing(CurSysNum).HeatingCapMethod == CapacityPerFloorArea) { NominalCapacityDes = FinalSysSizing(CurSysNum).HeatingTotalCapacity; CoilOutTemp = -999.0; - } else if (FinalSysSizing(CurSysNum).HeatingCapMethod == HeatingDesignCapacity && + } else if (CurSysNum <= NumPrimaryAirSys && FinalSysSizing(CurSysNum).HeatingCapMethod == HeatingDesignCapacity && FinalSysSizing(CurSysNum).HeatingTotalCapacity > 0.0) { NominalCapacityDes = FinalSysSizing(CurSysNum).HeatingTotalCapacity; CoilOutTemp = -999.0; @@ -3409,32 +3478,35 @@ namespace ReportSizingManager { } } - switch (PrimaryAirSystem(CurSysNum).supFanModelTypeEnum) { - case DataAirSystems::structArrayLegacyFanModels: { - if (coilSelectionReportObj->isCompTypeCoil(CompType) && (PrimaryAirSystem(CurSysNum).SupFanNum > 0)) { - coilSelectionReportObj->setCoilSupplyFanInfo(CompName, - CompType, - Fans::Fan(PrimaryAirSystem(CurSysNum).SupFanNum).FanName, - DataAirSystems::structArrayLegacyFanModels, - PrimaryAirSystem(CurSysNum).SupFanNum); + if (CurSysNum <= NumPrimaryAirSys) { + + switch (PrimaryAirSystem(CurSysNum).supFanModelTypeEnum) { + case DataAirSystems::structArrayLegacyFanModels: { + if (coilSelectionReportObj->isCompTypeCoil(CompType) && (PrimaryAirSystem(CurSysNum).SupFanNum > 0)) { + coilSelectionReportObj->setCoilSupplyFanInfo(CompName, + CompType, + Fans::Fan(PrimaryAirSystem(CurSysNum).SupFanNum).FanName, + DataAirSystems::structArrayLegacyFanModels, + PrimaryAirSystem(CurSysNum).SupFanNum); + } + break; } - break; - } - case DataAirSystems::objectVectorOOFanSystemModel: { - if (coilSelectionReportObj->isCompTypeCoil(CompType) && (PrimaryAirSystem(CurSysNum).supFanVecIndex >= 0)) { - coilSelectionReportObj->setCoilSupplyFanInfo(CompName, - CompType, - HVACFan::fanObjs[PrimaryAirSystem(CurSysNum).supFanVecIndex]->name, - DataAirSystems::objectVectorOOFanSystemModel, - PrimaryAirSystem(CurSysNum).supFanVecIndex); + case DataAirSystems::objectVectorOOFanSystemModel: { + if (coilSelectionReportObj->isCompTypeCoil(CompType) && (PrimaryAirSystem(CurSysNum).supFanVecIndex >= 0)) { + coilSelectionReportObj->setCoilSupplyFanInfo(CompName, + CompType, + HVACFan::fanObjs[PrimaryAirSystem(CurSysNum).supFanVecIndex]->name, + DataAirSystems::objectVectorOOFanSystemModel, + PrimaryAirSystem(CurSysNum).supFanVecIndex); + } + break; } - break; - } - case DataAirSystems::fanModelTypeNotYetSet: { - // do nothing - break; + case DataAirSystems::fanModelTypeNotYetSet: { + // do nothing + break; + } + } // end switch } - } // end switch } else if (SizingType == HeatingWaterDesCoilLoadUsedForUASizing) { if (CurOASysNum > 0) { @@ -3451,6 +3523,8 @@ namespace ReportSizingManager { } if (CurOASysNum == 0 && PrimaryAirSystem(CurSysNum).NumOAHeatCoils > 0) { CoilInTemp = OutAirFrac * FinalSysSizing(CurSysNum).PreheatTemp + (1.0 - OutAirFrac) * FinalSysSizing(CurSysNum).HeatRetTemp; + } else if (CurOASysNum > 0 && DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + CoilInTemp = AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].HeatOutTemp; } else { CoilInTemp = OutAirFrac * FinalSysSizing(CurSysNum).HeatOutTemp + (1.0 - OutAirFrac) * FinalSysSizing(CurSysNum).HeatRetTemp; } @@ -3459,6 +3533,10 @@ namespace ReportSizingManager { if (CurOASysNum > 0) { if (DataDesicRegCoil) { AutosizeDes = CpAirStd * StdRhoAir * DataAirFlowUsedForSizing * (DataDesOutletAirTemp - DataDesInletAirTemp); + } else if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = + CpAirStd * StdRhoAir * DataAirFlowUsedForSizing * + (AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].PreheatTemp - CoilInTemp); } else { AutosizeDes = CpAirStd * StdRhoAir * DataAirFlowUsedForSizing * (FinalSysSizing(CurSysNum).PreheatTemp - CoilInTemp); } @@ -3474,7 +3552,12 @@ namespace ReportSizingManager { bCheckForZero = false; } else if (SizingType == HeatingAirflowUASizing) { if (CurOASysNum > 0) { - AutosizeDes = FinalSysSizing(CurSysNum).DesOutAirVolFlow; + if (DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum > -1) { + AutosizeDes = + AirLoopHVACDOAS::airloopDOAS[DataAirLoop::OutsideAirSys(CurOASysNum).AirLoopDOASNum].SizingMassFlow / StdRhoAir; + } else { + AutosizeDes = FinalSysSizing(CurSysNum).DesOutAirVolFlow; + } } else { if (CurDuctType == Main) { if (FinalSysSizing(CurSysNum).SysAirMinFlowRat > 0.0) { @@ -3954,7 +4037,7 @@ namespace ReportSizingManager { coilSelectionReportObj->setCoilWaterDeltaT(CompName, CompType, PlantSizData(DataPltSizHeatNum).DeltaT); coilSelectionReportObj->setCoilEntWaterTemp(CompName, CompType, DataGlobals::HWInitConvTemp); coilSelectionReportObj->setCoilLvgWaterTemp(CompName, CompType, DataGlobals::HWInitConvTemp - PlantSizData(DataPltSizHeatNum).DeltaT); - } else if (SizingType == CoolingWaterDesAirInletTempSizing) { + } else if (CurSysNum <= NumPrimaryAirSys && SizingType == CoolingWaterDesAirInletTempSizing) { coilSelectionReportObj->setCoilEntAirTemp(CompName, CompType, SizingResult, CurSysNum, CurZoneEqNum); } else if (SizingType == CoolingWaterDesAirInletHumRatSizing) { coilSelectionReportObj->setCoilEntAirHumRat(CompName, CompType, SizingResult); @@ -3966,11 +4049,11 @@ namespace ReportSizingManager { coilSelectionReportObj->setCoilLvgAirHumRat(CompName, CompType, SizingResult); } else if (SizingType == CoolingWaterNumofTubesPerRowSizing) { // do nothing - } else if (SizingType == HeatingWaterDesAirInletTempSizing) { + } else if (CurSysNum <= NumPrimaryAirSys && SizingType == HeatingWaterDesAirInletTempSizing) { coilSelectionReportObj->setCoilEntAirTemp(CompName, CompType, SizingResult, CurSysNum, CurZoneEqNum); } else if (SizingType == HeatingWaterDesAirInletHumRatSizing) { coilSelectionReportObj->setCoilEntAirHumRat(CompName, CompType, SizingResult); - } else if (SizingType == HeatingWaterDesCoilLoadUsedForUASizing) { + } else if (CurSysNum <= NumPrimaryAirSys && SizingType == HeatingWaterDesCoilLoadUsedForUASizing) { coilSelectionReportObj->setCoilHeatingCapacity(CompName, CompType, SizingResult, @@ -4012,7 +4095,7 @@ namespace ReportSizingManager { OutputReportPredefined::PreDefTableEntry(OutputReportPredefined::pdchFanPkTime, CompName, dateTimeFanPeak); } - } else if (SizingType == CoolingCapacitySizing) { + } else if (CurSysNum <= NumPrimaryAirSys && SizingType == CoolingCapacitySizing) { if (coilSelectionReportObj->isCompTypeCoil(CompType)) { if (CoilInTemp > 0.0) { // set inlet air properties used during capacity sizing if available coilSelectionReportObj->setCoilEntAirTemp(CompName, CompType, CoilInTemp, CurSysNum, CurZoneEqNum); @@ -4034,7 +4117,7 @@ namespace ReportSizingManager { DXFlowPerCapMinRatio, DXFlowPerCapMaxRatio); } - } else if (SizingType == HeatingCapacitySizing) { + } else if (CurSysNum <= NumPrimaryAirSys && SizingType == HeatingCapacitySizing) { if (coilSelectionReportObj->isCompTypeCoil(CompType)) { coilSelectionReportObj->setCoilHeatingCapacity(CompName, CompType, @@ -4053,7 +4136,7 @@ namespace ReportSizingManager { coilSelectionReportObj->setCoilWaterHeaterCapacityPltSizNum( CompName, CompType, SizingResult, IsAutoSize, DataPltSizHeatNum, DataWaterLoopNum); } - } else if (SizingType == WaterHeatingCoilUASizing) { + } else if (CurSysNum <= NumPrimaryAirSys && SizingType == WaterHeatingCoilUASizing) { coilSelectionReportObj->setCoilUA(CompName, CompType, SizingResult, DataCapacityUsedForSizing, IsAutoSize, CurSysNum, CurZoneEqNum); } else if (SizingType == CoolingSHRSizing) { diff --git a/src/EnergyPlus/ResultsSchema.cc b/src/EnergyPlus/ResultsSchema.cc index 80ce1e90e6a..ad17bc7d91b 100644 --- a/src/EnergyPlus/ResultsSchema.cc +++ b/src/EnergyPlus/ResultsSchema.cc @@ -167,15 +167,12 @@ namespace ResultsFramework { // Class Variable Variable::Variable(const std::string &VarName, const OutputProcessor::ReportingFrequency reportFrequency, - const int IndexType, + const OutputProcessor::TimeStepType timeStepType, const int ReportID, const OutputProcessor::Unit &units) + : varName(VarName), m_timeStepType(timeStepType), rptID(ReportID), Units(units) { - varName = VarName; setReportFrequency(reportFrequency); - idxType = IndexType; - rptID = ReportID; - Units = units; } std::string Variable::variableName() const @@ -203,8 +200,8 @@ namespace ResultsFramework { iReportFreq = reportFrequency; switch (iReportFreq) { case OutputProcessor::ReportingFrequency::EachCall: // each time UpdatedataandReport is called - if (idxType == ZoneVar) sReportFreq = "Detailed - Zone"; - if (idxType == HVACVar) sReportFreq = "Detailed - HVAC"; + if (m_timeStepType == OutputProcessor::TimeStepType::TimeStepZone) sReportFreq = "Detailed - Zone"; + if (m_timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) sReportFreq = "Detailed - HVAC"; break; case OutputProcessor::ReportingFrequency::TimeStep: // at 'EndTimeStepFlag' sReportFreq = "Timestep"; @@ -227,14 +224,14 @@ namespace ResultsFramework { } } - int Variable::indexType() const + OutputProcessor::TimeStepType Variable::timeStepType() const { - return idxType; + return m_timeStepType; } - void Variable::setIndexType(int IndexType) + void Variable::setTimeStepType(const OutputProcessor::TimeStepType timeStepType) { - idxType = IndexType; + m_timeStepType = timeStepType; } int Variable::reportID() const @@ -281,10 +278,10 @@ namespace ResultsFramework { // Class OutputVariable OutputVariable::OutputVariable(const std::string &VarName, const OutputProcessor::ReportingFrequency reportFrequency, - const int IndexType, + const OutputProcessor::TimeStepType timeStepType, const int ReportID, const OutputProcessor::Unit &units) - : Variable(VarName, reportFrequency, IndexType, ReportID, units) + : Variable(VarName, reportFrequency, timeStepType, ReportID, units) { } @@ -294,7 +291,7 @@ namespace ResultsFramework { const int ReportID, const OutputProcessor::Unit &units, const bool Accumulative) - : Variable(VarName, reportFrequency, ZoneVar, ReportID, units) + : Variable(VarName, reportFrequency, OutputProcessor::TimeStepType::TimeStepZone, ReportID, units) { acc = Accumulative; } @@ -737,7 +734,7 @@ namespace ResultsFramework { void ResultsSchema::initializeRTSDataFrame(const OutputProcessor::ReportingFrequency reportFrequency, const Array1D &RVariableTypes, const int NumOfRVariable, - const int IndexType) + const OutputProcessor::TimeStepType timeStepType) { Reference RVar; @@ -749,14 +746,17 @@ namespace ResultsFramework { // reportFrequency, RVariableTypes( Loop ).IndexType, // RVariableTypes( Loop ).ReportID, // RVariableTypes( Loop ).units); - Variable var(RVariableTypes(Loop).VarName, reportFrequency, RVariableTypes(Loop).IndexType, RVariableTypes(Loop).ReportID, + Variable var(RVariableTypes(Loop).VarName, reportFrequency, RVariableTypes(Loop).timeStepType, RVariableTypes(Loop).ReportID, RVariableTypes(Loop).units); switch (reportFrequency) { case OutputProcessor::ReportingFrequency::EachCall: // each time UpdatedataandReport is called - if (IndexType == ZoneVar && RVariableTypes(Loop).IndexType == ZoneVar) { + if ((timeStepType == OutputProcessor::TimeStepType::TimeStepZone) && + (RVariableTypes(Loop).timeStepType == OutputProcessor::TimeStepType::TimeStepZone)) + { RIDetailedZoneTSData.setRDataFrameEnabled(true); RIDetailedZoneTSData.addVariable(var); - } else if (IndexType == HVACVar && RVariableTypes(Loop).IndexType == HVACVar) { + } else if ((timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) && + (RVariableTypes(Loop).timeStepType == OutputProcessor::TimeStepType::TimeStepSystem)) { RIDetailedHVACTSData.setRDataFrameEnabled(true); RIDetailedHVACTSData.addVariable(var); } @@ -791,8 +791,11 @@ namespace ResultsFramework { // set the scanned variables to true or false switch (reportFrequency) { case OutputProcessor::ReportingFrequency::EachCall: - if (IndexType == ZoneVar) RIDetailedZoneTSData.setRVariablesScanned(true); - if (IndexType == HVACVar) RIDetailedHVACTSData.setRVariablesScanned(true); + if (timeStepType == OutputProcessor::TimeStepType::TimeStepZone) { + RIDetailedZoneTSData.setRVariablesScanned(true); + } else if (timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { + RIDetailedHVACTSData.setRVariablesScanned(true); + } break; case OutputProcessor::ReportingFrequency::TimeStep: // at 'EndTimeStepFlag' RITimestepTSData.setRVariablesScanned(true); @@ -818,7 +821,7 @@ namespace ResultsFramework { void ResultsSchema::initializeITSDataFrame(const OutputProcessor::ReportingFrequency reportFrequency, const Array1D &IVariableTypes, const int NumOfIVariable, - const int IndexType) + const OutputProcessor::TimeStepType timeStepType) { Reference IVar; @@ -831,14 +834,17 @@ namespace ResultsFramework { // IVariableTypes( Loop ).IndexType, // IVariableTypes( Loop ).ReportID, // IVariableTypes( Loop ).units); - OutputVariable var(IVariableTypes(Loop).VarName, reportFrequency, IVariableTypes(Loop).IndexType, IVariableTypes(Loop).ReportID, + OutputVariable var(IVariableTypes(Loop).VarName, reportFrequency, IVariableTypes(Loop).timeStepType, IVariableTypes(Loop).ReportID, IVariableTypes(Loop).units); switch (reportFrequency) { case OutputProcessor::ReportingFrequency::EachCall: // each time UpdatedataandReport is called - if (IndexType == ZoneVar && IVariableTypes(Loop).IndexType == ZoneVar) { + if ((timeStepType == OutputProcessor::TimeStepType::TimeStepZone) && + (IVariableTypes(Loop).timeStepType == OutputProcessor::TimeStepType::TimeStepZone)) + { RIDetailedZoneTSData.setIDataFrameEnabled(true); RIDetailedZoneTSData.addVariable(var); - } else if (IndexType == HVACVar && IVariableTypes(Loop).IndexType == HVACVar) { + } else if ((timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) && + (IVariableTypes(Loop).timeStepType == OutputProcessor::TimeStepType::TimeStepSystem)) { RIDetailedHVACTSData.setIDataFrameEnabled(true); RIDetailedHVACTSData.addVariable(var); } @@ -874,8 +880,11 @@ namespace ResultsFramework { // set the scanned variables to true or false switch (reportFrequency) { case OutputProcessor::ReportingFrequency::EachCall: - if (IndexType == ZoneVar) RIDetailedZoneTSData.setIVariablesScanned(true); - if (IndexType == HVACVar) RIDetailedHVACTSData.setIVariablesScanned(true); + if (timeStepType == OutputProcessor::TimeStepType::TimeStepZone) { + RIDetailedZoneTSData.setIVariablesScanned(true); + } else if (timeStepType == OutputProcessor::TimeStepType::TimeStepSystem) { + RIDetailedHVACTSData.setIVariablesScanned(true); + } break; case OutputProcessor::ReportingFrequency::TimeStep: // at 'EndTimeStepFlag' RITimestepTSData.setIVariablesScanned(true); diff --git a/src/EnergyPlus/ResultsSchema.hh b/src/EnergyPlus/ResultsSchema.hh index 45b12c13b35..9ab971de4cb 100644 --- a/src/EnergyPlus/ResultsSchema.hh +++ b/src/EnergyPlus/ResultsSchema.hh @@ -108,7 +108,7 @@ namespace ResultsFramework { Variable() = default; Variable(const std::string &VarName, const OutputProcessor::ReportingFrequency reportFrequency, - const int IndexType, + const OutputProcessor::TimeStepType timeStepType, const int ReportID, const OutputProcessor::Unit &units); @@ -119,8 +119,8 @@ namespace ResultsFramework { OutputProcessor::ReportingFrequency iReportFrequency(); void setReportFrequency(const OutputProcessor::ReportingFrequency reportFrequency); - int indexType() const; - void setIndexType(const int IndexType); + OutputProcessor::TimeStepType timeStepType() const; + void setTimeStepType(const OutputProcessor::TimeStepType timeStepType); int reportID() const; void setReportID(const int Id); @@ -137,10 +137,10 @@ namespace ResultsFramework { protected: std::string varName; std::string sReportFreq; - OutputProcessor::Unit Units; OutputProcessor::ReportingFrequency iReportFreq = OutputProcessor::ReportingFrequency::EachCall; - int idxType = -1; + OutputProcessor::TimeStepType m_timeStepType = OutputProcessor::TimeStepType::TimeStepZone; int rptID = -1; + OutputProcessor::Unit Units; std::vector Values; }; @@ -149,7 +149,7 @@ namespace ResultsFramework { public: OutputVariable(const std::string &VarName, const OutputProcessor::ReportingFrequency reportFrequency, - const int IndexType, + const OutputProcessor::TimeStepType timeStepType, const int ReportID, const OutputProcessor::Unit &units); }; @@ -290,11 +290,11 @@ namespace ResultsFramework { void initializeRTSDataFrame(const OutputProcessor::ReportingFrequency reportFrequency, const Array1D &RVariableTypes, const int NumOfRVariable, - const int IndexType = OutputProcessor::ZoneVar); + const OutputProcessor::TimeStepType timeStepType = OutputProcessor::TimeStepType::TimeStepZone); void initializeITSDataFrame(const OutputProcessor::ReportingFrequency reportFrequency, const Array1D &IVariableTypes, const int NumOfIVariable, - const int IndexType = OutputProcessor::ZoneVar); + const OutputProcessor::TimeStepType timeStepType = OutputProcessor::TimeStepType::TimeStepZone); void initializeMeters(const Array1D &EnergyMeters, const OutputProcessor::ReportingFrequency reportFrequency); DataFrame RIDetailedZoneTSData = DataFrame("Detailed-Zone"); diff --git a/src/EnergyPlus/RoomAirModelManager.cc b/src/EnergyPlus/RoomAirModelManager.cc index 422c44896d0..4d42932fbb5 100644 --- a/src/EnergyPlus/RoomAirModelManager.cc +++ b/src/EnergyPlus/RoomAirModelManager.cc @@ -336,7 +336,7 @@ namespace RoomAirModelManager { int NumNumbers; // Number of numbers encountered int Status; // Notes if there was an error in processing the input - int thisSurfinZone; // working variable for indexing surfaces within a ZoneInfo structure + int thisSurfinZone; // working variable for indexing surfaces within a ZoneRadiantInfo structure int thisHBsurfID; // working variable for indexing surfaces in main Surface structure int thisPattern; diff --git a/src/EnergyPlus/RuntimeLanguageProcessor.cc b/src/EnergyPlus/RuntimeLanguageProcessor.cc index 47ee63ab1c9..e51eebb1761 100644 --- a/src/EnergyPlus/RuntimeLanguageProcessor.cc +++ b/src/EnergyPlus/RuntimeLanguageProcessor.cc @@ -1069,7 +1069,7 @@ namespace RuntimeLanguageProcessor { if (!MyOneTimeFlag) { ObjexxFCL::gio::write(OutputEMSFileUnitNum, fmtA) << "**** Begin EMS Language Processor Error and Trace Output *** "; - ObjexxFCL::gio::write(OutputEMSFileUnitNum, fmtA) << ""; + ObjexxFCL::gio::write(OutputEMSFileUnitNum, fmtA) << ""; MyOneTimeFlag = true; } // if have not return'd yet then write out full trace diff --git a/src/EnergyPlus/SQLiteProcedures.cc b/src/EnergyPlus/SQLiteProcedures.cc index 45a05e83e0e..b07827aaa37 100644 --- a/src/EnergyPlus/SQLiteProcedures.cc +++ b/src/EnergyPlus/SQLiteProcedures.cc @@ -1258,10 +1258,10 @@ std::string SQLite::storageType(const int storageTypeIndex) std::string result; switch (storageTypeIndex) { - case 1: + case 1: // static_cast(OutputProcessor::StoreType::Averaged) result = "Avg"; break; - case 2: + case 2: // static_cast(OutputProcessor::StoreType::Summed) result = "Sum"; break; default: @@ -1276,12 +1276,12 @@ std::string SQLite::timestepTypeName(const int timestepType) std::string result; switch (timestepType) { - case 1: - result = "HVAC System"; - break; - case 2: + case 1: // static_cast(OutputProcessor::TimeStepType::TimeStepZone) result = "Zone"; break; + case 2: // static_cast(OutputProcessor::TimeStepType::TimeStepSystem) + result = "HVAC System"; + break; default: result = "Unknown!!!"; } diff --git a/src/EnergyPlus/ScheduleManager.cc b/src/EnergyPlus/ScheduleManager.cc index 585ca5a2966..1be98532876 100644 --- a/src/EnergyPlus/ScheduleManager.cc +++ b/src/EnergyPlus/ScheduleManager.cc @@ -535,7 +535,7 @@ namespace ScheduleManager { NumAlphas = 0; NumNumbers = 0; if (NumCommaFileShading > 1) { - ShowWarningError(CurrentModuleObject + ": More than 1 occurence of this object found, only first will be used."); + ShowWarningError(CurrentModuleObject + ": More than 1 occurrence of this object found, only first will be used."); } NumCSVAllColumnsSchedules = 0; diff --git a/src/EnergyPlus/SetPointManager.cc b/src/EnergyPlus/SetPointManager.cc index 7055f2f78e4..ab6e65e26db 100644 --- a/src/EnergyPlus/SetPointManager.cc +++ b/src/EnergyPlus/SetPointManager.cc @@ -7760,7 +7760,7 @@ namespace SetPointManager { Array1D_int VarIndexes; // Variable Numbers Array1D_int VarTypes; // Variable Types (1=integer, 2=real, 3=meter) - Array1D_int IndexTypes; // Variable Index Types (1=Zone,2=HVAC) + Array1D IndexTypes; // Variable Index Types (1=Zone,2=HVAC) Array1D unitsForVar; // units from enum for each variable Array1D_int ResourceTypes; // ResourceTypes for each variable Array1D_string EndUses; // EndUses for each variable diff --git a/src/EnergyPlus/SimAirServingZones.cc b/src/EnergyPlus/SimAirServingZones.cc index 2c57594f7e1..1383a828333 100644 --- a/src/EnergyPlus/SimAirServingZones.cc +++ b/src/EnergyPlus/SimAirServingZones.cc @@ -59,10 +59,11 @@ #include // EnergyPlus Headers +#include +#include #include #include #include -#include #include #include #include @@ -77,6 +78,7 @@ #include #include #include +#include #include #include #include @@ -365,6 +367,7 @@ namespace SimAirServingZones { // \required-field // Using/Aliasing + using AirLoopHVACDOAS::numAirLoopDOAS; using BranchInputManager::GetBranchData; using BranchInputManager::GetBranchList; using BranchInputManager::GetLoopMixer; @@ -1256,14 +1259,16 @@ namespace SimAirServingZones { } else if (componentType == "FAN:SYSTEMMODEL") { PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).CompType_Num = Fan_System_Object; // Construct fan object - if (HVACFan::getFanObjectVectorIndex(PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).Name) < 0) { - HVACFan::fanObjs.emplace_back(new HVACFan::FanSystem(PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).Name)); + if (HVACFan::getFanObjectVectorIndex(PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).Name, false) < 0) { + HVACFan::fanObjs.emplace_back( + new HVACFan::FanSystem(PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).Name)); } PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).CompIndex = HVACFan::getFanObjectVectorIndex(PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).Name) + 1; // + 1 for shift from zero-based vector to 1-based compIndex // cpw22Aug2010 Add Fan_ComponentModel type (new num=24) - HVACFan::fanObjs[HVACFan::getFanObjectVectorIndex(PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).Name)]->AirPathFlag = true; + HVACFan::fanObjs[HVACFan::getFanObjectVectorIndex(PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).Name)] + ->AirPathFlag = true; } else if (componentType == "FAN:COMPONENTMODEL") { PrimaryAirSystem(AirSysNum).Branch(BranchNum).Comp(CompNum).CompType_Num = Fan_ComponentModel; @@ -1440,6 +1445,14 @@ namespace SimAirServingZones { "Average", PrimaryAirSystem(AirSysNum).Name); } + + numAirLoopDOAS = inputProcessor->getNumObjectsFound("AirLoopHVAC:DedicatedOutdoorAirSystem"); + if (numAirLoopDOAS > 0) { + if (AirLoopHVACDOAS::GetInputOnceFlag) { + AirLoopHVACDOAS::getAirLoopHVACDOASInput(); + AirLoopHVACDOAS::GetInputOnceFlag = false; + } + } } // End of Get Input subroutines for the Module @@ -2482,6 +2495,8 @@ namespace SimAirServingZones { // REFERENCES: None // Using/Aliasing + using AirLoopHVACDOAS::airloopDOAS; + using AirLoopHVACDOAS::numAirLoopDOAS; using DataConvergParams::CalledFromAirSystemSupplySideDeck1; using DataConvergParams::CalledFromAirSystemSupplySideDeck2; using General::GetPreviousHVACTime; @@ -2618,6 +2633,82 @@ namespace SimAirServingZones { } // End of Air Loop iteration + if (numAirLoopDOAS > 0) { + int index; + Real64 OAMassFLowrate = 0.0; + for (std::size_t loop = 0; loop < airloopDOAS.size(); ++loop) { + auto &thisAirLoopDOASObjec = airloopDOAS[loop]; // <- regular reference variable, not a pointer + if (thisAirLoopDOASObjec.m_AirLoopDOASNum > -1) { + index = thisAirLoopDOASObjec.m_AirLoopDOASNum; + } else { + index = -1; + } + thisAirLoopDOASObjec.SimAirLoopHVACDOAS(FirstHVACIteration, index); + OAMassFLowrate += thisAirLoopDOASObjec.SumMassFlowRate; + } + + if (OAMassFLowrate > 0.0) { + for (AirLoopNum = 1; AirLoopNum <= NumPrimaryAirSys; ++AirLoopNum) { // NumPrimaryAirSys is the number of primary air loops + TurnFansOn = false; + TurnFansOff = false; + NightVentOn = false; + if (PriAirSysAvailMgr(AirLoopNum).AvailStatus == CycleOn) { + TurnFansOn = true; + } + if (PriAirSysAvailMgr(AirLoopNum).AvailStatus == ForceOff) { + TurnFansOff = true; + } + if (AirLoopControlInfo(AirLoopNum).NightVent) { + NightVentOn = true; + } + + // Set current system number for sizing routines + CurSysNum = AirLoopNum; + + // 2 passes; 1 usually suffices; 2 is done if ResolveSysFlow detects a failure of mass balance + for (AirLoopPass = 1; AirLoopPass <= 2; ++AirLoopPass) { + + SysReSim = false; + AirLoopControlInfo(AirLoopNum).AirLoopPass = AirLoopPass; // save for use without passing as argument + + // Simulate controllers on air loop with current air mass flow rates + SimAirLoop(FirstHVACIteration, AirLoopNum, AirLoopPass, AirLoopIterMax, AirLoopIterTot, AirLoopNumCalls); + + // Update tracker for maximum number of iterations needed by any controller on all air loops + IterMax = max(IterMax, AirLoopIterMax); + // Update tracker for aggregated number of iterations needed by all controllers on all air loops + IterTot += AirLoopIterTot; + // Update tracker for total number of times SimAirLoopComponents() has been invoked across all air loops + NumCallsTot += AirLoopNumCalls; + + // At the end of the first pass, check whether a second pass is needed or not + if (AirLoopPass == 1) { + // If simple system, skip second pass + if (AirLoopControlInfo(AirLoopNum).Simple) break; + ResolveSysFlow(AirLoopNum, SysReSim); + // If mass balance OK, skip second pass + if (!SysReSim) break; + } + } + + // Air system side has been simulated, now transfer conditions across to + // the zone equipment side, looping through all supply air paths for this + // air loop. + for (AirSysOutNum = 1; AirSysOutNum <= AirToZoneNodeInfo(AirLoopNum).NumSupplyNodes; ++AirSysOutNum) { + if (AirSysOutNum == 1) CalledFrom = CalledFromAirSystemSupplySideDeck1; + if (AirSysOutNum == 2) CalledFrom = CalledFromAirSystemSupplySideDeck2; + UpdateHVACInterface(AirLoopNum, + CalledFrom, + AirToZoneNodeInfo(AirLoopNum).AirLoopSupplyNodeNum(AirSysOutNum), + AirToZoneNodeInfo(AirLoopNum).ZoneEquipSupplyNodeNum(AirSysOutNum), + SimZoneEquipment); + } // ...end of DO loop over supply air paths for this air loop. + + } // End of Air Loop iteration + // check convergence at the mixer outlet or at the AirLoopDOAS outlet + AirLoopHVACDOAS::CheckConvergence(); + } + } // Reset current system number for sizing routines CurSysNum = 0; } @@ -3073,13 +3164,23 @@ namespace SimAirServingZones { // FLOW: + bool AirLoopCheck = false; + if (AirLoopNum > 0) { + AirLoopCheck = true; + } BypassOAController = false; // simulate OA water coil controllers - AirLoopPass = AirLoopControlInfo(AirLoopNum).AirLoopPass; + if (AirLoopCheck) { + AirLoopPass = AirLoopControlInfo(AirLoopNum).AirLoopPass; + } IsUpToDateFlag = false; - PrimaryAirSystem(AirLoopNum).ControlConverged = false; + if (AirLoopCheck) { + PrimaryAirSystem(AirLoopNum).ControlConverged = false; + } AllowWarmRestartFlag = true; - AirLoopControlInfo(AirLoopNum).AllowWarmRestartFlag = true; + if (AirLoopCheck) { + AirLoopControlInfo(AirLoopNum).AllowWarmRestartFlag = true; + } // This call to ManageControllers reinitializes the controllers actuated variables to zero @@ -3095,7 +3196,9 @@ namespace SimAirServingZones { AllowWarmRestartFlag); // Detect whether the speculative warm restart feature is supported by each controller on this air loop. - AirLoopControlInfo(AirLoopNum).AllowWarmRestartFlag = AirLoopControlInfo(AirLoopNum).AllowWarmRestartFlag && AllowWarmRestartFlag; + if (AirLoopCheck) { + AirLoopControlInfo(AirLoopNum).AllowWarmRestartFlag = AirLoopControlInfo(AirLoopNum).AllowWarmRestartFlag && AllowWarmRestartFlag; + } // Evaluate water coils with new actuated variables if (HXAssistedWaterCoil) { @@ -3109,9 +3212,11 @@ namespace SimAirServingZones { Iter = 0; ControllerConvergedFlag = false; // if the controller can be locked out by the economizer operation and the economizer is active, leave the controller inactive - if (AirLoopControlInfo(AirLoopNum).EconoActive) { - if (PrimaryAirSystem(AirLoopNum).CanBeLockedOutByEcono(HVACControllers::ControllerProps(ControllerIndex).AirLoopControllerIndex)) { - ControllerConvergedFlag = true; + if (AirLoopCheck) { + if (AirLoopControlInfo(AirLoopNum).EconoActive) { + if (PrimaryAirSystem(AirLoopNum).CanBeLockedOutByEcono(HVACControllers::ControllerProps(ControllerIndex).AirLoopControllerIndex)) { + ControllerConvergedFlag = true; + } } } @@ -3129,8 +3234,10 @@ namespace SimAirServingZones { IsUpToDateFlag, BypassOAController); - PrimaryAirSystem(AirLoopNum).ControlConverged(HVACControllers::ControllerProps(ControllerIndex).AirLoopControllerIndex) = - ControllerConvergedFlag; + if (AirLoopCheck) { + PrimaryAirSystem(AirLoopNum).ControlConverged(HVACControllers::ControllerProps(ControllerIndex).AirLoopControllerIndex) = + ControllerConvergedFlag; + } if (!ControllerConvergedFlag) { // Only check abnormal termination if not yet converged @@ -3190,10 +3297,11 @@ namespace SimAirServingZones { BypassOAController); // pass convergence of OA system water coils back to SolveAirLoopControllers via PrimaryAirSystem().ControlConverged flag - PrimaryAirSystem(AirLoopNum).ControlConverged(HVACControllers::ControllerProps(ControllerIndex).AirLoopControllerIndex) = - ControllerConvergedFlag; - - AirLoopControlInfo(AirLoopNum).ConvergedFlag = AirLoopControlInfo(AirLoopNum).ConvergedFlag && ControllerConvergedFlag; + if (AirLoopCheck) { + PrimaryAirSystem(AirLoopNum).ControlConverged(HVACControllers::ControllerProps(ControllerIndex).AirLoopControllerIndex) = + ControllerConvergedFlag; + AirLoopControlInfo(AirLoopNum).ConvergedFlag = AirLoopControlInfo(AirLoopNum).ConvergedFlag && ControllerConvergedFlag; + } } void ReSolveAirLoopControllers( @@ -3824,10 +3932,12 @@ namespace SimAirServingZones { // Set ReSim flag to TRUE if mass flow not conserved on this branch NodeNumNext = PrimaryAirSystem(SysNum).Branch(BranchNum).NodeNum(NodeIndex + 1); if (NodeNum == PrimaryAirSystem(SysNum).OASysInletNodeNum) continue; // don't enforce mass balance across OA Sys - if (std::abs(Node(NodeNum).MassFlowRate - Node(NodeNumNext).MassFlowRate) > SmallMassFlow) SysReSim = true; + // Changeover bypass system connected to a plenum or mixer will need to include the bypass flow rate + if (std::abs(Node(NodeNum).MassFlowRate - Node(NodeNumNext).MassFlowRate - AirLoopFlow(SysNum).BypassMassFlow) > SmallMassFlow) + SysReSim = true; } } // end node loop - // Store the minimum MassFlowMasAvail for this branch on the branch inlet node + // Store the minimum MassFlowMaxAvail for this branch on the branch inlet node (AirloopHVAC supply inlet node) Node(PrimaryAirSystem(SysNum).Branch(BranchNum).NodeNumIn).MassFlowRateMaxAvail = BranchMassFlowMaxAvail; } // end branch loop // force resimulation for fan-cycling, nonsimple systems @@ -4927,7 +5037,8 @@ namespace SimAirServingZones { ZoneOAFracHeating = 0.0; } } else { // matching cooled zone > 0 - //?? so what happens if zone is both heated and cooled this makes little sense? Don't want to double count in MinOAFlow + //?? so what happens if zone is both heated and cooled this makes little sense? Don't want to double count in + // MinOAFlow // but still need to do std62.1 heating calcs ?? ZoneOAFracHeating = 0.0; } @@ -6998,9 +7109,9 @@ namespace SimAirServingZones { } // for ( I = 1; I <= NumPrimaryAirSys; ++I ) { // { IOFlags flags; flags.ADVANCE( "No" ); ObjexxFCL::gio::write( OutputFileSysSizing, SSizeFmt11, flags ) << SizingFileColSep << - // CalcSysSizing( I ).AirPriLoopName << ":Des Heat Mass Flow [kg/s]" << SizingFileColSep << CalcSysSizing( I ).AirPriLoopName << ":Des - // Cool Mass Flow [kg/s]" << SizingFileColSep << CalcSysSizing( I ).AirPriLoopName << ":Des Heat Cap [W]" << SizingFileColSep << - // CalcSysSizing( I ).AirPriLoopName << ":Des Sens Cool Cap [W]"; } + // CalcSysSizing( I ).AirPriLoopName << ":Des Heat Mass Flow [kg/s]" << SizingFileColSep << CalcSysSizing( I ).AirPriLoopName << + // ":Des Cool Mass Flow [kg/s]" << SizingFileColSep << CalcSysSizing( I ).AirPriLoopName << ":Des Heat Cap [W]" << + // SizingFileColSep << CalcSysSizing( I ).AirPriLoopName << ":Des Sens Cool Cap [W]"; } // } for (I = 1; I <= NumPrimaryAirSys; ++I) { for (J = 1; J <= TotDesDays + TotRunDesPersDays; ++J) { diff --git a/src/EnergyPlus/SimulationManager.cc b/src/EnergyPlus/SimulationManager.cc index bc311910ce8..29590824dcc 100644 --- a/src/EnergyPlus/SimulationManager.cc +++ b/src/EnergyPlus/SimulationManager.cc @@ -236,6 +236,7 @@ namespace SimulationManager { // Using/Aliasing using DataEnvironment::CurMnDy; using DataEnvironment::CurrentOverallSimDay; + using DataEnvironment::CurrentYearIsLeapYear; using DataEnvironment::EndMonthFlag; using DataEnvironment::EnvironmentName; using DataEnvironment::TotalOverallSimDays; @@ -502,10 +503,16 @@ namespace SimulationManager { DayOfSim = 0; DayOfSimChr = "0"; NumOfWarmupDays = 0; - if (NumOfDayInEnvrn <= 365) { - isFinalYear = true; + if (CurrentYearIsLeapYear) { + if (NumOfDayInEnvrn <= 366) { + isFinalYear = true; + } + } else { + if (NumOfDayInEnvrn <= 365) { + isFinalYear = true; + } } - + HVACManager::ResetNodeData(); // Reset here, because some zone calcs rely on node data (e.g. ZoneITEquip) bool anyEMSRan; @@ -1150,6 +1157,22 @@ namespace SimulationManager { DoWeathSim = true; } + + auto const instances = inputProcessor->epJSON.find("PerformancePrecisionTradeoffs"); + if (instances != inputProcessor->epJSON.end()) { + auto &instancesValue = instances.value(); + for (auto instance = instancesValue.begin(); instance != instancesValue.end(); ++instance) { + auto const &fields = instance.value(); + auto const &thisObjectName = UtilityRoutines::MakeUPPERCase(instance.key()); + inputProcessor->markObjectAsUsed("PerformancePrecisionTradeoffs", thisObjectName); + if (fields.find("use_coil_direct_solutions") != fields.end()) { + if (UtilityRoutines::MakeUPPERCase(fields.at("use_coil_direct_solutions")) == "YES") { + DoCoilDirectSolutions = true; + } + } + } + } + if (ErrorsFound) { ShowFatalError("Errors found getting Project Input"); } @@ -2796,7 +2819,7 @@ namespace SimulationManager { int NumVariables; Array1D_int VarIndexes; Array1D_int VarIDs; - Array1D_int IndexTypes; + Array1D IndexTypes; Array1D_int VarTypes; Array1D unitsForVar; // units from enum for each variable Array1D_string VarNames; @@ -2835,7 +2858,9 @@ namespace SimulationManager { for (Loop1 = 1; Loop1 <= NumVariables; ++Loop1) { ObjexxFCL::gio::write(OutputFileDebug, "(1X,'RepVar,',I5,',',I5,',',A,',[',A,'],',A,',',A,',',A,',',I5)") << VarIndexes(Loop1) << VarIDs(Loop1) << VarNames(Loop1) << unitEnumToString(unitsForVar(Loop1)) - << GetResourceTypeChar(ResourceTypes(Loop1)) << EndUses(Loop1) << Groups(Loop1) << IndexTypes(Loop1); + << GetResourceTypeChar(ResourceTypes(Loop1)) << EndUses(Loop1) << Groups(Loop1) + // TODO: Should call OutputProcessor::StandardTimeStepTypeKey(IndexTypes(Loop1)) to return "Zone" or "HVAC" + << static_cast(IndexTypes(Loop1)); } VarIndexes.deallocate(); IndexTypes.deallocate(); diff --git a/src/EnergyPlus/SizingAnalysisObjects.cc b/src/EnergyPlus/SizingAnalysisObjects.cc index 9a2c59735cc..030b8a79a25 100644 --- a/src/EnergyPlus/SizingAnalysisObjects.cc +++ b/src/EnergyPlus/SizingAnalysisObjects.cc @@ -370,8 +370,6 @@ ZoneTimestepObject SizingLoggerFramework::PrepareZoneTimestepStamp() // prepare current timing data once and then pass into fill routines // function used by both zone and system frequency log updates - int const ZoneIndex(1); - int locDayOfSim(1); if (DataGlobals::WarmupFlag) { // DayOfSim not okay during warmup, keeps incrementing up during warmup days @@ -386,7 +384,7 @@ ZoneTimestepObject SizingLoggerFramework::PrepareZoneTimestepStamp() locDayOfSim, DataGlobals::HourOfDay, DataGlobals::TimeStep, - OutputProcessor::TimeValue(ZoneIndex).TimeStep, + OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep, DataGlobals::NumOfTimeStepInHour); return tmpztStepStamp; @@ -405,7 +403,6 @@ void SizingLoggerFramework::UpdateSizingLogValuesZoneStep() void SizingLoggerFramework::UpdateSizingLogValuesSystemStep() { - int const SysIndex(2); Real64 const MinutesPerHour(60.0); ZoneTimestepObject tmpztStepStamp; SystemTimestepObject tmpSysStepStamp; @@ -413,12 +410,12 @@ void SizingLoggerFramework::UpdateSizingLogValuesSystemStep() tmpztStepStamp = PrepareZoneTimestepStamp(); // pepare system timestep stamp - tmpSysStepStamp.CurMinuteEnd = OutputProcessor::TimeValue(SysIndex).CurMinute; + tmpSysStepStamp.CurMinuteEnd = OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute; if (tmpSysStepStamp.CurMinuteEnd == 0.0) { tmpSysStepStamp.CurMinuteEnd = MinutesPerHour; } - tmpSysStepStamp.CurMinuteStart = tmpSysStepStamp.CurMinuteEnd - OutputProcessor::TimeValue(SysIndex).TimeStep * MinutesPerHour; - tmpSysStepStamp.TimeStepDuration = OutputProcessor::TimeValue(SysIndex).TimeStep; + tmpSysStepStamp.CurMinuteStart = tmpSysStepStamp.CurMinuteEnd - OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * MinutesPerHour; + tmpSysStepStamp.TimeStepDuration = OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep; for (auto &l : logObjs) { l.FillSysStep(tmpztStepStamp, tmpSysStepStamp); diff --git a/src/EnergyPlus/SizingManager.cc b/src/EnergyPlus/SizingManager.cc index 9d9bc1e5a05..b898a16c3fa 100644 --- a/src/EnergyPlus/SizingManager.cc +++ b/src/EnergyPlus/SizingManager.cc @@ -2023,7 +2023,7 @@ namespace SizingManager { } if (TotConcurrentPeopleOnSys >= DataSizing::PsBySys(AirLoopNum)) { DataSizing::PsBySys(AirLoopNum) = TotConcurrentPeopleOnSys; // store max concurrent occupancy on system - // store timing description of Last occurance of max + // store timing description of Last occurrence of max int Month(0); int DayOfMonth(0); General::InvOrdinalDay(DayLoop, Month, DayOfMonth, 1); @@ -2538,7 +2538,7 @@ namespace SizingManager { GlobalCoolSizingFactor = 1.0; NumTimeStepsInAvg = NumOfTimeStepInHour; } else { - ShowFatalError(cCurrentModuleObject + ": More than 1 occurence of this object; only 1 allowed"); + ShowFatalError(cCurrentModuleObject + ": More than 1 occurrence of this object; only 1 allowed"); } if (NumTimeStepsInAvg < NumOfTimeStepInHour) { diff --git a/src/EnergyPlus/SolarShading.cc b/src/EnergyPlus/SolarShading.cc index b3a67fc9fd1..36b9001f72b 100644 --- a/src/EnergyPlus/SolarShading.cc +++ b/src/EnergyPlus/SolarShading.cc @@ -883,7 +883,6 @@ namespace SolarShading { // AUTHOR Rick Strand // DATE WRITTEN February 1998 // MODIFIED August 2005 JG - Added output variables for energy in J - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // This routine allocates all of the arrays at the module level which @@ -892,25 +891,9 @@ namespace SolarShading { // METHODOLOGY EMPLOYED: // Allocation is dependent on the user input file. - // REFERENCES: - // na - - // Using/Aliasing using General::RoundSigDigits; - // Locals - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: int SurfLoop; - int ZoneLoop; int I; int NumOfLayers; @@ -1094,88 +1077,89 @@ namespace SolarShading { e.BmSolAbsdInsRevealReport = 0.0; } - DisplayString("Initializing Zone Report Variables"); - // CurrentModuleObject='Zone' - for (ZoneLoop = 1; ZoneLoop <= NumOfZones; ++ZoneLoop) { + DisplayString("Initializing Zone and Enclosure Report Variables"); + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { + auto &thisEnclosureName = DataViewFactorInformation::ZoneSolarInfo(enclosureNum).Name; SetupOutputVariable("Zone Windows Total Transmitted Solar Radiation Rate", OutputProcessor::Unit::W, - ZoneTransSolar(ZoneLoop), + ZoneTransSolar(enclosureNum), "Zone", "Average", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Exterior Windows Total Transmitted Beam Solar Radiation Rate", OutputProcessor::Unit::W, - ZoneBmSolFrExtWinsRep(ZoneLoop), + ZoneBmSolFrExtWinsRep(enclosureNum), "Zone", "Average", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Interior Windows Total Transmitted Beam Solar Radiation Rate", OutputProcessor::Unit::W, - ZoneBmSolFrIntWinsRep(ZoneLoop), + ZoneBmSolFrIntWinsRep(enclosureNum), "Zone", "Average", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Exterior Windows Total Transmitted Diffuse Solar Radiation Rate", OutputProcessor::Unit::W, - ZoneDifSolFrExtWinsRep(ZoneLoop), + ZoneDifSolFrExtWinsRep(enclosureNum), "Zone", "Average", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Interior Windows Total Transmitted Diffuse Solar Radiation Rate", OutputProcessor::Unit::W, - ZoneDifSolFrIntWinsRep(ZoneLoop), + ZoneDifSolFrIntWinsRep(enclosureNum), "Zone", "Average", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable( - "Zone Windows Total Heat Gain Rate", OutputProcessor::Unit::W, ZoneWinHeatGainRep(ZoneLoop), "Zone", "Average", Zone(ZoneLoop).Name); + "Zone Windows Total Heat Gain Rate", OutputProcessor::Unit::W, ZoneWinHeatGainRep(enclosureNum), "Zone", "Average", thisEnclosureName); SetupOutputVariable( - "Zone Windows Total Heat Loss Rate", OutputProcessor::Unit::W, ZoneWinHeatLossRep(ZoneLoop), "Zone", "Average", Zone(ZoneLoop).Name); + "Zone Windows Total Heat Loss Rate", OutputProcessor::Unit::W, ZoneWinHeatLossRep(enclosureNum), "Zone", "Average", thisEnclosureName); // Energy variables SetupOutputVariable("Zone Windows Total Transmitted Solar Radiation Energy", OutputProcessor::Unit::J, - ZoneTransSolarEnergy(ZoneLoop), + ZoneTransSolarEnergy(enclosureNum), "Zone", "Sum", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Exterior Windows Total Transmitted Beam Solar Radiation Energy", OutputProcessor::Unit::J, - ZoneBmSolFrExtWinsRepEnergy(ZoneLoop), + ZoneBmSolFrExtWinsRepEnergy(enclosureNum), "Zone", "Sum", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Interior Windows Total Transmitted Beam Solar Radiation Energy", OutputProcessor::Unit::J, - ZoneBmSolFrIntWinsRepEnergy(ZoneLoop), + ZoneBmSolFrIntWinsRepEnergy(enclosureNum), "Zone", "Sum", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Exterior Windows Total Transmitted Diffuse Solar Radiation Energy", OutputProcessor::Unit::J, - ZoneDifSolFrExtWinsRepEnergy(ZoneLoop), + ZoneDifSolFrExtWinsRepEnergy(enclosureNum), "Zone", "Sum", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Interior Windows Total Transmitted Diffuse Solar Radiation Energy", OutputProcessor::Unit::J, - ZoneDifSolFrIntWinsRepEnergy(ZoneLoop), + ZoneDifSolFrIntWinsRepEnergy(enclosureNum), "Zone", "Sum", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Windows Total Heat Gain Energy", OutputProcessor::Unit::J, - ZoneWinHeatGainRepEnergy(ZoneLoop), + ZoneWinHeatGainRepEnergy(enclosureNum), "Zone", "Sum", - Zone(ZoneLoop).Name); + thisEnclosureName); SetupOutputVariable("Zone Windows Total Heat Loss Energy", OutputProcessor::Unit::J, - ZoneWinHeatLossRepEnergy(ZoneLoop), + ZoneWinHeatLossRepEnergy(enclosureNum), "Zone", "Sum", - Zone(ZoneLoop).Name); - - if (DisplayAdvancedReportVariables) { + thisEnclosureName); + } + for (int ZoneLoop = 1; ZoneLoop <= NumOfZones; ++ZoneLoop) { + if (DisplayAdvancedReportVariables) { // CurrentModuleObject='Zone(Advanced)' SetupOutputVariable("Zone Opaque Surface Inside Faces Total Conduction Heat Gain Rate", OutputProcessor::Unit::W, @@ -3066,7 +3050,6 @@ namespace SolarShading { // SUBROUTINE INFORMATION: // AUTHOR Legacy Code - // DATE WRITTEN // MODIFIED B. Griffith, Oct 2010, deal with no floor case // L. Lawrie, Mar 2012, relax >154 tilt even further (>120 considered non-wall by ASHRAE) // RE-ENGINEERED Lawrie, Oct 2000 @@ -3077,7 +3060,7 @@ namespace SolarShading { // METHODOLOGY EMPLOYED: // It is assumed that all transmitted solar energy is incident - // on the floors of the zone. The fraction directly absorbed in + // on the floors of the zone (or enclosure). The fraction directly absorbed in // the floor is given by 'ISABSF'. It is proportional to the // area * solar absorptance. The remaining solar energy is then // distributed uniformly around the room according to @@ -3086,84 +3069,51 @@ namespace SolarShading { // REFERENCES: // BLAST/IBLAST code, original author George Walton - // Using/Aliasing using General::RoundSigDigits; using namespace DataWindowEquivalentLayer; - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // na - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int ConstrNum; // Index for constructions - int FirstZoneSurf; // Index of first surface in current zone - int LastZoneSurf; // Index of last surface in current zone Real64 AreaSum; // Intermediate calculation value - int SurfNum; // DO loop counter for zone surfaces - int ZoneNum; // Loop Counter for Zones int Lay; // Window glass layer number Real64 AbsDiffTotWin; // Sum of a window's glass layer solar absorptances Real64 TestFractSum; Real64 HorizAreaSum; - // FLOW: - if (!allocated(ISABSF)) { ISABSF.allocate(TotSurfaces); } ISABSF = 0.0; - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { + auto &thisEnclosure(DataViewFactorInformation::ZoneSolarInfo(enclosureNum)); - FirstZoneSurf = Zone(ZoneNum).SurfaceFirst; - LastZoneSurf = Zone(ZoneNum).SurfaceLast; AreaSum = 0.0; - - for (SurfNum = FirstZoneSurf; SurfNum <= LastZoneSurf; ++SurfNum) { - - if (!Surface(SurfNum).HeatTransSurf) continue; - // CR 8229, relaxed from -0.99 to -0.5 (Tilt > 154) - // CR8769 !use ASHRAE std of >120, -0.9 to -0.5 (Tilt > 120) - // IF (Surface(SurfNum)%Class == SurfaceClass_Floor) THEN - // write(outputfiledebug,*) 'surf=',TRIM(surface(SurfNum)%name),Surface(SurfNum)%CosTilt - // endif - if (Zone(ZoneNum).OfType == StandardZone && Surface(SurfNum).CosTilt < -0.5) AreaSum += Surface(SurfNum).Area; - // Next is not implemented but would be: - // IF ((Zone(ZoneNum)%OfType .eq. SolarWallZone .or Zone(ZoneNum)%OfType .eq. RoofPondZone) .and. & - // Surface(SurfNum)%ExtBoundCond > 0) AreaSum = AreaSum + Surface(SurfNum)%Area + TestFractSum = 0.0; + for (int SurfNum : thisEnclosure.SurfacePtr) { + int surfZoneNum = Surface(SurfNum).Zone; + if (Zone(surfZoneNum).OfType == StandardZone && Surface(SurfNum).CosTilt < -0.5) AreaSum += Surface(SurfNum).Area; } HorizAreaSum = AreaSum; - if ((!Zone(ZoneNum).HasFloor) && (HorizAreaSum > 0.0)) { + if ((thisEnclosure.FloorArea <=0.0) && (HorizAreaSum > 0.0)) { // fill floor area even though surfs not called "Floor", they are roughly horizontal and face upwards. - Zone(ZoneNum).FloorArea = HorizAreaSum; + thisEnclosure.FloorArea = HorizAreaSum; ShowWarningError("ComputeIntSolarAbsorpFactors: Solar distribution model is set to place solar gains on the zone floor,"); - ShowContinueError("...Zone=\"" + Zone(ZoneNum).Name + "\" has no floor, but has approximate horizontal surfaces."); + ShowContinueError("...Enclosure=\"" + thisEnclosure.Name + "\" has no floor, but has approximate horizontal surfaces."); ShowContinueError("...these Tilt > 120 degrees, (area=[" + RoundSigDigits(HorizAreaSum, 2) + "] m2) will be used."); } // Compute ISABSF - for (SurfNum = FirstZoneSurf; SurfNum <= LastZoneSurf; ++SurfNum) { - - if (!Surface(SurfNum).HeatTransSurf) continue; + for (int SurfNum : thisEnclosure.SurfacePtr) { // only horizontal surfaces. ! !CR 8229, relaxed from -0.99 to -0.5 (Tilt > 154) // only horizontal surfaces. ! !CR8769 use ASHRAE std of >120, -0.9 to -0.5 (Tilt > 120) - if ((Zone(ZoneNum).OfType != StandardZone || Surface(SurfNum).CosTilt < -0.5) && - (Zone(ZoneNum).OfType == StandardZone || Surface(SurfNum).ExtBoundCond > 0)) { + int surfZoneNum = Surface(SurfNum).Zone; + if ((Zone(surfZoneNum).OfType != StandardZone || Surface(SurfNum).CosTilt < -0.5) && + (Zone(surfZoneNum).OfType == StandardZone || Surface(SurfNum).ExtBoundCond > 0)) { - ConstrNum = Surface(SurfNum).Construction; + int ConstrNum = Surface(SurfNum).Construction; // last minute V3.1 if (Construct(ConstrNum).TransDiff <= 0.0) { // Opaque surface if (AreaSum > 0.0) ISABSF(SurfNum) = Surface(SurfNum).Area * Construct(ConstrNum).InsideAbsorpSolar / AreaSum; @@ -3183,20 +3133,19 @@ namespace SolarShading { if (AreaSum > 0.0) ISABSF(SurfNum) = Surface(SurfNum).Area * AbsDiffTotWin / AreaSum; } } + // CR 8229 test ISABSF for problems + TestFractSum += ISABSF(SurfNum); } - // CR 8229 test ISABSF for problems - TestFractSum = sum(ISABSF({FirstZoneSurf, LastZoneSurf})); - if (TestFractSum <= 0.0) { - if (Zone(ZoneNum).ExtWindowArea > 0.0) { // we have a problem, the sun has no floor to go to - if (Zone(ZoneNum).FloorArea <= 0.0) { + if (thisEnclosure.ExtWindowArea > 0.0) { // we have a problem, the sun has no floor to go to + if (thisEnclosure.FloorArea <= 0.0) { ShowSevereError("ComputeIntSolarAbsorpFactors: Solar distribution model is set to place solar gains on the zone floor,"); - ShowContinueError("but Zone =\"" + Zone(ZoneNum).Name + "\" does not appear to have any floor surfaces."); + ShowContinueError("but Zone or Enclosure =\"" + thisEnclosure.Name + "\" does not appear to have any floor surfaces."); ShowContinueError("Solar gains will be spread evenly on all surfaces in the zone, and the simulation continues..."); } else { // Floor Area > 0 but still can't absorb ShowSevereError("ComputeIntSolarAbsorpFactors: Solar distribution model is set to place solar gains on the zone floor,"); - ShowContinueError("but Zone =\"" + Zone(ZoneNum).Name + "\" floor cannot absorb any solar gains. "); + ShowContinueError("but Zone or Enclosure =\"" + thisEnclosure.Name + "\" floor cannot absorb any solar gains. "); ShowContinueError("Check the solar absorptance of the inside layer of the floor surface construction/material."); ShowContinueError("Solar gains will be spread evenly on all surfaces in the zone, and the simulation continues..."); } @@ -3204,15 +3153,12 @@ namespace SolarShading { // try again but use an even spread across all the surfaces in the zone, regardless of horizontal // so as to not lose solar energy AreaSum = 0.0; - for (SurfNum = FirstZoneSurf; SurfNum <= LastZoneSurf; ++SurfNum) { - if (!Surface(SurfNum).HeatTransSurf) continue; + for (int SurfNum : thisEnclosure.SurfacePtr) { AreaSum += Surface(SurfNum).Area; } - for (SurfNum = FirstZoneSurf; SurfNum <= LastZoneSurf; ++SurfNum) { - - if (!Surface(SurfNum).HeatTransSurf) continue; - ConstrNum = Surface(SurfNum).Construction; + for (int SurfNum : thisEnclosure.SurfacePtr) { + int ConstrNum = Surface(SurfNum).Construction; if (Construct(ConstrNum).TransDiff <= 0.0) { // Opaque surface if (AreaSum > 0.0) ISABSF(SurfNum) = Surface(SurfNum).Area * Construct(ConstrNum).InsideAbsorpSolar / AreaSum; } else { // Window (floor windows are assumed to have no shading device and no divider, @@ -3235,7 +3181,7 @@ namespace SolarShading { } } - } // zone loop + } // enclosure loop } void CLIP(int const NVT, Array1 &XVT, Array1 &YVT, Array1 &ZVT) @@ -5886,19 +5832,11 @@ namespace SolarShading { // Jan 2010, TH: add calculating and reporting of WinBmBmSolar, WinBmDifSolar, // WinBmBmSolarEnergy, and WinBmDifSolarEnergy // Jun 2013, SV: scheduled surface gains for walls and windows - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // For a time step, calculates solar radiation absorbed by exterior // surfaces and interior solar radiation distribution - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // Using/Aliasing using General::BlindBeamBeamTrans; using General::InterpBlind; using General::InterpProfAng; @@ -5913,22 +5851,6 @@ namespace SolarShading { using WindowEquivalentLayer::CFSDiffAbsTrans; using namespace DataWindowEquivalentLayer; - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - // na - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int ZoneNum; // Zone number - int SurfNum; // Surface number int SurfNum2; // Secondary surface number for tubular daylighting device diffuser (TDD:DIFFUSER) int PipeNum; // TDD pipe object number int ShelfNum; // Daylighting shelf object number @@ -5937,9 +5859,6 @@ namespace SolarShading { Real64 ShelfSolarRad; // Shelf diffuse solar radiation int BackSurfNum; // Back surface number int IBack; // Back surface counter - int FloorNum; // Floor surface number - int AdjSurfNum; // Adjacent surface number - int AdjZoneNum; // Adjacent zone number Real64 CosTlt; // Cosine of surface tilt angle int ConstrNum; // Construction number int ConstrNumSh; // Shaded construction number @@ -6069,7 +5988,6 @@ namespace SolarShading { Real64 DiffTransBmGnd; // Complex fen: diffuse solar transmittance for ground-reflected beam radiation Real64 DiffTransSky; // Sky diffuse solar transmittance for glazing with blind with horiz. slats or complex fen Real64 NomDiffTrans; - int BaseSurfNum; // Base surface number Real64 t1; // Bare-glass beam solar transmittance for glass layers 1,2 and 3 Real64 t2; Real64 t3; @@ -6283,14 +6201,15 @@ namespace SolarShading { window.BmSolTransThruIntWinRepEnergy = 0.0; } - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { BTOTZone = 0.0; BABSZone = 0.0; // Loop over exterior surfaces in this zone + auto &thisEnclosure(DataViewFactorInformation::ZoneSolarInfo(enclosureNum)); - for (SurfNum = Zone(ZoneNum).SurfaceFirst; SurfNum <= Zone(ZoneNum).SurfaceLast; ++SurfNum) { + for (int SurfNum : thisEnclosure.SurfacePtr) { if (((Surface(SurfNum).ExtBoundCond != ExternalEnvironment) && (Surface(SurfNum).ExtBoundCond != OtherSideCondModeledExt)) && SurfaceWindow(SurfNum).OriginalClass != SurfaceClass_TDD_Diffuser) continue; @@ -6882,8 +6801,8 @@ namespace SolarShading { if (SurfaceWindow(SurfNum).WindowModelType != WindowBSDFModel && SurfaceWindow(SurfNum).WindowModelType != WindowEQLModel) { if (ShadeFlag <= 0 || ShadeFlag >= 10) { // Unshaded window - DSZone(ZoneNum) += DSZoneWin; - DGZone(ZoneNum) += DGZoneWin; + DSZone(enclosureNum) += DSZoneWin; + DGZone(enclosureNum) += DGZoneWin; } else if (ShadeFlag != SwitchableGlazing) { // Shade or blind if (ShadeFlag == IntShadeOn || ShadeFlag == ExtShadeOn || ShadeFlag == BGShadeOn || ShadeFlag == ExtScreenOn) { @@ -6934,8 +6853,8 @@ namespace SolarShading { } } } - DSZone(ZoneNum) += DSZoneWinSh; - DGZone(ZoneNum) += DGZoneWinSh; + DSZone(enclosureNum) += DSZoneWinSh; + DGZone(enclosureNum) += DGZoneWinSh; } else { // Switchable glazing SwitchFac = SurfaceWindow(SurfNum).SwitchingFactor; @@ -6950,20 +6869,20 @@ namespace SolarShading { } else { DGZoneWinSh = GndSolarInc * DiffTrans * Surface(SurfNum).Area / (1.e-8); } - DSZone(ZoneNum) += InterpSw(SwitchFac, DSZoneWin, DSZoneWinSh); - DGZone(ZoneNum) += InterpSw(SwitchFac, DGZoneWin, DGZoneWinSh); + DSZone(enclosureNum) += InterpSw(SwitchFac, DSZoneWin, DSZoneWinSh); + DGZone(enclosureNum) += InterpSw(SwitchFac, DGZoneWin, DGZoneWinSh); } } else if (SurfaceWindow(SurfNum).WindowModelType == WindowBSDFModel) { - DSZone(ZoneNum) += DSZoneWin; - DGZone(ZoneNum) += DGZoneWin; + DSZone(enclosureNum) += DSZoneWin; + DGZone(enclosureNum) += DGZoneWin; } else if (SurfaceWindow(SurfNum).WindowModelType == WindowEQLModel) { // For equivalent layer model the zone total diffuse solar heat gain // through exterior fenestrations are reported as single value. DSZoneWin = SkySolarInc * DiffTrans * Surface(SurfNum).Area / (DifSolarRad + 1.e-8); DGZoneWin = GndSolarInc * DiffTrans * Surface(SurfNum).Area / (GndSolarRad + 1.e-8); - DSZone(ZoneNum) += DSZoneWin; - DGZone(ZoneNum) += DGZoneWin; + DSZone(enclosureNum) += DSZoneWin; + DGZone(enclosureNum) += DGZoneWin; } //----------------------------------------------------------------- // BEAM SOLAR ON EXTERIOR WINDOW TRANSMITTED AS BEAM AND/OR DIFFUSE @@ -7284,7 +7203,7 @@ namespace SolarShading { // Add beam solar absorbed by outside reveal to outside of window's base surface. // Add beam solar absorbed by inside reveal to inside of window's base surface. // This ignores 2-D heat transfer effects. - BaseSurfNum = Surface(SurfNum).BaseSurf; + int BaseSurfNum = Surface(SurfNum).BaseSurf; AISurf(BaseSurfNum) += SurfaceWindow(SurfNum).BmSolAbsdInsReveal / Surface(BaseSurfNum).Area; AOSurf(BaseSurfNum) += SurfaceWindow(SurfNum).BmSolAbsdOutsReveal / Surface(BaseSurfNum).Area; } @@ -7414,7 +7333,9 @@ namespace SolarShading { // Interior beam absorptance of glass layers and beam transmittance of back exterior & // or interior window WITHOUT SHADING this timestep - if (ShadeFlagBack <= 0) { + if (Construct(ConstrNumBack).TypeIsAirBoundaryInteriorWindow) { + TransBeamWin = 1.0; + } else if (ShadeFlagBack <= 0) { for (Lay = 1; Lay <= NBackGlass; ++Lay) { AbsBeamWin(Lay) = POLYF(CosIncBack, Construct(ConstrNumBack).AbsBeamBackCoef({1, 6}, Lay)); } @@ -7735,10 +7656,10 @@ namespace SolarShading { // Interior beam transmitted to adjacent zone through an interior back window (assumed unshaded); // this beam radiation is categorized as diffuse radiation in the adjacent zone. - AdjSurfNum = Surface(BackSurfNum).ExtBoundCond; + int AdjSurfNum = Surface(BackSurfNum).ExtBoundCond; if (AdjSurfNum > 0) { - AdjZoneNum = Surface(AdjSurfNum).Zone; - DBZoneIntWin(AdjZoneNum) += BOverlap * TransBeamWin; //[m2] + int adjEnclosureNum = Surface(AdjSurfNum).SolarEnclIndex; + DBZoneIntWin(adjEnclosureNum) += BOverlap * TransBeamWin; //[m2] SurfaceWindow(BackSurfNum).BmSolTransThruIntWinRep += BOverlap * TransBeamWin * BeamSolarRad; //[W] SurfaceWindow(BackSurfNum).BmSolTransThruIntWinRepEnergy = SurfaceWindow(BackSurfNum).BmSolTransThruIntWinRep * TimeStepZoneSec; @@ -7859,10 +7780,10 @@ namespace SolarShading { // This beam radiation is categorized as diffuse radiation in the adjacent zone. // Note that this is done for each outgoing direction of exterior window - AdjSurfNum = Surface(BackSurfaceNumber).ExtBoundCond; + int AdjSurfNum = Surface(BackSurfaceNumber).ExtBoundCond; if (AdjSurfNum > 0) { - AdjZoneNum = Surface(AdjSurfNum).Zone; - DBZoneIntWin(AdjZoneNum) += + int adjEnclosureNum = Surface(AdjSurfNum).SolarEnclIndex; + DBZoneIntWin(adjEnclosureNum) += CFDirBoverlap(IBack, CurTrnDir) * SurfaceWindow(BackSurfaceNumber) .ComplexFen.State(CurBackState) .IntegratedBkTrans(bestBackTrn); @@ -7946,59 +7867,66 @@ namespace SolarShading { // Equivalent Layer window model has no distinction when treating windows with and // without shades (interior, inbetween and exterior shades) - CosIncBack = std::abs(CosIncAng(TimeStep, HourOfDay, BackSurfNum)); - // Note in equivalent layer window model if storm window exists it is defined as part of - // window construction, hence it does not require a separate treatment - AbsBeamWinEQL = 0.0; - TransBeamWin = 0.0; - - // Interior beam absorptance of glass layers and beam transmittance of back exterior & - // or interior window (treates windows with/without shades as defined) for this timestep - - // call the ASHWAT fenestration model for beam radiation here - CalcEQLOpticalProperty(BackSurfNum, isBEAM, AbsSolBeamBackEQL); - - EQLNum = Construct(ConstrNumBack).EQLConsPtr; - AbsBeamWinEQL({1, CFS(EQLNum).NL}) = AbsSolBeamBackEQL(1, {1, CFS(EQLNum).NL}); - // get the interior beam transmitted through back exterior or interior EQL window - TransBeamWin = AbsSolBeamBackEQL(1, CFS(EQLNum).NL + 1); - // Absorbed by the interior shade layer of back exterior window - if (CFS(EQLNum).L(CFS(EQLNum).NL).LTYPE != ltyGLAZE) { - IntBeamAbsByShadFac(BackSurfNum) = BOverlap * AbsSolBeamBackEQL(1, CFS(EQLNum).NL) / - (Surface(BackSurfNum).Area + SurfaceWindow(BackSurfNum).DividerArea); - BABSZone += BOverlap * AbsSolBeamBackEQL(1, CFS(EQLNum).NL); - } - // Absorbed by the exterior shade layer of back exterior window - if (CFS(EQLNum).L(1).LTYPE != ltyGLAZE) { - IntBeamAbsByShadFac(BackSurfNum) = - BOverlap * AbsSolBeamBackEQL(1, 1) / (Surface(BackSurfNum).Area + SurfaceWindow(BackSurfNum).DividerArea); - BABSZone += BOverlap * AbsSolBeamBackEQL(1, 1); + if (Construct(ConstrNumBack).TypeIsAirBoundaryInteriorWindow) { + TransBeamWin = 1.0; + AbsBeamWinEQL = 0.0; + AbsBeamTotWin = 0.0; } + else { + + CosIncBack = std::abs(CosIncAng(TimeStep, HourOfDay, BackSurfNum)); + // Note in equivalent layer window model if storm window exists it is defined as part of + // window construction, hence it does not require a separate treatment + AbsBeamWinEQL = 0.0; + TransBeamWin = 0.0; + + // Interior beam absorptance of glass layers and beam transmittance of back exterior & + // or interior window (treates windows with/without shades as defined) for this timestep + + // call the ASHWAT fenestration model for beam radiation here + CalcEQLOpticalProperty(BackSurfNum, isBEAM, AbsSolBeamBackEQL); + + EQLNum = Construct(ConstrNumBack).EQLConsPtr; + AbsBeamWinEQL({ 1, CFS(EQLNum).NL }) = AbsSolBeamBackEQL(1, { 1, CFS(EQLNum).NL }); + // get the interior beam transmitted through back exterior or interior EQL window + TransBeamWin = AbsSolBeamBackEQL(1, CFS(EQLNum).NL + 1); + // Absorbed by the interior shade layer of back exterior window + if (CFS(EQLNum).L(CFS(EQLNum).NL).LTYPE != ltyGLAZE) { + IntBeamAbsByShadFac(BackSurfNum) = BOverlap * AbsSolBeamBackEQL(1, CFS(EQLNum).NL) / + (Surface(BackSurfNum).Area + SurfaceWindow(BackSurfNum).DividerArea); + BABSZone += BOverlap * AbsSolBeamBackEQL(1, CFS(EQLNum).NL); + } + // Absorbed by the exterior shade layer of back exterior window + if (CFS(EQLNum).L(1).LTYPE != ltyGLAZE) { + IntBeamAbsByShadFac(BackSurfNum) = + BOverlap * AbsSolBeamBackEQL(1, 1) / (Surface(BackSurfNum).Area + SurfaceWindow(BackSurfNum).DividerArea); + BABSZone += BOverlap * AbsSolBeamBackEQL(1, 1); + } - // determine the number of glass layers - NBackGlass = 0; - for (Lay = 1; Lay <= CFS(EQLNum).NL; ++Lay) { - if (CFS(EQLNum).L(Lay).LTYPE != ltyGLAZE) continue; - ++NBackGlass; - } - if (NBackGlass >= 2) { - // If the number of glass is greater than 2, in between glass shade can be present - for (Lay = 2; Lay <= CFS(EQLNum).NL - 1; ++Lay) { - if (CFS(EQLNum).L(CFS(EQLNum).NL).LTYPE != ltyGLAZE) { - // if there is in between shade glass determine the shade absorptance - IntBeamAbsByShadFac(BackSurfNum) += BOverlap * AbsSolBeamBackEQL(1, Lay) / Surface(BackSurfNum).Area; - BABSZone += BOverlap * AbsSolBeamBackEQL(1, Lay); + // determine the number of glass layers + NBackGlass = 0; + for (Lay = 1; Lay <= CFS(EQLNum).NL; ++Lay) { + if (CFS(EQLNum).L(Lay).LTYPE != ltyGLAZE) continue; + ++NBackGlass; + } + if (NBackGlass >= 2) { + // If the number of glass is greater than 2, in between glass shade can be present + for (Lay = 2; Lay <= CFS(EQLNum).NL - 1; ++Lay) { + if (CFS(EQLNum).L(CFS(EQLNum).NL).LTYPE != ltyGLAZE) { + // if there is in between shade glass determine the shade absorptance + IntBeamAbsByShadFac(BackSurfNum) += BOverlap * AbsSolBeamBackEQL(1, Lay) / Surface(BackSurfNum).Area; + BABSZone += BOverlap * AbsSolBeamBackEQL(1, Lay); + } } } + // Sum of interior beam absorbed by all glass layers of back window + AbsBeamTotWin = 0.0; + for (Lay = 1; Lay <= CFS(EQLNum).NL; ++Lay) { + AbsBeamTotWin += AbsBeamWinEQL(Lay); + AWinSurf(Lay, BackSurfNum) += BOverlap * AbsBeamWinEQL(Lay) / + (Surface(BackSurfNum).Area + SurfaceWindow(BackSurfNum).DividerArea); //[-] + } } - // Sum of interior beam absorbed by all glass layers of back window - AbsBeamTotWin = 0.0; - for (Lay = 1; Lay <= CFS(EQLNum).NL; ++Lay) { - AbsBeamTotWin += AbsBeamWinEQL(Lay); - AWinSurf(Lay, BackSurfNum) += BOverlap * AbsBeamWinEQL(Lay) / - (Surface(BackSurfNum).Area + SurfaceWindow(BackSurfNum).DividerArea); //[-] - } - // To BABSZon, add interior beam glass absorption and overall beam transmission for this back window BABSZone += BOverlap * (AbsBeamTotWin + TransBeamWin); @@ -8006,10 +7934,10 @@ namespace SolarShading { // Interior beam transmitted to adjacent zone through an interior back window (assumed unshaded); // this beam radiation is categorized as diffuse radiation in the adjacent zone. - AdjSurfNum = Surface(BackSurfNum).ExtBoundCond; + int AdjSurfNum = Surface(BackSurfNum).ExtBoundCond; if (AdjSurfNum > 0) { - AdjZoneNum = Surface(AdjSurfNum).Zone; - DBZoneIntWin(AdjZoneNum) += BOverlap * TransBeamWin; //[m2] + int adjEnclosureNum = Surface(AdjSurfNum).SolarEnclIndex; + DBZoneIntWin(adjEnclosureNum) += BOverlap * TransBeamWin; //[m2] SurfaceWindow(BackSurfNum).BmSolTransThruIntWinRep += BOverlap * TransBeamWin * BeamSolarRad; //[W] SurfaceWindow(BackSurfNum).BmSolTransThruIntWinRepEnergy = SurfaceWindow(BackSurfNum).BmSolTransThruIntWinRep * TimeStepZoneSec; @@ -8025,9 +7953,8 @@ namespace SolarShading { } else { // Simple interior solar distribution. All beam from exterior windows falls on floor; // some of this is absorbed/transmitted, rest is reflected to other surfaces. - for (FloorNum = Zone(ZoneNum).SurfaceFirst; FloorNum <= Zone(ZoneNum).SurfaceLast; ++FloorNum) { + for (int FloorNum : thisEnclosure.SurfacePtr) { // In following, ISABSF is zero except for nominal floor surfaces - if (!Surface(FloorNum).HeatTransSurf) continue; if (ISABSF(FloorNum) <= 0.0 || FloorNum == SurfNum) continue; // Keep only floor surfaces FlConstrNum = Surface(FloorNum).Construction; @@ -8063,16 +7990,16 @@ namespace SolarShading { BABSZone += BTOTWinZone * ISABSF(FloorNum); //[m2] - AdjSurfNum = Surface(FloorNum).ExtBoundCond; + int AdjSurfNum = Surface(FloorNum).ExtBoundCond; if (Construct(FlConstrNum).TransDiff > 0.0 && AdjSurfNum > 0) { // Window in an interior floor - AdjZoneNum = Surface(AdjSurfNum).Zone; + int adjEnclosureNum = Surface(AdjSurfNum).SolarEnclIndex; // Contribution (assumed diffuse) to adjacent zone of beam radiation passing // through this window - DBZoneIntWin(AdjZoneNum) += BTOTWinZone * ISABSF(FloorNum) * Construct(FlConstrNum).TransDiff / AbsBeamTotWin; + DBZoneIntWin(adjEnclosureNum) += BTOTWinZone * ISABSF(FloorNum) * Construct(FlConstrNum).TransDiff / AbsBeamTotWin; BABSZone += BTOTWinZone * ISABSF(FloorNum) * Construct(FlConstrNum).TransDiff / AbsBeamTotWin; } @@ -8084,15 +8011,13 @@ namespace SolarShading { } // End of first loop over surfaces in zone - // It is important to do this only one time - // IF (ZoneNum == 1) THEN BABSZoneSSG = 0.0; BTOTZoneSSG = 0.0; for (iSSG = 1; iSSG <= TotSurfIncSolSSG; ++iSSG) { - SurfNum = SurfIncSolSSG(iSSG).SurfPtr; + int SurfNum = SurfIncSolSSG(iSSG).SurfPtr; // do calculation only if construction number match. if (SurfIncSolSSG(iSSG).ConstrPtr == Surface(SurfNum).Construction) { - if (Surface(SurfNum).Zone == ZoneNum) { + if (Surface(SurfNum).SolarEnclIndex == enclosureNum) { AbsIntSurf = Construct(Surface(SurfNum).Construction).InsideAbsorpSolar; // SolarIntoZone = GetCurrentScheduleValue(SurfIncSolSSG(iSSG)%SchedPtr) * Surface(SurfNum)%Area SolarIntoZone = GetCurrentScheduleValue(SurfIncSolSSG(iSSG).SchedPtr); @@ -8102,31 +8027,28 @@ namespace SolarShading { } } } - DBZoneSSG(ZoneNum) = BTOTZoneSSG - BABSZoneSSG; - // END IF + DBZoneSSG(enclosureNum) = BTOTZoneSSG - BABSZoneSSG; - DBZone(ZoneNum) = BTOTZone - BABSZone; + DBZone(enclosureNum) = BTOTZone - BABSZone; - if (DBZone(ZoneNum) < 0.0) { - DBZone(ZoneNum) = 0.0; + if (DBZone(enclosureNum) < 0.0) { + DBZone(enclosureNum) = 0.0; } // Variables for reporting - for (SurfNum = Zone(ZoneNum).SurfaceFirst; SurfNum <= Zone(ZoneNum).SurfaceLast; ++SurfNum) { - if (!Surface(SurfNum).HeatTransSurf) continue; + for (int SurfNum : thisEnclosure.SurfacePtr) { if (SolarDistribution == FullInteriorExterior) { BmIncInsSurfAmountRep(SurfNum) *= BeamSolarRad; BmIncInsSurfAmountRepEnergy(SurfNum) = BmIncInsSurfAmountRep(SurfNum) * TimeStepZoneSec; BmIncInsSurfIntensRep(SurfNum) = BmIncInsSurfAmountRep(SurfNum) / (Surface(SurfNum).Area + SurfaceWindow(SurfNum).DividerArea); } else { // Simple interior solar distribution. All beam falls on floor. if (ISABSF(SurfNum) > 0.0 && Surface(SurfNum).HeatTransSurf) { - - if (Zone(ZoneNum).FloorArea > 0.0) { + if (thisEnclosure.FloorArea > 0.0) { // spread onto all floor surfaces, these may or may not be called "floor" - BmIncInsSurfIntensRep(SurfNum) = BeamSolarRad * BTOTZone / Zone(ZoneNum).FloorArea; - } else if (Zone(ZoneNum).TotalSurfArea > 0.0) { + BmIncInsSurfIntensRep(SurfNum) = BeamSolarRad * BTOTZone / thisEnclosure.FloorArea; + } else if (thisEnclosure.TotalSurfArea > 0.0) { // spread onto all interior surfaces - BmIncInsSurfIntensRep(SurfNum) = BeamSolarRad * BTOTZone / Zone(ZoneNum).TotalSurfArea; + BmIncInsSurfIntensRep(SurfNum) = BeamSolarRad * BTOTZone / thisEnclosure.TotalSurfArea; } else { // divide be zero otherwise BmIncInsSurfIntensRep(SurfNum) = 0.0; } @@ -8226,12 +8148,12 @@ namespace SolarShading { // Solar not added by TDD:DOME; added to zone via TDD:DIFFUSER if (Surface(SurfNum).Class != SurfaceClass_TDD_Dome) { - ZoneTransSolar(ZoneNum) += WinTransSolar(SurfNum); //[W] - ZoneTransSolarEnergy(ZoneNum) = ZoneTransSolar(ZoneNum) * TimeStepZoneSec; //[J] - ZoneBmSolFrExtWinsRep(ZoneNum) += WinBmSolar(SurfNum); - ZoneDifSolFrExtWinsRep(ZoneNum) += WinDifSolar(SurfNum); - ZoneBmSolFrExtWinsRepEnergy(ZoneNum) = ZoneBmSolFrExtWinsRep(ZoneNum) * TimeStepZoneSec; //[J] - ZoneDifSolFrExtWinsRepEnergy(ZoneNum) = ZoneDifSolFrExtWinsRep(ZoneNum) * TimeStepZoneSec; //[J] + ZoneTransSolar(enclosureNum) += WinTransSolar(SurfNum); //[W] + ZoneTransSolarEnergy(enclosureNum) = ZoneTransSolar(enclosureNum) * TimeStepZoneSec; //[J] + ZoneBmSolFrExtWinsRep(enclosureNum) += WinBmSolar(SurfNum); + ZoneDifSolFrExtWinsRep(enclosureNum) += WinDifSolar(SurfNum); + ZoneBmSolFrExtWinsRepEnergy(enclosureNum) = ZoneBmSolFrExtWinsRep(enclosureNum) * TimeStepZoneSec; //[J] + ZoneDifSolFrExtWinsRepEnergy(enclosureNum) = ZoneDifSolFrExtWinsRep(enclosureNum) * TimeStepZoneSec; //[J] } } } @@ -8241,10 +8163,10 @@ namespace SolarShading { // Add interior window contribution to DBZone - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { - DBZone(ZoneNum) += DBZoneIntWin(ZoneNum); - ZoneBmSolFrIntWinsRep(ZoneNum) = DBZoneIntWin(ZoneNum) * BeamSolarRad; - ZoneBmSolFrIntWinsRepEnergy(ZoneNum) = ZoneBmSolFrIntWinsRep(ZoneNum) * TimeStepZoneSec; //[J] + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { + DBZone(enclosureNum) += DBZoneIntWin(enclosureNum); + ZoneBmSolFrIntWinsRep(enclosureNum) = DBZoneIntWin(enclosureNum) * BeamSolarRad; + ZoneBmSolFrIntWinsRepEnergy(enclosureNum) = ZoneBmSolFrIntWinsRep(enclosureNum) * TimeStepZoneSec; //[J] } // RJH - Calculate initial distribution of diffuse solar transmitted by exterior windows into each zone @@ -8343,20 +8265,12 @@ namespace SolarShading { // SUBROUTINE INFORMATION: // AUTHOR Simon Vidanovic // DATE WRITTEN May 2017 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // For a time step, calculates solar radiation absorbed by window layers, sky and diffuse solar // gain into zone from exterior window, beam solar on exterior window transmitted as beam and/or diffuse // and interior beam from exterior window that is absorbed/transmitted by back surfaces - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - using ScheduleManager::GetCurrentScheduleValue; using namespace DataDaylightingDevices; using namespace MultiLayerOptics; @@ -8372,18 +8286,19 @@ namespace SolarShading { AISurf = 0.0; AOSurf = 0.0; - for (int ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfSolarEnclosures; ++enclosureNum) { Real64 BABSZone = 0; Real64 BTOTZone = 0; - ZoneTransSolar(ZoneNum) = 0; - ZoneTransSolarEnergy(ZoneNum) = 0; - ZoneBmSolFrExtWinsRep(ZoneNum) = 0; - ZoneDifSolFrExtWinsRep(ZoneNum) = 0; - ZoneBmSolFrExtWinsRepEnergy(ZoneNum) = 0; - ZoneDifSolFrExtWinsRepEnergy(ZoneNum) = 0; - - for (int SurfNum = Zone(ZoneNum).SurfaceFirst; SurfNum <= Zone(ZoneNum).SurfaceLast; ++SurfNum) { + ZoneTransSolar(enclosureNum) = 0; + ZoneTransSolarEnergy(enclosureNum) = 0; + ZoneBmSolFrExtWinsRep(enclosureNum) = 0; + ZoneDifSolFrExtWinsRep(enclosureNum) = 0; + ZoneBmSolFrExtWinsRepEnergy(enclosureNum) = 0; + ZoneDifSolFrExtWinsRepEnergy(enclosureNum) = 0; + auto &thisEnclosure(DataViewFactorInformation::ZoneSolarInfo(enclosureNum)); + + for (int SurfNum : thisEnclosure.SurfacePtr) { if (Surface(SurfNum).Class != SurfaceClass_Window) continue; int SurfNum2 = 0; if (SurfaceWindow(SurfNum).OriginalClass == SurfaceClass_TDD_Diffuser) { @@ -8460,8 +8375,8 @@ namespace SolarShading { Real64 DGZoneWin = window.GndSolarInc * Tdiff * Surface(SurfNum2).Area; (GndSolarRad != 0) ? DGZoneWin /= GndSolarRad : DGZoneWin /= 1e-8; - DSZone(ZoneNum) = DSZoneWin; - DGZone(ZoneNum) = DGZoneWin; + DSZone(enclosureNum) = DSZoneWin; + DGZone(enclosureNum) = DGZoneWin; //////////////////////////////////////////////////////////////////// // BEAM SOLAR ON EXTERIOR WINDOW TRANSMITTED AS BEAM AND/OR DIFFUSE @@ -8540,7 +8455,7 @@ namespace SolarShading { } } } else { - for (int FloorNum = Zone(ZoneNum).SurfaceFirst; FloorNum <= Zone(ZoneNum).SurfaceLast; ++FloorNum) { + for (int FloorNum : thisEnclosure.SurfacePtr) { // In following, ISABSF is zero except for nominal floor surfaces if (!Surface(FloorNum).HeatTransSurf) continue; if (ISABSF(FloorNum) <= 0.0 || FloorNum == SurfNum) continue; // Keep only floor surfaces @@ -8555,14 +8470,14 @@ namespace SolarShading { } } } - ZoneTransSolar(ZoneNum) += WinTransSolar(SurfNum); //[W] - ZoneTransSolarEnergy(ZoneNum) = ZoneTransSolar(ZoneNum) * TimeStepZoneSec; //[J] - ZoneBmSolFrExtWinsRep(ZoneNum) += WinBmSolar(SurfNum); - ZoneDifSolFrExtWinsRep(ZoneNum) += WinDifSolar(SurfNum); - ZoneBmSolFrExtWinsRepEnergy(ZoneNum) = ZoneBmSolFrExtWinsRep(ZoneNum) * TimeStepZoneSec; //[J] - ZoneDifSolFrExtWinsRepEnergy(ZoneNum) = ZoneDifSolFrExtWinsRep(ZoneNum) * TimeStepZoneSec; //[J] - } - DBZone(ZoneNum) = BTOTZone - BABSZone; + ZoneTransSolar(enclosureNum) += WinTransSolar(SurfNum); //[W] + ZoneTransSolarEnergy(enclosureNum) = ZoneTransSolar(enclosureNum) * TimeStepZoneSec; //[J] + ZoneBmSolFrExtWinsRep(enclosureNum) += WinBmSolar(SurfNum); + ZoneDifSolFrExtWinsRep(enclosureNum) += WinDifSolar(SurfNum); + ZoneBmSolFrExtWinsRepEnergy(enclosureNum) = ZoneBmSolFrExtWinsRep(enclosureNum) * TimeStepZoneSec; //[J] + ZoneDifSolFrExtWinsRepEnergy(enclosureNum) = ZoneDifSolFrExtWinsRep(enclosureNum) * TimeStepZoneSec; //[J] + } + DBZone(enclosureNum) = BTOTZone - BABSZone; } } @@ -8573,37 +8488,13 @@ namespace SolarShading { // SUBROUTINE INFORMATION: // AUTHOR Simon Vidanovic // DATE WRITTEN June 2013 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Returns scheduled surface gain object for given surface-construction combination - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // USE STATEMENTS: - // Return value int WindowScheduledSolarAbs; - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - WindowScheduledSolarAbs = 0; for (int i = 1; i <= TotFenLayAbsSSG; ++i) { @@ -8623,37 +8514,13 @@ namespace SolarShading { // SUBROUTINE INFORMATION: // AUTHOR Simon Vidanovic // DATE WRITTEN June 2013 - // MODIFIED na - // RE-ENGINEERED na // PURPOSE OF THIS SUBROUTINE: // Returns scheduled surface gain pointer for given surface-construction combination - // METHODOLOGY EMPLOYED: - // na - - // REFERENCES: - // na - - // USE STATEMENTS: - // Return value int SurfaceScheduledSolarInc; - // Locals - // SUBROUTINE ARGUMENT DEFINITIONS: - - // SUBROUTINE PARAMETER DEFINITIONS: - // na - - // INTERFACE BLOCK SPECIFICATIONS - // na - - // DERIVED TYPE DEFINITIONS - // na - - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - SurfaceScheduledSolarInc = 0; for (int i = 1; i <= TotSurfIncSolSSG; ++i) { @@ -11298,7 +11165,7 @@ namespace SolarShading { // PURPOSE OF THIS SUBROUTINE: // This subroutine calculates the initial distribution // of diffuse solar transmitted through exterior windows - // to individual heat transfer surfaces in each zone. + // to individual heat transfer surfaces in each zone(or enclosure). // METHODOLOGY EMPLOYED: // Apportions diffuse solar transmitted through each exterior window @@ -11324,18 +11191,6 @@ namespace SolarShading { using WindowEquivalentLayer::CalcEQLOpticalProperty; using namespace DataWindowEquivalentLayer; - // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int ZoneNum; // DO loop counter for zones - int AdjZoneNum; // Index for adjacent zones - int AdjSurfNum; // Index for adjacent surfaces - int DifTransSurfNum; // Diffuse Solar Transmitting Surface number - int HeatTransSurfNum; // Heat Transfer Surface number - int ConstrNum; // Construction number - int AdjConstrNum; // Construction number of other side surface - int ConstrNumSh; // Shaded construction number - int IGlass; // Glass layer counter - int TotGlassLayers; // Number of glass layers in a window construction - int ShadeFlag; // Shading flag Real64 AbsInt; // Tmp var for Inside surface short-wave absorptance Real64 MovInsulSchedVal; // Value of the movable insulation schedule for current time Real64 HMovInsul; // Conductance of movable insulation @@ -11381,9 +11236,6 @@ namespace SolarShading { int EQLNum; // equivalent layer fenestration index int Lay; // equivalent layer fenestration layer index - int FirstZoneSurf; // conversion index for ViewFactor - int LastZoneSurf; - // Init accumulators for absorbed diffuse solar for all surfaces for later heat balance calcs InitialDifSolInAbs = 0.0; InitialDifSolwinAbs = 0.0; @@ -11395,8 +11247,8 @@ namespace SolarShading { InitialDifSolInTrans = 0.0; // Loop over all zones doing initial distribution of diffuse solar to interior heat transfer surfaces - for (ZoneNum = 1; ZoneNum <= NumOfZones; ++ZoneNum) { - + for (int enclosureNum = 1; enclosureNum <= DataViewFactorInformation::NumOfRadiantEnclosures; ++enclosureNum) { + auto & thisEnclosure(DataViewFactorInformation::ZoneSolarInfo(enclosureNum)); // Init Zone accumulators for debugging ZoneDifSolarTrans = 0.0; ZoneDifSolarDistAbsorbedTotl = 0.0; @@ -11404,9 +11256,7 @@ namespace SolarShading { ZoneDifSolarDistTransmittedTotl = 0.0; // Loop over all diffuse solar transmitting surfaces (i.e., exterior windows and TDDs) in the current zone - FirstZoneSurf = Zone(ZoneNum).SurfaceFirst; - LastZoneSurf = Zone(ZoneNum).SurfaceLast; - for (DifTransSurfNum = FirstZoneSurf; DifTransSurfNum <= LastZoneSurf; ++DifTransSurfNum) { + for (int DifTransSurfNum : thisEnclosure.SurfacePtr) { // Skip surfaces that are not exterior, except for TDD_Diffusers if (((Surface(DifTransSurfNum).ExtBoundCond != ExternalEnvironment) && (Surface(DifTransSurfNum).ExtBoundCond != OtherSideCondModeledExt)) && @@ -11437,14 +11287,17 @@ namespace SolarShading { WinDifSolarDistTransmittedTotl = 0.0; // Loop over all heat transfer surfaces in the current zone that might receive diffuse solar - for (HeatTransSurfNum = FirstZoneSurf; HeatTransSurfNum <= LastZoneSurf; ++HeatTransSurfNum) { + for (int HeatTransSurfNum : thisEnclosure.SurfacePtr) { // Skip surfaces that are not heat transfer surfaces - if (!Surface(HeatTransSurfNum).HeatTransSurf) continue; // Skip tubular daylighting device domes if (Surface(HeatTransSurfNum).Class == SurfaceClass_TDD_Dome) continue; // View factor from current (sending) window DifTransSurfNum to current (receiving) surface HeatTransSurfNum - ViewFactor = ZoneInfo(ZoneNum).F(HeatTransSurfNum - FirstZoneSurf + 1, DifTransSurfNum - FirstZoneSurf + 1); + int HTenclosureSurfNum = Surface(HeatTransSurfNum).SolarEnclSurfIndex; // HT surface index for ZoneSolarInfo.SurfacePtr and F arrays + int enclosureNum = Surface(HeatTransSurfNum).SolarEnclIndex; // index for ZoneSolarInfo + int DTenclSurfNum = Surface(DifTransSurfNum).SolarEnclSurfIndex; // Window surface index for ZoneSolarInfo.SurfacePtr and F arrays + + ViewFactor = DataViewFactorInformation::ZoneSolarInfo(enclosureNum).F(HTenclosureSurfNum, DTenclSurfNum); // debug ViewFactorTotal ViewFactorTotal += ViewFactor; // debug @@ -11459,7 +11312,7 @@ namespace SolarShading { // Calculate diffuse solar from current exterior window absorbed and reflected by current heat transfer surface // And calculate transmitted diffuse solar to adjacent zones through interior windows - ConstrNum = Surface(HeatTransSurfNum).Construction; + int ConstrNum = Surface(HeatTransSurfNum).Construction; if (Construct(ConstrNum).TransDiff <= 0.0) { // Interior Opaque Surface // Determine the inside (back) diffuse solar absorptance @@ -11500,7 +11353,7 @@ namespace SolarShading { DifSolarReflW = WinDifSolarTrans_Factor * InsideDifReflectance; // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - InitialZoneDifSolReflW(ZoneNum) += DifSolarReflW; // [W] + InitialZoneDifSolReflW(enclosureNum) += DifSolarReflW; // [W] // Accumulate Window and Zone total distributed diffuse solar to check for conservation of energy // For opaque surfaces all incident diffuse is either absorbed or reflected @@ -11508,16 +11361,15 @@ namespace SolarShading { WinDifSolarDistReflectedTotl += DifSolarReflW; // debug [W] ZoneDifSolarDistAbsorbedTotl += DifSolarAbsW; // debug [W] ZoneDifSolarDistReflectedTotl += DifSolarReflW; // debug [W] - } else { // Exterior or Interior Window - ConstrNumSh = Surface(HeatTransSurfNum).ShadedConstruction; + int ConstrNumSh = Surface(HeatTransSurfNum).ShadedConstruction; if (SurfaceWindow(HeatTransSurfNum).StormWinFlag == 1) { ConstrNum = Surface(HeatTransSurfNum).StormWinConstruction; ConstrNumSh = Surface(HeatTransSurfNum).StormWinShadedConstruction; } - TotGlassLayers = Construct(ConstrNum).TotGlassLayers; - ShadeFlag = SurfaceWindow(HeatTransSurfNum).ShadingFlag; + int TotGlassLayers = Construct(ConstrNum).TotGlassLayers; + int ShadeFlag = SurfaceWindow(HeatTransSurfNum).ShadingFlag; if (SurfaceWindow(HeatTransSurfNum).WindowModelType != WindowEQLModel) { if (ShadeFlag <= 0) { // No window shading @@ -11527,7 +11379,7 @@ namespace SolarShading { // Calc diffuse solar absorbed by all window glass layers // Note: I am assuming here that individual glass layer absorptances have been corrected // to account for layer by layer transmittance and reflection effects. - for (IGlass = 1; IGlass <= TotGlassLayers; ++IGlass) { + for (int IGlass = 1; IGlass <= TotGlassLayers; ++IGlass) { // Calc diffuse solar absorbed from the inside by each window glass layer [W] AbsInt = Construct(ConstrNum).AbsDiffBack(IGlass); WinDifSolLayAbsW = WinDifSolarTrans_Factor * Construct(ConstrNum).AbsDiffBack(IGlass); @@ -11553,7 +11405,7 @@ namespace SolarShading { DifSolarReflW = WinDifSolarTrans_Factor * Construct(ConstrNum).ReflectSolDiffBack; // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - InitialZoneDifSolReflW(ZoneNum) += DifSolarReflW; // [W] + InitialZoneDifSolReflW(enclosureNum) += DifSolarReflW; // [W] // Accumulate Window and Zone total distributed diffuse solar to check for conservation of energy WinDifSolarDistReflectedTotl += DifSolarReflW; // debug @@ -11568,7 +11420,7 @@ namespace SolarShading { // NOTE: This calc is here because interior windows are currently assumed to have no shading // Get the adjacent surface number for this receiving window surface - AdjSurfNum = Surface(HeatTransSurfNum).ExtBoundCond; + int AdjSurfNum = Surface(HeatTransSurfNum).ExtBoundCond; // If the adjacent surface number is > 0, this is an interior window if (AdjSurfNum > 0) { // this is an interior window surface @@ -11584,16 +11436,16 @@ namespace SolarShading { // in the adjacent zone. However, the above calculation better conserves energy, although possibly at the expense // of less accurate transmittance calcs. Preliminary tests showed fairly good agreement between the two // DifSolarTransW calculation methods, but for consistency I stuck with the above. - AdjConstrNum = Surface(AdjSurfNum).Construction; + // int AdjConstrNum = Surface(AdjSurfNum).Construction; // DifSolarTransW = WinDifSolar(DifTransSurfNum) & // * ViewFactor & // * Construct(AdjConstrNum)%TransDiff // Get the adjacent zone index - AdjZoneNum = Surface(AdjSurfNum).Zone; + int adjEnclosureNum = Surface(AdjSurfNum).SolarEnclIndex; // Call routine to distribute diffuse solar transmitted through this interior window into adjacent zone - CalcInteriorWinTransDifSolInitialDistribution(AdjZoneNum, AdjSurfNum, DifSolarTransW); + CalcInteriorWinTransDifSolInitialDistribution(adjEnclosureNum, AdjSurfNum, DifSolarTransW); } else { // this is an exterior window surface @@ -11622,7 +11474,7 @@ namespace SolarShading { auto const &construct_sh(Construct(ConstrNumSh)); auto const &construct_sh_AbsDiffBack(construct_sh.AbsDiffBack); auto const &construct_sh_BlAbsDiffBack(construct_sh.BlAbsDiffBack); - for (IGlass = 1; IGlass <= construct_sh.TotGlassLayers; ++IGlass) { + for (int IGlass = 1; IGlass <= construct_sh.TotGlassLayers; ++IGlass) { if (ShadeFlag == IntShadeOn || ShadeFlag == ExtShadeOn || ShadeFlag == BGShadeOn || ShadeFlag == ExtScreenOn) { // Calc diffuse solar absorbed in each window glass layer and shade WinDifSolLayAbsW = WinDifSolarTrans_Factor * construct_sh_AbsDiffBack(IGlass); @@ -11656,7 +11508,7 @@ namespace SolarShading { DifSolarReflW = WinDifSolarTrans_Factor * InsideDifReflectance; // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - InitialZoneDifSolReflW(ZoneNum) += DifSolarReflW; // [W] + InitialZoneDifSolReflW(enclosureNum) += DifSolarReflW; // [W] // Accumulate Window and Zone total distributed diffuse solar to check for conservation of energy WinDifSolarDistReflectedTotl += DifSolarReflW; // debug @@ -11705,7 +11557,7 @@ namespace SolarShading { auto const &construct_AbsDiffBack(construct.AbsDiffBack); auto const &construct_sh(Construct(ConstrNumSh)); auto const &construct_sh_AbsDiffBack(construct_sh.AbsDiffBack); - for (IGlass = 1; IGlass <= TotGlassLayers; ++IGlass) { + for (int IGlass = 1; IGlass <= TotGlassLayers; ++IGlass) { // Calc diffuse solar absorbed in each window glass layer WinDifSolLayAbsW = WinDifSolarTrans_Factor * InterpSw(win_SwitchingFactor, construct_AbsDiffBack(IGlass), construct_sh_AbsDiffBack(IGlass)); @@ -11726,7 +11578,7 @@ namespace SolarShading { InterpSw(win_SwitchingFactor, construct.ReflectSolDiffBack, construct_sh.ReflectSolDiffBack); // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - InitialZoneDifSolReflW(ZoneNum) += DifSolarReflW; // [W] + InitialZoneDifSolReflW(enclosureNum) += DifSolarReflW; // [W] // Accumulate Window and Zone total distributed diffuse solar to check for conservation of energy WinDifSolarDistReflectedTotl += DifSolarReflW; // debug @@ -11781,7 +11633,7 @@ namespace SolarShading { DifSolarReflW = WinDifSolarTrans_Factor * Construct(ConstrNum).ReflectSolDiffBack; // Accumulate total reflected distributed diffuse solar for each zone for subsequent interreflection calcs - InitialZoneDifSolReflW(ZoneNum) += DifSolarReflW; // [W] + InitialZoneDifSolReflW(enclosureNum) += DifSolarReflW; // [W] // Accumulate Window and Zone total distributed diffuse solar to check for conservation of energy WinDifSolarDistReflectedTotl += DifSolarReflW; // debug @@ -11796,7 +11648,7 @@ namespace SolarShading { // NOTE: This calc is here because interior windows are currently assumed to have no shading // Get the adjacent surface number for this receiving window surface - AdjSurfNum = Surface(HeatTransSurfNum).ExtBoundCond; + int AdjSurfNum = Surface(HeatTransSurfNum).ExtBoundCond; // If the adjacent surface number is > 0, this is an interior window if (AdjSurfNum > 0) { // this is an interior window surface @@ -11805,11 +11657,11 @@ namespace SolarShading { // Transmitted diffuse solar [W] = current exterior window transmitted diffuse solar // * view factor from current (sending) window DifTransSurfNum to current (receiving) surface HeatTransSurfNum DifSolarTransW = AbsSolDiffBackEQL(2, CFS(EQLNum).NL + 1) * ViewFactor; - AdjConstrNum = Surface(AdjSurfNum).Construction; + //int AdjConstrNum = Surface(AdjSurfNum).Construction; // Get the adjacent zone index - AdjZoneNum = Surface(AdjSurfNum).Zone; + int adjEnclosureNum = Surface(AdjSurfNum).SolarEnclIndex; // Call routine to distribute diffuse solar transmitted through this interior window into adjacent zone - CalcInteriorWinTransDifSolInitialDistribution(AdjZoneNum, AdjSurfNum, DifSolarTransW); + CalcInteriorWinTransDifSolInitialDistribution(adjEnclosureNum, AdjSurfNum, DifSolarTransW); } else { // this is an exterior window surface @@ -11882,9 +11734,9 @@ namespace SolarShading { } void CalcInteriorWinTransDifSolInitialDistribution( - int const ZoneNum, // Zone index number - int const IntWinSurfNum, // Interior Window Surface number in Zone ZoneNum - Real64 const IntWinDifSolarTransW // Diffuse Solar transmitted through Interior Window IntWinSurfNum from adjacent zone [W] + int const IntWinEnclosureNum, // Interior Window Enclosure index number + int const IntWinSurfNum, // Interior Window Surface number + Real64 const IntWinDifSolarTransW // Diffuse Solar transmitted through Interior Window IntWinSurfNum from adjacent enclosure [W] ) { @@ -11897,20 +11749,20 @@ namespace SolarShading { // PURPOSE OF THIS SUBROUTINE: // This subroutine calculates the initial distribution // of diffuse solar transmitted through the given interior window - // to individual heat transfer surfaces in the given zone. - // Diffuse solar transmitted through interior windows in this zone - // to adjacent zones, is added to the InitialZoneDifSolReflW - // of the adjacent zone for subsequent interreflection calcs + // to individual heat transfer surfaces in the given enclosure. + // Diffuse solar transmitted through interior windows in this enclosure + // to adjacent enclosures, is added to the InitialZoneDifSolReflW + // of the adjacent enclosure for subsequent interreflection calcs // METHODOLOGY EMPLOYED: // Similar to method used in CalcWinTransDifSolInitialDistribution. // Apportions diffuse solar transmitted through an interior window // that is then absorbed, reflected, and/or transmitted - // by other heat transfer surfaces in the given zone. + // by other heat transfer surfaces in the given enclosure. // Calculations use: // 1. DifSolarTransW calculated in SUBROUTINE CalcWinTransDifSolInitialDistribution, // 2. view factors between the interior window and - // other heat transfer surfaces in the given zone + // other heat transfer surfaces in the given enclosure // calculated in SUBROUTINE CalcApproximateViewFactors, and // 3. surface absorptances, reflectances, and transmittances // determined here using revised code from SUBROUTINE InitIntSolarDistribution @@ -11926,10 +11778,6 @@ namespace SolarShading { using DataHeatBalSurface::InitialDifSolInTrans; // SUBROUTINE LOCAL VARIABLE DECLARATIONS: - int AdjZoneNum; // Index for adjacent zones - int AdjSurfNum; // Index for adjacent surfaces - int ConstrNum; // Construction number - // INTEGER :: AdjConstrNum ! Construction number of other side surface int ConstrNumSh; // Shaded construction number int IGlass; // Glass layer counter int TotGlassLayers; // Number of glass layers in a window construction @@ -11981,20 +11829,21 @@ namespace SolarShading { ViewFactorTotal = 0.0; WinDifSolarTrans = IntWinDifSolarTransW; - // Init first and last surfnums for this zone - int const FirstZoneSurf(Zone(ZoneNum).SurfaceFirst); - int const LastZoneSurf(Zone(ZoneNum).SurfaceLast); - + auto &thisEnclosure(DataViewFactorInformation::ZoneSolarInfo(IntWinEnclosureNum)); // Loop over all heat transfer surfaces in the current zone that might receive diffuse solar Real64 InitialZoneDifSolReflW_zone(0.0); - for (int HeatTransSurfNum = FirstZoneSurf; HeatTransSurfNum <= LastZoneSurf; ++HeatTransSurfNum) { + for (int HeatTransSurfNum : thisEnclosure.SurfacePtr) { // Skip surfaces that are not heat transfer surfaces if (!Surface(HeatTransSurfNum).HeatTransSurf) continue; // Skip tubular daylighting device domes if (Surface(HeatTransSurfNum).Class == SurfaceClass_TDD_Dome) continue; // View factor from current (sending) window IntWinSurfNum to current (receiving) surface HeatTransSurfNum - ViewFactor = ZoneInfo(ZoneNum).F(HeatTransSurfNum - FirstZoneSurf + 1, IntWinSurfNum - FirstZoneSurf + 1); + int HTenclosureSurfNum = Surface(HeatTransSurfNum).SolarEnclSurfIndex; // HT surface index for ZoneSolarInfo.SurfacePtr and F arrays + int enclosureNum = Surface(HeatTransSurfNum).SolarEnclIndex; // index for ZoneSolarInfo + int IntWinEnclSurfNum = Surface(IntWinSurfNum).SolarEnclSurfIndex; // Window surface index for ZoneSolarInfo.SurfacePtr and F arrays + + ViewFactor = DataViewFactorInformation::ZoneSolarInfo(enclosureNum).F(HTenclosureSurfNum, IntWinEnclSurfNum); // debug ViewFactorTotal ViewFactorTotal += ViewFactor; // debug @@ -12004,7 +11853,7 @@ namespace SolarShading { // Calculate diffuse solar from current interior window absorbed and reflected by current heat transfer surface // And calculate transmitted diffuse solar to adjacent zones through interior windows - ConstrNum = Surface(HeatTransSurfNum).Construction; + int ConstrNum = Surface(HeatTransSurfNum).Construction; if (Construct(ConstrNum).TransDiff <= 0.0) { // Interior Opaque Surface // Determine the inside (back) diffuse solar absorptance @@ -12124,16 +11973,16 @@ namespace SolarShading { // NOTE: This calc is here because interior windows are currently assumed to have no shading // Get the adjacent surface number for this receiving window surface - AdjSurfNum = Surface(HeatTransSurfNum).ExtBoundCond; + int AdjSurfNum = Surface(HeatTransSurfNum).ExtBoundCond; // If the adjacent surface number is > 0, this is an interior window if (AdjSurfNum > 0) { // this is an interior window surface // Get the adjacent zone index - AdjZoneNum = Surface(AdjSurfNum).Zone; + int adjEnclosureNum = Surface(AdjSurfNum).SolarEnclIndex; // Add transmitted diffuse solar to total reflected distributed diffuse solar for each zone // for subsequent interreflection calcs - InitialZoneDifSolReflW(AdjZoneNum) += DifSolarTransW; // [W] + InitialZoneDifSolReflW(adjEnclosureNum) += DifSolarTransW; // [W] } } else if (ShadeFlag == IntShadeOn || ShadeFlag >= 3) { @@ -12299,7 +12148,7 @@ namespace SolarShading { } // opaque or window heat transfer surface } // HeatTransSurfNum = Zone(ZoneNum)%SurfaceFirst, Zone(ZoneNum)%SurfaceLast - InitialZoneDifSolReflW(ZoneNum) += InitialZoneDifSolReflW_zone; + InitialZoneDifSolReflW(IntWinEnclosureNum) += InitialZoneDifSolReflW_zone; // Check debug var for view factors here // ViewFactorTotal diff --git a/src/EnergyPlus/SolarShading.hh b/src/EnergyPlus/SolarShading.hh index 309d7eb91dc..3cff0b61381 100644 --- a/src/EnergyPlus/SolarShading.hh +++ b/src/EnergyPlus/SolarShading.hh @@ -388,9 +388,9 @@ namespace SolarShading { void CalcWinTransDifSolInitialDistribution(); void CalcInteriorWinTransDifSolInitialDistribution( - int const ZoneNum, // Zone index number - int const IntWinSurfNum, // Interior Window Surface number in Zone ZoneNum - Real64 const IntWinDifSolarTransW // Diffuse Solar transmitted through Interior Window IntWinSurfNum from adjacent zone [W] + int const IntWinEnclosureNum, // Interior Window Enclosure index number + int const IntWinSurfNum, // Interior Window Surface number + Real64 const IntWinDifSolarTransW // Diffuse Solar transmitted through Interior Window IntWinSurfNum from adjacent enclosure [W] ); void CalcComplexWindowOverlap(BSDFGeomDescr &Geom, // State Geometry diff --git a/src/EnergyPlus/SteamBaseboardRadiator.cc b/src/EnergyPlus/SteamBaseboardRadiator.cc index 7b4ccda2644..d2688b4948e 100644 --- a/src/EnergyPlus/SteamBaseboardRadiator.cc +++ b/src/EnergyPlus/SteamBaseboardRadiator.cc @@ -71,6 +71,7 @@ #include #include #include +#include #include #include #include @@ -555,16 +556,32 @@ namespace SteamBaseboardRadiator { SteamBaseboard(BaseboardNum).FracDistribToSurf.allocate(SteamBaseboard(BaseboardNum).TotSurfToDistrib); SteamBaseboard(BaseboardNum).FracDistribToSurf = 0.0; + // search zone equipment list structure for zone index + for (int ctrlZone = 1; ctrlZone <= DataGlobals::NumOfZones; ++ctrlZone) { + for (int zoneEquipTypeNum = 1; zoneEquipTypeNum <= DataZoneEquipment::ZoneEquipList(ctrlZone).NumOfEquipTypes; ++zoneEquipTypeNum) { + if (DataZoneEquipment::ZoneEquipList(ctrlZone).EquipType_Num(zoneEquipTypeNum) == DataZoneEquipment::BBSteam_Num && + DataZoneEquipment::ZoneEquipList(ctrlZone).EquipName(zoneEquipTypeNum) == SteamBaseboard(BaseboardNum).EquipID) { + SteamBaseboard(BaseboardNum).ZonePtr = ctrlZone; + } + } + } + if (SteamBaseboard(BaseboardNum).ZonePtr <= 0) { + ShowSevereError(RoutineName + cCMO_BBRadiator_Steam + "=\"" + SteamBaseboard(BaseboardNum).EquipID + + "\" is not on any ZoneHVAC:EquipmentList."); + ErrorsFound = true; + continue; + } + AllFracsSummed = SteamBaseboard(BaseboardNum).FracDistribPerson; for (SurfNum = 1; SurfNum <= SteamBaseboard(BaseboardNum).TotSurfToDistrib; ++SurfNum) { SteamBaseboard(BaseboardNum).SurfaceName(SurfNum) = cAlphaArgs(SurfNum + 5); - SteamBaseboard(BaseboardNum).SurfacePtr(SurfNum) = UtilityRoutines::FindItemInList(cAlphaArgs(SurfNum + 5), Surface); + SteamBaseboard(BaseboardNum).SurfacePtr(SurfNum) = + HeatBalanceIntRadExchange::GetRadiantSystemSurface(cCMO_BBRadiator_Steam, + SteamBaseboard(BaseboardNum).EquipID, + SteamBaseboard(BaseboardNum).ZonePtr, + SteamBaseboard(BaseboardNum).SurfaceName(SurfNum), + ErrorsFound); SteamBaseboard(BaseboardNum).FracDistribToSurf(SurfNum) = rNumericArgs(SurfNum + 8); - if (SteamBaseboard(BaseboardNum).SurfacePtr(SurfNum) == 0) { - ShowSevereError(RoutineName + cCMO_BBRadiator_Steam + "=\"" + cAlphaArgs(1) + "\", " + cAlphaFieldNames(SurfNum + 5) + "=\"" + - cAlphaArgs(SurfNum + 5) + "\" invalid - not found."); - ErrorsFound = true; - } if (SteamBaseboard(BaseboardNum).FracDistribToSurf(SurfNum) > MaxFraction) { ShowWarningError(RoutineName + cCMO_BBRadiator_Steam + "=\"" + cAlphaArgs(1) + "\", " + cNumericFieldNames(SurfNum + 8) + "was greater than the allowable maximum."); @@ -609,15 +626,6 @@ namespace SteamBaseboardRadiator { SteamBaseboard(BaseboardNum).FluidIndex = SteamIndex; - // search zone equipment list structure for zone index - for (int ctrlZone = 1; ctrlZone <= DataGlobals::NumOfZones; ++ctrlZone) { - for (int zoneEquipTypeNum = 1; zoneEquipTypeNum <= DataZoneEquipment::ZoneEquipList(ctrlZone).NumOfEquipTypes; ++zoneEquipTypeNum) { - if (DataZoneEquipment::ZoneEquipList(ctrlZone).EquipType_Num(zoneEquipTypeNum) == DataZoneEquipment::BBElectric_Num && - DataZoneEquipment::ZoneEquipList(ctrlZone).EquipName(zoneEquipTypeNum) == SteamBaseboard(BaseboardNum).EquipID) { - SteamBaseboard(BaseboardNum).ZonePtr = ctrlZone; - } - } - } } if (ErrorsFound) { diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 7a3d0b7b487..c5c2a28f49b 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -69,6 +69,7 @@ #include #include #include +#include #include #include #include @@ -693,6 +694,9 @@ namespace SurfaceGeometry { } // ZoneNum + // Set up solar distribution enclosures allowing for any air boundaries + SetupSolarEnclosuresAndAirBoundaries(ErrorsFound); + // Do the Stratosphere check SetZoneOutBulbTempAt(); CheckZoneOutBulbTempAt(); @@ -1977,11 +1981,9 @@ namespace SurfaceGeometry { // Exclude windows and doors, i.e., consider only their base surfaces as possible obstructions if (Surface(SurfNum).Class == SurfaceClass_Window || Surface(SurfNum).Class == SurfaceClass_Door) continue; // Exclude duplicate shading surfaces - // TH 3/25/2010 CR 7872 - // Shading surface names can start with Mir, a better way to use another flag - // to indicate whether a surface is a mirrored one. - // IF(Surface(SurfNum)%Name(1:3) == 'Mir') CYCLE if (Surface(SurfNum).MirroredSurf) continue; + // Exclude air boundary surfaces + if (Surface(SurfNum).HeatTransSurf && Construct(Surface(SurfNum).Construction).TypeIsAirBoundary) continue; Surface(SurfNum).ShadowSurfPossibleObstruction = true; } @@ -1992,7 +1994,8 @@ namespace SurfaceGeometry { for (SurfNum = 1; SurfNum <= TotSurfaces; ++SurfNum) { if (!Surface(SurfNum).HeatTransSurf) continue; // ignore shading surfaces if (Surface(SurfNum).ExtBoundCond > 0 && Surface(SurfNum).ExtBoundCond != SurfNum) continue; // interzone, not adiabatic surface - if (!Construct(Surface(SurfNum).Construction).TypeIsIRT) continue; + if (!Construct(Surface(SurfNum).Construction).TypeIsIRT) + continue; if (!DisplayExtraWarnings) { ++iTmp1; } else { @@ -2056,6 +2059,9 @@ namespace SurfaceGeometry { GetSurfaceHeatTransferAlgorithmOverrides(ErrorsFound); + // Set up enclosures, process Air Boundaries if any + SetupRadiantEnclosuresAndAirBoundaries(ErrorsFound); + GetSurfaceSrdSurfsData(ErrorsFound); GetSurfaceLocalEnvData(ErrorsFound); @@ -4076,13 +4082,13 @@ namespace SurfaceGeometry { if (SurfaceTmp(SurfNum).ExtBoundCond == Ground) { ShowSevereError(cCurrentModuleObject + "=\"" + SurfaceTmp(SurfNum).Name + - "\", Exterior boundary condition = Ground is not be allowed with windows."); + "\", Exterior boundary condition = Ground is not allowed with windows."); ErrorsFound = true; } if (SurfaceTmp(SurfNum).ExtBoundCond == KivaFoundation) { ShowSevereError(cCurrentModuleObject + "=\"" + SurfaceTmp(SurfNum).Name + - "\", Exterior boundary condition = Foundation is not be allowed with windows."); + "\", Exterior boundary condition = Foundation is not allowed with windows."); ErrorsFound = true; } @@ -4397,7 +4403,7 @@ namespace SurfaceGeometry { if (SurfaceTmp(SurfNum).ExtBoundCond == Ground) { ShowSevereError(cCurrentModuleObject + "=\"" + SurfaceTmp(SurfNum).Name + - "\", Exterior boundary condition = Ground is not be allowed with windows."); + "\", Exterior boundary condition = Ground is not allowed with windows."); ErrorsFound = true; } @@ -7024,15 +7030,28 @@ namespace SurfaceGeometry { } } - // Change algorithm for Kiva foundation surfaces + // Change algorithm for Kiva and air boundary foundation surfaces for (auto &surf : Surface) { if (surf.ExtBoundCond == KivaFoundation) { surf.HeatTransferAlgorithm = HeatTransferModel_Kiva; DataHeatBalance::AnyKiva = true; } - } - - // Setup Kiva intances + //if (surf.HeatTransSurf) { + // if (DataHeatBalance::Construct(surf.Construction).TypeIsAirBoundaryIRTSurface) { + // // IRT air boundaries use CTF algorithm + // surf.HeatTransferAlgorithm = HeatTransferModel_CTF; + // DataHeatBalance::AnyAirBoundary = true; + // } else if (DataHeatBalance::Construct(surf.Construction).TypeIsAirBoundaryInteriorWindow) { + // surf.HeatTransferAlgorithm = HeatTransferModel_AirBoundaryIntWin; + // DataHeatBalance::AnyAirBoundary = true; + // } else if (DataHeatBalance::Construct(surf.Construction).TypeIsAirBoundary) { + // surf.HeatTransferAlgorithm = HeatTransferModel_AirBoundaryNoHT; + // DataHeatBalance::AnyAirBoundary = true; + // } + //} + } + + // Setup Kiva instances if (DataHeatBalance::AnyKiva) { if (!ErrorsFound) ErrorsFound = kivaManager.setupKivaInstances(); } @@ -8895,6 +8914,14 @@ namespace SurfaceGeometry { auto &fnd = fndInput.foundation; fnd = kivaManager.defaultFoundation.foundation; + // Indoor temperature + if (!lNumericFieldBlanks(numF)) { + fndInput.assumedIndoorTemperature = rNumericArgs(numF); + } else { + fndInput.assumedIndoorTemperature = -9999; + } + numF++; + // Interior horizontal insulation if (!lAlphaFieldBlanks(alpF)) { int index = UtilityRoutines::FindItemInList(cAlphaArgs(alpF), Material); @@ -9671,10 +9698,9 @@ namespace SurfaceGeometry { ErrorsFound = true; } else { int const MaterialLayerGroup = Material(MaterNum).Group; - if ((MaterialLayerGroup == WindowSimpleGlazing) || (MaterialLayerGroup == GlassEquivalentLayer) || - (MaterialLayerGroup == ShadeEquivalentLayer) || (MaterialLayerGroup == DrapeEquivalentLayer) || - (MaterialLayerGroup == BlindEquivalentLayer) || (MaterialLayerGroup == ScreenEquivalentLayer) || - (MaterialLayerGroup == GapEquivalentLayer)) { + if ((MaterialLayerGroup == WindowSimpleGlazing) || (MaterialLayerGroup == ShadeEquivalentLayer) || + (MaterialLayerGroup == DrapeEquivalentLayer) || (MaterialLayerGroup == BlindEquivalentLayer) || + (MaterialLayerGroup == ScreenEquivalentLayer) || (MaterialLayerGroup == GapEquivalentLayer)) { ShowSevereError("Invalid movable insulation material for " + cCurrentModuleObject + ":"); ShowSevereError("...Movable insulation material type specified = " + DataHeatBalance::cMaterialGroupType(MaterialLayerGroup)); ShowSevereError("...Movable insulation material name specified = " + cAlphaArgs(3)); @@ -12597,6 +12623,244 @@ namespace SurfaceGeometry { } } + void SetupRadiantEnclosuresAndAirBoundaries(bool &ErrorsFound) + { + bool anyRadiantGroupedZones = false; + int enclosureNum = 0; + if (std::any_of(Construct.begin(), Construct.end(), [](DataHeatBalance::ConstructionData const &e) { return e.TypeIsAirBoundary; })) { + std::string RoutineName = "SetupRadiantEnclosuresAndAirBoundaries"; + int errorCount = 0; + for (int surfNum = 1; surfNum <= DataSurfaces::TotSurfaces; ++surfNum) { + auto &surf(Surface(surfNum)); + if (surf.Construction == 0) continue; + auto &constr(Construct(surf.Construction)); + if (!constr.TypeIsAirBoundary) continue; + + // Check for invalid air boundary surfaces - valid only on non-adiabatic interzone surfaces + if (surf.ExtBoundCond <= 0 || surf.ExtBoundCond == surfNum) { + ErrorsFound = true; + if (!DisplayExtraWarnings) { + ++errorCount; + } else { + ShowSevereError(RoutineName + ": Surface=\"" + surf.Name + "\" uses Construction:AirBoundary in a non-interzone surface."); + } + } else { + // Process air boundary - set surface properties and set up enclosures + // Radiant exchange + if (constr.TypeIsAirBoundaryIRTSurface) { + // IRT air boundaries use CTF algorithm + surf.HeatTransferAlgorithm = DataSurfaces::HeatTransferModel_CTF; + surf.HeatTransSurf = true; + // Interior convection coefficient set to low H limit in ConvectionCoefficients::GetUserConvectionCoefficients + } else { + // Boundary is grouped - assign radiant enclosure + constr.IsUsedCTF = false; + surf.HeatTransSurf = false; + surf.HeatTransferAlgorithm = DataSurfaces::HeatTransferModel_AirBoundaryNoHT; + anyRadiantGroupedZones = true; + auto & thisSideEnclosureNum(Zone(surf.Zone).RadiantEnclosureNum); + auto & otherSideEnclosureNum(Zone(Surface(surf.ExtBoundCond).Zone).RadiantEnclosureNum); + if ((thisSideEnclosureNum == 0) && (otherSideEnclosureNum == 0)) { + // Neither zone is assigned to an enclosure, so increment the counter and assign to both + ++enclosureNum; + auto & thisRadEnclosure(DataViewFactorInformation::ZoneRadiantInfo(enclosureNum)); + thisSideEnclosureNum = enclosureNum; + thisRadEnclosure.Name = "Radiant Enclosure " + General::RoundSigDigits(enclosureNum); + thisRadEnclosure.ZoneNames.push_back(surf.ZoneName); + thisRadEnclosure.ZoneNums.push_back(surf.Zone); + thisRadEnclosure.FloorArea+=Zone(surf.Zone).FloorArea; + otherSideEnclosureNum = enclosureNum; + thisRadEnclosure.ZoneNames.push_back(Surface(surf.ExtBoundCond).ZoneName); + thisRadEnclosure.ZoneNums.push_back(Surface(surf.ExtBoundCond).Zone); + thisRadEnclosure.FloorArea += Zone(Surface(surf.ExtBoundCond).Zone).FloorArea; + } else if (thisSideEnclosureNum == 0){ + // Other side is assigned, so use that one for both + thisSideEnclosureNum = otherSideEnclosureNum; + auto & thisRadEnclosure(DataViewFactorInformation::ZoneRadiantInfo(thisSideEnclosureNum)); + thisRadEnclosure.ZoneNames.push_back(surf.ZoneName); + thisRadEnclosure.ZoneNums.push_back(surf.Zone); + thisRadEnclosure.FloorArea += Zone(surf.Zone).FloorArea; + } else if (otherSideEnclosureNum == 0) { + // This side is assigned, so use that one for both + otherSideEnclosureNum = thisSideEnclosureNum; + auto & thisRadEnclosure(DataViewFactorInformation::ZoneRadiantInfo(thisSideEnclosureNum)); + thisRadEnclosure.ZoneNames.push_back(Surface(surf.ExtBoundCond).ZoneName); + thisRadEnclosure.ZoneNums.push_back(Surface(surf.ExtBoundCond).Zone); + thisRadEnclosure.FloorArea += Zone(Surface(surf.ExtBoundCond).Zone).FloorArea; + } else if (thisSideEnclosureNum != otherSideEnclosureNum) { + // This should never happen + ErrorsFound = true; + ShowSevereError(RoutineName + ": Radiant enclosure grouping error for Surface=\"" + surf.Name + "\"." + + "This surface enclosure num=" + General::RoundSigDigits(thisSideEnclosureNum) + + ". Other side enclosure num=" + General::RoundSigDigits(otherSideEnclosureNum)); + } + } + } + } + if (errorCount > 0) { + ShowSevereError(RoutineName + ": " + General::TrimSigDigits(errorCount) + + " surfaces use Construction:AirBoundary in non-interzone surfaces."); + ShowContinueError("For explicit details on each use, use Output:Diagnostics,DisplayExtraWarnings;"); + } + } + if (anyRadiantGroupedZones) { + // All grouped radiant zones have been assigned to an enclosure, now assign remaining zones + for (int zoneNum = 1; zoneNum <= DataGlobals::NumOfZones; ++zoneNum) { + if(Zone(zoneNum).RadiantEnclosureNum == 0) { + ++enclosureNum; + Zone(zoneNum).RadiantEnclosureNum = enclosureNum; + auto & thisRadEnclosure(DataViewFactorInformation::ZoneRadiantInfo(enclosureNum)); + thisRadEnclosure.Name = Zone(zoneNum).Name; + thisRadEnclosure.ZoneNames.push_back(Zone(zoneNum).Name); + thisRadEnclosure.ZoneNums.push_back(zoneNum); + thisRadEnclosure.FloorArea = Zone(zoneNum).FloorArea; + } + } + DataViewFactorInformation::NumOfRadiantEnclosures = enclosureNum; + } else { + // There are no grouped radiant air boundaries, assign each zone to it's own radiant enclosure + for (int zoneNum = 1; zoneNum <= DataGlobals::NumOfZones; ++zoneNum) { + Zone(zoneNum).RadiantEnclosureNum = zoneNum; + auto & thisRadEnclosure(DataViewFactorInformation::ZoneRadiantInfo(zoneNum)); + thisRadEnclosure.Name = Zone(zoneNum).Name; + thisRadEnclosure.ZoneNames.push_back(Zone(zoneNum).Name); + thisRadEnclosure.ZoneNums.push_back(zoneNum); + thisRadEnclosure.FloorArea = Zone(zoneNum).FloorArea; + } + DataViewFactorInformation::NumOfRadiantEnclosures = DataGlobals::NumOfZones; + } + } + + void SetupSolarEnclosuresAndAirBoundaries(bool &ErrorsFound) + { + bool anySolarGroupedZones = false; + int enclosureNum = 0; + if (std::any_of(Construct.begin(), Construct.end(), [](DataHeatBalance::ConstructionData const &e) { return e.TypeIsAirBoundary; })) { + std::string RoutineName = "SetupSolarEnclosuresAndAirBoundaries"; + int errorCount = 0; + for (int surfNum = 1; surfNum <= DataSurfaces::TotSurfaces; ++surfNum) { + auto &surf(Surface(surfNum)); + if (surf.Construction == 0) continue; + auto &constr(Construct(surf.Construction)); + if (!constr.TypeIsAirBoundary) continue; + + // Check for invalid air boundary surfaces - valid only on non-adiabatic interzone surfaces + if (surf.ExtBoundCond <= 0 || surf.ExtBoundCond == surfNum) { + // Error messages were done in SetupRadiantEnclosuresAndAirBoundaries + continue; + } else { + // Process air boundary - set surface properties and set up enclosures + // Solar distribution + if (constr.TypeIsAirBoundarySolar) { + // Boundary is grouped - assign solar enclosure + anySolarGroupedZones = true; + auto &thisSideEnclosureNum(Zone(surf.Zone).SolarEnclosureNum); + auto &otherSideEnclosureNum(Zone(Surface(surf.ExtBoundCond).Zone).SolarEnclosureNum); + if ((thisSideEnclosureNum == 0) && (otherSideEnclosureNum == 0)) { + // Neither zone is assigned to an enclosure, so increment the counter and assign to both + ++enclosureNum; + auto &thisSolEnclosure(DataViewFactorInformation::ZoneSolarInfo(enclosureNum)); + thisSideEnclosureNum = enclosureNum; + thisSolEnclosure.Name = "Solar Enclosure " + General::RoundSigDigits(enclosureNum); + thisSolEnclosure.ZoneNames.push_back(surf.ZoneName); + thisSolEnclosure.ZoneNums.push_back(surf.Zone); + thisSolEnclosure.FloorArea += Zone(surf.Zone).FloorArea; + thisSolEnclosure.ExtWindowArea += Zone(surf.Zone).ExtWindowArea; + thisSolEnclosure.TotalSurfArea += Zone(surf.Zone).TotalSurfArea; + otherSideEnclosureNum = enclosureNum; + thisSolEnclosure.ZoneNames.push_back(Surface(surf.ExtBoundCond).ZoneName); + thisSolEnclosure.ZoneNums.push_back(Surface(surf.ExtBoundCond).Zone); + thisSolEnclosure.FloorArea += Zone(Surface(surf.ExtBoundCond).Zone).FloorArea; + thisSolEnclosure.ExtWindowArea += Zone(Surface(surf.ExtBoundCond).Zone).ExtWindowArea; + thisSolEnclosure.TotalSurfArea += Zone(Surface(surf.ExtBoundCond).Zone).TotalSurfArea; + } else if (thisSideEnclosureNum == 0) { + // Other side is assigned, so use that one for both + thisSideEnclosureNum = otherSideEnclosureNum; + auto &thisSolEnclosure(DataViewFactorInformation::ZoneSolarInfo(thisSideEnclosureNum)); + thisSolEnclosure.ZoneNames.push_back(surf.ZoneName); + thisSolEnclosure.ZoneNums.push_back(surf.Zone); + thisSolEnclosure.FloorArea += Zone(surf.Zone).FloorArea; + thisSolEnclosure.ExtWindowArea += Zone(surf.Zone).ExtWindowArea; + thisSolEnclosure.TotalSurfArea += Zone(surf.Zone).TotalSurfArea; + } else if (otherSideEnclosureNum == 0) { + // This side is assigned, so use that one for both + otherSideEnclosureNum = thisSideEnclosureNum; + auto &thisSolEnclosure(DataViewFactorInformation::ZoneSolarInfo(thisSideEnclosureNum)); + thisSolEnclosure.ZoneNames.push_back(Surface(surf.ExtBoundCond).ZoneName); + thisSolEnclosure.ZoneNums.push_back(Surface(surf.ExtBoundCond).Zone); + thisSolEnclosure.FloorArea += Zone(Surface(surf.ExtBoundCond).Zone).FloorArea; + thisSolEnclosure.ExtWindowArea += Zone(Surface(surf.ExtBoundCond).Zone).ExtWindowArea; + thisSolEnclosure.TotalSurfArea += Zone(Surface(surf.ExtBoundCond).Zone).TotalSurfArea; + } else if (thisSideEnclosureNum != otherSideEnclosureNum) { + // This should never happen + ErrorsFound = true; + ShowSevereError(RoutineName + ": Solar enclosure grouping error for Surface=\"" + surf.Name + "\"." + + "This surface enclosure num=" + General::RoundSigDigits(thisSideEnclosureNum) + + ". Other side enclosure num=" + General::RoundSigDigits(otherSideEnclosureNum)); + } + } + if (constr.TypeIsAirBoundaryMixing) { + int zoneNum1 = min(surf.Zone, Surface(surf.ExtBoundCond).Zone); + int zoneNum2 = min(surf.Zone, Surface(surf.ExtBoundCond).Zone); + // This pair already saved? + bool found = false; + for (int n = 0; n < DataHeatBalance::NumAirBoundaryMixing-1; ++n) { + if ((zoneNum1 == DataHeatBalance::AirBoundaryMixingZone1[n]) && (zoneNum2 == DataHeatBalance::AirBoundaryMixingZone2[n])) { + found = true; + break; + } + } + if (!found) { + // Store the zone pairs to use later to create cross mixing objects + ++DataHeatBalance::NumAirBoundaryMixing; + DataHeatBalance::AirBoundaryMixingZone1.push_back(zoneNum1); + DataHeatBalance::AirBoundaryMixingZone2.push_back(zoneNum2); + DataHeatBalance::AirBoundaryMixingSched.push_back(DataHeatBalance::Construct(surf.Construction).AirBoundaryMixingSched); + Real64 mixingVol = Construct(surf.Construction).AirBoundaryACH * min(Zone(zoneNum1).Volume, Zone(zoneNum2).Volume) / + DataGlobals::SecInHour; + DataHeatBalance::AirBoundaryMixingVol.push_back(mixingVol); + } + } + } + } + if (errorCount > 0) { + ShowSevereError(RoutineName + ": " + General::TrimSigDigits(errorCount) + + " surfaces use Construction:AirBoundary in non-interzone surfaces."); + ShowContinueError("For explicit details on each use, use Output:Diagnostics,DisplayExtraWarnings;"); + } + } + if (anySolarGroupedZones) { + // All grouped solar zones have been assigned to an enclosure, now assign remaining zones + for (int zoneNum = 1; zoneNum <= DataGlobals::NumOfZones; ++zoneNum) { + if (Zone(zoneNum).SolarEnclosureNum == 0) { + ++enclosureNum; + Zone(zoneNum).SolarEnclosureNum = enclosureNum; + auto &thisSolEnclosure(DataViewFactorInformation::ZoneSolarInfo(enclosureNum)); + thisSolEnclosure.Name = Zone(zoneNum).Name; + thisSolEnclosure.ZoneNames.push_back(Zone(zoneNum).Name); + thisSolEnclosure.ZoneNums.push_back(zoneNum); + thisSolEnclosure.FloorArea = Zone(zoneNum).FloorArea; + thisSolEnclosure.ExtWindowArea = Zone(zoneNum).ExtWindowArea; + thisSolEnclosure.TotalSurfArea = Zone(zoneNum).TotalSurfArea; + } + } + DataViewFactorInformation::NumOfSolarEnclosures = enclosureNum; + } else { + // There are no grouped solar air boundaries, assign each zone to it's own solar enclosure + for (int zoneNum = 1; zoneNum <= DataGlobals::NumOfZones; ++zoneNum) { + Zone(zoneNum).SolarEnclosureNum = zoneNum; + auto &thisSolEnclosure(DataViewFactorInformation::ZoneSolarInfo(zoneNum)); + thisSolEnclosure.Name = Zone(zoneNum).Name; + thisSolEnclosure.ZoneNames.push_back(Zone(zoneNum).Name); + thisSolEnclosure.ZoneNums.push_back(zoneNum); + thisSolEnclosure.FloorArea = Zone(zoneNum).FloorArea; + thisSolEnclosure.ExtWindowArea = Zone(zoneNum).ExtWindowArea; + thisSolEnclosure.TotalSurfArea = Zone(zoneNum).TotalSurfArea; + } + DataViewFactorInformation::NumOfSolarEnclosures = DataGlobals::NumOfZones; + } + } + void CheckConvexity(int const SurfNum, // Current surface number int const NSides // Number of sides to figure ) diff --git a/src/EnergyPlus/SurfaceGeometry.hh b/src/EnergyPlus/SurfaceGeometry.hh index 24f7168b65d..e626e19db83 100644 --- a/src/EnergyPlus/SurfaceGeometry.hh +++ b/src/EnergyPlus/SurfaceGeometry.hh @@ -378,6 +378,10 @@ namespace SurfaceGeometry { void SetupShadeSurfacesForSolarCalcs(); + void SetupRadiantEnclosuresAndAirBoundaries(bool &ErrorsFound); // Set to true if errors found + + void SetupSolarEnclosuresAndAirBoundaries(bool &ErrorsFound); // Set to true if errors found + void CheckConvexity(int const SurfNum, // Current surface number int const NSides // Number of sides to figure ); diff --git a/src/EnergyPlus/SystemAvailabilityManager.cc b/src/EnergyPlus/SystemAvailabilityManager.cc index 59dfc163d2b..e3f41368587 100644 --- a/src/EnergyPlus/SystemAvailabilityManager.cc +++ b/src/EnergyPlus/SystemAvailabilityManager.cc @@ -534,7 +534,7 @@ namespace SystemAvailabilityManager { int ZoneListNum; int ZoneNumInList; - // Get the number of occurences of each type of manager and read in data + // Get the number of occurrences of each type of manager and read in data cCurrentModuleObject = "AvailabilityManager:Scheduled"; inputProcessor->getObjectDefMaxArgs(cCurrentModuleObject, numArgs, NumAlphas, NumNumbers); maxNumbers = NumNumbers; @@ -4151,7 +4151,7 @@ namespace SystemAvailabilityManager { Real64 CurveMax; // Maximum value specified in a curve Real64 CurveVal; // Curve value - // Get the number of occurences of each type of System Availability Manager + // Get the number of occurrences of each type of System Availability Manager cCurrentModuleObject = "AvailabilityManager:HybridVentilation"; NumHybridVentSysAvailMgrs = inputProcessor->getNumObjectsFound(cCurrentModuleObject); diff --git a/src/EnergyPlus/SystemReports.cc b/src/EnergyPlus/SystemReports.cc index c911859cdc7..88d50bf4b78 100644 --- a/src/EnergyPlus/SystemReports.cc +++ b/src/EnergyPlus/SystemReports.cc @@ -2481,8 +2481,8 @@ namespace SystemReports { // Dimension GetMeteredVariables arrays Array1D_int VarIndexes; // Variable Numbers Array1D_int VarTypes; // Variable Types (1=integer, 2=real, 3=meter) - Array1D_int IndexTypes; // Variable Idx Types (1=Zone,2=HVAC) Array1D_string UnitsStrings; // UnitsStrings for each variable + Array1D IndexTypes; // Variable Idx Types (1=Zone,2=HVAC) Array1D unitsForVar; // units from enum for each variable Array1D_int ResourceTypes; // ResourceTypes for each variable Array1D_string EndUses; // EndUses for each variable diff --git a/src/EnergyPlus/TranspiredCollector.cc b/src/EnergyPlus/TranspiredCollector.cc index 604dc3cf90a..cd12c0b41d8 100644 --- a/src/EnergyPlus/TranspiredCollector.cc +++ b/src/EnergyPlus/TranspiredCollector.cc @@ -1557,6 +1557,81 @@ namespace TranspiredCollector { TsColl = UTSC(UTSCNum).Tcoll; } + int GetAirInletNodeNum(std::string const &UTSCName, + bool &ErrorsFound + ) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given UTSC and returns the air inlet node number. + // If incorrect UTSC name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichUTSC; + + if (GetInputFlag) { + GetTranspiredCollectorInput(); + GetInputFlag = false; + } + + WhichUTSC = UtilityRoutines::FindItemInList(UTSCName, UTSC); + if (WhichUTSC != 0) { + NodeNum = UTSC(WhichUTSC).InletNode(1); + } else { + ShowSevereError("GetAirInletNodeNum: Could not find TranspiredCollector = \"" + UTSCName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + + int GetAirOutletNodeNum(std::string const &UTSCName, + bool &ErrorsFound + ) + { + // FUNCTION INFORMATION: + // AUTHOR Lixing Gu + // DATE WRITTEN May 2019 + // MODIFIED na + // RE-ENGINEERED na + + // PURPOSE OF THIS FUNCTION: + // This function looks up the given UTSC and returns the air outlet node number. + // If incorrect UTSC name is given, ErrorsFound is returned as true and node number as zero. + + // Return value + int NodeNum; // node number returned + + // FUNCTION LOCAL VARIABLE DECLARATIONS: + int WhichUTSC; + + if (GetInputFlag) { + GetTranspiredCollectorInput(); + GetInputFlag = false; + } + + WhichUTSC = UtilityRoutines::FindItemInList(UTSCName, UTSC); + if (WhichUTSC != 0) { + NodeNum = UTSC(WhichUTSC).OutletNode(1); + } + else { + ShowSevereError("GetAirOutletNodeNum: Could not find TranspiredCollector = \"" + UTSCName + "\""); + ErrorsFound = true; + NodeNum = 0; + } + + return NodeNum; + } + } // namespace TranspiredCollector } // namespace EnergyPlus diff --git a/src/EnergyPlus/TranspiredCollector.hh b/src/EnergyPlus/TranspiredCollector.hh index 94d3be689c2..ac11dd6c605 100644 --- a/src/EnergyPlus/TranspiredCollector.hh +++ b/src/EnergyPlus/TranspiredCollector.hh @@ -194,6 +194,14 @@ namespace TranspiredCollector { void GetUTSCTsColl(int const UTSCNum, Real64 &TsColl); + int GetAirInletNodeNum(std::string const &UTSCName, + bool &ErrorsFound + ); + + int GetAirOutletNodeNum(std::string const &UTSCName, + bool &ErrorsFound + ); + } // namespace TranspiredCollector } // namespace EnergyPlus diff --git a/src/EnergyPlus/UnitarySystem.cc b/src/EnergyPlus/UnitarySystem.cc index 8514213c4f6..2e86c0484c0 100644 --- a/src/EnergyPlus/UnitarySystem.cc +++ b/src/EnergyPlus/UnitarySystem.cc @@ -3358,7 +3358,7 @@ namespace UnitarySystems { ShowContinueError("Occurs in " + cCurrentModuleObject + " = " + thisObjectName); errorsFound = true; } else { // mine data from fan object - if (HVACFan::getFanObjectVectorIndex(loc_m_FanName) < 0) { + if (HVACFan::getFanObjectVectorIndex(loc_m_FanName, false) < 0) { HVACFan::fanObjs.emplace_back(new HVACFan::FanSystem(loc_m_FanName)); // call constructor } thisSys.m_FanIndex = HVACFan::getFanObjectVectorIndex(loc_m_FanName); diff --git a/src/EnergyPlus/Untitled.ipynb b/src/EnergyPlus/Untitled.ipynb new file mode 100644 index 00000000000..b1347546014 --- /dev/null +++ b/src/EnergyPlus/Untitled.ipynb @@ -0,0 +1,463 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import re\n", + "import glob as gb\n", + "files = gb.glob(\"*.cc\")" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "re_setup = re.compile(r'SetupOutputVariable\\(.*?,.*?,.*?,(.*?),.*?\\);', re.DOTALL)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CondenserLoopTowers.cc \n", + "SetupOutputVariable('Tower Makeup Water Consumption [m3]', &\n", + " // SimpleTowerReport(TowerNum)%WaterAmountUsed,'System','Sum',SimpleTower(TowerNum)%Name, &\n", + " // ResourceTypeKey='Water',EndUseKey='HeatRejection',GroupKey='Plant')\n", + " }\n", + "\n", + " // CurrentModuleObject='CoolingTower:VariableSpeed:Merkel'\n", + " for (TowerNum = NumSingleSpeedTowers + NumTwoSpeedTowers + NumVariableSpeedTowers + 1;\n", + " TowerNum <= NumSingleSpeedTowers + NumTwoSpeedTowers + NumVariableSpeedTowers + NumVSMerkelTowers;\n", + " ++TowerNum) {\n", + " SetupOutputVariable(\"Cooling Tower Inlet Temperature\",\n", + " OutputProcessor::Unit::C,\n", + " SimpleTowerReport(TowerNum).InletWaterTemp,\n", + " \"System\",\n", + " \"Average\",\n", + " SimpleTower(TowerNum).Name);\n", + "OutputProcessor.cc \n", + "SetupOutputVariable(std::string const &VariableName, // String Name of variable\n", + " OutputProcessor::Unit const &VariableUnit, // Actual units corresponding to the actual variable\n", + " int &ActualVariable, // Actual Variable, used to set up pointer\n", + " std::string const &IndexTypeKey, // Zone, HeatBalance=1, HVAC, System, Plant=2\n", + " std::string const &VariableTypeKey, // State, Average=1, NonState, Sum=2\n", + " std::string const &KeyedValue, // Associated Key for this variable\n", + " Optional_string_const ReportFreq, // Internal use -- causes reporting at this freqency\n", + " Optional_int_const indexGroupKey // Group identifier for SQL output\n", + ")\n", + "{\n", + "\n", + " // SUBROUTINE INFORMATION:\n", + " // AUTHOR Linda K. Lawrie\n", + " // DATE WRITTEN December 1998\n", + " // MODIFIED August 2008; Added SQL output capability\n", + " // RE-ENGINEERED na\n", + "\n", + " // PURPOSE OF THIS SUBROUTINE:\n", + " // This subroutine sets up the variable data structure that will be used\n", + " // to track values of the output variables of EnergyPlus.\n", + "\n", + " // METHODOLOGY EMPLOYED:\n", + " // Pointers (as pointers), pointers (as indices), and lots of other KEWL data stuff.\n", + "\n", + " // Using/Aliasing\n", + " using namespace DataPrecisionGlobals;\n", + " using namespace OutputProcessor;\n", + " using General::TrimSigDigits;\n", + "\n", + " // SUBROUTINE LOCAL VARIABLE DECLARATIONS:\n", + " int CV;\n", + " std::string IDOut;\n", + " // CHARACTER(len=MaxNameLength) :: VariableNamewithUnits ! Variable name with units std format\n", + " int IndexType; // 1=TimeStepZone, 2=TimeStepSys\n", + " StoreType VariableType; // 1=Average, 2=Sum, 3=Min/Max\n", + " int localIndexGroupKey;\n", + " bool ThisOneOnTheList;\n", + " int Loop;\n", + " ReportingFrequency RepFreq(ReportingFrequency::Hourly);\n", + "OutputProcessor.cc \n", + "SetupOutputVariable(VariableName,\n", + " VariableUnit,\n", + " ActualVariable,\n", + " IndexTypeKey,\n", + " VariableTypeKey,\n", + " IDOut,\n", + " ReportFreq,\n", + " ResourceTypeKey,\n", + " EndUseKey,\n", + " EndUseSubKey,\n", + " GroupKey,\n", + " ZoneKey,\n", + " ZoneMult,\n", + " ZoneListMult,\n", + " indexGroupKey);\n", + "SolarShading.cc \n", + "SetupOutputVariable(\"Surface Window Front Face Temperature Layer \" + RoundSigDigits(I) + \"\",\n", + " OutputProcessor::Unit::C,\n", + " FenLaySurfTempFront(I, SurfLoop),\n", + " \"Zone\",\n", + " \"Average\",\n", + " Surface(SurfLoop).Name);\n", + "SolarShading.cc \n", + "SetupOutputVariable(cAlphaArgs(1), curUnit, RuntimeReportVar(RuntimeReportVarNum).Value, FreqString, VarTypeString, \"EMS\");\n", + "RuntimeLanguageProcessor.cc \n", + "SetupOutputVariable(cAlphaArgs(1),\n", + " curUnit,\n", + " RuntimeReportVar(RuntimeReportVarNum).Value,\n", + " FreqString,\n", + " VarTypeString,\n", + " \"EMS\",\n", + " _,\n", + " ResourceTypeString,\n", + " EndUseTypeString,\n", + " EndUseSubCatString,\n", + " GroupTypeString);\n", + "RuntimeLanguageProcessor.cc \n", + "SetupOutputVariable(\"Room Air Window Jet Region Average Air Velocity\",\n", + " OutputProcessor::Unit::m_s,\n", + " CVJetRecFlows(i, Loop).Ujet,\n", + " \"Zone\",\n", + " \"Average\",\n", + " AirflowNetwork::MultizoneSurfaceData(i).SurfName);\n", + "SingleDuct.cc \n", + "SetupOutputVariable('Damper Position', Sys(SysNum)%DamperPosition, &\n", + " // 'System','Average',Sys(SysNum)%SysName)\n", + "\n", + " } // End Number of Sys Loop\n", + "\n", + " CurrentModuleObject = \"AirTerminal:SingleDuct:ConstantVolume:NoReheat\";\n", + "\n", + " for (SysIndex = 1; SysIndex <= NumCVNoReheatSys; ++SysIndex) {\n", + "\n", + " inputProcessor->getObjectItem(CurrentModuleObject,\n", + " SysIndex,\n", + " Alphas,\n", + " NumAlphas,\n", + " Numbers,\n", + " NumNums,\n", + " IOStat,\n", + " lNumericBlanks,\n", + " lAlphaBlanks,\n", + " cAlphaFields,\n", + " cNumericFields);\n", + "DaylightingDevices.cc \n", + "SetupOutputVariable('View Factor To Outside Shelf []', &\n", + " // Shelf(ShelfNum)%ViewFactor,'Zone','Average',Shelf(ShelfNum)%Name)\n", + " }\n", + " }\n", + "\n", + " // Warning that if Calculate Solar Reflection From Exterior Surfaces = Yes in Building input, then\n", + " // solar reflection calculated from obstructions will not be used in daylighting shelf or tubular device\n", + " // calculation\n", + "\n", + " if (CalcSolRefl && (NumOfTDDPipes > 0 || NumOfShelf > 0)) {\n", + " ShowWarningError(\"InitDaylightingDevices: Solar Distribution Model includes Solar Reflection calculations;\");\n", + "MundtSimMgr.cc \n", + "SetupOutputVariable('DX Cooling Coil Crankcase Heater Power [W]',Coil%CrankcaseHeaterPower,'System',&\n", + " // 'Average',Coil%Name)\n", + " // CALL SetupOutputVariable('Cooling Coil Crankcase Heater Electric Energy [J]',Coil%CrankcaseHeaterConsumption,&\n", + " // 'System','Sum',Coil%Name, &\n", + " // ResourceTypeKey='Electric',EndUseKey='COOLING',GroupKey='System')\n", + " // END IF\n", + "\n", + " if (Coil.ReportEvapCondVars) {\n", + " SetupOutputVariable(\n", + " \"Cooling Coil Condenser Inlet Temperature\", OutputProcessor::Unit::C, Coil.CondInletTemp, \"System\", \"Average\", Coil.Name);\n", + "VentilatedSlab.cc \n", + "SetupOutputVariable('Ventilated Slab Direct Heat Loss Rate [W]', &\n", + " // VentSlab(Item)%DirectHeatLossRate,'System', &\n", + " // 'Average', VentSlab(Item)%Name)\n", + " // CALL SetupOutputVariable('Ventilated Slab Direct Heat Loss [W]', &\n", + " // VentSlab(Item)%DirectHeatLoss,'System', &\n", + " // 'Sum', VentSlab(Item)%Name)\n", + " // CALL SetupOutputVariable('Ventilated Slab Direct Heat Gain Rate [W]', &\n", + " // VentSlab(Item)%DirectHeatGainRate,'System', &\n", + " // 'Average', VentSlab(Item)%Name)\n", + " // CALL SetupOutputVariable('Ventilated Slab Direct Heat Gain [J]', &\n", + " // VentSlab(Item)%DirectHeatGain,'System', &\n", + " // 'Sum', VentSlab(Item)%Name)\n", + " SetupOutputVariable(\"Zone Ventilated Slab Radiant Heating Rate\",\n", + " OutputProcessor::Unit::W,\n", + " VentSlab(Item).RadHeatingPower,\n", + " \"System\",\n", + " \"Average\",\n", + " VentSlab(Item).Name);\n" + ] + } + ], + "source": [ + "types = set()\n", + "\n", + "for fpath in files:\n", + " with open(fpath, 'r') as f:\n", + " content = f.read()\n", + " for m in re_setup.finditer(content):\n", + " t = m.groups()[0].strip().replace('\"', '').upper()\n", + " types.add(t)\n", + " if t not in [\"HVAC\", \"PLANT\", \"SYSTEM\", \"ZONE\"]:\n", + " print(fpath, m)\n", + " print(content[m.start():m.end()])" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CondenserLoopTowers.cc \n" + ] + } + ], + "source": [ + "fpath = 'CondenserLoopTowers.cc'\n", + "with open(fpath, 'r') as f:\n", + " content = f.read()\n", + "for m in re_setup.finditer(content):\n", + " t = m.groups()[0].strip().replace('\"', '').upper()\n", + " types.add(t)\n", + " if t not in [\"HVAC\", \"PLANT\", \"SYSTEM\", \"ZONE\"]:\n", + " print(fpath, m)\n", + " break" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'SetupOutputVariable(\\'Tower Makeup Water Consumption [m3]\\', &\\n // SimpleTowerReport(TowerNum)%WaterAmountUsed,\\'System\\',\\'Sum\\',SimpleTower(TowerNum)%Name, &\\n // ResourceTypeKey=\\'Water\\',EndUseKey=\\'HeatRejection\\',GroupKey=\\'Plant\\')\\n }\\n\\n // CurrentModuleObject=\\'CoolingTower:VariableSpeed:Merkel\\'\\n for (TowerNum = NumSingleSpeedTowers + NumTwoSpeedTowers + NumVariableSpeedTowers + 1;\\n TowerNum <= NumSingleSpeedTowers + NumTwoSpeedTowers + NumVariableSpeedTowers + NumVSMerkelTowers;\\n ++TowerNum) {\\n SetupOutputVariable(\"Cooling Tower Inlet Temperature\",\\n OutputProcessor::Unit::C,\\n SimpleTowerReport(TowerNum).InletWaterTemp,\\n \"System\",\\n \"Average\",\\n SimpleTower(TowerNum).Name);'" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "t = '\"HVAC\"'" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'HVAC'" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "t.replace('\"', '')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.2" + }, + "toc": { + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "toc_cell": false, + "toc_position": {}, + "toc_section_display": "block", + "toc_window_display": false + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/src/EnergyPlus/UtilityRoutines.cc b/src/EnergyPlus/UtilityRoutines.cc index 91714ba8e48..6e10c0e633b 100644 --- a/src/EnergyPlus/UtilityRoutines.cc +++ b/src/EnergyPlus/UtilityRoutines.cc @@ -1652,7 +1652,7 @@ void ShowRecurringSevereErrorAtEnd(std::string const &Message, // Messag // PURPOSE OF THIS SUBROUTINE: // This subroutine stores a recurring ErrorMessage with a Severe designation // for output at the end of the simulation with automatic tracking of number - // of occurences and optional tracking of associated min, max, and sum values + // of occurrences and optional tracking of associated min, max, and sum values // METHODOLOGY EMPLOYED: // Calls StoreRecurringErrorMessage utility routine. @@ -1664,7 +1664,7 @@ void ShowRecurringSevereErrorAtEnd(std::string const &Message, // Messag // INTERFACE BLOCK SPECIFICATIONS // Use for recurring "severe" error messages shown once at end of simulation - // with count of occurences and optional max, min, sum + // with count of occurrences and optional max, min, sum for (int Loop = 1; Loop <= SearchCounts; ++Loop) { if (has(Message, MessageSearch(Loop))) { @@ -1707,7 +1707,7 @@ void ShowRecurringWarningErrorAtEnd(std::string const &Message, // Messa // PURPOSE OF THIS SUBROUTINE: // This subroutine stores a recurring ErrorMessage with a Warning designation // for output at the end of the simulation with automatic tracking of number - // of occurences and optional tracking of associated min, max, and sum values + // of occurrences and optional tracking of associated min, max, and sum values // METHODOLOGY EMPLOYED: // Calls StoreRecurringErrorMessage utility routine. @@ -1719,7 +1719,7 @@ void ShowRecurringWarningErrorAtEnd(std::string const &Message, // Messa // INTERFACE BLOCK SPECIFICATIONS // Use for recurring "warning" error messages shown once at end of simulation - // with count of occurences and optional max, min, sum + // with count of occurrences and optional max, min, sum for (int Loop = 1; Loop <= SearchCounts; ++Loop) { if (has(Message, MessageSearch(Loop))) { @@ -1762,7 +1762,7 @@ void ShowRecurringContinueErrorAtEnd(std::string const &Message, // Mess // PURPOSE OF THIS SUBROUTINE: // This subroutine stores a recurring ErrorMessage with a continue designation // for output at the end of the simulation with automatic tracking of number - // of occurences and optional tracking of associated min, max, and sum values + // of occurrences and optional tracking of associated min, max, and sum values // METHODOLOGY EMPLOYED: // Calls StoreRecurringErrorMessage utility routine. @@ -1774,7 +1774,7 @@ void ShowRecurringContinueErrorAtEnd(std::string const &Message, // Mess // INTERFACE BLOCK SPECIFICATIONS // Use for recurring "continue" error messages shown once at end of simulation - // with count of occurences and optional max, min, sum + // with count of occurrences and optional max, min, sum for (int Loop = 1; Loop <= SearchCounts; ++Loop) { if (has(Message, MessageSearch(Loop))) { @@ -1817,7 +1817,7 @@ void StoreRecurringErrorMessage(std::string const &ErrorMessage, // Mess // PURPOSE OF THIS SUBROUTINE: // This subroutine stores a recurring ErrorMessage with // for output at the end of the simulation with automatic tracking of number - // of occurences and optional tracking of associated min, max, and sum values + // of occurrences and optional tracking of associated min, max, and sum values // Using/Aliasing using namespace DataPrecisionGlobals; diff --git a/src/EnergyPlus/WaterCoils.cc b/src/EnergyPlus/WaterCoils.cc index 318b2a17cf8..e37504be967 100644 --- a/src/EnergyPlus/WaterCoils.cc +++ b/src/EnergyPlus/WaterCoils.cc @@ -1413,7 +1413,7 @@ namespace WaterCoils { // Total Coil Load from Inlet and Outlet Air States. WaterCoil(CoilNum).DesTotWaterCoilLoad = WaterCoil(CoilNum).DesAirMassFlowRate * (DesInletAirEnth - DesOutletAirEnth); - if (CurSysNum > 0) { + if (CurSysNum > 0 && CurSysNum <= DataHVACGlobals::NumPrimaryAirSys) { WaterCoil(CoilNum).DesTotWaterCoilLoad = WaterCoil(CoilNum).DesTotWaterCoilLoad + PrimaryAirSystem(CurSysNum).FanDesCoolLoad; } @@ -2426,7 +2426,7 @@ namespace WaterCoils { PlantLoop(DataWaterLoopNum).FluidName, DataGlobals::HWInitConvTemp, PlantLoop(DataWaterLoopNum).FluidIndex, RoutineName); if (WaterCoil(CoilNum).DesTotWaterCoilLoad > 0.0) { NomCapUserInp = true; - } else if (CurSysNum > 0) { + } else if (CurSysNum > 0 && CurSysNum <= DataHVACGlobals::NumPrimaryAirSys) { if (FinalSysSizing(CurSysNum).HeatingCapMethod == CapacityPerFloorArea) { NomCapUserInp = true; } else if (FinalSysSizing(CurSysNum).HeatingCapMethod == HeatingDesignCapacity && diff --git a/src/EnergyPlus/WaterCoils.hh b/src/EnergyPlus/WaterCoils.hh index dcefd0ab750..5cdb8256037 100644 --- a/src/EnergyPlus/WaterCoils.hh +++ b/src/EnergyPlus/WaterCoils.hh @@ -267,6 +267,7 @@ namespace WaterCoils { std::string ControllerName; // controller name used by water coil int ControllerIndex; // controller index used by water coil bool reportCoilFinalSizes; // one time report of sizes to coil summary report + bool AirLoopDOASFlag; // True when this coil is used AirLoopDOAS // Default Constructor WaterCoilEquipConditions() @@ -291,7 +292,7 @@ namespace WaterCoils { WaterLoopNum(0), WaterLoopSide(0), WaterLoopBranchNum(0), WaterLoopCompNum(0), CondensateCollectMode(CondensateDiscarded), CondensateTankID(0), CondensateTankSupplyARRID(0), CondensateVdot(0.0), CondensateVol(0.0), CoilPerfInpMeth(0), FoulingFactor(0.0), DesiccantRegenerationCoil(false), DesiccantDehumNum(0), DesignWaterDeltaTemp(0.0), UseDesignWaterDeltaTemp(false), ControllerName(""), - ControllerIndex(0), reportCoilFinalSizes(true) + ControllerIndex(0), reportCoilFinalSizes(true), AirLoopDOASFlag(false) { } }; diff --git a/src/EnergyPlus/WaterThermalTanks.cc b/src/EnergyPlus/WaterThermalTanks.cc index 651e65ec274..f32d6bdcbe9 100644 --- a/src/EnergyPlus/WaterThermalTanks.cc +++ b/src/EnergyPlus/WaterThermalTanks.cc @@ -88,6 +88,7 @@ #include #include #include +#include namespace EnergyPlus { @@ -133,6 +134,7 @@ namespace WaterThermalTanks { using DataHeatBalance::HeatReclaimDXCoil; using DataHeatBalance::HeatReclaimRefrigCondenser; using DataHeatBalance::HeatReclaimRefrigeratedRack; + using DataHeatBalance::HeatReclaimSimple_WAHPCoil; using DataHeatBalance::NumRefrigCondensers; using DataHeatBalance::NumRefrigeratedRacks; using namespace DataPlant; @@ -192,6 +194,7 @@ namespace WaterThermalTanks { int const COIL_DX_MULTIMODE(4); // reclaim heating source is DX multimode coil int const CONDENSER_REFRIGERATION(5); // reclaim heating source is detailed refrigeration system condenser int const COIL_DX_VARIABLE_COOLING(6); // reclaim heating source is Variable Speed DX cooling coil + int const COIL_AIR_WATER_HEATPUMP_EQ(7); // reclaim heating source is Water to air heat pump cooling coil int const UseSide(101); // Indicates Use side of water heater int const SourceSide(102); // Indicates Source side of water heater @@ -1005,7 +1008,6 @@ namespace WaterThermalTanks { using DataZoneEquipment::ZoneEquipList; using DXCoils::DXCoil; using DXCoils::GetDXCoilIndex; - using DXCoils::NumDXCoils; using Fans::GetFanIndex; using Fans::GetFanInletNode; using Fans::GetFanOutletNode; @@ -1038,7 +1040,9 @@ namespace WaterThermalTanks { using VariableSpeedCoils::GetCoilOutletNodeVariableSpeed; using VariableSpeedCoils::GetVSCoilPLFFPLR; using VariableSpeedCoils::VarSpeedCoil; - + using WaterToAirHeatPumpSimple::GetCoilIndex; + using WaterToAirHeatPumpSimple::GetCoilInletNode; + using WaterToAirHeatPumpSimple::GetCoilOutletNode; static std::string const RoutineName("GetWaterThermalTankInput: "); static std::string const RoutineNameNoColon("GetWaterThermalTankInput"); @@ -1048,13 +1052,12 @@ namespace WaterThermalTanks { int CheckWaterHeaterNum; // Used to search WATER HEATER:* to find association with HP Water Heater int DesuperheaterNum; // Index to Coil:WaterHeating:Desuperheater int HPWaterHeaterNum; // Index to HEAT PUMP:WATER HEATER - int HeatingSourceNum; // Index to DX cooling coil (heat source for desuperheater) int NumAlphas; // Number of elements in the alpha array int NumNums; // Number of elements in the numeric array + // unused1208 INTEGER :: NumArgs ! Number of elements in the object (alpha + numeric) int RackNum; // Index to refrigrated display case rack int CondNum; // Index to refrigration condenser - int DXCoilNum; // Index to DX coils int IOStat; // IO Status when calling get input subroutine bool IsValid; // Flag for validating PLF curve, OutsideAirNode static std::string FanInletNode; // Used to set up comp set @@ -1287,44 +1290,6 @@ namespace WaterThermalTanks { WaterHeaterDesuperheater(DesuperheaterNum).TankName = cAlphaArgs(8); - // get heat reclaim object - if (UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:SingleSpeed") || - UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:TwoSpeed") || - UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:TwoStageWithHumidityControlMode")) { - WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceType = cAlphaArgs(9); - WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceName = cAlphaArgs(10); - // load DX coil structure for connection to desuperheater heating coil (refrigerated rack have been loaded) - errFlag = false; - GetDXCoilIndex(WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceName, HeatingSourceNum, errFlag, cCurrentModuleObject); - if (errFlag) { - ShowContinueError("...occurs in " + cCurrentModuleObject + '=' + WaterHeaterDesuperheater(DesuperheaterNum).Name); - ErrorsFound = true; - } - } else if (UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:VariableSpeed")) { - WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceType = cAlphaArgs(9); - WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceName = cAlphaArgs(10); - errFlag = false; - HeatingSourceNum = VariableSpeedCoils::GetCoilIndexVariableSpeed(cAlphaArgs(9), cAlphaArgs(10), errFlag); - if (errFlag) { - ShowContinueError("...occurs in " + cCurrentModuleObject + '=' + WaterHeaterDesuperheater(DesuperheaterNum).Name); - ErrorsFound = true; - } - } else if ((UtilityRoutines::SameString(cAlphaArgs(9), "Refrigeration:CompressorRack")) || - (UtilityRoutines::SameString(cAlphaArgs(9), "Refrigeration:Condenser:AirCooled")) || - (UtilityRoutines::SameString(cAlphaArgs(9), "Refrigeration:Condenser:EvaporativeCooled")) || - (UtilityRoutines::SameString(cAlphaArgs(9), "Refrigeration:Condenser:WaterCooled"))) { - WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceType = cAlphaArgs(9); - WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceName = cAlphaArgs(10); - } else { - ShowSevereError(cCurrentModuleObject + " = " + WaterHeaterDesuperheater(DesuperheaterNum).Name + ':'); - ShowContinueError(" desuperheater can only be used with Coil:Cooling:DX:SingleSpeed, "); - ShowContinueError( - " Coil:Cooling:DX:TwoSpeed, Coil:Cooling:DX:TwoStageWithHumidityControlMode, Refrigeration:CompressorRack,"); - ShowContinueError(" Refrigeration:Condenser:AirCooled ,Refrigeration:Condenser:EvaporativeCooled, "); - ShowContinueError(" or Refrigeration:Condenser:WaterCooled."); - ErrorsFound = true; - } - // Set up comp set for water side nodes (reverse inlet/outlet for water heater) SetUpCompSets(WaterHeaterDesuperheater(DesuperheaterNum).Type, WaterHeaterDesuperheater(DesuperheaterNum).Name, @@ -1333,7 +1298,10 @@ namespace WaterThermalTanks { cAlphaArgs(6), cAlphaArgs(5)); - // Find the DX equipment index associated with the desuperheater heating coil. + // Find the Refrigeration equipment index associated with the desuperheater heating coil. + errFlag = false; + WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceType = cAlphaArgs(9); + WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceName = cAlphaArgs(10); if (UtilityRoutines::SameString(cAlphaArgs(9), "Refrigeration:CompressorRack")) { WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource = COMPRESSORRACK_REFRIGERATEDCASE; for (RackNum = 1; RackNum <= NumRefrigeratedRacks; ++RackNum) { @@ -1342,11 +1310,6 @@ namespace WaterThermalTanks { if (allocated(HeatReclaimRefrigeratedRack)) ValidSourceType(DesuperheaterNum) = true; break; } - if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum == 0) { - ShowSevereError(cCurrentModuleObject + ", \"" + WaterHeaterDesuperheater(DesuperheaterNum).Name + - "\" desuperheater heat source object not found: " + cAlphaArgs(9) + " \"" + cAlphaArgs(10) + "\""); - ErrorsFound = true; - } } else if ((UtilityRoutines::SameString(cAlphaArgs(9), "Refrigeration:Condenser:AirCooled")) || (UtilityRoutines::SameString(cAlphaArgs(9), "Refrigeration:Condenser:EvaporativeCooled")) || (UtilityRoutines::SameString(cAlphaArgs(9), "Refrigeration:Condenser:WaterCooled"))) { @@ -1357,66 +1320,52 @@ namespace WaterThermalTanks { if (allocated(HeatReclaimRefrigCondenser)) ValidSourceType(DesuperheaterNum) = true; break; } - if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum == 0) { - ShowSevereError(cCurrentModuleObject + ", \"" + WaterHeaterDesuperheater(DesuperheaterNum).Name + - "\" desuperheater heat source object not found: " + cAlphaArgs(9) + " \"" + cAlphaArgs(10) + "\""); - ErrorsFound = true; - } } else if (UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:SingleSpeed")) { WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource = COIL_DX_COOLING; - for (DXCoilNum = 1; DXCoilNum <= NumDXCoils; ++DXCoilNum) { - if (!UtilityRoutines::SameString(HeatReclaimDXCoil(DXCoilNum).Name, cAlphaArgs(10))) continue; - WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum = DXCoilNum; - if (allocated(HeatReclaimDXCoil)) ValidSourceType(DesuperheaterNum) = true; - break; - } - if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum == 0) { - ShowSevereError(cCurrentModuleObject + ", \"" + WaterHeaterDesuperheater(DesuperheaterNum).Name + - "\" desuperheater heat source object not found: " + cAlphaArgs(9) + " \"" + cAlphaArgs(10) + "\""); - ErrorsFound = true; - } - } else if (UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:TwoSpeed")) { + GetDXCoilIndex(WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceName, WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum, errFlag, cCurrentModuleObject); + if (allocated(HeatReclaimDXCoil)) ValidSourceType(DesuperheaterNum) = true; + } else if (UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:TwoSpeed") || UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:MultiSpeed")) { WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource = COIL_DX_MULTISPEED; - for (DXCoilNum = 1; DXCoilNum <= NumDXCoils; ++DXCoilNum) { - if (!UtilityRoutines::SameString(HeatReclaimDXCoil(DXCoilNum).Name, cAlphaArgs(10))) continue; - WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum = DXCoilNum; - if (allocated(HeatReclaimDXCoil)) ValidSourceType(DesuperheaterNum) = true; - break; - } - if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum == 0) { - ShowSevereError(cCurrentModuleObject + ", \"" + WaterHeaterDesuperheater(DesuperheaterNum).Name + - "\" desuperheater heat source object not found: " + cAlphaArgs(9) + " \"" + cAlphaArgs(10) + "\""); - ErrorsFound = true; - } + GetDXCoilIndex(WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceName, WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum, errFlag, cCurrentModuleObject); + if (allocated(HeatReclaimDXCoil)) ValidSourceType(DesuperheaterNum) = true; } else if (UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:TwoStageWithHumidityControlMode")) { WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource = COIL_DX_MULTIMODE; - for (DXCoilNum = 1; DXCoilNum <= NumDXCoils; ++DXCoilNum) { - if (!UtilityRoutines::SameString(HeatReclaimDXCoil(DXCoilNum).Name, cAlphaArgs(10))) continue; - WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum = DXCoilNum; - if (allocated(HeatReclaimDXCoil)) ValidSourceType(DesuperheaterNum) = true; - break; - } - if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum == 0) { - ShowSevereError(cCurrentModuleObject + ", \"" + WaterHeaterDesuperheater(DesuperheaterNum).Name + - "\" desuperheater heat source object not found: " + cAlphaArgs(9) + " \"" + cAlphaArgs(10) + "\""); - ErrorsFound = true; - } + GetDXCoilIndex(WaterHeaterDesuperheater(DesuperheaterNum).HeatingSourceName, WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum, errFlag, cCurrentModuleObject); + if (allocated(HeatReclaimDXCoil)) ValidSourceType(DesuperheaterNum) = true; } else if (UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:DX:VariableSpeed")) { WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource = COIL_DX_VARIABLE_COOLING; - for (DXCoilNum = 1; DXCoilNum <= VariableSpeedCoils::NumVarSpeedCoils; ++DXCoilNum) { - if (!UtilityRoutines::SameString(DataHeatBalance::HeatReclaimVS_DXCoil(DXCoilNum).Name, cAlphaArgs(10))) continue; - WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum = DXCoilNum; - if (allocated(DataHeatBalance::HeatReclaimVS_DXCoil)) ValidSourceType(DesuperheaterNum) = true; - break; - } - if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum == 0) { - ShowSevereError(cCurrentModuleObject + ", \"" + WaterHeaterDesuperheater(DesuperheaterNum).Name + - "\" desuperheater heat source object not found: " + cAlphaArgs(9) + " \"" + cAlphaArgs(10) + "\""); - ErrorsFound = true; + WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum = VariableSpeedCoils::GetCoilIndexVariableSpeed(cAlphaArgs(9), cAlphaArgs(10), errFlag); + if (allocated(DataHeatBalance::HeatReclaimVS_DXCoil)) ValidSourceType(DesuperheaterNum) = true; + } else if (UtilityRoutines::SameString(cAlphaArgs(9), "Coil:Cooling:WaterToAirHeatPump:EquationFit")) { + WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource = COIL_AIR_WATER_HEATPUMP_EQ; + WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum = WaterToAirHeatPumpSimple::GetCoilIndex(cAlphaArgs(9), cAlphaArgs(10), errFlag); + if (allocated(DataHeatBalance::HeatReclaimSimple_WAHPCoil)) { + DataHeatBalance::HeatReclaimHPCoilData &HeatReclaim = HeatReclaimSimple_WAHPCoil(WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum); + if (!allocated(HeatReclaim.WaterHeatingDesuperheaterReclaimedHeat)){ + HeatReclaim.WaterHeatingDesuperheaterReclaimedHeat.allocate(NumWaterHeaterDesuperheater); + for (auto& num : HeatReclaim.WaterHeatingDesuperheaterReclaimedHeat) num = 0.0; + } + ValidSourceType(DesuperheaterNum) = true; } } else { + ShowSevereError(cCurrentModuleObject + " = " + WaterHeaterDesuperheater(DesuperheaterNum).Name + ':'); + ShowContinueError(" desuperheater can only be used with Coil:Cooling:DX:SingleSpeed, "); + ShowContinueError( + " Coil:Cooling:DX:TwoSpeed, Coil:Cooling:DX:MultiSpeed, Coil:Cooling:DX:TwoStageWithHumidityControlMode, Coil:Cooling:DX:VariableSpeed, " + "Coil:Cooling:WaterToAirHeatPump:EquationFit, Refrigeration:CompressorRack,"); + ShowContinueError(" Refrigeration:Condenser:AirCooled ,Refrigeration:Condenser:EvaporativeCooled, "); + ShowContinueError(" or Refrigeration:Condenser:WaterCooled."); + ShowContinueError(" Invalid desuperheater heat source object: " + cAlphaArgs(9) + " \"" + cAlphaArgs(10) + "\""); + ErrorsFound = true; + } + if (errFlag) { + ShowContinueError("...occurs in " + cCurrentModuleObject + '=' + WaterHeaterDesuperheater(DesuperheaterNum).Name); + ErrorsFound = true; + } + + if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSourceIndexNum == 0) { ShowSevereError(cCurrentModuleObject + ", \"" + WaterHeaterDesuperheater(DesuperheaterNum).Name + - "\" invalid desuperheater heat source object: " + cAlphaArgs(9) + " \"" + cAlphaArgs(10) + "\""); + "\" desuperheater heat source object not found: " + cAlphaArgs(9) + " \"" + cAlphaArgs(10) + "\""); ErrorsFound = true; } @@ -8027,7 +7976,11 @@ namespace WaterThermalTanks { Real64 Runtime1 = 0.0; // Time that heater 1 is running (s) Real64 Runtime2 = 0.0; // Time that heater 2 is running (s) bool SetPointRecovered = false; // Flag to indicate when set point is recovered for the first time - + //Added three variables for desuperheater sourceinlet temperature update + Real64 MdotDesuperheaterWater = 0.0; // mass flow rate of desuperheater source side water, kg/s + Real64 DesuperheaterPLR = 0.0; // Desuperheater part load ratio + Real64 DesuperheaterHeaterRate = 0.0; // Desuperheater heater rate (W) + Real64 SourceInletTempSum = 0.0; // Sum the source inlet temperature in sub time step to calculate average tempearature Real64 Qheater1; // Heating rate of burner or electric heating element 1 (W) Real64 Qheater2; // Heating rate of burner or electric heating element 2 (W) @@ -8202,6 +8155,17 @@ namespace WaterThermalTanks { } if (TfinalDiff < TemperatureConvergenceCriteria) break; + + if (Tank.DesuperheaterNum > 0){ + DesuperheaterPLR = WaterHeaterDesuperheater(Tank.DesuperheaterNum).DesuperheaterPLR; + DesuperheaterHeaterRate = WaterHeaterDesuperheater(Tank.DesuperheaterNum).HeaterRate; + MdotDesuperheaterWater = WaterHeaterDesuperheater(Tank.DesuperheaterNum).OperatingWaterFlowRate * Psychrometrics::RhoH2O(Tavg[Tank.SourceOutletStratNode - 1]); + if (DesuperheaterPLR > 0.0 && MdotDesuperheaterWater > 0.0){ + Tank.SourceInletTemp = Tavg[Tank.SourceOutletStratNode - 1] + (DesuperheaterHeaterRate/DesuperheaterPLR) / (MdotDesuperheaterWater * Cp); + }else{ + Tank.SourceInletTemp = Tavg[Tank.SourceOutletStratNode - 1]; + } + } } // end temperature convergence loop // Inversion mixing @@ -8307,6 +8271,7 @@ namespace WaterThermalTanks { const Real64 Qunmet_node = max(Qneeded_node - Qheater1 - Qheater2, 0.0); Eunmet += Qunmet_node * dt; } + SourceInletTempSum += Tank.SourceInletTemp * dt; // More bookkeeping for reporting variables Eloss += Qloss * dt; const Real64 Quse = (Tank.UseOutletStratNode > 0) ? Tank.UseEffectiveness * Tank.UseMassFlowRate * Cp * (Tank.UseInletTemp - Tavg[Tank.UseOutletStratNode - 1]) : 0.0; @@ -8345,8 +8310,6 @@ namespace WaterThermalTanks { Tank.FirstRecoveryFuel += Qrecovery * dt; if (SetPointRecovered) Tank.FirstRecoveryDone = true; } - - } // end while TimeRemaining > 0.0 for (auto &e : Tank.Node) { @@ -8376,6 +8339,8 @@ namespace WaterThermalTanks { } else if (Tank.SourceOutletStratNode > 0) { // otherwise set it to the temperature of the source outlet node Tank.SourceOutletTemp = Tank.Node(Tank.SourceOutletStratNode).TempAvg; + // Output the average inlet temperature for the timestep + Tank.SourceInletTemp = SourceInletTempSum / SecInTimeStep; } if (HPWHCondenserConfig == TypeOf_HeatPumpWtrHeaterPumped) { // For pumped condensers, set the source inlet and outlets to match the delta T @@ -8623,8 +8588,13 @@ namespace WaterThermalTanks { using DataGlobals::SecInHour; using DataGlobals::WarmupFlag; using DataHeatBalance::HeatReclaimDXCoil; + using DataHeatBalance::HeatReclaimSimple_WAHPCoil; using DataHVACGlobals::ShortenTimeStepSys; + using DataGlobals::HourOfDay; + using DataGlobals::TimeStep; + using DataGlobals::TimeStepZone; using DataHVACGlobals::TimeStepSys; + using DataHVACGlobals::SysTimeElapsed; using DataLoopNode::Node; using DXCoils::DXCoil; using General::RoundSigDigits; @@ -8632,13 +8602,13 @@ namespace WaterThermalTanks { using Psychrometrics::CPHW; using Psychrometrics::RhoH2O; using ScheduleManager::GetCurrentScheduleValue; + using WaterToAirHeatPumpSimple::SimpleWatertoAirHP; // Locals // SUBROUTINE ARGUMENT DEFINITIONS: // SUBROUTINE PARAMETER DEFINITIONS: int const MaxIte(500); // Maximum number of iterations for RegulaFalsi - Real64 const Acc(0.00001); // Accuracy of result from RegulaFalsi // SUBROUTINE LOCAL VARIABLE DECLARATIONS: Real64 AvailSchedule; // desuperheater availability schedule @@ -8669,6 +8639,20 @@ namespace WaterThermalTanks { WaterInletNode = WaterHeaterDesuperheater(DesuperheaterNum).WaterInletNode; WaterOutletNode = WaterHeaterDesuperheater(DesuperheaterNum).WaterOutletNode; + // store first iteration tank temperature and desuperheater mode of operation + if (FirstHVACIteration && !ShortenTimeStepSys && WaterHeaterDesuperheater(DesuperheaterNum).FirstTimeThroughFlag) { + // Save conditions from end of previous system timestep + // Every iteration that does not advance time should reset to these values + WaterThermalTank(WaterThermalTankNum).SavedTankTemp = WaterThermalTank(WaterThermalTankNum).TankTemp; + WaterThermalTank(WaterThermalTankNum).SavedSourceOutletTemp = WaterThermalTank(WaterThermalTankNum).SourceOutletTemp; + WaterHeaterDesuperheater(DesuperheaterNum).SaveMode = WaterHeaterDesuperheater(DesuperheaterNum).Mode; + WaterHeaterDesuperheater(DesuperheaterNum).FirstTimeThroughFlag = false; + } + + else if (!FirstHVACIteration) { + WaterHeaterDesuperheater(DesuperheaterNum).FirstTimeThroughFlag = true; + } + // initialize variables before invoking any RETURN statement PartLoadRatio = 0.0; WaterThermalTank(WaterThermalTankNum).SourceMassFlowRate = 0.0; @@ -8693,13 +8677,14 @@ namespace WaterThermalTanks { // set up initial conditions QHeatRate = 0.0; + MdotWater = 0.0; SetPointTemp = WaterHeaterDesuperheater(DesuperheaterNum).SetPointTemp; DeadBandTempDiff = WaterHeaterDesuperheater(DesuperheaterNum).DeadBandTempDiff; // simulate only the water heater tank if the desuperheater coil is scheduled off if (AvailSchedule == 0.0) { WaterHeaterDesuperheater(DesuperheaterNum).Mode = FloatMode; - CalcWaterThermalTankMixed(WaterThermalTankNum); + CalcWaterThermalTank(WaterThermalTankNum); return; } @@ -8710,7 +8695,7 @@ namespace WaterThermalTanks { if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == CONDENSER_REFRIGERATION) { if (HeatReclaimRefrigCondenser(SourceID).AvailTemperature <= WaterThermalTank(WaterThermalTankNum).SourceInletTemp) { WaterHeaterDesuperheater(DesuperheaterNum).Mode = FloatMode; - CalcWaterThermalTankMixed(WaterThermalTankNum); + CalcWaterThermalTank(WaterThermalTankNum); ShowRecurringWarningErrorAtEnd("WaterHeating:Desuperheater " + WaterHeaterDesuperheater(DesuperheaterNum).Name + " - Waste heat source temperature was too low to be useful.", WaterHeaterDesuperheater(DesuperheaterNum).InsuffTemperatureWarn); @@ -8746,26 +8731,12 @@ namespace WaterThermalTanks { } // Simulate tank if desuperheater unavailable for water heating - CalcWaterThermalTankMixed(WaterThermalTankNum); + CalcWaterThermalTank(WaterThermalTankNum); return; } Effic = WaterHeaterDesuperheater(DesuperheaterNum).HeatReclaimRecoveryEff; - // store first iteration tank temperature and desuperheater mode of operation - if (FirstHVACIteration && !ShortenTimeStepSys && WaterHeaterDesuperheater(DesuperheaterNum).FirstTimeThroughFlag) { - // Save conditions from end of previous system timestep - // Every iteration that does not advance time should reset to these values - WaterThermalTank(WaterThermalTankNum).SavedTankTemp = WaterThermalTank(WaterThermalTankNum).TankTemp; - WaterThermalTank(WaterThermalTankNum).SavedSourceOutletTemp = WaterThermalTank(WaterThermalTankNum).SourceOutletTemp; - WaterHeaterDesuperheater(DesuperheaterNum).SaveMode = WaterHeaterDesuperheater(DesuperheaterNum).Mode; - WaterHeaterDesuperheater(DesuperheaterNum).FirstTimeThroughFlag = false; - } - - else if (!FirstHVACIteration) { - WaterHeaterDesuperheater(DesuperheaterNum).FirstTimeThroughFlag = true; - } - TankTemp = WaterThermalTank(WaterThermalTankNum).SavedTankTemp; Node(WaterInletNode).Temp = WaterThermalTank(WaterThermalTankNum).SavedSourceOutletTemp; WaterHeaterDesuperheater(DesuperheaterNum).Mode = WaterHeaterDesuperheater(DesuperheaterNum).SaveMode; @@ -8802,6 +8773,9 @@ namespace WaterThermalTanks { } else if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == COIL_DX_VARIABLE_COOLING) { AverageWasteHeat = DataHeatBalance::HeatReclaimVS_DXCoil(SourceID).AvailCapacity; WaterHeaterDesuperheater(DesuperheaterNum).DXSysPLR = VariableSpeedCoils::VarSpeedCoil(SourceID).PartLoadRatio; + } else if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == COIL_AIR_WATER_HEATPUMP_EQ) { + AverageWasteHeat = DataHeatBalance::HeatReclaimSimple_WAHPCoil(SourceID).AvailCapacity; + WaterHeaterDesuperheater(DesuperheaterNum).DXSysPLR = WaterToAirHeatPumpSimple::SimpleWatertoAirHP(SourceID).PartLoadRatio; } } else { AverageWasteHeat = 0.0; @@ -8809,7 +8783,7 @@ namespace WaterThermalTanks { // simulate only water heater tank if reclaim heating source is off if (WaterHeaterDesuperheater(DesuperheaterNum).DXSysPLR == 0.0) { - CalcWaterThermalTankMixed(WaterThermalTankNum); + CalcWaterThermalTank(WaterThermalTankNum); return; } @@ -8820,6 +8794,14 @@ namespace WaterThermalTanks { DeadBandTempDiff = max(0.0, (SetPointTemp - CutInTemp)); } + Real64 Acc; // Accuracy of result from RegulaFalsi + if (WaterHeaterDesuperheater(DesuperheaterNum).TankTypeNum == StratifiedWaterHeater) { + Acc = 0.001; + } + else { + Acc = 0.00001; + } + // set the water-side mass flow rate CpWater = CPHW(Node(WaterInletNode).Temp); MdotWater = WaterHeaterDesuperheater(DesuperheaterNum).OperatingWaterFlowRate * RhoH2O(Node(WaterInletNode).Temp); @@ -8836,9 +8818,9 @@ namespace WaterThermalTanks { // change to tanktypenum using parameters? { - auto const SELECT_CASE_var(WaterHeaterDesuperheater(DesuperheaterNum).TankTypeNum); + auto const TankType(WaterHeaterDesuperheater(DesuperheaterNum).TankTypeNum); - if (SELECT_CASE_var == MixedWaterHeater) { + if (TankType == MixedWaterHeater||TankType == StratifiedWaterHeater) { WaterHeaterDesuperheater(DesuperheaterNum).SaveWHMode = WaterThermalTank(WaterThermalTankNum).Mode; @@ -8856,8 +8838,9 @@ namespace WaterThermalTanks { WaterThermalTank(WaterThermalTankNum).MaxCapacity = WaterHeaterDesuperheater(DesuperheaterNum).BackupElementCapacity; WaterThermalTank(WaterThermalTankNum).MinCapacity = WaterHeaterDesuperheater(DesuperheaterNum).BackupElementCapacity; - - CalcWaterThermalTankMixed(WaterThermalTankNum); + WaterHeaterDesuperheater(DesuperheaterNum).DesuperheaterPLR = PartLoadRatio; + WaterHeaterDesuperheater(DesuperheaterNum).HeaterRate = QHeatRate * PartLoadRatio; + CalcWaterThermalTank(WaterThermalTankNum); NewTankTemp = WaterThermalTank(WaterThermalTankNum).TankTemp; if (NewTankTemp > SetPointTemp) { @@ -8878,7 +8861,7 @@ namespace WaterThermalTanks { MaxIte, SolFla, PartLoadRatio, - PLRResidualMixedTank, + PLRResidualWaterThermalTank, 0.0, WaterHeaterDesuperheater(DesuperheaterNum).DXSysPLR, Par); @@ -8948,8 +8931,9 @@ namespace WaterThermalTanks { // disable the tank heater to find PLR of the HPWH WaterThermalTank(WaterThermalTankNum).MaxCapacity = 0.0; WaterThermalTank(WaterThermalTankNum).MinCapacity = 0.0; - - CalcWaterThermalTankMixed(WaterThermalTankNum); + WaterHeaterDesuperheater(DesuperheaterNum).DesuperheaterPLR = PartLoadRatio; + WaterHeaterDesuperheater(DesuperheaterNum).HeaterRate = QHeatRate * PartLoadRatio; + CalcWaterThermalTank(WaterThermalTankNum); NewTankTemp = WaterThermalTank(WaterThermalTankNum).TankTemp; if (NewTankTemp <= (SetPointTemp - DeadBandTempDiff)) { @@ -8969,8 +8953,9 @@ namespace WaterThermalTanks { WaterThermalTank(WaterThermalTankNum).SourceMassFlowRate = MdotWater * PartLoadRatio; WaterThermalTank(WaterThermalTankNum).MaxCapacity = WaterHeaterDesuperheater(DesuperheaterNum).BackupElementCapacity; WaterThermalTank(WaterThermalTankNum).MinCapacity = WaterHeaterDesuperheater(DesuperheaterNum).BackupElementCapacity; - - CalcWaterThermalTankMixed(WaterThermalTankNum); + WaterHeaterDesuperheater(DesuperheaterNum).DesuperheaterPLR = PartLoadRatio; + WaterHeaterDesuperheater(DesuperheaterNum).HeaterRate = QHeatRate * PartLoadRatio; + CalcWaterThermalTank(WaterThermalTankNum); NewTankTemp = WaterThermalTank(WaterThermalTankNum).TankTemp; if (NewTankTemp > SetPointTemp) { Par(1) = SetPointTemp; @@ -8986,7 +8971,7 @@ namespace WaterThermalTanks { MaxIte, SolFla, PartLoadRatio, - PLRResidualMixedTank, + PLRResidualWaterThermalTank, 0.0, WaterHeaterDesuperheater(DesuperheaterNum).DXSysPLR, Par); @@ -9090,11 +9075,14 @@ namespace WaterThermalTanks { } else if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == CONDENSER_REFRIGERATION) { HeatReclaimRefrigCondenser(SourceID).UsedWaterHeater = WaterHeaterDesuperheater(DesuperheaterNum).HeaterRate; } else if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == COIL_DX_COOLING || - WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == COIL_DX_MULTISPEED || - WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == COIL_DX_MULTIMODE) { + WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == COIL_DX_MULTISPEED || + WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == COIL_DX_MULTIMODE) { HeatReclaimDXCoil(SourceID).AvailCapacity -= WaterHeaterDesuperheater(DesuperheaterNum).HeaterRate; } else if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == COIL_DX_VARIABLE_COOLING) { DataHeatBalance::HeatReclaimVS_DXCoil(SourceID).AvailCapacity -= WaterHeaterDesuperheater(DesuperheaterNum).HeaterRate; + } else if (WaterHeaterDesuperheater(DesuperheaterNum).ReclaimHeatingSource == COIL_AIR_WATER_HEATPUMP_EQ) { + DataHeatBalance::HeatReclaimSimple_WAHPCoil(SourceID).AvailCapacity -= WaterHeaterDesuperheater(DesuperheaterNum).HeaterRate; + DataHeatBalance::HeatReclaimSimple_WAHPCoil(SourceID).WaterHeatingDesuperheaterReclaimedHeat(DesuperheaterNum) = WaterHeaterDesuperheater(DesuperheaterNum).HeaterRate; } } } @@ -10537,14 +10525,16 @@ namespace WaterThermalTanks { return PLRResidualIterSpeed; } - Real64 PLRResidualMixedTank(Real64 const HPPartLoadRatio, // compressor cycling ratio (1.0 is continuous, 0.0 is off) + Real64 PLRResidualWaterThermalTank(Real64 const HPPartLoadRatio, // compressor cycling ratio (1.0 is continuous, 0.0 is off) Array1 const &Par // par(1) = HP set point temperature [C] ) { // FUNCTION INFORMATION: // AUTHOR Richard Raustad // DATE WRITTEN May 2005 - // MODIFIED + // MODIFIED Yueyue Zhou + // DATE MODIFIED May 2019 + // MODIFICATION Combined the PLR functions for both mixed and stratified tank // RE-ENGINEERED // PURPOSE OF THIS FUNCTION: @@ -10552,11 +10542,11 @@ namespace WaterThermalTanks { // HP water heater output depends on the part load ratio which is being varied to zero the residual. // METHODOLOGY EMPLOYED: - // Calls CalcWaterThermalTankMixed to get tank temperature at the given part load ratio (source water mass flow rate) + // Calls CalcWaterThermalTank to get tank temperature at the given part load ratio (source water mass flow rate) // and calculates the residual as defined above // Return value - Real64 PLRResidualMixedTank; + Real64 PLRResidualWaterThermalTank; // Locals // SUBROUTINE ARGUMENT DEFINITIONS: @@ -10575,10 +10565,10 @@ namespace WaterThermalTanks { WaterThermalTank(WaterThermalTankNum).SourceMassFlowRate = Par(5) * HPPartLoadRatio; // FirstHVACIteration is a logical, Par is real, so make 1.0=TRUE and 0.0=FALSE FirstHVACIteration = (Par(4) == 1.0); - CalcWaterThermalTankMixed(WaterThermalTankNum); + CalcWaterThermalTank(WaterThermalTankNum); NewTankTemp = WaterThermalTank(WaterThermalTankNum).TankTemp; - PLRResidualMixedTank = Par(1) - NewTankTemp; - return PLRResidualMixedTank; + PLRResidualWaterThermalTank = Par(1) - NewTankTemp; + return PLRResidualWaterThermalTank; } Real64 PLRResidualHPWH(Real64 const HPPartLoadRatio, Array1 const &Par) diff --git a/src/EnergyPlus/WaterThermalTanks.hh b/src/EnergyPlus/WaterThermalTanks.hh index 7a3e286ee16..e21ab638f4b 100644 --- a/src/EnergyPlus/WaterThermalTanks.hh +++ b/src/EnergyPlus/WaterThermalTanks.hh @@ -110,6 +110,7 @@ namespace WaterThermalTanks { extern int const COIL_DX_MULTIMODE; // reclaim heating source is DX multimode coil extern int const CONDENSER_REFRIGERATION; // reclaim heating source is detailed refrigeration system condenser extern int const COIL_DX_VARIABLE_COOLING; // reclaim heating source is Variable Speed DX cooling coil + extern int const COIL_AIR_WATER_HEATPUMP_EQ; // reclaim heating source is Water to air heat pump cooling coil extern int const UseSide; // Indicates Use side of water heater extern int const SourceSide; // Indicates Source side of water heater @@ -791,7 +792,7 @@ namespace WaterThermalTanks { Array1 const &Par // ); - Real64 PLRResidualMixedTank(Real64 const HPPartLoadRatio, // compressor cycling ratio (1.0 is continuous, 0.0 is off) + Real64 PLRResidualWaterThermalTank(Real64 const HPPartLoadRatio, // compressor cycling ratio (1.0 is continuous, 0.0 is off) Array1 const &Par // par(1) = HP set point temperature [C] ); diff --git a/src/EnergyPlus/WaterToAirHeatPumpSimple.cc b/src/EnergyPlus/WaterToAirHeatPumpSimple.cc index 23fd9c0555a..c6bf481762e 100644 --- a/src/EnergyPlus/WaterToAirHeatPumpSimple.cc +++ b/src/EnergyPlus/WaterToAirHeatPumpSimple.cc @@ -77,6 +77,8 @@ #include #include #include +#include +#include namespace EnergyPlus { @@ -128,6 +130,7 @@ namespace WaterToAirHeatPumpSimple { using DataHVACGlobals::WaterCycling; using DataPlant::TypeOf_CoilWAHPCoolingEquationFit; using DataPlant::TypeOf_CoilWAHPHeatingEquationFit; + using DataHeatBalance::HeatReclaimSimple_WAHPCoil; // Data // MODULE PARAMETER DEFINITIONS @@ -372,6 +375,7 @@ namespace WaterToAirHeatPumpSimple { if (NumWatertoAirHPs > 0) { SimpleWatertoAirHP.allocate(NumWatertoAirHPs); SimpleHPTimeStepFlag.dimension(NumWatertoAirHPs, true); + DataHeatBalance::HeatReclaimSimple_WAHPCoil.allocate(NumWatertoAirHPs); } inputProcessor->getObjectDefMaxArgs("Coil:Cooling:WaterToAirHeatPump:EquationFit", NumParams, NumAlphas, NumNums); @@ -407,7 +411,6 @@ namespace WaterToAirHeatPumpSimple { cNumericFields); // ErrorsFound will be set to True if problem was found, left untouched otherwise VerifyUniqueCoilName(CurrentModuleObject, AlphArray(1), ErrorsFound, CurrentModuleObject + " Name"); - SimpleWatertoAirHP(HPNum).Name = AlphArray(1); SimpleWatertoAirHP(HPNum).WatertoAirHPType = "COOLING"; SimpleWatertoAirHP(HPNum).WAHPPlantTypeOfNum = TypeOf_CoilWAHPCoolingEquationFit; @@ -434,6 +437,8 @@ namespace WaterToAirHeatPumpSimple { SimpleWatertoAirHP(HPNum).CoolPower5 = NumArray(21); SimpleWatertoAirHP(HPNum).Twet_Rated = NumArray(22); SimpleWatertoAirHP(HPNum).Gamma_Rated = NumArray(23); + DataHeatBalance::HeatReclaimSimple_WAHPCoil(WatertoAirHPNum).Name = SimpleWatertoAirHP(HPNum).Name; + DataHeatBalance::HeatReclaimSimple_WAHPCoil(WatertoAirHPNum).SourceType = CurrentModuleObject; SimpleWatertoAirHP(HPNum).WaterInletNodeNum = GetOnlySingleNode( AlphArray(2), ErrorsFound, CurrentModuleObject, AlphArray(1), NodeType_Water, NodeConnectionType_Inlet, 2, ObjectIsNotParent); @@ -1117,6 +1122,7 @@ namespace WaterToAirHeatPumpSimple { SimpleWatertoAirHP(HPNum).EnergyLatent = 0.0; SimpleWatertoAirHP(HPNum).EnergySource = 0.0; SimpleWatertoAirHP(HPNum).COP = 0.0; + DataHeatBalance::HeatReclaimSimple_WAHPCoil(HPNum).AvailCapacity = 0.0; } void SizeHVACWaterToAir(int const HPNum) @@ -2369,11 +2375,19 @@ namespace WaterToAirHeatPumpSimple { QSensible *= PartLoadRatio; Winput *= RuntimeFrac; QSource = QSource_fullload * PartLoadRatio; - + DataHeatBalance::HeatReclaimSimple_WAHPCoil(HPNum).AvailCapacity = QSource; + // Add power to global variable so power can be summed by parent object DXElecCoolingPower = Winput; ReportingConstant = TimeStepSys * SecInHour; + DataHeatBalance::HeatReclaimHPCoilData &HeatReclaim = HeatReclaimSimple_WAHPCoil(HPNum); + HeatReclaim.WaterHeatingDesuperheaterReclaimedHeatTotal = 0.0; + if (allocated(HeatReclaim.WaterHeatingDesuperheaterReclaimedHeat)) { + for (auto& num : HeatReclaim.WaterHeatingDesuperheaterReclaimedHeat) HeatReclaim.WaterHeatingDesuperheaterReclaimedHeatTotal += num; + } + QSource -= HeatReclaim.WaterHeatingDesuperheaterReclaimedHeatTotal; + // Update heat pump data structure SimpleWatertoAirHP(HPNum).Power = Winput; SimpleWatertoAirHP(HPNum).QLoadTotal = QLoadTotal; diff --git a/src/EnergyPlus/WindowComplexManager.cc b/src/EnergyPlus/WindowComplexManager.cc index e7941586e5f..ba3d711072e 100644 --- a/src/EnergyPlus/WindowComplexManager.cc +++ b/src/EnergyPlus/WindowComplexManager.cc @@ -3619,7 +3619,7 @@ namespace WindowComplexManager { // direct solar radiation if (CalcCondition == noCondition) { ShadeFlag = SurfaceWindow(SurfNum).ShadingFlag; - dir = QRadSWOutIncident(SurfNum) + QS(Surface(SurfNum).Zone); // TODO, check , ! + dir = QRadSWOutIncident(SurfNum) + QS(Surface(SurfNum).SolarEnclIndex); // TODO, check , ! // currently using Exterior beam plus diffuse solar incident on surface // plus zone short wave. CHECK // if (dir.ne.0.0d0) then @@ -3966,9 +3966,9 @@ namespace WindowComplexManager { // TransDiff = InterpSW(SurfaceWindow(SurfNum)%SwitchingFactor,Construct(ConstrNum)%TransDiff, & // Construct(ConstrNumSh)%TransDiff) // END IF - WinHeatGain(SurfNum) -= QS(Surface(SurfNum).Zone) * Surface(SurfNum).Area * TransDiff; - WinHeatTransfer(SurfNum) -= QS(Surface(SurfNum).Zone) * Surface(SurfNum).Area * TransDiff; - WinLossSWZoneToOutWinRep(SurfNum) = QS(Surface(SurfNum).Zone) * Surface(SurfNum).Area * TransDiff; + WinHeatGain(SurfNum) -= QS(Surface(SurfNum).SolarEnclIndex) * Surface(SurfNum).Area * TransDiff; + WinHeatTransfer(SurfNum) -= QS(Surface(SurfNum).SolarEnclIndex) * Surface(SurfNum).Area * TransDiff; + WinLossSWZoneToOutWinRep(SurfNum) = QS(Surface(SurfNum).SolarEnclIndex) * Surface(SurfNum).Area * TransDiff; if (ShadeFlag == IntShadeOn || ShadeFlag == ExtShadeOn) { WinShadingAbsorbedSolar(SurfNum) = (SurfaceWindow(SurfNum).ExtBeamAbsByShade + SurfaceWindow(SurfNum).ExtDiffAbsByShade) * diff --git a/src/EnergyPlus/WindowManager.cc b/src/EnergyPlus/WindowManager.cc index 32a33aa74e7..7b957752853 100644 --- a/src/EnergyPlus/WindowManager.cc +++ b/src/EnergyPlus/WindowManager.cc @@ -272,7 +272,6 @@ namespace WindowManager { Array2D top(5, 5, 0.0); // Transmittance matrix for subr. op Array2D rfop(5, 5, 0.0); // Front reflectance matrix for subr. op Array2D rbop(5, 5, 0.0); // Back transmittance matrix for subr. op - Array1D IndepVarCurveFit(MaxNumOfIncidentAngles, 0.0); // Values of independent variable (cos of inc. angle) for curve fit Array1D DepVarCurveFit(MaxNumOfIncidentAngles, 0.0); // Values of dependent variable corresponding to IndepVarCurveFit values Array1D CoeffsCurveFit(6, 0.0); // Polynomial coefficients from curve fit Array1D tsolPhi(MaxNumOfIncidentAngles, 0.0); // Glazing system solar transmittance for each angle of incidence @@ -287,7 +286,6 @@ namespace WindowManager { Array1D CosPhiIndepVar(MaxNumOfIncidentAngles, 0.0); // Cos of incidence angles at 10-deg increments for curve fits Array1D LayerNum(5, 0); // Glass layer number - Array1D AngleNum(5, 0); // Glass layer number for spectral and angular data only std::unique_ptr inExtWindowModel; // Information about windows model (interior or exterior) std::unique_ptr winOpticalModel; // Information about windows optical model (Simplified or BSDF) @@ -403,7 +401,6 @@ namespace WindowManager { top = Array2D(5, 5, 0.0); rfop = Array2D(5, 5, 0.0); rbop = Array2D(5, 5, 0.0); - IndepVarCurveFit = Array1D(10, 0.0); DepVarCurveFit = Array1D(10, 0.0); CoeffsCurveFit = Array1D(6, 0.0); tsolPhi = Array1D(MaxNumOfIncidentAngles, 0.0); @@ -470,10 +467,6 @@ namespace WindowManager { // Using/Aliasing using namespace Vectors; - using CurveManager::PerfCurve; - using CurveManager::SetCommonIncidentAngles; - using CurveManager::TableData; - using CurveManager::TableLookup; using General::TrimSigDigits; using WindowEquivalentLayer::InitEquivalentLayerWindowCalculations; @@ -791,7 +784,6 @@ namespace WindowManager { AllGlassIsSpectralAverage = true; int TotalIPhi = 10; LayerNum = 0; - AngleNum = 0; // Loop over glass layers in the construction for (IGlass = 1; IGlass <= NGlass; ++IGlass) { @@ -877,9 +869,8 @@ namespace WindowManager { } if (Material(LayPtr).GlassSpectralAndAngle) { if (!BGFlag) AllGlassIsSpectralAverage = false; - numptDAT = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).NumX2Vars; + numptDAT = wle.size(); numpt(IGlass) = numptDAT; - TotalIPhi = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).NumX1Vars; if (BGFlag) { // 5/16/2012 CR 8793. Add warning message for the glazing defined with full spectral data. ShowWarningError("Window glazing material \"" + Material(LayPtr).Name + @@ -892,12 +883,12 @@ namespace WindowManager { "material) using the full spectral data."); // calc Trans, TransVis, ReflectSolBeamFront, ReflectSolBeamBack, ReflectVisBeamFront, ReflectVisBeamBack // assuming wlt same as wle - int NumX2 = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).NumX2Vars; - for (ILam = 1; ILam <= NumX2; ++ILam) { - wlt(IGlass, ILam) = TableData(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).X2(ILam); - t(IGlass, ILam) = TableData(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).Y(ILam); - rff(IGlass, ILam) = TableData(PerfCurve(Material(LayPtr).GlassSpecAngFRefleDataPtr).TableIndex).Y(ILam); - rbb(IGlass, ILam) = TableData(PerfCurve(Material(LayPtr).GlassSpecAngBRefleDataPtr).TableIndex).Y(ILam); + for (ILam = 1; ILam <= (int)wle.size(); ++ILam) { + auto lam = wle(ILam); + wlt(IGlass, ILam) = lam; + t(IGlass, ILam) = CurveManager::CurveValue(Material(LayPtr).GlassSpecAngTransDataPtr,0.0,lam); + rff(IGlass, ILam) = CurveManager::CurveValue(Material(LayPtr).GlassSpecAngFRefleDataPtr,0.0,lam); + rbb(IGlass, ILam) = CurveManager::CurveValue(Material(LayPtr).GlassSpecAngBRefleDataPtr,0.0,lam); } SolarSprectrumAverage(t, tmpTrans); SolarSprectrumAverage(rff, tmpReflectSolBeamFront); @@ -921,14 +912,6 @@ namespace WindowManager { } } // End of loop over glass layers in the construction for front calculation - // Perform do loop to find common incident angles if multiple SpectralAngular layers are specified - for (IGlass = 1; IGlass <= NGlass; ++IGlass) { - LayPtr = Construct(ConstrNum).LayerPoint(LayerNum(IGlass)); - if (Material(LayPtr).GlassSpectralAndAngle) { - AngleNum(IGlass) = LayerNum(IGlass); - } - } - SetCommonIncidentAngles(ConstrNum, NGlass, TotalIPhi, AngleNum); if (TotalIPhi > MaxNumOfIncidentAngles) { ShowSevereError("WindowManage::InitGlassOpticalCalculations = " + Construct(ConstrNum).Name + ", Invalid maximum value of common incidet angles = " + TrimSigDigits(TotalIPhi) + "."); @@ -937,18 +920,6 @@ namespace WindowManager { ShowFatalError("Errors found getting inputs. Previous error(s) cause program termination."); } - for (IGlass = 1; IGlass <= NGlass; ++IGlass) { - LayPtr = Construct(ConstrNum).LayerPoint(LayerNum(IGlass)); - if (Material(LayPtr).GlassSpectralAndAngle) { - CosPhiIndepVar = 0.0; - for (IPhi = 1; IPhi <= TotalIPhi; ++IPhi) { - Phi = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).X1Var(IPhi); - CosPhiIndepVar(IPhi) = std::cos(Phi * DegToRadians); - } - break; - } - } - // Loop over incidence angle from 0 to 90 deg in 10 deg increments. // Get glass layer properties, then glazing system properties (which include the // effect of inter-reflection among glass layers) at each incidence angle. @@ -956,14 +927,6 @@ namespace WindowManager { for (IPhi = 1; IPhi <= TotalIPhi; ++IPhi) { // 10 degree increment for incident angle is only value for a construction without a layer = SpectralAndAngle Phi = double(IPhi - 1) * 10.0; - for (IGlass = 1; IGlass <= NGlass; ++IGlass) { - // Override 10 degree increment for incident angle for a construction with a layer = SpectralAndAngle - LayPtr = Construct(ConstrNum).LayerPoint(LayerNum(IGlass)); - if (Material(LayPtr).GlassSpectralAndAngle) { - Phi = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).X1Var(IPhi); - break; - } - } CosPhi = std::cos(Phi * DegToRadians); if (std::abs(CosPhi) < 0.0001) CosPhi = 0.0; @@ -985,16 +948,12 @@ namespace WindowManager { SimpleGlazingU); } } else { - int NumX2 = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).NumX2Vars; - for (ILam = 1; ILam <= NumX2; ++ILam) { - wlt(IGlass, ILam) = - TableData(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).X2((IPhi - 1) * NumX2 + ILam); - tPhi(IGlass, ILam) = - TableData(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).Y((IPhi - 1) * NumX2 + ILam); - rfPhi(IGlass, ILam) = - TableData(PerfCurve(Material(LayPtr).GlassSpecAngFRefleDataPtr).TableIndex).Y((IPhi - 1) * NumX2 + ILam); - rbPhi(IGlass, ILam) = - TableData(PerfCurve(Material(LayPtr).GlassSpecAngBRefleDataPtr).TableIndex).Y((IPhi - 1) * NumX2 + ILam); + for (ILam = 1; ILam <= (int)wle.size(); ++ILam) { + auto lam = wle(ILam); + wlt(IGlass, ILam) = lam; + tPhi(IGlass, ILam) = CurveManager::CurveValue(Material(LayPtr).GlassSpecAngTransDataPtr, Phi, lam); + rfPhi(IGlass, ILam) = CurveManager::CurveValue(Material(LayPtr).GlassSpecAngFRefleDataPtr, Phi, lam); + rbPhi(IGlass, ILam) = CurveManager::CurveValue(Material(LayPtr).GlassSpecAngBRefleDataPtr, Phi, lam); } } // For use with between-glass shade/blind, save angular properties of isolated glass @@ -1148,7 +1107,7 @@ namespace WindowManager { } } if (Material(LayPtr).GlassSpectralAndAngle) { - numptDAT = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).NumX2Vars; + numptDAT = wle.size(); numpt(IGlass) = numptDAT; } } // End of loop over glass layers in the construction for back calculation @@ -1160,13 +1119,6 @@ namespace WindowManager { // When a construction has a layer = SpectralAndAngle, the 10 degree increment will be overridden. for (IPhi = 1; IPhi <= TotalIPhi; ++IPhi) { Phi = double(IPhi - 1) * 10.0; - for (IGlass = 1; IGlass <= NGlass; ++IGlass) { - LayPtr = Construct(ConstrNum).LayerPoint(LayerNum(IGlass)); - if (Material(LayPtr).GlassSpecAngTransDataPtr) { - Phi = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).X1Var(IPhi); - break; - } - } CosPhi = std::cos(Phi * DegToRadians); if (std::abs(CosPhi) < 0.0001) CosPhi = 0.0; @@ -1189,16 +1141,12 @@ namespace WindowManager { SimpleGlazingU); } } else { - int NumX2 = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).NumX2Vars; - for (ILam = 1; ILam <= NumX2; ++ILam) { - wlt(IGlass, ILam) = - TableData(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).X2((IPhi - 1) * NumX2 + ILam); - tPhi(IGlass, ILam) = - TableData(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).Y((IPhi - 1) * NumX2 + ILam); - rfPhi(IGlass, ILam) = - TableData(PerfCurve(Material(LayPtr).GlassSpecAngFRefleDataPtr).TableIndex).Y((IPhi - 1) * NumX2 + ILam); - rbPhi(IGlass, ILam) = - TableData(PerfCurve(Material(LayPtr).GlassSpecAngBRefleDataPtr).TableIndex).Y((IPhi - 1) * NumX2 + ILam); + for (ILam = 1; ILam <= (int)wle.size(); ++ILam) { + auto lam = wle(ILam); + wlt(IGlass, ILam) = lam; + tPhi(IGlass, ILam) = CurveManager::CurveValue(Material(LayPtr).GlassSpecAngTransDataPtr, Phi, lam); + rfPhi(IGlass, ILam) = CurveManager::CurveValue(Material(LayPtr).GlassSpecAngFRefleDataPtr, Phi, lam); + rbPhi(IGlass, ILam) = CurveManager::CurveValue(Material(LayPtr).GlassSpecAngBRefleDataPtr, Phi, lam); } } } @@ -1759,13 +1707,6 @@ namespace WindowManager { tvisPhiFit(IPhi) = 0.0; Phi = double(IPhi - 1) * 10.0; - for (IGlass = 1; IGlass <= NGlass; ++IGlass) { - LayPtr = Construct(ConstrNum).LayerPoint(LayerNum(IGlass)); - if (Material(LayPtr).GlassSpecAngTransDataPtr) { - Phi = TableLookup(PerfCurve(Material(LayPtr).GlassSpecAngTransDataPtr).TableIndex).X1Var(IPhi); - break; - } - } CosPhi = std::cos(Phi * DegToRadians); if (std::abs(CosPhi) < 0.0001) CosPhi = 0.0; Real64 cos_pow(1.0); @@ -4029,10 +3970,10 @@ namespace WindowManager { } else if (ShadeFlag == SwitchableGlazing) { TransDiff = InterpSw(SurfaceWindow(SurfNum).SwitchingFactor, Construct(ConstrNum).TransDiff, Construct(ConstrNumSh).TransDiff); } - WinHeatGain(SurfNum) -= QS(Surface(SurfNum).Zone) * Surface(SurfNum).Area * TransDiff; - WinHeatTransfer(SurfNum) -= QS(Surface(SurfNum).Zone) * Surface(SurfNum).Area * TransDiff; + WinHeatGain(SurfNum) -= QS(Surface(SurfNum).SolarEnclIndex) * Surface(SurfNum).Area * TransDiff; + WinHeatTransfer(SurfNum) -= QS(Surface(SurfNum).SolarEnclIndex) * Surface(SurfNum).Area * TransDiff; // shouldn't this be + outward flowing fraction of absorbed SW? -- do not know whose comment this is? LKL (9/2012) - WinLossSWZoneToOutWinRep(SurfNum) = QS(Surface(SurfNum).Zone) * Surface(SurfNum).Area * TransDiff; + WinLossSWZoneToOutWinRep(SurfNum) = QS(Surface(SurfNum).SolarEnclIndex) * Surface(SurfNum).Area * TransDiff; if (ShadeFlag == IntShadeOn || ShadeFlag == ExtShadeOn || ShadeFlag == IntBlindOn || ShadeFlag == ExtBlindOn || ShadeFlag == BGShadeOn || ShadeFlag == BGBlindOn || ShadeFlag == ExtScreenOn) { diff --git a/src/EnergyPlus/WindowManagerExteriorThermal.cc b/src/EnergyPlus/WindowManagerExteriorThermal.cc index f10b98b3a55..29abda54a09 100644 --- a/src/EnergyPlus/WindowManagerExteriorThermal.cc +++ b/src/EnergyPlus/WindowManagerExteriorThermal.cc @@ -220,9 +220,9 @@ namespace WindowManager { } auto TransDiff = construction.TransDiff; - WinHeatGain(SurfNum) -= QS(surface.Zone) * surface.Area * TransDiff; - WinHeatTransfer(SurfNum) -= QS(surface.Zone) * surface.Area * TransDiff; - WinLossSWZoneToOutWinRep(SurfNum) = QS(Surface(SurfNum).Zone) * surface.Area * TransDiff; + WinHeatGain(SurfNum) -= QS(surface.SolarEnclIndex) * surface.Area * TransDiff; + WinHeatTransfer(SurfNum) -= QS(surface.SolarEnclIndex) * surface.Area * TransDiff; + WinLossSWZoneToOutWinRep(SurfNum) = QS(Surface(SurfNum).SolarEnclIndex) * surface.Area * TransDiff; for (auto k = 1; k <= surface.getTotLayers(); ++k) { SurfaceWindow(SurfNum).ThetaFace(2 * k - 1) = thetas(2 * k - 1); diff --git a/src/EnergyPlus/ZonePlenum.cc b/src/EnergyPlus/ZonePlenum.cc index 859b6c503ca..c8439939377 100644 --- a/src/EnergyPlus/ZonePlenum.cc +++ b/src/EnergyPlus/ZonePlenum.cc @@ -1535,6 +1535,35 @@ namespace ZonePlenum { } } + int getReturnPlenumIndexFromInletNode(int const &InNodeNum) + { + + // SUBROUTINE LOCAL VARIABLE DECLARATIONS: + int PlenumNum; // loop counter + int InNodeCtr; // loop counter + int thisPlenum; + + // Obtains and Allocates ZonePlenum related parameters from input file + if (GetInputFlag) { // First time subroutine has been entered + GetZonePlenumInput(); + GetInputFlag = false; + } + + thisPlenum = 0; + if (NumZoneReturnPlenums > 0) { + for (PlenumNum = 1; PlenumNum <= NumZoneReturnPlenums; ++PlenumNum) { + for (InNodeCtr = 1; InNodeCtr <= ZoneRetPlenCond(PlenumNum).NumInletNodes; ++InNodeCtr) { + if (InNodeNum != ZoneRetPlenCond(PlenumNum).InletNode(InNodeCtr)) continue; + thisPlenum = PlenumNum; + break; + } + if (thisPlenum > 0) break; + } + } + + return thisPlenum; + } + } // namespace ZonePlenum } // namespace EnergyPlus diff --git a/src/EnergyPlus/ZonePlenum.hh b/src/EnergyPlus/ZonePlenum.hh index 8bcdae775fb..3f5324b5e95 100644 --- a/src/EnergyPlus/ZonePlenum.hh +++ b/src/EnergyPlus/ZonePlenum.hh @@ -238,6 +238,8 @@ namespace ZonePlenum { void GetReturnPlenumName(int const &ReturnPlenumIndex, std::string &ReturnPlenumName); + int getReturnPlenumIndexFromInletNode(int const &InNodeNum); + // End of mining functions for the ZonePlenum Module // ***************************************************************************** diff --git a/src/Transition/CreateNewIDFUsingRulesV9_2_0.f90 b/src/Transition/CreateNewIDFUsingRulesV9_2_0.f90 index 7cedeea8cd1..cbb7743e609 100644 --- a/src/Transition/CreateNewIDFUsingRulesV9_2_0.f90 +++ b/src/Transition/CreateNewIDFUsingRulesV9_2_0.f90 @@ -99,6 +99,17 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile CHARACTER(len=10) :: LocalFileExtension=' ' LOGICAL :: WildMatch + ! For Table:Lookup objects + INTEGER NumPerimObjs + INTEGER PArgs + + INTEGER :: iPt, iPt2, iPt3 + INTEGER, ALLOCATABLE, DIMENSION(:) :: NumIndVarsVals, CurIndices, Increments, StepSize + INTEGER NumOutputVals, NumIndVars, RefIndex, FlatIndex, NumMiniTables, MiniTableSize + CHARACTER(len=MaxNameLength), ALLOCATABLE, DIMENSION(:,:) :: IndVars + INTEGER, ALLOCATABLE, DIMENSION(:,:) :: IndVarOrder + CHARACTER(len=MaxNameLength), ALLOCATABLE, DIMENSION(:) :: OutputVals + LOGICAL :: ConnComp LOGICAL :: ConnCompCtrl LOGICAL :: FileExist @@ -437,6 +448,14 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile ! If your original object starts with E, insert the rules here ! If your original object starts with F, insert the rules here + CASE('FOUNDATION:KIVA') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + nodiff = .false. + OutArgs(1) = InArgs(1) + OutArgs(2) = Blank + OutArgs(3:CurArgs+1) = InArgs(2:CurArgs) + CurArgs = CurArgs + 1 + NoDiff = .false. ! If your original object starts with G, insert the rules here @@ -486,6 +505,369 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile ! If your original object starts with T, insert the rules here + CASE('TABLE:ONEINDEPENDENTVARIABLE') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + ! Delete old object + WRITE(Auditf,fmta) 'Object="'//TRIM(ObjectName)//'" is not in the "new" IDD.' + WRITE(Auditf,fmta) '... will be listed as comments on the new output file.' + CALL WriteOutIDFLinesAsComments(DifLfn,ObjectName,CurArgs,InArgs,FldNames,FldUnits) + Written=.true. + + ! Create new Table:IndependentVariable object + IF(ALLOCATED(NumIndVarsVals)) DEALLOCATE(NumIndVarsVals) + IF(ALLOCATED(IndVars)) DEALLOCATE(IndVars) + IF(ALLOCATED(OutputVals)) DEALLOCATE(OutputVals) + ALLOCATE(NumIndVarsVals(1)) + + NumIndVarsVals(1) = (CurArgs - 10)/2 + NumOutputVals = NumIndVarsVals(1) + + ALLOCATE(IndVars(1,NumIndVarsVals(1))) + ALLOCATE(OutputVals(NumOutputVals)) + + PArgs = 10 + NumIndVarsVals(1) + CALL GetNewObjectDefInIDD('TABLE:INDEPENDENTVARIABLE',PNumArgs,PAorN,NwReqFld,PObjMinFlds,PFldNames,PFldDefaults,PFldUnits) + POutArgs(1) = TRIM(InArgs(1))//'_IndependentVariable1' + IF (SameString(InArgs(3),"LINEARINTERPOLATIONOFTABLE")) THEN + POutArgs(2) = "Linear" + POutArgs(3) = "Constant" + ELSEIF (SameString(InArgs(3),"LAGRANGEINTERPOLATIONLINEAREXTRAPOLATION")) THEN + POutArgs(2) = "Cubic" + POutArgs(3) = "Linear" + ELSE + POutArgs(2) = "Cubic" + POutArgs(3) = "Constant" + END IF + POutArgs(4:5) = InArgs(4:5) ! Min/Max + + DO iPt=1,NumIndVarsVals(1) + IndVars(1,iPt) = InArgs(11 + 2*(iPt - 1)) + OutputVals(iPt) = InArgs(12 + 2*(iPt - 1)) + END DO + + POutArgs(6) = Blank + POutArgs(7) = InArgs(8) + POutArgs(8:10) = Blank + POutArgs(11:PArgs) = IndVars(1,1:NumIndVarsVals(1)) + + CALL WriteOutIDFLines(DifLfn,'Table:IndependentVariable',PArgs,POutArgs,PFldNames,PFldUnits) + + ! Create new Table:IndependentVariableList object + PArgs = 2 + CALL GetNewObjectDefInIDD('TABLE:INDEPENDENTVARIABLELIST',PNumArgs,PAorN,NwReqFld,PObjMinFlds,PFldNames,PFldDefaults,PFldUnits) + POutArgs(1) = TRIM(InArgs(1))//'_IndependentVariableList' + POutArgs(2) = TRIM(InArgs(1))//'_IndependentVariable1' + CALL WriteOutIDFLines(DifLfn,'Table:IndependentVariableList',PArgs,POutArgs,PFldNames,PFldUnits) + + ! Create new Table:Lookup object + PArgs = 10 + NumOutputVals + CALL GetNewObjectDefInIDD('TABLE:LOOKUP',PNumArgs,PAorN,NwReqFld,PObjMinFlds,PFldNames,PFldDefaults,PFldUnits) + POutArgs(1) = TRIM(InArgs(1)) + POutArgs(2) = TRIM(InArgs(1))//'_IndependentVariableList' + + ! Normalization Value + IF (InArgs(10) == Blank) THEN + POutArgs(3) = Blank + POutArgs(4) = Blank + ELSE + POutArgs(3) = 'DivisorOnly' + POutArgs(4) = InArgs(10) + END IF + POutArgs(5:6) = InArgs(6:7) + POutArgs(7) = InArgs(9) + POutArgs(8:10) = Blank + POutArgs(11:PArgs) = OutputVals(1:NumOutputVals) + + CALL WriteOutIDFLines(DifLfn,'Table:Lookup',PArgs,POutArgs,PFldNames,PFldUnits) + + CASE('TABLE:TWOINDEPENDENTVARIABLES') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + ! Delete old object + WRITE(Auditf,fmta) 'Object="'//TRIM(ObjectName)//'" is not in the "new" IDD.' + WRITE(Auditf,fmta) '... will be listed as comments on the new output file.' + CALL WriteOutIDFLinesAsComments(DifLfn,ObjectName,CurArgs,InArgs,FldNames,FldUnits) + Written=.true. + + IF(ALLOCATED(NumIndVarsVals)) DEALLOCATE(NumIndVarsVals) + IF(ALLOCATED(IndVars)) DEALLOCATE(IndVars) + IF(ALLOCATED(IndVarOrder)) DEALLOCATE(IndVarOrder) + IF(ALLOCATED(OutputVals)) DEALLOCATE(OutputVals) + ALLOCATE(NumIndVarsVals(2)) + + ! Create arrays from data + NumOutputVals = (CurArgs - 14)/3 + ALLOCATE(IndVars(2,NumOutputVals)) + ALLOCATE(IndVarOrder(2,NumOutputVals)) + ALLOCATE(OutputVals(NumOutputVals)) + + IF (InArgs(14) /= Blank) THEN + CALL writePreprocessorObject(DifLfn,PrognameConversion,'Warning', & + 'Table:TwoIndependentVariables="'//trim(InArgs(1))// & + '" references an external file="'// & + trim(InArgs(14))//'". External files must be converted to the new format using'//& + 'table_convert.py.') + write(diflfn,fmtA) ' ' + CALL ShowWarningError('Table:TwoIndependentVariables="'//trim(InArgs(1))// & + '" references an external file="'// & + trim(InArgs(14))//'". External files must be converted to the new format using'//& + 'table_convert.py or by appending the contents of the external file to the original IDF object.',Auditf) + END IF + + DO iPt=1,NumOutputVals + IndVars(1,iPt) = InArgs(15 +3*(iPt - 1)) + IndVars(2,iPt) = InArgs(16 +3*(iPt - 1)) + OutputVals(iPt) = InArgs(17 +3*(iPt - 1)) + END DO + + DO iPt=1,2 + NumIndVarsVals(iPt) = NumOutputVals + CALL SortUnique(IndVars(iPt,:),NumIndVarsVals(iPt),IndVarOrder(iPt,:)) + + ! Create new Table:IndependentVariable object + PArgs = 10 + NumIndVarsVals(iPt) + CALL GetNewObjectDefInIDD('TABLE:INDEPENDENTVARIABLE',PNumArgs,PAorN,NwReqFld,PObjMinFlds,PFldNames,PFldDefaults,PFldUnits) + POutArgs(1) = TRIM(InArgs(1))//'_IndependentVariable'//RoundSigDigits(iPt) + IF (SameString(InArgs(3),"LINEARINTERPOLATIONOFTABLE")) THEN + POutArgs(2) = "Linear" + POutArgs(3) = "Constant" + ELSEIF (SameString(InArgs(3),"LAGRANGEINTERPOLATIONLINEAREXTRAPOLATION")) THEN + POutArgs(2) = "Cubic" + POutArgs(3) = "Linear" + ELSE + POutArgs(2) = "Cubic" + POutArgs(3) = "Constant" + END IF + + IF (iPt == 1) THEN + POutArgs(4:5) = InArgs(4:5) ! Min/Max + POutArgs(7) = InArgs(10) + ELSE + POutArgs(4:5) = InArgs(6:7) ! Min/Max + POutArgs(7) = InArgs(11) + END IF + + POutArgs(6) = Blank + POutArgs(8:10) = Blank + + POutArgs(11:PArgs) = IndVars(iPt,1:NumIndVarsVals(iPt)) + + CALL WriteOutIDFLines(DifLfn,'Table:IndependentVariable',PArgs,POutArgs,PFldNames,PFldUnits) + END DO + + IF (NumOutputVals /= NumIndVarsVals(1)*NumIndVarsVals(2)) THEN + PRINT *, "Dimensional Mismatch" + END IF + + ! Create new Table:IndependentVariableList object + PArgs = 3 + CALL GetNewObjectDefInIDD('TABLE:INDEPENDENTVARIABLELIST',PNumArgs,PAorN,NwReqFld,PObjMinFlds,PFldNames,PFldDefaults,PFldUnits) + POutArgs(1) = TRIM(InArgs(1))//'_IndependentVariableList' + POutArgs(2) = TRIM(InArgs(1))//'_IndependentVariable1' + POutArgs(3) = TRIM(InArgs(1))//'_IndependentVariable2' + CALL WriteOutIDFLines(DifLfn,'Table:IndependentVariableList',PArgs,POutArgs,PFldNames,PFldUnits) + + ! Create new Table:Lookup object + PArgs = 10 + NumOutputVals + CALL GetNewObjectDefInIDD('TABLE:LOOKUP',PNumArgs,PAorN,NwReqFld,PObjMinFlds,PFldNames,PFldDefaults,PFldUnits) + POutArgs(1) = TRIM(InArgs(1)) + POutArgs(2) = TRIM(InArgs(1))//'_IndependentVariableList' + + ! Normalization Value + IF (InArgs(13) == Blank) THEN + POutArgs(3) = Blank + POutArgs(4) = Blank + ELSE + POutArgs(3) = 'DivisorOnly' + POutArgs(4) = InArgs(13) + END IF + POutArgs(5:6) = InArgs(8:9) ! Min/Max + POutArgs(7) = InArgs(12) ! Units + POutArgs(8:10) = Blank + + DO iPt=1,NumOutputVals + POutArgs(10+(IndVarOrder(1,iPt) - 1)*NumIndVarsVals(2) + IndVarOrder(2,iPt)) = OutputVals(iPt) + END DO + + CALL WriteOutIDFLines(DifLfn,'Table:Lookup',PArgs,POutArgs,PFldNames,PFldUnits) + + CASE('TABLE:MULTIVARIABLELOOKUP') + CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) + ! Delete old object + WRITE(Auditf,fmta) 'Object="'//TRIM(ObjectName)//'" is not in the "new" IDD.' + WRITE(Auditf,fmta) '... will be listed as comments on the new output file.' + CALL WriteOutIDFLinesAsComments(DifLfn,ObjectName,CurArgs,InArgs,FldNames,FldUnits) + Written=.true. + + IF(ALLOCATED(NumIndVarsVals)) DEALLOCATE(NumIndVarsVals) + IF(ALLOCATED(CurIndices)) DEALLOCATE(CurIndices) + IF(ALLOCATED(Increments)) DEALLOCATE(Increments) + IF(ALLOCATED(StepSize)) DEALLOCATE(StepSize) + IF(ALLOCATED(IndVars)) DEALLOCATE(IndVars) + IF(ALLOCATED(IndVarOrder)) DEALLOCATE(IndVarOrder) + IF(ALLOCATED(OutputVals)) DEALLOCATE(OutputVals) + + NumIndVars = ProcessNumber(InArgs(31),errFlag) + + ALLOCATE(NumIndVarsVals(NumIndVars)) + ALLOCATE(CurIndices(NumIndVars)) + ALLOCATE(Increments(NumIndVars)) + ALLOCATE(StepSize(NumIndVars)) + DO iPt=1,NumIndVars + NumIndVarsVals(iPt) = ProcessNumber(InArgs(31 + iPt),errFlag) + END DO + + ALLOCATE(IndVars(NumIndVars,MAXVAL(NumIndVarsVals))) + + DO iPt=1,NumIndVars + ! Create new Table:IndependentVariable object + PArgs = 10 + NumIndVarsVals(iPt) + CALL GetNewObjectDefInIDD('TABLE:INDEPENDENTVARIABLE',PNumArgs,PAorN,NwReqFld,PObjMinFlds,PFldNames,PFldDefaults,PFldUnits) + POutArgs(1) = TRIM(InArgs(1))//'_IndependentVariable'//RoundSigDigits(iPt) + IF (SameString(InArgs(2),"LINEARINTERPOLATIONOFTABLE")) THEN + POutArgs(2) = "Linear" + POutArgs(3) = "Constant" + ELSEIF (SameString(InArgs(2),"LAGRANGEINTERPOLATIONLINEAREXTRAPOLATION")) THEN + POutArgs(2) = "Cubic" + POutArgs(3) = "Linear" + ELSE + POutArgs(2) = "Cubic" + POutArgs(3) = "Constant" + END IF + + POutArgs(4:5) = InArgs(10 + 2*(iPt - 1):11 + 2*(iPt - 1)) ! Min/Max + POutArgs(7) = InArgs(23 + iPt) ! Unit type + + POutArgs(6) = Blank + POutArgs(8:10) = Blank + + RefIndex = 31 + NumIndVars + DO iPt2=1,iPt-1 + RefIndex = RefIndex + NumIndVarsVals(iPt2) + END DO + + IndVars(iPt,1:NumIndVarsVals(iPt)) = InArgs(RefIndex + 1:RefIndex + NumIndVarsVals(iPt)) + + POutArgs(11:PArgs) = IndVars(iPt,1:NumIndVarsVals(iPt)) + + CALL WriteOutIDFLines(DifLfn,'Table:IndependentVariable',PArgs,POutArgs,PFldNames,PFldUnits) + END DO + + + + ! Create new Table:IndependentVariableList object + PArgs = 1 + NumIndVars + CALL GetNewObjectDefInIDD('TABLE:INDEPENDENTVARIABLELIST',PNumArgs,PAorN,NwReqFld,PObjMinFlds,PFldNames,PFldDefaults,PFldUnits) + POutArgs(1) = TRIM(InArgs(1))//'_IndependentVariableList' + + DO iPt=1,NumIndVars + POutArgs(1 + iPt) = TRIM(InArgs(1))//'_IndependentVariable'//RoundSigDigits(iPt) + END DO + CALL WriteOutIDFLines(DifLfn,'Table:IndependentVariableList',PArgs,POutArgs,PFldNames,PFldUnits) + + + + ! Create new Table:Lookup object + CALL GetNewObjectDefInIDD('TABLE:LOOKUP',PNumArgs,PAorN,NwReqFld,PObjMinFlds,PFldNames,PFldDefaults,PFldUnits) + POutArgs(1) = TRIM(InArgs(1)) + POutArgs(2) = TRIM(InArgs(1))//'_IndependentVariableList' + + ! Normalization Value + IF (InArgs(13) == Blank) THEN + POutArgs(3) = Blank + POutArgs(4) = Blank + ELSE + POutArgs(3) = 'DivisorOnly' + POutArgs(4) = InArgs(9) ! Normalization Value + END IF + POutArgs(5:6) = InArgs(22:23) ! Min/Max + POutArgs(7) = InArgs(30) ! Units + POutArgs(8:10) = Blank ! External file + + IF (InArgs(6) /= Blank) THEN + CALL writePreprocessorObject(DifLfn,PrognameConversion,'Warning', & + 'Table:MultivariableLookup="'//trim(InArgs(1))// & + '" references an external file="'// & + trim(InArgs(6))//'". External files must be converted to the new format using'//& + 'table_convert.py.') + write(diflfn,fmtA) ' ' + CALL ShowWarningError('Table:MultivariableLookup="'//trim(InArgs(1))// & + '" references an external file="'// & + trim(InArgs(6))//'". External files must be converted to the new format using'//& + 'table_convert.py or by appending the contents of the external file to the original IDF object.',Auditf) + END IF + + ! Create arrays from data + NumOutputVals = NumIndVarsVals(1) + RefIndex = 31 + NumIndVars + NumIndVarsVals(1) + DO iPt=2,NumIndVars + NumOutputVals = NumOutputVals*NumIndVarsVals(iPt) + RefIndex = RefIndex + NumIndVarsVals(iPt) + CurIndices(iPt) = 1 + Increments(iPt) = 1 + END DO + + StepSize(NumIndVars) = 1 + DO iPt=NumIndVars-1,1,-1 + StepSize(iPt) = StepSize(iPt+1)*NumIndVarsVals(iPt+1) + END DO + + + MiniTableSize = NumIndVarsVals(1) + + IF (SameString(InArgs(7),"ASCENDING")) THEN + CurIndices(1) = 1 + Increments(1) = 1 + ELSE + CurIndices(1) = NumIndVarsVals(1) + Increments(1) = -1 + END IF + + IF (NumIndVars > 1) THEN + MiniTableSize = MiniTableSize*NumIndVarsVals(2) + IF (SameString(InArgs(8),"ASCENDING")) THEN + CurIndices(2) = 1 + Increments(2) = 1 + ELSE + CurIndices(2) = NumIndVarsVals(2) + Increments(2) = -1 + END IF + END IF + + NumMiniTables = NumOutputVals/MiniTableSize + + PArgs = 10 + NumOutputVals + ALLOCATE(OutputVals(NumOutputVals)) + + ! Loop through inputs and assign to outputs + DO iPt=1,NumMiniTables + RefIndex = RefIndex + MAX(0,NumIndVars - 2) + DO iPt2=1,MiniTableSize + FlatIndex = 1 + DO iPt3=1,NumIndVars + FlatIndex = FlatIndex + (CurIndices(iPt3) - 1)*(StepSize(iPt3)) + END DO + OutputVals(FlatIndex) = InArgs(RefIndex+iPt2) + CurIndices(1) = CurIndices(1) + Increments(1) + DO iPt3=1,NumIndVars - 1 + IF (CurIndices(iPt3) == 0 .OR. CurIndices(iPt3) > NumIndVarsVals(iPt3)) THEN + CurIndices(iPt3 + 1) = CurIndices(iPt3 + 1) + Increments(iPt3 + 1) + IF (CurIndices(iPt3) == 0) THEN + CurIndices(iPt3) = NumIndVarsVals(iPt3) + ELSEIF (CurIndices(iPt3) > NumIndVarsVals(iPt3)) THEN + CurIndices(iPt3) = 1 + END IF + END IF + END DO + END DO + RefIndex = RefIndex + MiniTableSize + END DO + + DO iPt=1,NumOutputVals + POutArgs(11:10+NumOutputVals) = OutputVals + END DO + + CALL WriteOutIDFLines(DifLfn,'Table:Lookup',PArgs,POutArgs,PFldNames,PFldUnits) + CASE('THERMALSTORAGE:ICE:DETAILED') CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits) nodiff=.false. @@ -505,7 +887,7 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile ELSE OutArgs(8) = InArgs(8) ENDIF - + OutArgs(9:CurArgs)=InArgs(9:CurArgs) NoDiff = .false. @@ -1115,3 +1497,49 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile RETURN END SUBROUTINE CreateNewIDFUsingRules + +SUBROUTINE SortUnique(StrArray, Size, Order) + IMPLICIT NONE ! Enforce explicit typing of all variables in this routine + CHARACTER(len=*), DIMENSION(Size) :: StrArray + Integer, DIMENSION(Size) :: Order + INTEGER :: Size, InitSize + + REAL, ALLOCATABLE, DIMENSION(:) :: InNumbers + REAL, ALLOCATABLE, DIMENSION(:) :: OutNumbers + INTEGER :: I, I2 + REAL :: min_val, max_val + + ALLOCATE(InNumbers(Size)) + ALLOCATE(OutNumbers(Size)) + + InitSize = Size + + DO I=1,Size + READ(StrArray(I),*) InNumbers(I) + END DO + + min_val = minval(InNumbers)-1 + max_val = maxval(InNumbers) + + Size = 0 + DO WHILE (min_valmin_val) + OutNumbers(Size) = min_val + END DO + + DO I=1,Size + WRITE(StrArray(I),'(F0.5)') OutNumbers(I) + StrArray(I) = TRIM(StrArray(I)) + END DO + + DO I=1,InitSize + DO I2=1,Size + IF (OutNumbers(I2) == InNumbers(I)) THEN + Order(I) = I2 + EXIT + END IF + END DO + END DO + +END SUBROUTINE SortUnique \ No newline at end of file diff --git a/src/Transition/InputRulesFiles/Rules9-1-0-to-9-2-0.md b/src/Transition/InputRulesFiles/Rules9-1-0-to-9-2-0.md index 99203687653..35800bc44cc 100644 --- a/src/Transition/InputRulesFiles/Rules9-1-0-to-9-2-0.md +++ b/src/Transition/InputRulesFiles/Rules9-1-0-to-9-2-0.md @@ -4,6 +4,11 @@ Input Changes This file documents the structural changes on the input of EnergyPlus that could affect interfaces, etc. This was previously an Excel workbook that made for very difficult version control, especially during busy times around code freezes. +# Object Change: `Foundation:Kiva` +Field 1 remains the same. +After F1, insert new numeric input field (N1) 'Initial Indoor Air Temperature'. The field is blank by default. +Shift all later fields down by 1. The old input fields F2-F56 become the new F3-F57. + # Object Change: `RunPeriod` Field A1 "Name" is now a required field. If blank, add a name. If the old idf has more than one RunPeriod object, all of the Name fields must be unique. @@ -34,4 +39,3 @@ Repeat this for each equipment group of 6 fields; fields 13 & 14, 19 & 20, etc. # Object Change: `ObjectNameE` # Object Change: `ObjectNameF` - diff --git a/src/Transition/OutputRulesFiles/OutputChanges9-1-0-to-9-2-0.md b/src/Transition/OutputRulesFiles/OutputChanges9-1-0-to-9-2-0.md index 8ae82020935..e2151eb5ece 100644 --- a/src/Transition/OutputRulesFiles/OutputChanges9-1-0-to-9-2-0.md +++ b/src/Transition/OutputRulesFiles/OutputChanges9-1-0-to-9-2-0.md @@ -6,3 +6,26 @@ This file documents the structural changes on the output of EnergyPlus that coul ### Description This will eventually become a more structured file, but currently it isn't clear what format is best. As an intermediate solution, and to allow the form to be formed organically, this plain text file is being used. Entries should be clearly delimited. It isn't expected that there will be but maybe a couple each release at most. Entries should also include some reference back to the repo. At least a PR number or whatever. + +### View Factor Output +In the eio and table output related to surface view factors "Zone Name" is now "Zone/Enclosure Name". For example: + +*Before:* +``` +! ,Zone Name,Original Check Value,Calculated Fixed Check Value,Final Check Value,Number of Iterations,Fixed RowSum Convergence,Used RowSum Convergence + Surface View Factor Check Values,CORE_ZN,8.881784E-016,9.093943E-004,9.093943E-004,33,9.093943E-004,9.093943E-004 +``` + +*v9.2.0:* +``` +! ,Zone/Enclosure Name,Original Check Value,Calculated Fixed Check Value,Final Check Value,Number of Iterations,Fixed RowSum Convergence,Used RowSum Convergence + Surface View Factor Check Values,CORE_ZN,8.881784E-016,9.093943E-004,9.093943E-004,33,9.093943E-004,9.093943E-004 +``` + +For simulations with no Construction:AirBoundary objects using the GroupedZone radiant exchange option, the +data rows will remain the same, using the zone name. For grouped zones, the enclosure name will be used. This +may be automatically generated as "Enclosure 1" or user-specified if ZoneProperty:UserViewFactors:bySurfaceName and a +corresponding ZoneList are included for the grouped zones. + +### New Solar View Factor Output +In the eio and table output related to surface view factors, there is a new section for "Solar View Factors" which is similar to the radiant view factors above. diff --git a/src/Transition/table_convert.py b/src/Transition/table_convert.py new file mode 100644 index 00000000000..a6b5bccc45a --- /dev/null +++ b/src/Transition/table_convert.py @@ -0,0 +1,153 @@ +import sys +from os import path + +def convert2D(file): + + output = "" + with open(file, 'r') as f: + ns = str(f.read()).split(',') + num_vals = int(len(ns)/3) + ind_vars = [[],[]] + vals = [] + output += "Independent Variable 1, Indpendent Variable 2, Value\n" + for i in range(num_vals): + pos = i*3 + ind_vars[0].append(float(ns[pos])) + ind_vars[1].append(float(ns[pos+1])) + vals.append(float(ns[pos+2])) + output += f"{ind_vars[0][i]}, {ind_vars[1][i]}, {vals[i]}\n" + return output + +def convertND(file, ascending=[True,True]): + output = "" + with open(file, 'r') as f: + pos = 0 + ns = str(f.read()).split(',') + N = int(ns[pos]) + pos += 1 + dims = [] + for i in range(N): + dims.append(int(ns[pos])) + pos += 1 + ind_vars = [[] for i in range(N)] + step_size = [0]*N + for i, dim in enumerate(dims): + for j in range(dim): + ind_vars[i].append(float(ns[pos])) + pos += 1 + num_vals = dims[0] + mini_table_size = dims[0] + ref_index = pos + curr_indices = [0]*N + incr = [1]*N + + if not ascending[0]: + incr[0] = -1 + + ind_var_list = [[] for i in range(N)] + for i in range(1,N): + if i == 1: + mini_table_size *= dims[i] + if not ascending[i]: + incr[i] = -1 + num_vals *= dims[i] + + for i in range(N): + ind_var_list[i] = [0.0]*num_vals + + step_size[N-1] = 1 + for i in range(N-2,-1,-1): + step_size[i] = step_size[i+1]*dims[i+1] + + num_mini_tables = int(num_vals/mini_table_size) + + vals = [0.0]*num_vals + for i in range(num_mini_tables): + ref_index += max(0, N-2) + for j in range(mini_table_size): + flat_index = 0 + for k in range(N): + flat_index += curr_indices[k]*step_size[k] + vals[flat_index] = float(ns[ref_index+j]) + for k in range(N): + ind_var_list[k][flat_index] = ind_vars[k][curr_indices[k]] + # increment indices + curr_indices[0] += incr[0] + for k in range(N-1): + if curr_indices[k] == -1 or curr_indices[k] > dims[k] - 1: + curr_indices[k + 1] = curr_indices[k + 1] + incr[k + 1] + if curr_indices[k] == -1: + curr_indices[k] = dims[k] - 1 + elif curr_indices[k] > dims[k] - 1: + curr_indices[k] = 0 + ref_index += mini_table_size + + output += ", ".join([f"Independent Variable {i+1}" for i in range(N)]) + ", Value\n" + for i in range(num_vals): + output += ", ".join([f"{ind_var_list[j][i]}" for j in range(N)]) + f", {vals[i]}\n" + return output + +print("table_convert.py") +if len(sys.argv) < 3: + print(" Error: Specify the file name and table type ('2' or 'N') to run the program.\n") + print(" e.g.,") + print(" 'python table_convert.py 2D.csv 2'") + print(" 'python table_convert.py 3D.csv N'") + exit() + +input_path = sys.argv[1] +table_type = sys.argv[2] + +if not path.exists(input_path): + print(f" Error: Could not find input file: {input_path}.") + exit() + +if table_type not in ["2", "N", "n"]: + print(f" Error: Invalid table type: {table_type}.\n") + print(" Acceptable types are:") + print(" '2' (Table:TwoIndpendentVariables), and") + print(" 'N' (Table:MultidimensionalLookup)") + exit() + +order = [True, True] +if len(sys.argv) > 3: + if len(sys.argv) > 5 or table_type == "2": + max_args = 2 if (table_type == "2") else 4 + print(f" Error: Too many arguments provided for table type = {table_type}. Maximum = {max_args}:\n") + print(" 1: Input table path") + print(" 2: Table type ['2' (Table:TwoIndpendentVariables) or 'N' (Table:MultidimensionalLookup)]") + print(" 3: Order of 1st independent variable ['A' (Ascending) or 'D' (Descending)]. Only for table type = 'N'") + print(" 4: Order of 2nd independent variable ['A' (Ascending) or 'D' (Descending)]. Only for table type = 'N'") + exit() + + if len(sys.argv) == 4: + print(f" Error: Must provide order for both 1st and 2nd independent variables.") + exit() + + order_in = [sys.argv[3], sys.argv[4]] + + if order_in[0] not in ["A", "a", "D", "d"]: + print(f" Error: Invalid order for 1st independent variable: {order_in[0]}.\n") + print(" Acceptable entries are:") + print(" 'A' (Ascending), and") + print(" 'D' (Descending)") + exit() + + if order_in[1] not in ["A", "a", "D", "d"]: + print(f" Error: Invalid order for 2nd independent variable: {order_in[1]}.\n") + print(" Acceptable entries are:") + print(" 'A' (Ascending), and") + print(" 'D' (Descending)") + exit() + + order = [x in ["A", "a"] for x in order_in] + +output_path = path.splitext(path.basename(input_path))[0] + "-New.csv" + +with open(output_path, 'w') as f: + if table_type == "2": + f.write(convert2D(input_path)) + else: + f.write(convertND(input_path,order)) + +print(f" Conversion complete! Output written to: {output_path}") \ No newline at end of file diff --git a/testfiles/1ZoneDataCenterCRAC_wApproachTemp.idf b/testfiles/1ZoneDataCenterCRAC_wApproachTemp.idf index 910ab95e7df..99905040e33 100644 --- a/testfiles/1ZoneDataCenterCRAC_wApproachTemp.idf +++ b/testfiles/1ZoneDataCenterCRAC_wApproachTemp.idf @@ -410,141 +410,99 @@ , !- Sensible Heat Ratio Function of Flow Fraction Curve Name Yes; !- Report ASHRAE Standard 127 Performance Ratings - Table:TwoIndependentVariables, + Table:IndependentVariable, + Cool Cap Mod func of Temperature_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 13.0, !- Minimum Value + 23.89, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 13.00000, !- Value 1 + 17.00000, !- Extended Field + 19.44440, !- Extended Field + 21.00000, !- Extended Field + 23.90000; !- Extended Field + + Table:IndependentVariable, + Cool Cap Mod func of Temperature_IndependentVariable2, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + -10.0, !- Minimum Value + 46.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -10.00000, !- Value 1 + 15.00000, !- Extended Field + 18.00000, !- Extended Field + 24.00000, !- Extended Field + 30.00000, !- Extended Field + 35.00000, !- Extended Field + 38.00000, !- Extended Field + 46.00000; !- Extended Field + + Table:IndependentVariableList, + Cool Cap Mod func of Temperature_IndependentVariableList, !- Name + Cool Cap Mod func of Temperature_IndependentVariable1, !- Independent Variable 1 Name + Cool Cap Mod func of Temperature_IndependentVariable2; !- Extended Field + + Table:Lookup, Cool Cap Mod func of Temperature, !- Name - Biquadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 13.0, !- Minimum Value of X - 23.89, !- Maximum Value of X - -10.0, !- Minimum Value of Y - 46.0, !- Maximum Value of Y - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X - Temperature, !- Input Unit Type for Y + Cool Cap Mod func of Temperature_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference , !- External File Name - 13.0, !- X Value #1 - -10.0, !- Y Value #1 - 1.00, !- Output Value #1 - 13.0, !- X Value #2 - 15.0, !- Y Value #2 - 1.00, !- Output Value #2 - 13.0, !- X Value #3 - 18.0, !- Y Value #3 - 1.00, !- Output Value #3 - 13.0, !- X Value #4 - 24.0, !- Y Value #4 - 0.924738271, !- Output Value #4 - 13.0, !- - 30.0, !- - 0.883909339, !- - 13.0, !- - 35.0, !- - 0.835522309, !- - 13.0, !- - 38.0, !- - 0.800222635, !- - 13.0, !- - 46.0, !- - 0.683109499, !- - 17.0, !- - -10.0, !- - 1.00, !- - 17.0, !- - 15.0, !- - 1.00, !- - 17.0, !- - 18.0, !- - 1.00, !- - 17.0, !- - 24.0, !- - 1.00, !- - 17.0, !- - 30.0, !- - 0.976933863, !- - 17.0, !- - 35.0, !- - 0.937696593, !- - 17.0, !- - 38.0, !- - 0.907886775, !- - 17.0, !- - 46.0, !- - 0.805413255, !- - 19.4444, !- - -10.0, !- - 1.00, !- - 19.4444, !- - 15.0, !- - 1.00, !- - 19.4444, !- - 18.0, !- - 1.00, !- - 19.4444, !- - 24.0, !- - 1.00, !- - 19.4444, !- - 30.0, !- - 1.00, !- - 19.4444, !- - 35.0, !- - 1.00, !- - 19.4444, !- - 38.0, !- - 0.9718, !- - 19.4444, !- - 46.0, !- - 0.8782, !- - 21.0, !- - -10.0, !- - 1.00, !- - 21.0, !- - 15.0, !- - 1.00, !- - 21.0, !- - 18.0, !- - 1.00, !- - 21.0, !- - 24.0, !- - 1.00, !- - 21.0, !- - 30.0, !- - 1.00, !- - 21.0, !- - 35.0, !- - 1.0385, !- - 21.0, !- - 38.0, !- - 1.0142, !- - 21.0, !- - 46.0, !- - 0.9264, !- - 23.9, !- - -10.0, !- - 1.00, !- - 23.9, !- - 15.0, !- - 1.00, !- - 23.9, !- - 18.0, !- - 1.00, !- - 23.9, !- - 24.0, !- - 1.00, !- - 23.9, !- - 30.0, !- - 1.00, !- - 23.9, !- - 35.0, !- - 1.110828252, !- - 23.9, !- - 38.0, !- - 1.090488436, !- - 23.9, !- - 46.0, !- - 1.013268253; !- + , !- External File Column Number + , !- External File Starting Row Number + 1.00, !- Output Value 1 + 1.00, !- Extended Field + 1.00, !- Extended Field + 0.924738271, !- Extended Field + 0.883909339, !- Extended Field + 0.835522309, !- Extended Field + 0.800222635, !- Extended Field + 0.683109499, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 0.976933863, !- Extended Field + 0.937696593, !- Extended Field + 0.907886775, !- Extended Field + 0.805413255, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 0.9718, !- Extended Field + 0.8782, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.0385, !- Extended Field + 1.0142, !- Extended Field + 0.9264, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.110828252, !- Extended Field + 1.090488436, !- Extended Field + 1.013268253; !- Extended Field Curve:Quadratic, HPACCoolCapFFF, !- Name @@ -572,123 +530,99 @@ Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type - Table:TwoIndependentVariables, + Table:IndependentVariable, + Liebert Econophase EIR Func T_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 12.7, !- Minimum Value + 23.8, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 12.70000, !- Value 1 + 23.80000; !- Extended Field + + Table:IndependentVariable, + Liebert Econophase EIR Func T_IndependentVariable2, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + -50, !- Minimum Value + 50, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -50.00000, !- Value 1 + -4.00000, !- Extended Field + -1.22220, !- Extended Field + 1.55550, !- Extended Field + 4.33330, !- Extended Field + 7.11110, !- Extended Field + 9.88880, !- Extended Field + 12.66670, !- Extended Field + 15.44440, !- Extended Field + 18.22200, !- Extended Field + 21.00000, !- Extended Field + 23.77778, !- Extended Field + 26.55556, !- Extended Field + 29.33333, !- Extended Field + 32.11111, !- Extended Field + 34.88889, !- Extended Field + 50.00000; !- Extended Field + + Table:IndependentVariableList, + Liebert Econophase EIR Func T_IndependentVariableList, !- Name + Liebert Econophase EIR Func T_IndependentVariable1, !- Independent Variable 1 Name + Liebert Econophase EIR Func T_IndependentVariable2; !- Extended Field + + Table:Lookup, Liebert Econophase EIR Func T, !- Name - Biquadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 12.7, !- Minimum Value of X - 23.8, !- Maximum Value of X - -50, !- Minimum Value of Y - 50, !- Maximum Value of Y - 0.03, !- Minimum Table Output - 1.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X - Temperature, !- Input Unit Type for Y + Liebert Econophase EIR Func T_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.03, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference , !- External File Name - 12.7, !- X Value #1 - -50, !- Y Value #1 - 0.042, !- Output Value #1 - 12.7, !- X Value #2 - -4.0, !- Y Value #2 - 0.042, !- Output Value #2 - 12.7, !- X Value #3 - -1.2222, !- Y Value #3 - 0.084, !- Output Value #3 - 12.7, !- X Value #4 - 1.5555, !- Y Value #4 - 0.084, !- Output Value #4 - 12.7, !- - 4.3333, !- - 0.2269, !- - 12.7, !- - 7.1111, !- - 0.2395, !- - 12.7, !- - 9.8888, !- - 0.311, !- - 12.7, !- - 12.6667, !- - 0.3697, !- - 12.7, !- - 15.4444, !- - 0.4454, !- - 12.7, !- - 18.222, !- - 0.5462, !- - 12.7, !- - 21.0, !- - 0.6723, !- - 12.7, !- - 23.777778, !- - 0.7227, !- - 12.7, !- - 26.55556, !- - 0.7773, !- - 12.7, !- - 29.33333, !- - 0.8193, !- - 12.7, !- - 32.11111, !- - 0.895, !- - 12.7, !- - 34.88889, !- - 1.0, !- - 12.7, !- - 50.0, !- - 1.5, !- - 23.8, !- - -50, !- - 0.042, !- - 23.8, !- - -4.0, !- - 0.042, !- - 23.8, !- - -1.2222, !- - 0.084, !- - 23.8, !- - 1.5555, !- - 0.084, !- - 23.8, !- - 4.3333, !- - 0.2269, !- - 23.8, !- - 7.1111, !- - 0.2395, !- - 23.8, !- - 9.8888, !- - 0.311, !- - 23.8, !- - 12.6667, !- - 0.3697, !- - 23.8, !- - 15.4444, !- - 0.4454, !- - 23.8, !- - 18.222, !- - 0.5462, !- - 23.8, !- - 21.0, !- - 0.6723, !- - 23.8, !- - 23.777778, !- - 0.7227, !- - 23.8, !- - 26.55556, !- - 0.7773, !- - 23.8, !- - 29.33333, !- - 0.8193, !- - 23.8, !- - 32.11111, !- - 0.895, !- - 23.8, !- - 34.88889, !- - 1.0, !- - 23.8, !- - 50.0, !- - 1.5; !- + , !- External File Column Number + , !- External File Starting Row Number + 0.042, !- Output Value 1 + 0.042, !- Extended Field + 0.084, !- Extended Field + 0.084, !- Extended Field + 0.2269, !- Extended Field + 0.2395, !- Extended Field + 0.311, !- Extended Field + 0.3697, !- Extended Field + 0.4454, !- Extended Field + 0.5462, !- Extended Field + 0.6723, !- Extended Field + 0.7227, !- Extended Field + 0.7773, !- Extended Field + 0.8193, !- Extended Field + 0.895, !- Extended Field + 1.0, !- Extended Field + 1.5, !- Extended Field + 0.042, !- Extended Field + 0.042, !- Extended Field + 0.084, !- Extended Field + 0.084, !- Extended Field + 0.2269, !- Extended Field + 0.2395, !- Extended Field + 0.311, !- Extended Field + 0.3697, !- Extended Field + 0.4454, !- Extended Field + 0.5462, !- Extended Field + 0.6723, !- Extended Field + 0.7227, !- Extended Field + 0.7773, !- Extended Field + 0.8193, !- Extended Field + 0.895, !- Extended Field + 1.0, !- Extended Field + 1.5; !- Extended Field Curve:Quadratic, HPACCOOLEIRFFF, !- Name diff --git a/testfiles/1ZoneDataCenterCRAC_wPumpedDXCoolingCoil.idf b/testfiles/1ZoneDataCenterCRAC_wPumpedDXCoolingCoil.idf index 684822c6173..26b0538f89d 100644 --- a/testfiles/1ZoneDataCenterCRAC_wPumpedDXCoolingCoil.idf +++ b/testfiles/1ZoneDataCenterCRAC_wPumpedDXCoolingCoil.idf @@ -410,141 +410,99 @@ , !- Sensible Heat Ratio Function of Flow Fraction Curve Name Yes; !- Report ASHRAE Standard 127 Performance Ratings - Table:TwoIndependentVariables, + Table:IndependentVariable, + Cool Cap Mod func of Temperature_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 13.0, !- Minimum Value + 23.89, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 13.00000, !- Value 1 + 17.00000, !- Extended Field + 19.44440, !- Extended Field + 21.00000, !- Extended Field + 23.90000; !- Extended Field + + Table:IndependentVariable, + Cool Cap Mod func of Temperature_IndependentVariable2, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + -10.0, !- Minimum Value + 46.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -10.00000, !- Value 1 + 15.00000, !- Extended Field + 18.00000, !- Extended Field + 24.00000, !- Extended Field + 30.00000, !- Extended Field + 35.00000, !- Extended Field + 38.00000, !- Extended Field + 46.00000; !- Extended Field + + Table:IndependentVariableList, + Cool Cap Mod func of Temperature_IndependentVariableList, !- Name + Cool Cap Mod func of Temperature_IndependentVariable1, !- Independent Variable 1 Name + Cool Cap Mod func of Temperature_IndependentVariable2; !- Extended Field + + Table:Lookup, Cool Cap Mod func of Temperature, !- Name - Biquadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 13.0, !- Minimum Value of X - 23.89, !- Maximum Value of X - -10.0, !- Minimum Value of Y - 46.0, !- Maximum Value of Y - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X - Temperature, !- Input Unit Type for Y + Cool Cap Mod func of Temperature_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference , !- External File Name - 13.0, !- X Value #1 - -10.0, !- Y Value #1 - 1.00, !- Output Value #1 - 13.0, !- X Value #2 - 15.0, !- Y Value #2 - 1.00, !- Output Value #2 - 13.0, !- X Value #3 - 18.0, !- Y Value #3 - 1.00, !- Output Value #3 - 13.0, !- X Value #4 - 24.0, !- Y Value #4 - 0.924738271, !- Output Value #4 - 13.0, !- - 30.0, !- - 0.883909339, !- - 13.0, !- - 35.0, !- - 0.835522309, !- - 13.0, !- - 38.0, !- - 0.800222635, !- - 13.0, !- - 46.0, !- - 0.683109499, !- - 17.0, !- - -10.0, !- - 1.00, !- - 17.0, !- - 15.0, !- - 1.00, !- - 17.0, !- - 18.0, !- - 1.00, !- - 17.0, !- - 24.0, !- - 1.00, !- - 17.0, !- - 30.0, !- - 0.976933863, !- - 17.0, !- - 35.0, !- - 0.937696593, !- - 17.0, !- - 38.0, !- - 0.907886775, !- - 17.0, !- - 46.0, !- - 0.805413255, !- - 19.4444, !- - -10.0, !- - 1.00, !- - 19.4444, !- - 15.0, !- - 1.00, !- - 19.4444, !- - 18.0, !- - 1.00, !- - 19.4444, !- - 24.0, !- - 1.00, !- - 19.4444, !- - 30.0, !- - 1.00, !- - 19.4444, !- - 35.0, !- - 1.00, !- - 19.4444, !- - 38.0, !- - 0.9718, !- - 19.4444, !- - 46.0, !- - 0.8782, !- - 21.0, !- - -10.0, !- - 1.00, !- - 21.0, !- - 15.0, !- - 1.00, !- - 21.0, !- - 18.0, !- - 1.00, !- - 21.0, !- - 24.0, !- - 1.00, !- - 21.0, !- - 30.0, !- - 1.00, !- - 21.0, !- - 35.0, !- - 1.0385, !- - 21.0, !- - 38.0, !- - 1.0142, !- - 21.0, !- - 46.0, !- - 0.9264, !- - 23.9, !- - -10.0, !- - 1.00, !- - 23.9, !- - 15.0, !- - 1.00, !- - 23.9, !- - 18.0, !- - 1.00, !- - 23.9, !- - 24.0, !- - 1.00, !- - 23.9, !- - 30.0, !- - 1.00, !- - 23.9, !- - 35.0, !- - 1.110828252, !- - 23.9, !- - 38.0, !- - 1.090488436, !- - 23.9, !- - 46.0, !- - 1.013268253; !- + , !- External File Column Number + , !- External File Starting Row Number + 1.00, !- Output Value 1 + 1.00, !- Extended Field + 1.00, !- Extended Field + 0.924738271, !- Extended Field + 0.883909339, !- Extended Field + 0.835522309, !- Extended Field + 0.800222635, !- Extended Field + 0.683109499, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 0.976933863, !- Extended Field + 0.937696593, !- Extended Field + 0.907886775, !- Extended Field + 0.805413255, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 0.9718, !- Extended Field + 0.8782, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.0385, !- Extended Field + 1.0142, !- Extended Field + 0.9264, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.00, !- Extended Field + 1.110828252, !- Extended Field + 1.090488436, !- Extended Field + 1.013268253; !- Extended Field Curve:Quadratic, HPACCoolCapFFF, !- Name @@ -572,123 +530,99 @@ Temperature, !- Input Unit Type for Y Dimensionless; !- Output Unit Type - Table:TwoIndependentVariables, + Table:IndependentVariable, + Liebert Econophase EIR Func T_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 12.7, !- Minimum Value + 23.8, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 12.70000, !- Value 1 + 23.80000; !- Extended Field + + Table:IndependentVariable, + Liebert Econophase EIR Func T_IndependentVariable2, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + -50, !- Minimum Value + 50, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -50.00000, !- Value 1 + -4.00000, !- Extended Field + -1.22220, !- Extended Field + 1.55550, !- Extended Field + 4.33330, !- Extended Field + 7.11110, !- Extended Field + 9.88880, !- Extended Field + 12.66670, !- Extended Field + 15.44440, !- Extended Field + 18.22200, !- Extended Field + 21.00000, !- Extended Field + 23.77778, !- Extended Field + 26.55556, !- Extended Field + 29.33333, !- Extended Field + 32.11111, !- Extended Field + 34.88889, !- Extended Field + 50.00000; !- Extended Field + + Table:IndependentVariableList, + Liebert Econophase EIR Func T_IndependentVariableList, !- Name + Liebert Econophase EIR Func T_IndependentVariable1, !- Independent Variable 1 Name + Liebert Econophase EIR Func T_IndependentVariable2; !- Extended Field + + Table:Lookup, Liebert Econophase EIR Func T, !- Name - Biquadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 12.7, !- Minimum Value of X - 23.8, !- Maximum Value of X - -50, !- Minimum Value of Y - 50, !- Maximum Value of Y - 0.03, !- Minimum Table Output - 1.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X - Temperature, !- Input Unit Type for Y + Liebert Econophase EIR Func T_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.03, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference , !- External File Name - 12.7, !- X Value #1 - -50, !- Y Value #1 - 0.042, !- Output Value #1 - 12.7, !- X Value #2 - -4.0, !- Y Value #2 - 0.042, !- Output Value #2 - 12.7, !- X Value #3 - -1.2222, !- Y Value #3 - 0.084, !- Output Value #3 - 12.7, !- X Value #4 - 1.5555, !- Y Value #4 - 0.084, !- Output Value #4 - 12.7, !- - 4.3333, !- - 0.2269, !- - 12.7, !- - 7.1111, !- - 0.2395, !- - 12.7, !- - 9.8888, !- - 0.311, !- - 12.7, !- - 12.6667, !- - 0.3697, !- - 12.7, !- - 15.4444, !- - 0.4454, !- - 12.7, !- - 18.222, !- - 0.5462, !- - 12.7, !- - 21.0, !- - 0.6723, !- - 12.7, !- - 23.777778, !- - 0.7227, !- - 12.7, !- - 26.55556, !- - 0.7773, !- - 12.7, !- - 29.33333, !- - 0.8193, !- - 12.7, !- - 32.11111, !- - 0.895, !- - 12.7, !- - 34.88889, !- - 1.0, !- - 12.7, !- - 50.0, !- - 1.5, !- - 23.8, !- - -50, !- - 0.042, !- - 23.8, !- - -4.0, !- - 0.042, !- - 23.8, !- - -1.2222, !- - 0.084, !- - 23.8, !- - 1.5555, !- - 0.084, !- - 23.8, !- - 4.3333, !- - 0.2269, !- - 23.8, !- - 7.1111, !- - 0.2395, !- - 23.8, !- - 9.8888, !- - 0.311, !- - 23.8, !- - 12.6667, !- - 0.3697, !- - 23.8, !- - 15.4444, !- - 0.4454, !- - 23.8, !- - 18.222, !- - 0.5462, !- - 23.8, !- - 21.0, !- - 0.6723, !- - 23.8, !- - 23.777778, !- - 0.7227, !- - 23.8, !- - 26.55556, !- - 0.7773, !- - 23.8, !- - 29.33333, !- - 0.8193, !- - 23.8, !- - 32.11111, !- - 0.895, !- - 23.8, !- - 34.88889, !- - 1.0, !- - 23.8, !- - 50.0, !- - 1.5; !- + , !- External File Column Number + , !- External File Starting Row Number + 0.042, !- Output Value 1 + 0.042, !- Extended Field + 0.084, !- Extended Field + 0.084, !- Extended Field + 0.2269, !- Extended Field + 0.2395, !- Extended Field + 0.311, !- Extended Field + 0.3697, !- Extended Field + 0.4454, !- Extended Field + 0.5462, !- Extended Field + 0.6723, !- Extended Field + 0.7227, !- Extended Field + 0.7773, !- Extended Field + 0.8193, !- Extended Field + 0.895, !- Extended Field + 1.0, !- Extended Field + 1.5, !- Extended Field + 0.042, !- Extended Field + 0.042, !- Extended Field + 0.084, !- Extended Field + 0.084, !- Extended Field + 0.2269, !- Extended Field + 0.2395, !- Extended Field + 0.311, !- Extended Field + 0.3697, !- Extended Field + 0.4454, !- Extended Field + 0.5462, !- Extended Field + 0.6723, !- Extended Field + 0.7227, !- Extended Field + 0.7773, !- Extended Field + 0.8193, !- Extended Field + 0.895, !- Extended Field + 1.0, !- Extended Field + 1.5; !- Extended Field Curve:Quadratic, HPACCOOLEIRFFF, !- Name diff --git a/testfiles/2ZoneDataCenterHVAC_wEconomizer.idf b/testfiles/2ZoneDataCenterHVAC_wEconomizer.idf index a59729d9393..3d36bff1817 100644 --- a/testfiles/2ZoneDataCenterHVAC_wEconomizer.idf +++ b/testfiles/2ZoneDataCenterHVAC_wEconomizer.idf @@ -1105,155 +1105,220 @@ !Munters Oasis Wet Op Eff Mod Fac, - Table:OneIndependentVariable, + Table:IndependentVariable, + IECEffWBFlowMod_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.875, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.125, !- Value 2 + 0.250, !- Value 3 + 0.375, !- Value 4 + 0.500, !- Value 5 + 0.625, !- Value 6 + 0.750, !- Value 7 + 0.875, !- + 1.000, !- + 1.125, !- + 1.25, !- + 1.375, !- + 1.500, !- + 1.625, !- + 1.750, !- + 1.875; !- + + Table:IndependentVariableList, + IECEffWBFlowMod_IndependentVariableList, !- Name + IECEffWBFlowMod_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, IECEffWBFlowMod, !- Name - Cubic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.875, !- Maximum Value of X - 0.0, !- Minimum Table Output - 1.15, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + IECEffWBFlowMod_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.15, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.0, !- Output Value #1 - 0.125, !- X Value #2 - 0.503563817, !- Output Value #2 - 0.250, !- X Value #3 - 0.669042545, !- Output Value #3 - 0.375, !- X Value #4 - 0.765841395, !- Output Value #4 - 0.500, !- X Value #5 - 0.834521272, !- Output Value #5 - 0.625, !- X Value #6 - 0.887793524, !- Output Value #6 - 0.750, !- X Value #7 - 0.931320123, !- Output Value #7 - 0.875, !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Output Value 1 + 0.503563817, !- Output Value 2 + 0.669042545, !- Output Value 3 + 0.765841395, !- Output Value 4 + 0.834521272, !- Output Value 5 + 0.887793524, !- Output Value 6 + 0.931320123, !- Output Value 7 0.968121338, !- - 1.000, !- 1.0, !- - 1.125, !- 1.028118973, !- - 1.25, !- 1.053272252, !- - 1.375, !- 1.07602616, !- - 1.500, !- 1.09679885, !- - 1.625, !- 1.115907873, !- - 1.750, !- 1.133600065, !- - 1.875, !- 1.150071102; !- + ! Munters Oasis Dry Op Eff Mod Fac, ! formulated no mass capacitance flux ratio, flow ratio = sec/sys - Table:OneIndependentVariable, + Table:IndependentVariable, + IECEffDBFlowMod_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.156016442, !- Value 2 + 0.224969531, !- Value 3 + 0.245292433, !- Value 4 + 0.269624525, !- Value 5 + 0.299327692, !- Value 6 + 0.33698954, !- Value 7 + 0.385709241, !- + 0.453044107, !- + 0.553875806, !- + 0.732741489, !- + 0.899289342, !- + 1.047473735, !- + 1.074970273, !- + 1.104173513; !- + + Table:IndependentVariableList, + IECEffDBFlowMod_IndependentVariableList, !- Name + IECEffDBFlowMod_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, IECEffDBFlowMod, !- Name - Cubic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.1, !- Maximum Value of X - 0.0, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + IECEffDBFlowMod_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.0, !- Output Value #1 - 0.156016442, !- X Value #2 - 0.251901141, !- Output Value #2 - 0.224969531, !- X Value #3 - 0.272633745, !- Output Value #3 - 0.245292433, !- X Value #4 - 0.297085202, !- Output Value #4 - 0.269624525, !- X Value #5 - 0.32635468, !- Output Value #5 - 0.299327692, !- X Value #6 - 0.362021858, !- Output Value #6 - 0.33698954, !- X Value #7 - 0.406441718, !- Output Value #7 - 0.385709241, !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Output Value 1 + 0.251901141, !- Output Value 2 + 0.272633745, !- Output Value 3 + 0.297085202, !- Output Value 4 + 0.32635468, !- Output Value 5 + 0.362021858, !- Output Value 6 + 0.406441718, !- Output Value 7 0.463286713, !- - 0.453044107, !- 0.538617886, !- - 0.553875806, !- 0.643203883, !- - 0.732741489, !- 0.798192771, !- - 0.899289342, !- 0.907534247, !- - 1.047473735, !- 0.989130435, !- - 1.074970273, !- 0.994186047, !- - 1.104173513, !- 1.0; !- !Fan Power Mod Fac x raised to 2_6 , ! fan power following x^2.6 - Table:OneIndependentVariable, + Table:IndependentVariable, + IECFanPowerMod_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0, !- Value 1 + 0.125, !- Value 2 + 0.25, !- Value 3 + 0.375, !- Value 4 + 0.5, !- Value 5 + 0.625, !- Value 6 + 0.75, !- Value 7 + 0.875, !- + 1; !- + + Table:IndependentVariableList, + IECFanPowerMod_IndependentVariableList, !- Name + IECFanPowerMod_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, IECFanPowerMod, !- Name - Cubic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.0, !- Maximum Value of X - 0.0, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + IECFanPowerMod_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0, !- X Value #1 - 0, !- Output Value #1 - 0.125, !- X Value #2 - 0.004487103, !- Output Value #2 - 0.25, !- X Value #3 - 0.027204705, !- Output Value #3 - 0.375, !- X Value #4 - 0.078069482, !- Output Value #4 - 0.5, !- X Value #5 - 0.164938489, !- Output Value #5 - 0.625, !- X Value #6 - 0.294637516, !- Output Value #6 - 0.75, !- X Value #7 - 0.473324827, !- Output Value #7 - 0.875, !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0, !- Output Value 1 + 0.004487103, !- Output Value 2 + 0.027204705, !- Output Value 3 + 0.078069482, !- Output Value 4 + 0.164938489, !- Output Value 5 + 0.294637516, !- Output Value 6 + 0.473324827, !- Output Value 7 0.706676969, !- - 1, !- 1; !- !Pump Power Mod Fac two speed spray pump , ! - Table:OneIndependentVariable, + Table:IndependentVariable, + IECPumpPowerMod_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0, !- Value 1 + 0.125, !- Value 2 + 0.25, !- Value 3 + 0.375, !- Value 4 + 0.5, !- Value 5 + 0.625, !- Value 6 + 0.75, !- Value 7 + 0.875, !- + 1; !- + + Table:IndependentVariableList, + IECPumpPowerMod_IndependentVariableList, !- Name + IECPumpPowerMod_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, IECPumpPowerMod, !- Name - Cubic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.0, !- Maximum Value of X - 0.0, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + IECPumpPowerMod_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0, !- X Value #1 - 0.4, !- Output Value #1 - 0.125, !- X Value #2 - 0.4, !- Output Value #2 - 0.25, !- X Value #3 - 0.4, !- Output Value #3 - 0.375, !- X Value #4 - 0.4, !- Output Value #4 - 0.5, !- X Value #5 - 1, !- Output Value #5 - 0.625, !- X Value #6 - 1, !- Output Value #6 - 0.75, !- X Value #7 - 1, !- Output Value #7 - 0.875, !- - 1, !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.4, !- Output Value 1 + 0.4, !- Output Value 2 + 0.4, !- Output Value 3 + 0.4, !- Output Value 4 + 1, !- Output Value 5 + 1, !- Output Value 6 + 1, !- Output Value 7 1, !- 1; !- diff --git a/testfiles/5ZoneAirCooled_AirBoundaries.idf b/testfiles/5ZoneAirCooled_AirBoundaries.idf new file mode 100644 index 00000000000..463cf143b52 --- /dev/null +++ b/testfiles/5ZoneAirCooled_AirBoundaries.idf @@ -0,0 +1,3626 @@ +!-Generator IDFEditor 1.34 +!-Option OriginalOrderTop UseSpecialFormat +!-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. +!- Use '!' comments if they need to be retained when using the IDFEditor. +! 5ZoneAirCooled_AirBoundaries.idf +! Basic file description: 1 story building divided into 4 exterior and one interior conditioned zones with air boundaries and return plenum. +! +! Highlights: Construction:AirBoundary used to combine zones Space1-1, Space4-1, and Space5-1. +! Space2-1 and Space3-1 remain separate. This is based on 5ZoneAirCooled.idf +! +! Simulation Location/Run: CHICAGO_IL_USA TMY2-94846, 2 design days, 2 run periods, +! Run Control executes the run periods using the weather file +! +! Location: Chicago, IL +! +! Design Days: CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C +! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C +! +! Run Period (Weather File): 1/1 through 12/31, CHICAGO_IL_USA TMY2-94846 +! +! Run Control: Zone and System sizing with weather file run control (no design days run) +! +! Building: Single floor rectangular building 100 ft x 50 ft. 5 zones - 4 exterior, 1 interior, zone height 8 feet. +! Exterior zone depth is 12 feet. There is a 2 foot high return plenum: the overall building height is +! 10 feet. There are windows on all 4 facades; the south and north facades have glass doors. +! The south facing glass is shaded by overhangs. The walls are woodshingle over plywood, R11 insulation, +! and gypboard. The roof is a gravel built up roof with R-3 mineral board insulation and plywood sheathing. +! The windows are of various single and double pane construction with 3mm and 6mm glass and either 6mm or +! 13mm argon or air gap. The window to wall ratio is approximately 0.29. +! The south wall and door have overhangs. +! +! The building is oriented 30 degrees east of north. +! +! Floor Area: 463.6 m2 (5000 ft2) +! Number of Stories: 1 +! +! Zone Description Details: +! +! (0,15.2,0) (30.5,15.2,0) +! _____ ________ ____ +! |\ *** **************** /| +! | \ / | +! | \ (26.8,11.6,0) / | +! * \_____________________________/ * +! * |(3.7,11.6,0) | * +! * | | * +! * | | * +! * | (26.8,3.7,0)| * +! * |___________________________| * +! * / (3.7,3.7,0) \ * +! | / \ | +! | / \ | +! |/___******************___***________\| +! | Overhang | | +! |_______________________| | window/door = * +! |___| +! +! (0,0,0) (30.5,0,0) +! +! Internal gains description: lighting is 1.5 watts/ft2, office equip is 1.0 watts/ft2. There is 1 occupant +! per 100 ft2 of floor area. The infiltration is 0.25 air changes per hour. +! +! Interzone Surfaces: 8 interzone surfaces, 4 are air boundaries (see diagram) +! Internal Mass: None +! People: 50 +! Lights: 7500 W +! Windows: 4 ea.: 1) Double pane clear, 3mm glass, 13mm air gap +! 2) Double pane clear, 3mm glass, 13mm argon gap +! 3) Double pane clear, 6mm glass, 6mm air gap +! 4) Double pane lowE, 6mm lowE glass outside, 6mm air gap, 6mm clear glass +! +! Doors: 2 ea.: Single pane grey, 3mm glass +! +! Detached Shading: None +! Daylight: None +! Natural Ventilation: None +! Compact Schedules: Yes +! +! HVAC: Standard VAV system with outside air, hot water reheat coils, +! central chilled water cooling coil. Central Plant is single hot water +! boiler, electric compression chiller with air cooled condenser. +! All equipment is autosized. HW and ChW coils are used in the outside air +! stream to precondition the outside air. +! +! Zonal Equipment: AirTerminal:SingleDuct:VAV:Reheat +! Central Air Handling Equipment: Yes +! System Equipment Autosize: Yes +! Purchased Cooling: None +! Purchased Heating: None +! Coils: Coil:Cooling:Water, Coil:Heating:Water +! Pumps: Pump:VariableSpeed +! Boilers: Boiler:HotWater +! Chillers: Chiller:Electric +! +! Results: +! Standard Reports: None +! Timestep or Hourly Variables: Hourly +! Time bins Report: None +! HTML Report: None +! Environmental Emissions: None +! Utility Tariffs: None + + Version,9.2; + + Building, + Building, !- Name + 30., !- North Axis {deg} + City, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.4, !- Temperature Convergence Tolerance Value {deltaC} + FullExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + + Timestep,4; + + SurfaceConvectionAlgorithm:Inside,Simple; + + SurfaceConvectionAlgorithm:Outside,SimpleCombined; + + HeatBalanceAlgorithm,ConductionTransferFunction; + + GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + CounterClockWise, !- Vertex Entry Direction + relative; !- Coordinate System + + ScheduleTypeLimits, + Any Number; !- Name + + ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + CONTINUOUS, !- Numeric Type + Temperature; !- Unit Type + + ScheduleTypeLimits, + Control Type, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + FlowRate, !- Name + 0.0, !- Lower Limit Value + 10, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + RunPeriod, + Run Period 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 12, !- End Month + 31, !- End Day of Month + , !- End Year + Tuesday, !- Day of Week for Start Day + Yes, !- Use Weather File Holidays and Special Days + Yes, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + + Site:Location, + CHICAGO_IL_USA TMY2-94846, !- Name + 41.78, !- Latitude {deg} + -87.75, !- Longitude {deg} + -6.00, !- Time Zone {hr} + 190.00; !- Elevation {m} + + SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods + +! CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C + + SizingPeriod:DesignDay, + CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -17.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -17.3, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 0.0; !- Sky Clearness + +! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C + + SizingPeriod:DesignDay, + CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 31.5, !- Maximum Dry-Bulb Temperature {C} + 10.7, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 23.0, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.0; !- Sky Clearness + + Site:GroundTemperature:BuildingSurface,20.03,20.03,20.13,20.30,20.43,20.52,20.62,20.77,20.78,20.55,20.44,20.20; + + Material, + WD10, !- Name + MediumSmooth, !- Roughness + 0.667, !- Thickness {m} + 0.115, !- Conductivity {W/m-K} + 513, !- Density {kg/m3} + 1381, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.78, !- Solar Absorptance + 0.78; !- Visible Absorptance + + Material, + RG01, !- Name + Rough, !- Roughness + 1.2700000E-02, !- Thickness {m} + 1.442000, !- Conductivity {W/m-K} + 881.0000, !- Density {kg/m3} + 1674.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.6500000, !- Solar Absorptance + 0.6500000; !- Visible Absorptance + + Material, + BR01, !- Name + VeryRough, !- Roughness + 9.4999997E-03, !- Thickness {m} + 0.1620000, !- Conductivity {W/m-K} + 1121.000, !- Density {kg/m3} + 1464.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.7000000; !- Visible Absorptance + + Material, + IN46, !- Name + VeryRough, !- Roughness + 7.6200001E-02, !- Thickness {m} + 2.3000000E-02, !- Conductivity {W/m-K} + 24.00000, !- Density {kg/m3} + 1590.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.5000000, !- Solar Absorptance + 0.5000000; !- Visible Absorptance + + Material, + WD01, !- Name + MediumSmooth, !- Roughness + 1.9099999E-02, !- Thickness {m} + 0.1150000, !- Conductivity {W/m-K} + 513.0000, !- Density {kg/m3} + 1381.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7800000, !- Solar Absorptance + 0.7800000; !- Visible Absorptance + + Material, + PW03, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 0.1150000, !- Conductivity {W/m-K} + 545.0000, !- Density {kg/m3} + 1213.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7800000, !- Solar Absorptance + 0.7800000; !- Visible Absorptance + + Material, + IN02, !- Name + Rough, !- Roughness + 9.0099998E-02, !- Thickness {m} + 4.3000001E-02, !- Conductivity {W/m-K} + 10.00000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + GP01, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 0.1600000, !- Conductivity {W/m-K} + 801.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + GP02, !- Name + MediumSmooth, !- Roughness + 1.5900001E-02, !- Thickness {m} + 0.1600000, !- Conductivity {W/m-K} + 801.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + CC03, !- Name + MediumRough, !- Roughness + 0.1016000, !- Thickness {m} + 1.310000, !- Conductivity {W/m-K} + 2243.000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.6500000, !- Solar Absorptance + 0.6500000; !- Visible Absorptance + + Material:NoMass, + CP01, !- Name + Rough, !- Roughness + 0.3670000, !- Thermal Resistance {m2-K/W} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material:NoMass, + MAT-CLNG-1, !- Name + Rough, !- Roughness + 0.652259290, !- Thermal Resistance {m2-K/W} + 0.65, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + + Material:AirGap, + AL21, !- Name + 0.1570000; !- Thermal Resistance {m2-K/W} + + Material:AirGap, + AL23, !- Name + 0.1530000; !- Thermal Resistance {m2-K/W} + + Construction, + ROOF-1, !- Name + RG01, !- Outside Layer + BR01, !- Layer 2 + IN46, !- Layer 3 + WD01; !- Layer 4 + + Construction, + WALL-1, !- Name + WD01, !- Outside Layer + PW03, !- Layer 2 + IN02, !- Layer 3 + GP01; !- Layer 4 + + Construction, + CLNG-1, !- Name + MAT-CLNG-1; !- Outside Layer + + Construction, + FLOOR-SLAB-1, !- Name + CC03; !- Outside Layer + + Construction, + INT-WALL-1, !- Name + GP02, !- Outside Layer + AL21, !- Layer 2 + GP02; !- Layer 3 + + Construction:AirBoundary, + Air Wall, !- Name + GroupedZones, !- Solar and Daylighting Method + GroupedZones, !- Radiant Exchange Method + SimpleMixing, !- Air Exchange Method + 0.5, !- Simple Mixing Air Changes per Hour {1/hr} + ; !- Simple Mixing Schedule Name + + WindowMaterial:Gas, + AIR 13MM, !- Name + Air, !- Gas Type + 0.0127; !- Thickness {m} + + WindowMaterial:Glazing, + CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness {m} + 0.837, !- Solar Transmittance at Normal Incidence + 0.075, !- Front Side Solar Reflectance at Normal Incidence + 0.075, !- Back Side Solar Reflectance at Normal Incidence + 0.898, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0.081, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + GREY 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness {m} + 0.626, !- Solar Transmittance at Normal Incidence + 0.061, !- Front Side Solar Reflectance at Normal Incidence + 0.061, !- Back Side Solar Reflectance at Normal Incidence + 0.611, !- Visible Transmittance at Normal Incidence + 0.061, !- Front Side Visible Reflectance at Normal Incidence + 0.061, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + Construction, + Dbl Clr 3mm/13mm Air, !- Name + CLEAR 3MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + + Construction, + Sgl Grey 3mm, !- Name + GREY 3MM; !- Outside Layer + + Schedule:Compact, + OCCUPY-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2 + Until: 8:00,0.0, !- Field 3 + Until: 11:00,1.00, !- Field 5 + Until: 12:00,0.80, !- Field 7 + Until: 13:00,0.40, !- Field 9 + Until: 14:00,0.80, !- Field 11 + Until: 18:00,1.00, !- Field 13 + Until: 19:00,0.50, !- Field 15 + Until: 24:00,0.0, !- Field 17 + For: Weekends WinterDesignDay Holiday, !- Field 19 + Until: 24:00,0.0; !- Field 20 + + Schedule:Compact, + LIGHTS-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2 + Until: 8:00,0.05, !- Field 3 + Until: 9:00,0.9, !- Field 5 + Until: 10:00,0.95, !- Field 7 + Until: 11:00,1.00, !- Field 9 + Until: 12:00,0.95, !- Field 11 + Until: 13:00,0.8, !- Field 13 + Until: 14:00,0.9, !- Field 15 + Until: 18:00,1.00, !- Field 17 + Until: 19:00,0.60, !- Field 19 + Until: 21:00,0.20, !- Field 21 + Until: 24:00,0.05, !- Field 23 + For: Weekends WinterDesignDay Holiday, !- Field 25 + Until: 24:00,0.05; !- Field 26 + + Schedule:Compact, + EQUIP-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2 + Until: 8:00,0.02, !- Field 3 + Until: 9:00,0.4, !- Field 5 + Until: 14:00,0.9, !- Field 7 + Until: 15:00,0.8, !- Field 9 + Until: 16:00,0.7, !- Field 11 + Until: 18:00,0.5, !- Field 13 + Until: 20:00,0.3, !- Field 15 + Until: 24:00,0.02, !- Field 17 + For: Weekends WinterDesignDay Holiday, !- Field 19 + Until: 24:00,0.2; !- Field 20 + + Schedule:Compact, + INFIL-SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 10/31, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,0.0, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,1.0; !- Field 11 + + Schedule:Compact, + ActSchd, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,117.239997864; !- Field 3 + + !- Field 4 + + Schedule:Compact, + ShadeTransSch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 + + Zone, + PLENUM-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 0.609600067, !- Ceiling Height {m} + 283.2; !- Volume {m3} + + BuildingSurface:Detailed, + WALL-1PF, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,0.0,3.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 30.5,0.0,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WALL-1PR, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,0.0,3.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WALL-1PB, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 0.0,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WALL-1PL, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 0.0,0.0,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + TOP-1, !- Name + ROOF, !- Surface Type + ROOF-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.00000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,3.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,3.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C1-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C1-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C2-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C2-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C3-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C3-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C4-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C4-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C5-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C5-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE1-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 239.247360229; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE1-1 Infil 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.032, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE1-1 People 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 11, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE1-1 Lights 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 1584, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE1-1 ElecEq 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1056, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + FRONT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WF-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + FRONT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 3.0,0.0,2.1, !- X,Y,Z ==> Vertex 1 {m} + 3.0,0.0,0.9, !- X,Y,Z ==> Vertex 2 {m} + 16.8,0.0,0.9, !- X,Y,Z ==> Vertex 3 {m} + 16.8,0.0,2.1; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + DF-1, !- Name + GLASSDOOR, !- Surface Type + Sgl Grey 3mm, !- Construction Name + FRONT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.3,0.0,2.1, !- X,Y,Z ==> Vertex 1 {m} + 21.3,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 23.8,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 23.8,0.0,2.1; !- X,Y,Z ==> Vertex 4 {m} + + Shading:Zone:Detailed, + Main South Overhang, !- Name + FRONT-1, !- Base Surface Name + ShadeTransSch, !- Transmittance Schedule Name + 4, !- Number of Vertices + 0.0,-1.3,2.2, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.2, !- X,Y,Z ==> Vertex 2 {m} + 19.8,0.0,2.2, !- X,Y,Z ==> Vertex 3 {m} + 19.8,-1.3,2.2; !- X,Y,Z ==> Vertex 4 {m} + + Shading:Zone:Detailed, + South Door Overhang, !- Name + FRONT-1, !- Base Surface Name + ShadeTransSch, !- Transmittance Schedule Name + 4, !- Number of Vertices + 21.0,-2.0,2.6, !- X,Y,Z ==> Vertex 1 {m} + 21.0,0.0,2.6, !- X,Y,Z ==> Vertex 2 {m} + 24.1,0.0,2.6, !- X,Y,Z ==> Vertex 3 {m} + 24.1,-2.0,2.6; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C1-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + C1-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F1-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE1-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB12, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB21, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB14, !- Name + WALL, !- Surface Type + Air Wall, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB41, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB15, !- Name + WALL, !- Surface Type + Air Wall, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB51, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE2-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 103.311355591; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE2-1 Infil 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.014, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE2-1 People 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 5, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE2-1 Lights 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 684, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE2-1 ElecEq 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 456, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + RIGHT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WR-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + RIGHT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 30.5,3.8,2.1, !- X,Y,Z ==> Vertex 1 {m} + 30.5,3.8,0.9, !- X,Y,Z ==> Vertex 2 {m} + 30.5,11.4,0.9, !- X,Y,Z ==> Vertex 3 {m} + 30.5,11.4,2.1; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C2-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + C2-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F2-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE2-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB21, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB12, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB23, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB32, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB25, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB52, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE3-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 239.247360229; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE3-1 Infil 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.032, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE3-1 People 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 11, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE3-1 Lights 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 1584, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE3-1 ElecEq 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1056, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + BACK-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WB-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + BACK-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.4,15.2,2.1, !- X,Y,Z ==> Vertex 1 {m} + 27.4,15.2,0.9, !- X,Y,Z ==> Vertex 2 {m} + 13.7,15.2,0.9, !- X,Y,Z ==> Vertex 3 {m} + 13.7,15.2,2.1; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + DB-1, !- Name + GLASSDOOR, !- Surface Type + Sgl Grey 3mm, !- Construction Name + BACK-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 9.1,15.2,2.1, !- X,Y,Z ==> Vertex 1 {m} + 9.1,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 7.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 7.0,15.2,2.1; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C3-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + C3-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F3-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE3-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB32, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB23, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB34, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB43, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB35, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB53, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE4-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 103.311355591; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE4-1 Infil 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.014, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE4-1 People 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 5, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE4-1 Lights 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 684, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE4-1 ElecEq 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 456, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + LEFT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WL-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + LEFT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 0.0,11.4,2.1, !- X,Y,Z ==> Vertex 1 {m} + 0.0,11.4,0.9, !- X,Y,Z ==> Vertex 2 {m} + 0.0,3.8,0.9, !- X,Y,Z ==> Vertex 3 {m} + 0.0,3.8,2.1; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C4-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + C4-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F4-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE4-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB41, !- Name + WALL, !- Surface Type + Air Wall, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB14, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB43, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB34, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB45, !- Name + WALL, !- Surface Type + Air Wall, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB54, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE5-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 447.682556152; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE5-1 Infil 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.062, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE5-1 People 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 20, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE5-1 Lights 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 2964, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE5-1 ElecEq 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1976, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + C5-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + C5-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F5-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE5-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB51, !- Name + WALL, !- Surface Type + Air Wall, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB15, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB52, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB25, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB53, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB35, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB54, !- Name + WALL, !- Surface Type + Air Wall , !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB45, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Sizing:Parameters, + 1.0, !- Heating Sizing Factor + 1.0, !- Cooling Sizing Factor + ; !- Timesteps in Averaging Window + + Sizing:Zone, + SPACE1-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE1-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE1-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE2-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE2-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE2-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE3-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE3-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE3-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE4-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE4-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE4-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE5-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE5-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE5-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:System, + VAV Sys 1, !- AirLoop Name + sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 4.5, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 11.0, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 16.7, !- Central Heating Design Supply Air Temperature {C} + noncoincident, !- Type of Zone Sum to Use + no, !- 100% Outdoor Air in Cooling + no, !- 100% Outdoor Air in Heating + 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Sizing:Plant, + Hot Water Loop, !- Plant or Condenser Loop Name + heating, !- Loop Type + 82., !- Design Loop Exit Temperature {C} + 11; !- Loop Design Temperature Difference {deltaC} + + Sizing:Plant, + Chilled Water Loop, !- Plant or Condenser Loop Name + cooling, !- Loop Type + 7.00, !- Design Loop Exit Temperature {C} + 4.00; !- Loop Design Temperature Difference {deltaC} + + Schedule:Compact, + Htg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,16.7, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,22.2, !- Field 6 + For: WeekDays, !- Field 8 + Until: 6:00,16.7, !- Field 9 + Until: 20:00,22.2, !- Field 11 + Until: 24:00,16.7, !- Field 13 + For: WeekEnds Holiday, !- Field 15 + Until: 24:00,16.7, !- Field 16 + For: AllOtherDays, !- Field 18 + Until: 24:00,16.7; !- Field 19 + + Schedule:Compact, + PlenumHtg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,12.8; !- Field 3 + + Schedule:Compact, + Clg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,23.9, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.4, !- Field 6 + For: WeekDays, !- Field 8 + Until: 6:00,29.4, !- Field 9 + Until: 20:00,23.9, !- Field 11 + Until: 24:00,29.4, !- Field 13 + For: WeekEnds Holiday, !- Field 15 + Until: 24:00,29.4, !- Field 16 + For: AllOtherDays, !- Field 18 + Until: 24:00,29.4; !- Field 19 + + Schedule:Compact, + PlenumClg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,40.0; !- Field 3 + + Schedule:Compact, + Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,2, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,1, !- Field 6 + For: AllOtherDays, !- Field 8 + Until: 24:00,4; !- Field 9 + + Schedule:Compact, + Min OA Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 6:00,0.02, !- Field 3 + Until: 20:00,1.0, !- Field 5 + Until: 24:00,0.02, !- Field 7 + For: AllOtherDays, !- Field 9 + Until: 24:00,0.02; !- Field 10 + + Schedule:Compact, + FanAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 9/30, !- Field 5 + For: WeekDays, !- Field 6 + Until: 6:00,0.0, !- Field 7 + Until: 20:00,1.0, !- Field 9 + Until: 24:00,0.0, !- Field 11 + For: SummerDesignDay WinterDesignDay, !- Field 13 + Until: 24:00,1.0, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,0.0, !- Field 17 + Through: 12/31, !- Field 19 + For: AllDays, !- Field 20 + Until: 24:00,1.0; !- Field 21 + + Schedule:Compact, + CoolingCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays, !- Field 2 + Until: 6:00,0.0, !- Field 3 + Until: 20:00,1.0, !- Field 5 + Until: 24:00,0.0, !- Field 7 + For: SummerDesignDay WinterDesignDay, !- Field 9 + Until: 24:00,1.0, !- Field 10 + For: AllOtherDays, !- Field 12 + Until: 24:00,0.0; !- Field 13 + + Schedule:Compact, + CoolingPumpAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + ReheatCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 9/30, !- Field 5 + For: WeekDays, !- Field 6 + Until: 6:00,0.0, !- Field 7 + Until: 20:00,1.0, !- Field 9 + Until: 24:00,0.0, !- Field 11 + For: SummerDesignDay WinterDesignDay, !- Field 13 + Until: 24:00,1.0, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,0.0, !- Field 17 + Through: 12/31, !- Field 19 + For: AllDays, !- Field 20 + Until: 24:00,1.0; !- Field 21 + + Schedule:Compact, + CW Loop Temp Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,7.22; !- Field 3 + + Schedule:Compact, + HW Loop Temp Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,82; !- Field 3 + + Schedule:Compact, + PlantOnSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + Seasonal Reset Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,16.0, !- Field 3 + Through: 9/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,13.0, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,16.0; !- Field 11 + + Schedule:Compact, + OA Cooling Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,11.5; !- Field 3 + + Schedule:Compact, + OA Heating Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4.5; !- Field 3 + + OutdoorAir:NodeList, + OutsideAirInletNodes; !- Node or NodeList Name 1 + + NodeList, + OutsideAirInletNodes, !- Name + Outside Air Inlet Node 1;!- Node 1 Name + + ZoneHVAC:EquipmentConnections, + SPACE1-1, !- Zone Name + SPACE1-1 Eq, !- Zone Conditioning Equipment List Name + SPACE1-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE1-1 Node, !- Zone Air Node Name + SPACE1-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + SPACE2-1, !- Zone Name + SPACE2-1 Eq, !- Zone Conditioning Equipment List Name + SPACE2-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE2-1 Node, !- Zone Air Node Name + SPACE2-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + SPACE3-1, !- Zone Name + SPACE3-1 Eq, !- Zone Conditioning Equipment List Name + SPACE3-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE3-1 Node, !- Zone Air Node Name + SPACE3-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + SPACE4-1, !- Zone Name + SPACE4-1 Eq, !- Zone Conditioning Equipment List Name + SPACE4-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE4-1 Node, !- Zone Air Node Name + SPACE4-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + SPACE5-1, !- Zone Name + SPACE5-1 Eq, !- Zone Conditioning Equipment List Name + SPACE5-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE5-1 Node, !- Zone Air Node Name + SPACE5-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneControl:Thermostat, + SPACE1-1 Control, !- Name + SPACE1-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ZoneControl:Thermostat, + SPACE2-1 Control, !- Name + SPACE2-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ZoneControl:Thermostat, + SPACE3-1 Control, !- Name + SPACE3-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ZoneControl:Thermostat, + SPACE4-1 Control, !- Name + SPACE4-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ZoneControl:Thermostat, + SPACE5-1 Control, !- Name + SPACE5-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ThermostatSetpoint:SingleHeating, + HeatingSetpoint, !- Name + Htg-SetP-Sch; !- Setpoint Temperature Schedule Name + + ThermostatSetpoint:SingleCooling, + CoolingSetpoint, !- Name + Clg-SetP-Sch; !- Setpoint Temperature Schedule Name + + ThermostatSetpoint:SingleHeating, + PlenumHeatingSetpoint, !- Name + PlenumHtg-SetP-Sch; !- Setpoint Temperature Schedule Name + + ThermostatSetpoint:SingleCooling, + PlenumCoolingSetpoint, !- Name + PlenumClg-SetP-Sch; !- Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + DualSetPoint, !- Name + Htg-SetP-Sch, !- Heating Setpoint Temperature Schedule Name + Clg-SetP-Sch; !- Cooling Setpoint Temperature Schedule Name + + ZoneHVAC:EquipmentList, + SPACE1-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE1-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:EquipmentList, + SPACE2-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE2-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:EquipmentList, + SPACE3-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE3-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:EquipmentList, + SPACE4-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE4-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:EquipmentList, + SPACE5-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE5-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:AirDistributionUnit, + SPACE1-1 ATU, !- Name + SPACE1-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE1-1 VAV Reheat; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + SPACE2-1 ATU, !- Name + SPACE2-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE2-1 VAV Reheat; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + SPACE3-1 ATU, !- Name + SPACE3-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE3-1 VAV Reheat; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + SPACE4-1 ATU, !- Name + SPACE4-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE4-1 VAV Reheat; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + SPACE5-1 ATU, !- Name + SPACE5-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE5-1 VAV Reheat; !- Air Terminal Name + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE1-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE1-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE1-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE1-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE1-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE2-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE2-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE2-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE2-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE2-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE3-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE3-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE3-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE3-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE3-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE4-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE4-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE4-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE4-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE4-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE5-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE5-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE5-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE5-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE5-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + Coil:Heating:Water, + SPACE1-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE1-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE1-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE1-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE1-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + SPACE2-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE2-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE2-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE2-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE2-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + SPACE3-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE3-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE3-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE3-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE3-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + SPACE4-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE4-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE4-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE4-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE4-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + SPACE5-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE5-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE5-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE5-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE5-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + AirLoopHVAC:ReturnPath, + ReturnAirPath1, !- Name + PLENUM-1 Out Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum,!- Component 1 Object Type + Return-Plenum-1; !- Component 1 Name + + AirLoopHVAC:ReturnPlenum, + Return-Plenum-1, !- Name + PLENUM-1, !- Zone Name + PLENUM-1 Node, !- Zone Node Name + PLENUM-1 Out Node, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + SPACE1-1 Out Node, !- Inlet 1 Node Name + SPACE2-1 Out Node, !- Inlet 2 Node Name + SPACE3-1 Out Node, !- Inlet 3 Node Name + SPACE4-1 Out Node, !- Inlet 4 Node Name + SPACE5-1 Out Node; !- Inlet 5 Node Name + + AirLoopHVAC:SupplyPath, + Zone Supply Air Path 1, !- Name + Zone Eq In Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + Zone Supply Air Splitter 1; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + Zone Supply Air Splitter 1, !- Name + Zone Eq In Node, !- Inlet Node Name + SPACE1-1 ATU In Node, !- Outlet 1 Node Name + SPACE2-1 ATU In Node, !- Outlet 2 Node Name + SPACE3-1 ATU In Node, !- Outlet 3 Node Name + SPACE4-1 ATU In Node, !- Outlet 4 Node Name + SPACE5-1 ATU In Node; !- Outlet 5 Node Name + + AirLoopHVAC, + VAV Sys 1, !- Name + VAV Sys 1 Controllers, !- Controller List Name + VAV Sys 1 Avail List, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + VAV Sys 1 Branches, !- Branch List Name + , !- Connector List Name + VAV Sys 1 Inlet Node, !- Supply Side Inlet Node Name + PLENUM-1 Out Node, !- Demand Side Outlet Node Name + Zone Eq In Node, !- Demand Side Inlet Node Names + VAV Sys 1 Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC:ControllerList, + VAV Sys 1 Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + Central Cooling Coil Controller 1, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + Central Heating Coil Controller 1; !- Controller 2 Name + + AvailabilityManagerAssignmentList, + VAV Sys 1 Avail List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + VAV Sys 1 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + VAV Sys 1 Avail, !- Name + FanAvailSched; !- Schedule Name + + BranchList, + VAV Sys 1 Branches, !- Name + VAV Sys 1 Main Branch; !- Branch 1 Name + + Branch, + VAV Sys 1 Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + OA Sys 1, !- Component 1 Name + VAV Sys 1 Inlet Node, !- Component 1 Inlet Node Name + Mixed Air Node 1, !- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + Main Cooling Coil 1, !- Component 2 Name + Mixed Air Node 1, !- Component 2 Inlet Node Name + Main Cooling Coil 1 Outlet Node, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + Main Heating Coil 1, !- Component 3 Name + Main Cooling Coil 1 Outlet Node, !- Component 3 Inlet Node Name + Main Heating Coil 1 Outlet Node, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + Supply Fan 1, !- Component 4 Name + Main Heating Coil 1 Outlet Node, !- Component 4 Inlet Node Name + VAV Sys 1 Outlet Node; !- Component 4 Outlet Node Name + + AirLoopHVAC:OutdoorAirSystem, + OA Sys 1, !- Name + OA Sys 1 Controllers, !- Controller List Name + OA Sys 1 Equipment, !- Outdoor Air Equipment List Name + VAV Sys 1 Avail List; !- Availability Manager List Name + + AirLoopHVAC:ControllerList, + OA Sys 1 Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + OA Controller 1, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + OA CC Controller 1, !- Controller 2 Name + Controller:WaterCoil, !- Controller 3 Object Type + OA HC Controller 1; !- Controller 3 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA Sys 1 Equipment, !- Name + Coil:Heating:Water, !- Component 1 Object Type + OA Heating Coil 1, !- Component 1 Name + Coil:Cooling:Water, !- Component 2 Object Type + OA Cooling Coil 1, !- Component 2 Name + OutdoorAir:Mixer, !- Component 3 Object Type + OA Mixing Box 1; !- Component 3 Name + + Coil:Heating:Water, + OA Heating Coil 1, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + OA Heating Coil 1 Water Inlet Node, !- Water Inlet Node Name + OA Heating Coil 1 Water Outlet Node, !- Water Outlet Node Name + Outside Air Inlet Node 1,!- Air Inlet Node Name + OA Heating Coil 1 Air Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Cooling:Water, + OA Cooling Coil 1, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + autosize, !- Design Inlet Water Temperature {C} + autosize, !- Design Inlet Air Temperature {C} + autosize, !- Design Outlet Air Temperature {C} + autosize, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + autosize, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + OA Cooling Coil 1 Water Inlet Node, !- Water Inlet Node Name + OA Cooling Coil 1 Water Outlet Node, !- Water Outlet Node Name + OA Heating Coil 1 Air Outlet Node, !- Air Inlet Node Name + OA Mixing Box 1 Inlet Node, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow, !- Heat Exchanger Configuration + , !- Condensate Collection Water Storage Tank Name + 4.0; !- Design Water Temperature Difference {deltaC} + + OutdoorAir:Mixer, + OA Mixing Box 1, !- Name + Mixed Air Node 1, !- Mixed Air Node Name + OA Mixing Box 1 Inlet Node, !- Outdoor Air Stream Node Name + Relief Air Outlet Node 1,!- Relief Air Stream Node Name + VAV Sys 1 Inlet Node; !- Return Air Stream Node Name + + Coil:Cooling:Water, + Main Cooling Coil 1, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + autosize, !- Design Inlet Water Temperature {C} + autosize, !- Design Inlet Air Temperature {C} + autosize, !- Design Outlet Air Temperature {C} + autosize, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + autosize, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + Main Cooling Coil 1 Water Inlet Node, !- Water Inlet Node Name + Main Cooling Coil 1 Water Outlet Node, !- Water Outlet Node Name + Mixed Air Node 1, !- Air Inlet Node Name + Main Cooling Coil 1 Outlet Node, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow, !- Heat Exchanger Configuration + , !- Condensate Collection Water Storage Tank Name + 4.0; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + Main Heating Coil 1, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + Main Heating Coil 1 Water Inlet Node, !- Water Inlet Node Name + Main Heating Coil 1 Water Outlet Node, !- Water Outlet Node Name + Main Cooling Coil 1 Outlet Node, !- Air Inlet Node Name + Main Heating Coil 1 Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Fan:VariableVolume, + Supply Fan 1, !- Name + FanAvailSched, !- Availability Schedule Name + 0.7, !- Fan Total Efficiency + 600.0, !- Pressure Rise {Pa} + autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} + 0.9, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.35071223, !- Fan Power Coefficient 1 + 0.30850535, !- Fan Power Coefficient 2 + -0.54137364, !- Fan Power Coefficient 3 + 0.87198823, !- Fan Power Coefficient 4 + 0.000, !- Fan Power Coefficient 5 + Main Heating Coil 1 Outlet Node, !- Air Inlet Node Name + VAV Sys 1 Outlet Node; !- Air Outlet Node Name + + Controller:WaterCoil, + OA HC Controller 1, !- Name + Temperature, !- Control Variable + Normal, !- Action + FLOW, !- Actuator Variable + OA Heating Coil 1 Air Outlet Node, !- Sensor Node Name + OA Heating Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + OA CC Controller 1, !- Name + Temperature, !- Control Variable + Reverse, !- Action + FLOW, !- Actuator Variable + OA Mixing Box 1 Inlet Node, !- Sensor Node Name + OA Cooling Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + Central Cooling Coil Controller 1, !- Name + Temperature, !- Control Variable + Reverse, !- Action + FLOW, !- Actuator Variable + Main Cooling Coil 1 Outlet Node, !- Sensor Node Name + Main Cooling Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:OutdoorAir, + OA Controller 1, !- Name + Relief Air Outlet Node 1,!- Relief Air Outlet Node Name + VAV Sys 1 Inlet Node, !- Return Air Node Name + Mixed Air Node 1, !- Mixed Air Node Name + Outside Air Inlet Node 1,!- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 19., !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + 4.6, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + Min OA Sched; !- Minimum Outdoor Air Schedule Name + + Controller:WaterCoil, + Central Heating Coil Controller 1, !- Name + Temperature, !- Control Variable + Normal, !- Action + FLOW, !- Actuator Variable + Main Heating Coil 1 Outlet Node, !- Sensor Node Name + Main Heating Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + SetpointManager:Scheduled, + Supply Air Temp Manager 1, !- Name + Temperature, !- Control Variable + Seasonal Reset Supply Air Temp Sch, !- Schedule Name + VAV Sys 1 Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + OA Air Temp Manager 1, !- Name + Temperature, !- Control Variable + OA Cooling Supply Air Temp Sch, !- Schedule Name + OA Mixing Box 1 Inlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + OA Air Temp Manager 2, !- Name + Temperature, !- Control Variable + OA Heating Supply Air Temp Sch, !- Schedule Name + OA Heating Coil 1 Air Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + Mixed Air Temp Manager 1,!- Name + Temperature, !- Control Variable + VAV Sys 1 Outlet Node, !- Reference Setpoint Node Name + Main Heating Coil 1 Outlet Node, !- Fan Inlet Node Name + VAV Sys 1 Outlet Node, !- Fan Outlet Node Name + Main Branch SetPoint Node List; !- Setpoint Node or NodeList Name + + NodeList, + Main Branch SetPoint Node List, !- Name + Mixed Air Node 1, !- Node 1 Name + Main Cooling Coil 1 Outlet Node, !- Node 2 Name + Main Heating Coil 1 Outlet Node; !- Node 3 Name + + PlantLoop, + Hot Water Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Hot Loop Operation, !- Plant Equipment Operation Scheme Name + HW Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + , !- Plant Loop Volume {m3} + HW Supply Inlet Node, !- Plant Side Inlet Node Name + HW Supply Outlet Node, !- Plant Side Outlet Node Name + Heating Supply Side Branches, !- Plant Side Branch List Name + Heating Supply Side Connectors, !- Plant Side Connector List Name + HW Demand Inlet Node, !- Demand Side Inlet Node Name + HW Demand Outlet Node, !- Demand Side Outlet Node Name + Heating Demand Side Branches, !- Demand Side Branch List Name + Heating Demand Side Connectors, !- Demand Side Connector List Name + SequentialLoad; !- Load Distribution Scheme + + SetpointManager:Scheduled, + Hot Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + HW Loop Temp Schedule, !- Schedule Name + HW Supply Outlet Node; !- Setpoint Node or NodeList Name + + BranchList, + Heating Supply Side Branches, !- Name + Heating Supply Inlet Branch, !- Branch 1 Name + Central Boiler Branch, !- Branch 2 Name + Heating Supply Bypass Branch, !- Branch 3 Name + Heating Supply Outlet Branch; !- Branch 4 Name + + ConnectorList, + Heating Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heating Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heating Supply Mixer; !- Connector 2 Name + + Branch, + Heating Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + HW Circ Pump, !- Component 1 Name + HW Supply Inlet Node, !- Component 1 Inlet Node Name + HW Pump Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Central Boiler Branch, !- Name + , !- Pressure Drop Curve Name + Boiler:HotWater, !- Component 1 Object Type + Central Boiler, !- Component 1 Name + Central Boiler Inlet Node, !- Component 1 Inlet Node Name + Central Boiler Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heating Supply Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Supply Side Bypass, !- Component 1 Name + Heating Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + Heating Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Supply Side Bypass, !- Name + Heating Supply Bypass Inlet Node, !- Inlet Node Name + Heating Supply Bypass Outlet Node; !- Outlet Node Name + + Branch, + Heating Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Supply Outlet, !- Component 1 Name + Heating Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + HW Supply Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Supply Outlet, !- Name + Heating Supply Exit Pipe Inlet Node, !- Inlet Node Name + HW Supply Outlet Node; !- Outlet Node Name + + BranchList, + Heating Demand Side Branches, !- Name + Heating Demand Inlet Branch, !- Branch 1 Name + SPACE1-1 Reheat Branch, !- Branch 2 Name + SPACE2-1 Reheat Branch, !- Branch 3 Name + SPACE3-1 Reheat Branch, !- Branch 4 Name + SPACE4-1 Reheat Branch, !- Branch 5 Name + SPACE5-1 Reheat Branch, !- Branch 6 Name + OA Heating Coil Branch, !- Branch 7 Name + Main Heating Coil 1 Branch, !- Branch 8 Name + Heating Demand Bypass Branch, !- Branch 9 Name + Heating Demand Outlet Branch; !- Branch 10 Name + + ConnectorList, + Heating Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heating Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heating Demand Mixer; !- Connector 2 Name + + Branch, + Heating Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Inlet Pipe, !- Component 1 Name + HW Demand Inlet Node, !- Component 1 Inlet Node Name + HW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Demand Inlet Pipe, !- Name + HW Demand Inlet Node, !- Inlet Node Name + HW Demand Entrance Pipe Outlet Node; !- Outlet Node Name + + Branch, + Heating Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Outlet Pipe, !- Component 1 Name + HW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + HW Demand Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Demand Outlet Pipe, !- Name + HW Demand Exit Pipe Inlet Node, !- Inlet Node Name + HW Demand Outlet Node; !- Outlet Node Name + + Branch, + SPACE1-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE1-1 Zone Coil, !- Component 1 Name + SPACE1-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE1-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + SPACE2-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE2-1 Zone Coil, !- Component 1 Name + SPACE2-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE2-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + SPACE3-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE3-1 Zone Coil, !- Component 1 Name + SPACE3-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE3-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + SPACE4-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE4-1 Zone Coil, !- Component 1 Name + SPACE4-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE4-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + SPACE5-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE5-1 Zone Coil, !- Component 1 Name + SPACE5-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE5-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + OA Heating Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + OA Heating Coil 1, !- Component 1 Name + OA Heating Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + OA Heating Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Main Heating Coil 1 Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Main Heating Coil 1, !- Component 1 Name + Main Heating Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + Main Heating Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heating Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Bypass, !- Component 1 Name + Heating Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + Heating Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Demand Bypass, !- Name + Heating Demand Bypass Inlet Node, !- Inlet Node Name + Heating Demand Bypass Outlet Node; !- Outlet Node Name + + Connector:Splitter, + Heating Demand Splitter, !- Name + Heating Demand Inlet Branch, !- Inlet Branch Name + SPACE1-1 Reheat Branch, !- Outlet Branch 1 Name + SPACE2-1 Reheat Branch, !- Outlet Branch 2 Name + SPACE3-1 Reheat Branch, !- Outlet Branch 3 Name + SPACE4-1 Reheat Branch, !- Outlet Branch 4 Name + SPACE5-1 Reheat Branch, !- Outlet Branch 5 Name + OA Heating Coil Branch, !- Outlet Branch 6 Name + Main Heating Coil 1 Branch, !- Outlet Branch 7 Name + Heating Demand Bypass Branch; !- Outlet Branch 8 Name + + Connector:Mixer, + Heating Demand Mixer, !- Name + Heating Demand Outlet Branch, !- Outlet Branch Name + SPACE1-1 Reheat Branch, !- Inlet Branch 1 Name + SPACE2-1 Reheat Branch, !- Inlet Branch 2 Name + SPACE3-1 Reheat Branch, !- Inlet Branch 3 Name + SPACE4-1 Reheat Branch, !- Inlet Branch 4 Name + SPACE5-1 Reheat Branch, !- Inlet Branch 5 Name + OA Heating Coil Branch, !- Inlet Branch 6 Name + Main Heating Coil 1 Branch, !- Inlet Branch 7 Name + Heating Demand Bypass Branch; !- Inlet Branch 8 Name + + Connector:Splitter, + Heating Supply Splitter, !- Name + Heating Supply Inlet Branch, !- Inlet Branch Name + Central Boiler Branch, !- Outlet Branch 1 Name + Heating Supply Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + Heating Supply Mixer, !- Name + Heating Supply Outlet Branch, !- Outlet Branch Name + Central Boiler Branch, !- Inlet Branch 1 Name + Heating Supply Bypass Branch; !- Inlet Branch 2 Name + + PlantEquipmentOperationSchemes, + Hot Loop Operation, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + Central Boiler Only, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:HeatingLoad, + Central Boiler Only, !- Name + 0, !- Load Range 1 Lower Limit {W} + 1000000, !- Load Range 1 Upper Limit {W} + heating plant; !- Range 1 Equipment List Name + + PlantEquipmentList, + heating plant, !- Name + Boiler:HotWater, !- Equipment 1 Object Type + Central Boiler; !- Equipment 1 Name + + Boiler:HotWater, + Central Boiler, !- Name + NaturalGas, !- Fuel Type + autosize, !- Nominal Capacity {W} + 0.8, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + BoilerEfficiency, !- Normalized Boiler Efficiency Curve Name + autosize, !- Design Water Flow Rate {m3/s} + 0.0, !- Minimum Part Load Ratio + 1.2, !- Maximum Part Load Ratio + 1.0, !- Optimum Part Load Ratio + Central Boiler Inlet Node, !- Boiler Water Inlet Node Name + Central Boiler Outlet Node, !- Boiler Water Outlet Node Name + 100., !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated;!- Boiler Flow Mode + + SetpointManager:Scheduled, + Central Boiler Setpoint Manager, !- Name + Temperature, !- Control Variable + HW Loop Temp Schedule, !- Schedule Name + Central Boiler Outlet Node; !- Setpoint Node or NodeList Name + + Curve:Quadratic, + BoilerEfficiency, !- Name + 1.0, !- Coefficient1 Constant + 0.0, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + + Pump:VariableSpeed, + HW Circ Pump, !- Name + HW Supply Inlet Node, !- Inlet Node Name + HW Pump Outlet Node, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 179352, !- Design Pump Head {Pa} + autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + INTERMITTENT; !- Pump Control Type + + PlantLoop, + Chilled Water Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + CW Loop Operation, !- Plant Equipment Operation Scheme Name + CW Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 98, !- Maximum Loop Temperature {C} + 1, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + , !- Plant Loop Volume {m3} + CW Supply Inlet Node, !- Plant Side Inlet Node Name + CW Supply Outlet Node, !- Plant Side Outlet Node Name + Cooling Supply Side Branches, !- Plant Side Branch List Name + Cooling Supply Side Connectors, !- Plant Side Connector List Name + CW Demand Inlet Node, !- Demand Side Inlet Node Name + CW Demand Outlet Node, !- Demand Side Outlet Node Name + Cooling Demand Side Branches, !- Demand Side Branch List Name + Cooling Demand Side Connectors, !- Demand Side Connector List Name + SequentialLoad, !- Load Distribution Scheme + CW Avail List; !- Availability Manager List Name + + AvailabilityManagerAssignmentList, + CW Avail List, !- Name + AvailabilityManager:LowTemperatureTurnOff, !- Availability Manager 1 Object Type + CW Low Temp Limit; !- Availability Manager 1 Name + + AvailabilityManager:LowTemperatureTurnOff, + CW Low Temp Limit, !- Name + Outside Air Inlet Node 1,!- Sensor Node Name + 2.0, !- Temperature {C} + CoolingPumpAvailSched; !- Applicability Schedule Name + + SetpointManager:Scheduled, + Chilled Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + CW Loop Temp Schedule, !- Schedule Name + CW Supply Outlet Node; !- Setpoint Node or NodeList Name + + BranchList, + Cooling Supply Side Branches, !- Name + CW Pump Branch, !- Branch 1 Name + Central Chiller Branch, !- Branch 2 Name + Cooling Supply Bypass Branch, !- Branch 3 Name + Cooling Supply Outlet; !- Branch 4 Name + + BranchList, + Cooling Demand Side Branches, !- Name + Cooling Demand Inlet, !- Branch 1 Name + Cooling Coil Branch, !- Branch 2 Name + OA Cooling Coil Branch, !- Branch 3 Name + Cooling Demand Bypass Branch, !- Branch 4 Name + Cooling Demand Outlet; !- Branch 5 Name + + ConnectorList, + Cooling Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CW Loop Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CW Loop Mixer; !- Connector 2 Name + + ConnectorList, + Cooling Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CW Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CW Demand Mixer; !- Connector 2 Name + + Branch, + Cooling Demand Inlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Cooling Demand Side Inlet Pipe, !- Component 1 Name + CW Demand Inlet Node, !- Component 1 Inlet Node Name + CW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Cooling Demand Side Inlet Pipe, !- Name + CW Demand Inlet Node, !- Inlet Node Name + CW Demand Entrance Pipe Outlet Node; !- Outlet Node Name + + Branch, + Cooling Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + Main Cooling Coil 1, !- Component 1 Name + Main Cooling Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + Main Cooling Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + OA Cooling Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + OA Cooling Coil 1, !- Component 1 Name + OA Cooling Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + OA Cooling Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Cooling Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Cooling Demand Side Bypass, !- Component 1 Name + CW Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + CW Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Cooling Demand Side Bypass, !- Name + CW Demand Bypass Inlet Node, !- Inlet Node Name + CW Demand Bypass Outlet Node; !- Outlet Node Name + + Branch, + Cooling Demand Outlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CW Demand Side Outlet Pipe, !- Component 1 Name + CW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + CW Demand Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + CW Demand Side Outlet Pipe, !- Name + CW Demand Exit Pipe Inlet Node, !- Inlet Node Name + CW Demand Outlet Node; !- Outlet Node Name + + Branch, + Cooling Supply Outlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Supply Side Outlet Pipe, !- Component 1 Name + Supply Side Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + CW Supply Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Supply Side Outlet Pipe, !- Name + Supply Side Exit Pipe Inlet Node, !- Inlet Node Name + CW Supply Outlet Node; !- Outlet Node Name + + Branch, + CW Pump Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + CW Circ Pump, !- Component 1 Name + CW Supply Inlet Node, !- Component 1 Inlet Node Name + CW Pump Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Central Chiller Branch, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric, !- Component 1 Object Type + Central Chiller, !- Component 1 Name + Central Chiller Inlet Node, !- Component 1 Inlet Node Name + Central Chiller Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Cooling Supply Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Supply Side Bypass, !- Component 1 Name + CW Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + CW Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Supply Side Bypass, !- Name + CW Supply Bypass Inlet Node, !- Inlet Node Name + CW Supply Bypass Outlet Node; !- Outlet Node Name + + Connector:Splitter, + CW Loop Splitter, !- Name + CW Pump Branch, !- Inlet Branch Name + Central Chiller Branch, !- Outlet Branch 1 Name + Cooling Supply Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + CW Loop Mixer, !- Name + Cooling Supply Outlet, !- Outlet Branch Name + Central Chiller Branch, !- Inlet Branch 1 Name + Cooling Supply Bypass Branch; !- Inlet Branch 2 Name + + Connector:Splitter, + CW Demand Splitter, !- Name + Cooling Demand Inlet, !- Inlet Branch Name + Cooling Coil Branch, !- Outlet Branch 1 Name + OA Cooling Coil Branch, !- Outlet Branch 2 Name + Cooling Demand Bypass Branch; !- Outlet Branch 3 Name + + Connector:Mixer, + CW Demand Mixer, !- Name + Cooling Demand Outlet, !- Outlet Branch Name + Cooling Coil Branch, !- Inlet Branch 1 Name + OA Cooling Coil Branch, !- Inlet Branch 2 Name + Cooling Demand Bypass Branch; !- Inlet Branch 3 Name + + PlantEquipmentOperationSchemes, + CW Loop Operation, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + Central Chiller Only, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:CoolingLoad, + Central Chiller Only, !- Name + 0, !- Load Range 1 Lower Limit {W} + 900000, !- Load Range 1 Upper Limit {W} + Cooling Plant; !- Range 1 Equipment List Name + + PlantEquipmentList, + Cooling Plant, !- Name + Chiller:Electric, !- Equipment 1 Object Type + Central Chiller; !- Equipment 1 Name + + Chiller:Electric, + Central Chiller, !- Name + AirCooled, !- Condenser Type + autosize, !- Nominal Capacity {W} + 3.2, !- Nominal COP {W/W} + Central Chiller Inlet Node, !- Chilled Water Inlet Node Name + Central Chiller Outlet Node, !- Chilled Water Outlet Node Name + Central Chiller Condenser Inlet Node, !- Condenser Inlet Node Name + Central Chiller Condenser Outlet Node, !- Condenser Outlet Node Name + 0.0, !- Minimum Part Load Ratio + 1.0, !- Maximum Part Load Ratio + 0.65, !- Optimum Part Load Ratio + 35.0, !- Design Condenser Inlet Temperature {C} + 2.778, !- Temperature Rise Coefficient + 6.67, !- Design Chilled Water Outlet Temperature {C} + autosize, !- Design Chilled Water Flow Rate {m3/s} + autosize, !- Design Condenser Fluid Flow Rate {m3/s} + 0.9949, !- Coefficient 1 of Capacity Ratio Curve + -0.045954, !- Coefficient 2 of Capacity Ratio Curve + -0.0013543, !- Coefficient 3 of Capacity Ratio Curve + 2.333, !- Coefficient 1 of Power Ratio Curve + -1.975, !- Coefficient 2 of Power Ratio Curve + 0.6121, !- Coefficient 3 of Power Ratio Curve + 0.03303, !- Coefficient 1 of Full Load Ratio Curve + 0.6852, !- Coefficient 2 of Full Load Ratio Curve + 0.2818, !- Coefficient 3 of Full Load Ratio Curve + 5, !- Chilled Water Outlet Temperature Lower Limit {C} + LeavingSetpointModulated;!- Chiller Flow Mode + + SetpointManager:Scheduled, + Central Chiller Setpoint Manager, !- Name + Temperature, !- Control Variable + CW Loop Temp Schedule, !- Schedule Name + Central Chiller Outlet Node; !- Setpoint Node or NodeList Name + + OutdoorAir:Node, + Central Chiller Condenser Inlet Node, !- Name + -1.0; !- Height Above Ground {m} + + Pump:VariableSpeed, + CW Circ Pump, !- Name + CW Supply Inlet Node, !- Inlet Node Name + CW Pump Outlet Node, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 179352, !- Design Pump Head {Pa} + autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + INTERMITTENT, !- Pump Control Type + CoolingPumpAvailSched; !- Pump Flow Rate Schedule Name + + Output:Variable,*,Site Outdoor Air Drybulb Temperature,hourly; + + Output:Variable,*,Zone Air Temperature,hourly; + + Output:Variable,*,Zone Mean Air Dewpoint Temperature,hourly; + + Output:Variable,*,Zone Air System Sensible Cooling Rate,hourly; + + Output:Variable,*,Zone Air System Sensible Heating Rate,hourly; + + Output:Variable,OA Mixing Box 1 Inlet Node,System Node Temperature,hourly; + + Output:Variable,OA Mixing Box 1 Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,OA Mixing Box 1 Inlet Node,System Node Setpoint Temperature,hourly; + + Output:Variable,OA Mixing Box 1 Inlet Node,System Node Humidity Ratio,hourly; + + Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Temperature,hourly; + + Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Setpoint Temperature,hourly; + + Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Humidity Ratio,hourly; + + Output:Variable,Mixed Air Node 1,System Node Temperature,hourly; + + Output:Variable,Mixed Air Node 1,System Node Humidity Ratio,hourly; + + Output:Variable,Mixed Air Node 1,System Node Dewpoint Temperature,hourly; + + Output:Variable,VAV Sys 1 Outlet Node,System Node Temperature,hourly; + + Output:Variable,VAV Sys 1 Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,VAV Sys 1 Outlet Node,System Node Humidity Ratio,hourly; + + Output:Variable,VAV Sys 1 Outlet Node,System Node Setpoint Temperature,hourly; + + Output:Variable,OA Cooling Coil 1 Water Inlet Node,System Node Temperature,hourly; + + Output:Variable,OA Cooling Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Main Cooling Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,OA Heating Coil 1 Water Inlet Node,System Node Temperature,hourly; + + Output:Variable,OA Heating Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Main Heating Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,*,Heating Coil Heating Rate,hourly; + + Output:Variable,*,Cooling Coil Total Cooling Rate,hourly; + + Output:Variable,*,Cooling Coil Sensible Cooling Rate,hourly; + + Output:Variable,*,Plant Supply Side Cooling Demand Rate,hourly; + + Output:Variable,*,Plant Supply Side Heating Demand Rate,hourly; + + Output:Variable,*,Boiler Gas Rate,hourly; + + Output:Variable,*,Boiler Heating Rate,hourly; + + Output:Variable,*,Chiller Electric Power,hourly; + + Output:Variable,*,Chiller Evaporator Cooling Rate,hourly; + + Output:Variable,*,Chiller Evaporator Inlet Temperature,hourly; + + Output:Variable,*,Chiller Evaporator Outlet Temperature,hourly; + + Output:Variable,*,Chiller Evaporator Mass Flow Rate,hourly; + + Output:Variable,*,Chiller Condenser Heat Transfer Rate,hourly; + + Output:Variable,*,Pump Mass Flow Rate,hourly; + + Output:Variable,*,Pump Outlet Temperature,hourly; + + Output:VariableDictionary,IDF; + + Output:Meter:MeterFileOnly,Electricity:Facility,monthly; + + Output:Meter:MeterFileOnly,Electricity:Building,monthly; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly; + + Output:Meter:MeterFileOnly,Electricity:HVAC,monthly; + + Output:Meter:MeterFileOnly,Electricity:Plant,monthly; + + Output:Meter:MeterFileOnly,Gas:Facility,monthly; + + Output:Meter:MeterFileOnly,Gas:Plant,monthly; + + Output:Meter:MeterFileOnly,Electricity:Facility,runperiod; + + Output:Meter:MeterFileOnly,Electricity:Building,runperiod; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,runperiod; + + Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; + + Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; + + Output:Meter:MeterFileOnly,Gas:Facility,runperiod; + + Output:Meter:MeterFileOnly,Gas:Plant,runperiod; + + Output:Meter:MeterFileOnly,MyGeneralLights,monthly; + + Output:Meter:MeterFileOnly,MyGeneralLights,runperiod; + + Output:Meter:MeterFileOnly,MyBuildingElectric,monthly; + + Output:Meter:MeterFileOnly,MyBuildingElectric,runperiod; + + Output:Meter:MeterFileOnly,MyBuildingOther,monthly; + + Output:Meter:MeterFileOnly,MyBuildingOther,runperiod; + +! The following custom meters are set up to illustrate the capabilities +! of custom meters. +! Custom Meter "MyGeneralLights" duplicates the InteriorLights:Electricity meter. +! Custom Meter "MyBuildingElectric" duplicates the Electricity:Building meter (by specifying that meter). +! Custom Meter (Decrement) "MyBuildingOther" uses Electricity:Building as its source meter +! and subtracts out the values for MyGeneralLights (aka InteriorLights:Electricity). The +! resultant value for MyBuildingOther should be equal to the value for the meters +! Electricity:Building - InteriorLights:Electricity (aka MyGeneralLights) + + Meter:Custom, + MyGeneralLights, !- Name + Electricity, !- Fuel Type + SPACE1-1 Lights 1, !- Key Name 1 + Lights Electric Energy, !- Output Variable or Meter Name 1 + SPACE2-1 Lights 1, !- Key Name 2 + Lights Electric Energy, !- Output Variable or Meter Name 2 + SPACE3-1 Lights 1, !- Key Name 3 + Lights Electric Energy, !- Output Variable or Meter Name 3 + SPACE4-1 Lights 1, !- Key Name 4 + Lights Electric Energy, !- Output Variable or Meter Name 4 + SPACE5-1 Lights 1, !- Key Name 5 + Lights Electric Energy; !- Output Variable or Meter Name 5 + + Meter:Custom, + MyBuildingElectric, !- Name + Electricity, !- Fuel Type + , !- Key Name 1 + Electricity:Building; !- Output Variable or Meter Name 1 + + Meter:CustomDecrement, + MyBuildingOther, !- Name + Electricity, !- Fuel Type + Electricity:Building, !- Source Meter Name + , !- Key Name 1 + MyGeneralLights; !- Output Variable or Meter Name 1 + + Output:Surfaces:Drawing,VRML; + + OutputControl:Table:Style, + HTML; !- Column Separator + + Output:Table:SummaryReports, + AllSummary, !- Report 1 Name + ZoneComponentLoadSummary;!- Report 2 Name + + Output:Surfaces:List,Details; + Output:Surfaces:List,ViewFactorInfo; + Output:Surfaces:List,ViewFactorInfo,idf; + + Output:Variable,*,Surface Outside Face Temperature,Hourly; + + Output:Variable,*,Surface Inside Face Temperature,Hourly; + + Output:Variable,*,Surface Inside Face Solar Radiation Heat Gain Energy,hourly; + + Output:Variable,*,Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy,hourly; + + Meter:Custom, + Total Building Inside Face Solar Radiation Heat Gain Energy, !- Name + Generic, !- Fuel Type + WALL-1PF, !- Key Name 1 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 1 + WALL-1PR, !- Key Name 2 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 2 + WALL-1PB, !- Key Name 3 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 3 + WALL-1PL, !- Key Name 4 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 4 + C1-1P, !- Key Name 5 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 5 + C2-1P, !- Key Name 6 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 6 + C3-1P, !- Key Name 7 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 7 + C4-1P, !- Key Name 8 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 8 + C5-1P, !- Key Name 9 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 9 + TOP-1, !- Key Name 10 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 10 + FRONT-1, !- Key Name 11 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 11 + SB12, !- Key Name 14 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 14 + F1-1, !- Key Name 15 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 15 + C1-1, !- Key Name 16 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 16 + RIGHT-1, !- Key Name 17 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 17 + SB21, !- Key Name 20 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 20 + SB23, !- Key Name 20 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 20 + SB25, !- Key Name 20 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 20 + F2-1, !- Key Name 21 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 21 + C2-1, !- Key Name 22 + Surface Inside Face Solar Radiation Heat Gain Energy, !- Output Variable or Meter Name 22 + BACK-1, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + SB35, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + F3-1, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + C3-1, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + LEFT-1, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + SB32, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + SB34, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + SB35, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + F4-1, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + C4-1, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + SB43, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + SB52, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + SB53, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + F5-1, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy, !- Extended Field + C5-1, !- Extended Field + Surface Inside Face Solar Radiation Heat Gain Energy; !- Extended Field + + Meter:Custom, + Total Building Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Name + Generic, !- Fuel Type + WALL-1PF, !- Key Name 1 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 1 + WALL-1PR, !- Key Name 2 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 2 + WALL-1PB, !- Key Name 3 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 3 + WALL-1PL, !- Key Name 4 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 4 + C1-1P, !- Key Name 5 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 5 + C2-1P, !- Key Name 6 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 6 + C3-1P, !- Key Name 7 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 7 + C4-1P, !- Key Name 8 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 8 + C5-1P, !- Key Name 9 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 9 + TOP-1, !- Key Name 10 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 10 + FRONT-1, !- Key Name 11 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 11 + WF-1, !- Key Name 12 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 12 + DF-1, !- Key Name 13 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 13 + SB12, !- Key Name 16 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 16 + F1-1, !- Key Name 17 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 17 + C1-1, !- Key Name 18 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 18 + RIGHT-1, !- Key Name 19 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 19 + WR-1, !- Key Name 20 + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Output Variable or Meter Name 20 + SB21, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + SB23, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + SB25, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + F2-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + C2-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + BACK-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + WB-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + DB-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + SB35, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + F3-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + C3-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + LEFT-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + WL-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + SB32, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + SB34, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + SB35, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + F4-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + C4-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + SB43, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + SB52, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + SB53, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + F5-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy, !- Extended Field + C5-1, !- Extended Field + Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy; !- Extended Field + + Output:Meter,Total Building Inside Face Solar Radiation Heat Gain Energy,hourly; + + OUtput:Meter,Total Building Inside Face Net Surface Thermal Radiation Heat Gain Energy,hourly; + + Output:Table:Monthly, + Building Gain Totals, !- Name + 2, !- Digits After Decimal + TOTAL BUILDING INSIDE FACE SOLAR RADIATION HEAT GAIN ENERGY, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + TOTAL BUILDING INSIDE FACE NET SURFACE THERMAL RADIATION HEAT GAIN ENERGY, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Diagnostics, + DisplayExtraWarnings; !- Key 1 + diff --git a/testfiles/AirflowNetwork_Simple_SmallOffice.idf b/testfiles/AirflowNetwork_Simple_SmallOffice.idf index d52be01320a..7b0060e1ba6 100644 --- a/testfiles/AirflowNetwork_Simple_SmallOffice.idf +++ b/testfiles/AirflowNetwork_Simple_SmallOffice.idf @@ -1456,9 +1456,6 @@ Schedule:Compact, INF-SCHED, !- Name Any Number, !- Schedule Type Limits Name - Through: 12/31, !- Field 1 - For: AllDays, !- Field 2 - Until: 24:00,0.0, !- Field 3 Through: 9/30, !- Field 5 For: WeekDays SummerDesignDay, !- Field 6 Until: 6:00,1.0, !- Field 7 @@ -1467,7 +1464,10 @@ For: AllOtherDays, !- Field 13 Until: 6:00,1.0, !- Field 14 Until: 13:00,0.0, !- Field 16 - Until: 24:00,1.0; !- Field 18 + Until: 24:00,1.0, !- Field 18 + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 People, West Zone People, !- Name diff --git a/testfiles/CMakeLists.txt b/testfiles/CMakeLists.txt index 7be2f358dbc..1f4191df0a5 100644 --- a/testfiles/CMakeLists.txt +++ b/testfiles/CMakeLists.txt @@ -40,6 +40,7 @@ ADD_SIMULATION_TEST(IDF_FILE 5ZoneAirCooledDemandLimiting_FixedRateVentilation.i ADD_SIMULATION_TEST(IDF_FILE 5ZoneAirCooledDemandLimiting_ReductionRatioVentilation.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE 5ZoneAirCooledWithCoupledInGradeSlab.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE 5ZoneAirCooledWithDOASAirLoop.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) +ADD_SIMULATION_TEST(IDF_FILE 5ZoneAirCooled_AirBoundaries.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE 5ZoneAirCooled_UniformLoading.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE 5ZoneAirCooled_VRPSizing.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE 5ZoneAirCooled_VRPSizing_MaxZd.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) @@ -311,6 +312,7 @@ ADD_SIMULATION_TEST(IDF_FILE HeatPumpVSAS.idf EPW_FILE USA_IL_Chicago-OHare.Intl ADD_SIMULATION_TEST(IDF_FILE HeatPumpWaterHeater.idf EPW_FILE USA_FL_Miami.Intl.AP.722020_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE HeatPumpWaterHeaterStratified.idf EPW_FILE USA_FL_Miami.Intl.AP.722020_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE HeatPumpWaterToAir.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) +ADD_SIMULATION_TEST(IDF_FILE HeatPumpWaterToAirEquationFit_WaterHeatingDesuperheater_StratifiedTank.idf EPW_FILE USA_FL_Miami.Intl.AP.722020_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE HeatPumpWaterToAirEquationFit.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE HeatPumpWaterToAirWithAntifreezeAndLatentModel.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE HeatPumpWaterToAirWithAntifreezeAndLatentModel2.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) @@ -457,6 +459,7 @@ ADD_SIMULATION_TEST(IDF_FILE ShopWithPVandStorage.idf EPW_FILE USA_OK_Oklahoma.C ADD_SIMULATION_TEST(IDF_FILE ShopWithSimplePVT.idf EPW_FILE USA_OK_Oklahoma.City-Will.Rogers.World.AP.723530_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE SingleFamilyHouse_TwoSpeed_ZoneAirBalance.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE SingleFamilyHouse_TwoSpeed_CutoutTemperature.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) +ADD_SIMULATION_TEST(IDF_FILE SmallOffice_CentralDOAS.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE SmOffPSZ-MultiModeDX.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE SmOffPSZ.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE SmOffPSZ_OnOffStagedControl.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) @@ -571,6 +574,7 @@ ADD_SIMULATION_TEST(IDF_FILE ZoneCoupledKivaSlab.idf EPW_FILE USA_IL_Chicago-OHa ADD_SIMULATION_TEST(IDF_FILE ZoneCoupledKivaBasement.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE ZoneCoupledKivaWalkoutBasement.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE ZoneCoupledKivaRefBldgMediumOffice.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) +ADD_SIMULATION_TEST(IDF_FILE ZoneCoupledKivaRefBldgMediumOfficeNoClg.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE ZoneCoupledKivaBasementAdaptiveConvection.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE ZoneCoupledKivaConvection.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE ZoneCoupledKivaConvectionAdaptiveSmallOffice.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) @@ -617,6 +621,7 @@ ADD_SIMULATION_TEST(IDF_FILE WCE_Diffuse_Shade.idf EPW_FILE USA_IL_Chicago-OHare ADD_SIMULATION_TEST(IDF_FILE WCE_DoubleClear_BSDF.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE WCE_Interior_VB_-45_deg.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) ADD_SIMULATION_TEST(IDF_FILE _5ZoneAirCooled_annual.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw ANNUAL_SIMULATION) +ADD_SIMULATION_TEST(IDF_FILE _5ZoneAirCooled_LeapYear_annual.idf EPW_FILE MadeUpLeapYear.epw ANNUAL_SIMULATION) # ASHRAE 90.1-2016 "Prototype Buildings" ADD_SIMULATION_TEST(IDF_FILE ASHRAE9012016_ApartmentHighRise_Denver.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) diff --git a/testfiles/EMSTestMathAndKill.idf b/testfiles/EMSTestMathAndKill.idf index 44d10fdcfd0..6fe86f1141e 100644 --- a/testfiles/EMSTestMathAndKill.idf +++ b/testfiles/EMSTestMathAndKill.idf @@ -6340,21 +6340,38 @@ Curve_Quadratic_Ptr, !- Name HPACCOOLPLFFPLR_curve; !- Curve or Table Object Name - Table:OneIndependentVariable, + + Table:IndependentVariable, + HPACCOOLPLFFPLR_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACCOOLPLFFPLR_IndependentVariableList, !- Name + HPACCOOLPLFFPLR_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACCOOLPLFFPLR_table, !- Name - Quadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.0, !- Maximum Value of X - 0.75, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACCOOLPLFFPLR_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.75, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.75, !- Output Value #1 - 1.0, !- X Value #2 - 1.0; !- Output Value #2 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.75, !- Output Value 1 + 1.0; !- Extended Field EnergyManagementSystem:CurveOrTableIndexVariable, Table_Quadratic_Ptr, !- Name diff --git a/testfiles/FourPipeBeamLargeOffice.idf b/testfiles/FourPipeBeamLargeOffice.idf index 372550b41aa..0b0d1a92564 100644 --- a/testfiles/FourPipeBeamLargeOffice.idf +++ b/testfiles/FourPipeBeamLargeOffice.idf @@ -5081,69 +5081,117 @@ 0.0, !- Minimum Curve Output 1.5; !- Maximum Curve Output - Table:OneIndependentVariable, + Table:IndependentVariable, + CoolCapModFuncOfSAFlow_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.714, !- Minimum Value + 1.2857, !- Maximum Value + , !- Normalization Reference Value + dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.714286, !- Value 1 + 1.0, !- Extended Field + 1.2857; !- Extended Field + + Table:IndependentVariableList, + CoolCapModFuncOfSAFlow_IndependentVariableList, !- Name + CoolCapModFuncOfSAFlow_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, CoolCapModFuncOfSAFlow, !- Name - quadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - 0.714, !- Minimum Value of X - 1.2857, !- Maximum Value of X - 0.8234, !- Minimum Table Output - 1.1256, !- Maximum Table Output - dimensionless, !- Input Unit Type for X + CoolCapModFuncOfSAFlow_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.8234, !- Minimum Output + 1.1256, !- Maximum Output dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.714286, !- X Value #1 - 0.823403, !- Output Value #1 - 1.0, !- X Value #2 - 1.0, !- Output Value #2 - 1.2857, !- X Value #3 - 1.1256; !- Output Value #3 - - Table:OneIndependentVariable, + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.823403, !- Output Value 1 + 1.0, !- Extended Field + 1.1256; !- Extended Field + + Table:IndependentVariable, + CapModFuncOfWaterFlow_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.0, !- Minimum Value + 1.333333, !- Maximum Value + , !- Normalization Reference Value + dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.05, !- Extended Field + 0.33333, !- Extended Field + 0.5, !- Extended Field + 0.666667, !- Extended Field + 0.833333, !- Extended Field + 1.0, !- Extended Field + 1.333333; !- Extended Field + + Table:IndependentVariableList, + CapModFuncOfWaterFlow_IndependentVariableList, !- Name + CapModFuncOfWaterFlow_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, CapModFuncOfWaterFlow, !- Name - quadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.333333, !- Maximum Value of X - 0.0, !- Minimum Table Output - 1.04, !- Maximum Table Output - dimensionless, !- Input Unit Type for X + CapModFuncOfWaterFlow_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.04, !- Maximum Output dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.0, !- Output Value #1 - 0.05, !- X Value #2 - 0.001, !- Output Value #2 - 0.33333, !- X Value #3 - 0.71, !- Output Value #3 - 0.5, !- X Value #4 - 0.85, !- Output Value #4 - 0.666667, !- X Value #5 - 0.92, !- Output Value #5 - 0.833333, !- X Value #6 - 0.97, !- Output Value #6 - 1.0, !- X Value #7 - 1.0, !- Output Value #7 - 1.333333, !- - 1.04; !- - - Table:OneIndependentVariable, + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Output Value 1 + 0.001, !- Extended Field + 0.71, !- Extended Field + 0.85, !- Extended Field + 0.92, !- Extended Field + 0.97, !- Extended Field + 1.0, !- Extended Field + 1.04; !- Extended Field + + Table:IndependentVariable, + HeatCapModFuncOfSAFlow_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.714, !- Minimum Value + 1.2857, !- Maximum Value + , !- Normalization Reference Value + dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.714286, !- Value 1 + 1.0, !- Extended Field + 1.2857; !- Extended Field + + Table:IndependentVariableList, + HeatCapModFuncOfSAFlow_IndependentVariableList, !- Name + HeatCapModFuncOfSAFlow_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HeatCapModFuncOfSAFlow, !- Name - quadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - 0.714, !- Minimum Value of X - 1.2857, !- Maximum Value of X - 0.8554, !- Minimum Table Output - 1.0778, !- Maximum Table Output - dimensionless, !- Input Unit Type for X + HeatCapModFuncOfSAFlow_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.8554, !- Minimum Output + 1.0778, !- Maximum Output dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.714286, !- X Value #1 - 0.8554, !- Output Value #1 - 1.0, !- X Value #2 - 1.0, !- Output Value #2 - 1.2857, !- X Value #3 - 1.0778; !- Output Value #3 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.8554, !- Output Value 1 + 1.0, !- Extended Field + 1.0778; !- Extended Field ZoneHVAC:EquipmentList, Basement Equipment, !- Name diff --git a/testfiles/FurnaceWithDXSystem_CoolingHXAssisted.idf b/testfiles/FurnaceWithDXSystem_CoolingHXAssisted.idf index 864c6d1f76f..29a46012bb6 100644 --- a/testfiles/FurnaceWithDXSystem_CoolingHXAssisted.idf +++ b/testfiles/FurnaceWithDXSystem_CoolingHXAssisted.idf @@ -949,9 +949,6 @@ Schedule:Compact, INF-SCHED, !- Name Any Number, !- Schedule Type Limits Name - Through: 12/31, !- Field 1 - For: AllDays, !- Field 2 - Until: 24:00,0.0, !- Field 3 Through: 9/30, !- Field 5 For: WeekDays SummerDesignDay, !- Field 6 Until: 6:00,1.0, !- Field 7 @@ -960,7 +957,10 @@ For: AllOtherDays, !- Field 13 Until: 6:00,1.0, !- Field 14 Until: 13:00,0.0, !- Field 16 - Until: 24:00,1.0; !- Field 18 + Until: 24:00,1.0, !- Field 18 + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 Schedule:Compact, Seasonal Relative Humidity Sch, !- Name diff --git a/testfiles/HeatPumpWaterToAirEquationFit_WaterHeatingDesuperheater_StratifiedTank.idf b/testfiles/HeatPumpWaterToAirEquationFit_WaterHeatingDesuperheater_StratifiedTank.idf new file mode 100644 index 00000000000..ecaec41def0 --- /dev/null +++ b/testfiles/HeatPumpWaterToAirEquationFit_WaterHeatingDesuperheater_StratifiedTank.idf @@ -0,0 +1,3988 @@ +! HeatPumpWaterToAirEquationFit_WaterHeatingDesuperheater_StratifiedTank.idf +! Basic file description: 1 story building divided into 4 exterior and one interior conditioned zones and return plenum. +! +! Highlights: Examples ground source heat pumps serving a total of 5 zones. These heat pumps are modeled +! modeled using the water to air heat pump 'equation fit' model The heat pumps are attached to +! a single water loop with a vertical ground loop heat exchanger.Desuperheat from water to air cooling +! coil used to augment water heater. File derived from HeatPumpWaterToAirEquationFit.idf +! +! Simulation Location/Run: Miami Intl Ap FL USA WMO=722020, 2 design days, 2 run periods. +! Run Control executes the design days +! +! Location: Miami, FL +! +! Design Days: Miami Intl Ap FL USA Annual Heating 99.6%, MaxDB=8.7°C +! Miami Intl Ap FL USA Annual Cooling (DB=>MWB) .4%, MaxDB=33.2°C MWB=25.3°C +! +! Run Period (Weather File): Winter 1/14, Summer 7/7 +! +! Run Control: Zone sizing with weather file run control +! +! Building: Single floor rectangular building 100 ft x 50 ft. 5 zones - 4 exterior, 1 interior, zone height 8 feet. +! Exterior zone depth is 12 feet. There is a 2 foot high return plenum: the overall building height is +! 10 feet. There are windows on all 4 facades; the south and north facades have glass doors. +! The south facing glass is shaded by overhangs. The walls are woodshingle over plywood, R11 insulation, +! and gypboard. The roof is a gravel built up roof with R-3 mineral board insulation and plywood sheathing. +! The windows are double pane 6mm clear with 6mm air gap. The window to wall ratio is approximately 0.29. +! The south wall and door have overhangs. +! +! The building is oriented 30 degrees east of north. +! +! Floor Area: 463.6 m2 (5000 ft2) +! Number of Floors: 1 +! +! Zone Description Details: +! +! (0,15.2,0) (30.5,15.2,0) +! _____ ________ ____ +! |\ *** **************** /| +! | \ Zone 3 / | +! | \ (26.8,11.6,0) / | +! * \_____________________________/ * +! * Z |(3.7,11.6,0) | Z * +! * o | | o * +! * n | Zone 5 | n * +! * e | (26.8,3.7,0)| e * +! * |___________________________| * +! * 4 / (3.7,3.7,0) \ 2 * +! | / Zone 1 \ | +! | / \ | +! |/___******************___***________\| +! | Overhang | | +! |_______________________| | window/door = * +! |___| +! +! (0,0,0) (30.5,0,0) +! +! Internal gains description: lighting is 1.5 watts/ft2, office equip is 1.0 watts/ft2. There is 1 occupant +! per 100 ft2 of floor area. The infiltration is constant in winter months. +! +! Interzone Surfaces: 6 interzone surfaces (see diagram) +! Internal Mass: None +! People: 50 +! Lights: 7500 W +! Windows: 4 ea.: 1) Double pane clear, 3mm glass, 13mm air gap +! 2) Double pane clear, 3mm glass, 13mm argon gap +! 3) Double pane clear, 6mm glass, 6mm air gap +! 4) Double pane lowE, 6mm lowE glass outside, 6mm air gap, 6mm clear glass +! +! Doors: 2 ea.: Single pane grey, 3mm glass +! +! Detached Shading: None +! Daylight: None +! Natural Ventilation: None +! Compact Schedules: Yes +! +! HVAC: Water to air Heat pump using a single air loop serving 3 zones. Heat pump configured with +! a blow through fan, heat pump defrost is timed using a resistive heating element. +! Heating set point during winter months is 20 C during occupied hours, +! 15 C set-back otherwise. Cooling set point at 24 C during occupied hours only. +! Cooling coil off all winter. +! +! Zonal Equipment: DIRECT AIR +! Central Air Handling Equipment: Yes +! System Equipment Autosize: No (condenser loop volumes are autosized) +! Purchased Cooling: No +! Purchased Heating: No +! Coils: Water-source direct expansion heat pump +! Pumps: Pump:ConstantSpeed +! Boilers: None +! Chillers: None +! Towers: None +! Heat Pumps: Water to air heat pump for both heating and cooling. +! GLHE: Rectangular bore field with 120 bore holes each 76.2 mt deep. +! +! Results: +! Standard Reports: None +! Timestep or Hourly Variables: hourly +! Time bins Report: None +! HTML Report: All Summary +! Environmental Emissions: None +! Utility Tariffs: None + + Version,9.2; + + Building, + Building, !- Name + 30., !- North Axis {deg} + City, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.4, !- Temperature Convergence Tolerance Value {deltaC} + FullExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + + Timestep,4; + + SurfaceConvectionAlgorithm:Inside,Simple; + + SurfaceConvectionAlgorithm:Outside,SimpleCombined; + + HeatBalanceAlgorithm,ConductionTransferFunction; + + GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + CounterClockWise, !- Vertex Entry Direction + relative; !- Coordinate System + + ScheduleTypeLimits, + Any Number; !- Name + + ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + CONTINUOUS, !- Numeric Type + Temperature; !- Unit Type + + ScheduleTypeLimits, + Control Type, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + FlowRate, !- Name + 0.0, !- Lower Limit Value + 10, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + RunPeriod, + Run Period 1, !- Name + 1, !- Begin Month + 14, !- Begin Day of Month + , !- Begin Year + 1, !- End Month + 14, !- End Day of Month + , !- End Year + Tuesday, !- Day of Week for Start Day + Yes, !- Use Weather File Holidays and Special Days + Yes, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + + RunPeriod, + Run Period 2, !- Name + 7, !- Begin Month + 7, !- Begin Day of Month + , !- Begin Year + 7, !- End Month + 7, !- End Day of Month + , !- End Year + Tuesday, !- Day of Week for Start Day + Yes, !- Use Weather File Holidays and Special Days + Yes, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + + SimulationControl, + No, !- Do Zone Sizing Calculation + No, !- Do System Sizing Calculation + No, !- Do Plant Sizing Calculation + Yes, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods + + ! Data Source=ASHRAE 2009 Annual Design Conditions + + Site:Location, + Miami Intl Ap FL USA WMO=722020, !- Name + 25.82, !- Latitude {deg} + -80.30, !- Longitude {deg} + -5.00, !- Time Zone {hr} + 11.00; !- Elevation {m} + + ! Miami Intl Ap FL USA Annual Heating Design Conditions Wind Speed=3.8m/s Wind Dir=340 + ! Coldest Month=January + ! Miami Intl Ap FL USA Annual Heating 99.6%, MaxDB=8.7°C + + RunPeriodControl:DaylightSavingTime, + 1st Sunday in April, !- Start Date + Last Sunday in October; !- End Date + + SizingPeriod:DesignDay, + Miami Intl Ap Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + 8.7, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 8.7, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101217., !- Barometric Pressure {Pa} + 3.8, !- Wind Speed {m/s} + 340, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 0.00; !- Sky Clearness + + ! Miami Intl Ap Annual Cooling Design Conditions Wind Speed=4.5m/s Wind Dir=140 + ! Hottest Month=July + ! Miami Intl Ap FL USA Annual Cooling (DB=>MWB) .4%, MaxDB=33.2°C MWB=25.3°C + + SizingPeriod:DesignDay, + Miami Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 33.2, !- Maximum Dry-Bulb Temperature {C} + 6.7, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 25.3, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101217., !- Barometric Pressure {Pa} + 4.5, !- Wind Speed {m/s} + 140, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.00; !- Sky Clearness + + Site:GroundTemperature:BuildingSurface,20.03,20.03,20.13,20.30,20.43,20.52,20.62,20.77,20.78,20.55,20.44,20.20; + + Site:GroundTemperature:Deep,16.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5,16.5; + + Material, + WD10, !- Name + MediumSmooth, !- Roughness + 0.667, !- Thickness {m} + 0.115, !- Conductivity {W/m-K} + 513, !- Density {kg/m3} + 1381, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.78, !- Solar Absorptance + 0.78; !- Visible Absorptance + + Material, + RG01, !- Name + Rough, !- Roughness + 1.2700000E-02, !- Thickness {m} + 1.442000, !- Conductivity {W/m-K} + 881.0000, !- Density {kg/m3} + 1674.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.6500000, !- Solar Absorptance + 0.6500000; !- Visible Absorptance + + Material, + BR01, !- Name + VeryRough, !- Roughness + 9.4999997E-03, !- Thickness {m} + 0.1620000, !- Conductivity {W/m-K} + 1121.000, !- Density {kg/m3} + 1464.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.7000000; !- Visible Absorptance + + Material, + IN46, !- Name + VeryRough, !- Roughness + 7.6200001E-02, !- Thickness {m} + 2.3000000E-02, !- Conductivity {W/m-K} + 24.00000, !- Density {kg/m3} + 1590.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.5000000, !- Solar Absorptance + 0.5000000; !- Visible Absorptance + + Material, + WD01, !- Name + MediumSmooth, !- Roughness + 1.9099999E-02, !- Thickness {m} + 0.1150000, !- Conductivity {W/m-K} + 513.0000, !- Density {kg/m3} + 1381.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7800000, !- Solar Absorptance + 0.7800000; !- Visible Absorptance + + Material, + PW03, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 0.1150000, !- Conductivity {W/m-K} + 545.0000, !- Density {kg/m3} + 1213.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7800000, !- Solar Absorptance + 0.7800000; !- Visible Absorptance + + Material, + IN02, !- Name + Rough, !- Roughness + 9.0099998E-02, !- Thickness {m} + 4.3000001E-02, !- Conductivity {W/m-K} + 10.00000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + GP01, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 0.1600000, !- Conductivity {W/m-K} + 801.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + GP02, !- Name + MediumSmooth, !- Roughness + 1.5900001E-02, !- Thickness {m} + 0.1600000, !- Conductivity {W/m-K} + 801.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + CC03, !- Name + MediumRough, !- Roughness + 0.1016000, !- Thickness {m} + 1.310000, !- Conductivity {W/m-K} + 2243.000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.6500000, !- Solar Absorptance + 0.6500000; !- Visible Absorptance + + Material:NoMass, + CP01, !- Name + Rough, !- Roughness + 0.3670000, !- Thermal Resistance {m2-K/W} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material:NoMass, + MAT-SB-U, !- Name + Rough, !- Roughness + 0.117406666, !- Thermal Resistance {m2-K/W} + 0.65, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + + Material:NoMass, + MAT-CLNG-1, !- Name + Rough, !- Roughness + 0.652259290, !- Thermal Resistance {m2-K/W} + 0.65, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + + Material:NoMass, + MAT-FLOOR-1, !- Name + Rough, !- Roughness + 3.522199631, !- Thermal Resistance {m2-K/W} + 0.65, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + + Material:AirGap, + AL21, !- Name + 0.1570000; !- Thermal Resistance {m2-K/W} + + Material:AirGap, + AL23, !- Name + 0.1530000; !- Thermal Resistance {m2-K/W} + + Construction, + ROOF-1, !- Name + RG01, !- Outside Layer + BR01, !- Layer 2 + IN46, !- Layer 3 + WD01; !- Layer 4 + + Construction, + WALL-1, !- Name + WD01, !- Outside Layer + PW03, !- Layer 2 + IN02, !- Layer 3 + GP01; !- Layer 4 + + Construction, + CLNG-1, !- Name + MAT-CLNG-1; !- Outside Layer + + Construction, + FLOOR-SLAB-1, !- Name + CC03; !- Outside Layer + + Construction, + INT-WALL-1, !- Name + GP02, !- Outside Layer + AL21, !- Layer 2 + GP02; !- Layer 3 + + WindowMaterial:Gas, + AIR 6MM, !- Name + Air, !- Gas Type + .0063; !- Thickness {m} + + WindowMaterial:Gas, + AIR 13MM, !- Name + Air, !- Gas Type + .0127; !- Thickness {m} + + WindowMaterial:Gas, + ARGON 13MM, !- Name + Argon, !- Gas Type + .0127; !- Thickness {m} + + WindowMaterial:Glazing, + CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .003, !- Thickness {m} + .837, !- Solar Transmittance at Normal Incidence + .075, !- Front Side Solar Reflectance at Normal Incidence + .075, !- Back Side Solar Reflectance at Normal Incidence + .898, !- Visible Transmittance at Normal Incidence + .081, !- Front Side Visible Reflectance at Normal Incidence + .081, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .84, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + GREY 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .003, !- Thickness {m} + .626, !- Solar Transmittance at Normal Incidence + .061, !- Front Side Solar Reflectance at Normal Incidence + .061, !- Back Side Solar Reflectance at Normal Incidence + .611, !- Visible Transmittance at Normal Incidence + .061, !- Front Side Visible Reflectance at Normal Incidence + .061, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .84, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .775, !- Solar Transmittance at Normal Incidence + .071, !- Front Side Solar Reflectance at Normal Incidence + .071, !- Back Side Solar Reflectance at Normal Incidence + .881, !- Visible Transmittance at Normal Incidence + .080, !- Front Side Visible Reflectance at Normal Incidence + .080, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .84, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + LoE CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .600, !- Solar Transmittance at Normal Incidence + .170, !- Front Side Solar Reflectance at Normal Incidence + .220, !- Back Side Solar Reflectance at Normal Incidence + .840, !- Visible Transmittance at Normal Incidence + .055, !- Front Side Visible Reflectance at Normal Incidence + .078, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .10, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + Construction, + Dbl Clr 3mm/13mm Air, !- Name + CLEAR 3MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + + Construction, + Sgl Grey 3mm, !- Name + GREY 3MM; !- Outside Layer + + Schedule:Compact, + OCCUPY-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 9:00,0.0, !- Field 3 + Until: 12:00,1.0, !- Field 5 + Until: 13:00,0.8, !- Field 7 + Until: 14:00,0.4, !- Field 9 + Until: 15:00,0.8, !- Field 11 + Until: 17:00,1.0, !- Field 13 + Until: 24:00,0.0, !- Field 15 + For: AllOtherDays, !- Field 17 + Until: 24:00,0.0; !- Field 18 + + Schedule:Compact, + LIGHTS-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 9:00,0.05, !- Field 3 + Until: 10:00,0.9, !- Field 5 + Until: 11:00,0.95, !- Field 7 + Until: 12:00,1.0, !- Field 9 + Until: 13:00,0.95, !- Field 11 + Until: 14:00,0.8, !- Field 13 + Until: 15:00,0.9, !- Field 15 + Until: 17:00,1.0, !- Field 17 + Until: 24:00,0.05, !- Field 19 + For: AllOtherDays, !- Field 21 + Until: 24:00,0.05; !- Field 22 + + Schedule:Compact, + EQUIP-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 9:00,0.02, !- Field 3 + Until: 10:00,0.4, !- Field 5 + Until: 15:00,0.9, !- Field 7 + Until: 16:00,0.8, !- Field 9 + Until: 17:00,0.7, !- Field 11 + Until: 24:00,0.02, !- Field 13 + For: CustomDay1 CustomDay2, !- Field 15 + Until: 9:00,0.02, !- Field 16 + Until: 10:00,0.4, !- Field 18 + Until: 15:00,0.9, !- Field 20 + Until: 16:00,0.8, !- Field 22 + Until: 17:00,0.7, !- Field 24 + Until: 24:00,0.02, !- Field 26 + For: AllOtherDays, !- Field 28 + Until: 24:00,0.2; !- Field 29 + + Schedule:Compact, + INFIL-SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: Alldays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 10/31, !- Field 5 + For: Alldays, !- Field 6 + Until: 24:00,1.0, !- Field 7 + Through: 12/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00,1.0; !- Field 11 + + Schedule:Compact, + ActSchd, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Alldays, !- Field 2 + Until: 24:00,117.239997864; !- Field 3 + + Schedule:Compact, + ShadeTransSch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Alldays, !- Field 2 + Until: 24:00,0.0; !- Field 3 + + Zone, + PLENUM-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 0.609600067, !- Ceiling Height {m} + 283.2; !- Volume {m3} + + BuildingSurface:Detailed, + WALL-1PF, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,0.0,3.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 30.5,0.0,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WALL-1PR, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,0.0,3.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WALL-1PB, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 0.0,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WALL-1PL, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 0.0,0.0,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + TOP-1, !- Name + ROOF, !- Surface Type + ROOF-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.00000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,3.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,3.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C1-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C1-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C2-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C2-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C3-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C3-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C4-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C4-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C5-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C5-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE1-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 239.247360229; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE1-1 Infiltration, !- Name + SPACE1-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.167, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE1-1 People, !- Name + SPACE1-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 11, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE1-1 Lights, !- Name + SPACE1-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 1584, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE1-1 Elec Equipment, !- Name + SPACE1-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1056, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + FRONT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WF-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + FRONT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 3.0,0.0,2.1, !- X,Y,Z ==> Vertex 1 {m} + 3.0,0.0,0.9, !- X,Y,Z ==> Vertex 2 {m} + 16.8,0.0,0.9, !- X,Y,Z ==> Vertex 3 {m} + 16.8,0.0,2.1; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + DF-1, !- Name + GLASSDOOR, !- Surface Type + Sgl Grey 3mm, !- Construction Name + FRONT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.3,0.0,2.1, !- X,Y,Z ==> Vertex 1 {m} + 21.3,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 23.8,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 23.8,0.0,2.1; !- X,Y,Z ==> Vertex 4 {m} + + Shading:Zone:Detailed, + Main South Overhang, !- Name + FRONT-1, !- Base Surface Name + ShadeTransSch, !- Transmittance Schedule Name + 4, !- Number of Vertices + 0.0,-1.3,2.2, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.2, !- X,Y,Z ==> Vertex 2 {m} + 19.8,0.0,2.2, !- X,Y,Z ==> Vertex 3 {m} + 19.8,-1.3,2.2; !- X,Y,Z ==> Vertex 4 {m} + + Shading:Zone:Detailed, + South Door Overhang, !- Name + FRONT-1, !- Base Surface Name + ShadeTransSch, !- Transmittance Schedule Name + 4, !- Number of Vertices + 21.0,-2.0,2.6, !- X,Y,Z ==> Vertex 1 {m} + 21.0,0.0,2.6, !- X,Y,Z ==> Vertex 2 {m} + 24.1,0.0,2.6, !- X,Y,Z ==> Vertex 3 {m} + 24.1,-2.0,2.6; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C1-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + C1-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F1-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE1-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB12, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB21, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB14, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB41, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB15, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB51, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE2-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 103.311355591; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE2-1 Infiltration, !- Name + SPACE2-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + .0717, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE2-1 People, !- Name + SPACE2-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 5, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE2-1 Lights, !- Name + SPACE2-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 684, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE2-1 Elec Equipment, !- Name + SPACE2-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 456, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + RIGHT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WR-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + RIGHT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 30.5,3.8,2.1, !- X,Y,Z ==> Vertex 1 {m} + 30.5,3.8,0.9, !- X,Y,Z ==> Vertex 2 {m} + 30.5,11.4,0.9, !- X,Y,Z ==> Vertex 3 {m} + 30.5,11.4,2.1; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C2-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + C2-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F2-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE2-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB21, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB12, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB23, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB32, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB25, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB52, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE3-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 239.247360229; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE3-1 Infiltration, !- Name + SPACE3-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.167, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE3-1 People, !- Name + SPACE3-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 11, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE3-1 Lights, !- Name + SPACE3-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 1584, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE3-1 Elec Equipment, !- Name + SPACE3-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1056, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + BACK-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WB-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + BACK-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.4,15.2,2.1, !- X,Y,Z ==> Vertex 1 {m} + 27.4,15.2,0.9, !- X,Y,Z ==> Vertex 2 {m} + 13.7,15.2,0.9, !- X,Y,Z ==> Vertex 3 {m} + 13.7,15.2,2.1; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + DB-1, !- Name + GLASSDOOR, !- Surface Type + Sgl Grey 3mm, !- Construction Name + BACK-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 9.1,15.2,2.1, !- X,Y,Z ==> Vertex 1 {m} + 9.1,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 7.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 7.0,15.2,2.1; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C3-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + C3-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F3-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE3-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB32, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB23, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB34, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB43, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB35, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB53, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE4-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 103.311355591; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE4-1 Infiltration, !- Name + SPACE4-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + .0717, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE4-1 People, !- Name + SPACE4-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 5, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE4-1 Lights, !- Name + SPACE4-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 684, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE4-1 Elec Equipment, !- Name + SPACE4-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 456, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + LEFT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WL-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + LEFT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 0.0,11.4,2.1, !- X,Y,Z ==> Vertex 1 {m} + 0.0,11.4,0.9, !- X,Y,Z ==> Vertex 2 {m} + 0.0,3.8,0.9, !- X,Y,Z ==> Vertex 3 {m} + 0.0,3.8,2.1; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C4-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + C4-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F4-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE4-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB41, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB14, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB43, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB34, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB45, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB54, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE5-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 447.682556152; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE5-1 Infiltration, !- Name + SPACE5-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + .31089, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE5-1 People, !- Name + SPACE5-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 20, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE5-1 Lights, !- Name + SPACE5-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 2964, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE5-1 Elec Equipment, !- Name + SPACE5-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1976, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + C5-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + C5-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F5-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE5-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB51, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB15, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB52, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB25, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB53, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB35, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB54, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB45, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Sizing:Parameters, + 1.3, !- Heating Sizing Factor + 1.3, !- Cooling Sizing Factor + ; !- Timesteps in Averaging Window + + Sizing:Zone, + SPACE1-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE1-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE1-1, !- Name + flow/person, !- Outdoor Air Method + 0.00944, !- Outdoor Air Flow per Person {m3/s-person} + 0.0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE2-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE2-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE2-1, !- Name + flow/person, !- Outdoor Air Method + 0.00944, !- Outdoor Air Flow per Person {m3/s-person} + 0.0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE3-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE3-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE3-1, !- Name + flow/person, !- Outdoor Air Method + 0.00944, !- Outdoor Air Flow per Person {m3/s-person} + 0.0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE4-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE4-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE4-1, !- Name + flow/person, !- Outdoor Air Method + 0.00944, !- Outdoor Air Flow per Person {m3/s-person} + 0.0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE5-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE5-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE5-1, !- Name + flow/person, !- Outdoor Air Method + 0.00944, !- Outdoor Air Flow per Person {m3/s-person} + 0.0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Schedule:Compact, + On, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + FanAndCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 9/30, !- Field 5 + For: WeekDays summerdesignday winterdesignday, !- Field 6 + Until: 5:00,0.0, !- Field 7 + Until: 19:00,1.0, !- Field 9 + Until: 24:00,0.0, !- Field 11 + For: AllotherDays, !- Field 13 + Until: 24:00,0.0, !- Field 14 + Through: 12/31, !- Field 16 + For: AllDays, !- Field 17 + Until: 24:00,1.0; !- Field 18 + + Schedule:Compact, + OutdoorAirAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays summerdesignday winterdesignday, !- Field 2 + Until: 5:00,0.0, !- Field 3 + Until: 19:00,1.0, !- Field 5 + Until: 24:00,0.0, !- Field 7 + For: AllotherDays, !- Field 9 + Until: 24:00,0.0; !- Field 10 + + Schedule:Compact, + OAFractionSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 5:00,0.0, !- Field 3 + Until: 19:00,1.0, !- Field 5 + Until: 24:00,0.0; !- Field 7 + + Schedule:Compact, + Heating Setpoints, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 5:00,15.0, !- Field 3 + Until: 19:00,20.0, !- Field 5 + Until: 24:00,15.0; !- Field 7 + + Schedule:Compact, + Cooling Setpoints, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 5:00,30.0, !- Field 3 + Until: 19:00,24.0, !- Field 5 + Until: 24:00,30.0; !- Field 7 + + Schedule:Compact, + Dual Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + +!***SYSTEM 1 SERVING ZONE 1 + + OutdoorAir:NodeList, + Sys 1 OutsideAirInletNodes; !- Node or NodeList Name 1 + + NodeList, + Sys 1 OutsideAirInletNodes, !- Name + Sys 1 Outside Air Inlet Node; !- Node 1 Name + + AirLoopHVAC, + WAHP package single zone 1, !- Name + , !- Controller List Name + Heat Pump 1 Avail List, !- Availability Manager List Name + 1.0, !- Design Supply Air Flow Rate {m3/s} + Sys 1 Air Loop Branches, !- Branch List Name + , !- Connector List Name + Sys 1 Outdoor Air Mixer Inlet Node, !- Supply Side Inlet Node Name + Sys 1 Return Air Mixer Outlet, !- Demand Side Outlet Node Name + Sys 1 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + Sys 1 Air Loop Outlet Node; !- Supply Side Outlet Node Names + + BranchList, + Sys 1 Air Loop Branches, !- Name + Sys 1 Air Loop Main Branch; !- Branch 1 Name + + Branch, + Sys 1 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + OA Sys 1, !- Component 1 Name + Sys 1 Outdoor Air Mixer Inlet Node, !- Component 1 Inlet Node Name + Sys 1 Mixed Air Node, !- Component 1 Outlet Node Name + AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type + Water-To-Air Heat Pump Unit 1, !- Component 2 Name + Sys 1 Mixed Air Node, !- Component 2 Inlet Node Name + Sys 1 Air Loop Outlet Node; !- Component 2 Outlet Node Name + + AvailabilityManagerAssignmentList, + Heat Pump 1 Avail List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Heat Pump 1 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Heat Pump 1 Avail, !- Name + FanAndCoilAvailSched; !- Schedule Name + + AvailabilityManagerAssignmentList, + Outdoor Air 1 Avail List,!- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Outdoor Air 1 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Outdoor Air 1 Avail, !- Name + OutdoorAirAvailSched; !- Schedule Name + + AirLoopHVAC:OutdoorAirSystem, + OA Sys 1, !- Name + OA Sys 1 Controllers, !- Controller List Name + OA Sys 1 Equipment, !- Outdoor Air Equipment List Name + Outdoor Air 1 Avail List;!- Availability Manager List Name + + AirLoopHVAC:ControllerList, + OA Sys 1 Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + OA Controller 1; !- Controller 1 Name + + Controller:OutdoorAir, + OA Controller 1, !- Name + Sys 1 Relief Air Outlet Node, !- Relief Air Outlet Node Name + Sys 1 Outdoor Air Mixer Inlet Node, !- Return Air Node Name + Sys 1 Mixed Air Node, !- Mixed Air Node Name + Sys 1 Outside Air Inlet Node, !- Actuator Node Name + 0.1, !- Minimum Outdoor Air Flow Rate {m3/s} + 1.0, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + OAFractionSched; !- Minimum Outdoor Air Schedule Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA Sys 1 Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + OA Mixing Box 1; !- Component 1 Name + + ZoneControl:Thermostat, + Zone 1 Thermostat, !- Name + SPACE1-1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dual Setpoint Sched 1; !- Control 1 Name + + ThermostatSetpoint:DualSetpoint, + Dual Setpoint Sched 1, !- Name + Heating Setpoints, !- Heating Setpoint Temperature Schedule Name + Cooling Setpoints; !- Cooling Setpoint Temperature Schedule Name + + AirLoopHVAC:SupplyPath, + Sys 1 HeatPumpSupplyPath,!- Name + Sys 1 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + Sys 1 Zone Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + Sys 1 HeatPumpReturnPath,!- Name + Sys 1 Return Air Mixer Outlet, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + Sys 1 Zone Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + Sys 1 Zone Supply Air Splitter, !- Name + Sys 1 Zone Equipment Inlet Node, !- Inlet Node Name + Zone 1 Inlet Node; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + Sys 1 Zone Return Air Mixer, !- Name + Sys 1 Return Air Mixer Outlet, !- Outlet Node Name + Zone 1 Outlet Node; !- Inlet 1 Node Name + + ZoneHVAC:EquipmentConnections, + SPACE1-1, !- Zone Name + Zone1Equipment, !- Zone Conditioning Equipment List Name + Zone1Inlets, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Zone 1 Node, !- Zone Air Node Name + Zone 1 Outlet Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentList, + Zone1Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Zone1DirectAir, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + AirTerminal:SingleDuct:Uncontrolled, + Zone1DirectAir, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Zone 1 Inlet Node, !- Zone Supply Air Node Name + 1.0; !- Maximum Air Flow Rate {m3/s} + + NodeList, + Zone1Inlets, !- Name + Zone 1 Inlet Node; !- Node 1 Name + + NodeList, + Zone1 List, !- Name + Zone 1 Node; !- Node 1 Name + + OutdoorAir:Mixer, + OA Mixing Box 1, !- Name + Sys 1 Mixed Air Node, !- Mixed Air Node Name + Sys 1 Outside Air Inlet Node, !- Outdoor Air Stream Node Name + Sys 1 Relief Air Outlet Node, !- Relief Air Stream Node Name + Sys 1 Outdoor Air Mixer Inlet Node; !- Return Air Stream Node Name + + AirLoopHVAC:UnitaryHeatPump:WaterToAir, + Water-To-Air Heat Pump Unit 1, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Sys 1 Mixed Air Node, !- Air Inlet Node Name + Sys 1 Air Loop Outlet Node, !- Air Outlet Node Name + 1.0, !- Supply Air Flow Rate {m3/s} + SPACE1-1, !- Controlling Zone or Thermostat Location + Fan:OnOff, !- Supply Air Fan Object Type + Supply Fan 1, !- Supply Air Fan Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type + Sys 1 Heat Pump Heating Mode, !- Heating Coil Name + 0.001, !- Heating Convergence + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type + Sys 1 Heat Pump Cooling Mode, !- Cooling Coil Name + 0.001, !- Cooling Convergence + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Heat Pump Time Constant {s} + 0.01, !- Fraction of On-Cycle Power Use + 60, !- Heat Pump Fan Delay Time {s} + Coil:Heating:Fuel, !- Supplemental Heating Coil Object Type + Heat Pump DX Supp Heating Coil 1, !- Supplemental Heating Coil Name + 50, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 21, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + Sys 1 Outside Air Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + ContinuousFanSch; !- Supply Air Fan Operating Mode Schedule Name + + Schedule:Compact, + ContinuousFanSch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Coil:Cooling:WaterToAirHeatPump:EquationFit, + Sys 1 Heat Pump Cooling Mode, !- Name + Sys 1 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name + Sys 1 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name + Sys 1 Cooling Coil Air Inlet Node, !- Air Inlet Node Name + Sys 1 Heating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.00165, !- Rated Water Flow Rate {m3/s} + 23125.6, !- Gross Rated Total Cooling Capacity {W} + 16267.06, !- Gross Rated Sensible Cooling Capacity {W} + 7.007757577, !- Gross Rated Cooling COP + -0.68126221, !- Total Cooling Capacity Coefficient 1 + 1.99529297, !- Total Cooling Capacity Coefficient 2 + -0.93611888, !- Total Cooling Capacity Coefficient 3 + 0.02081177, !- Total Cooling Capacity Coefficient 4 + 0.008438868, !- Total Cooling Capacity Coefficient 5 + 2.24209455, !- Sensible Cooling Capacity Coefficient 1 + 7.28913391, !- Sensible Cooling Capacity Coefficient 2 + -9.06079896, !- Sensible Cooling Capacity Coefficient 3 + -0.36729404, !- Sensible Cooling Capacity Coefficient 4 + 0.218826161, !- Sensible Cooling Capacity Coefficient 5 + 0.00901534, !- Sensible Cooling Capacity Coefficient 6 + -3.20456384, !- Cooling Power Consumption Coefficient 1 + 0.47656454, !- Cooling Power Consumption Coefficient 2 + 3.16734236, !- Cooling Power Consumption Coefficient 3 + 0.10244637, !- Cooling Power Consumption Coefficient 4 + -0.038132556, !- Cooling Power Consumption Coefficient 5 + 0, !- Nominal Time for Condensate Removal to Begin {s} + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + + Coil:Heating:WaterToAirHeatPump:EquationFit, + Sys 1 Heat Pump Heating Mode, !- Name + Sys 1 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name + Sys 1 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name + Sys 1 Heating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 1 SuppHeating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.00165, !- Rated Water Flow Rate {m3/s} + 19156.73, !- Gross Rated Heating Capacity {W} + 3.167053691, !- Gross Rated Heating COP + -5.50102734, !- Heating Capacity Coefficient 1 + -0.96688754, !- Heating Capacity Coefficient 2 + 7.70755007, !- Heating Capacity Coefficient 3 + 0.031928881, !- Heating Capacity Coefficient 4 + 0.028112522, !- Heating Capacity Coefficient 5 + -7.47517858, !- Heating Power Consumption Coefficient 1 + 6.40876653, !- Heating Power Consumption Coefficient 2 + 1.99711665, !- Heating Power Consumption Coefficient 3 + -0.050682973, !- Heating Power Consumption Coefficient 4 + 0.011385145; !- Heating Power Consumption Coefficient 5 + + Fan:OnOff, + Supply Fan 1, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + 0.5, !- Fan Total Efficiency + 300.0, !- Pressure Rise {Pa} + 1.0, !- Maximum Flow Rate {m3/s} + 0.9, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + Sys 1 Mixed Air Node, !- Air Inlet Node Name + Sys 1 Cooling Coil Air Inlet Node; !- Air Outlet Node Name + + Coil:Heating:Fuel, + Heat Pump DX Supp Heating Coil 1, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + 32000, !- Nominal Capacity {W} + Sys 1 SuppHeating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 1 Air Loop Outlet Node; !- Air Outlet Node Name + +!***END SYSTEM 1 +!***SYSTEM 2 SERVING ZONES 2 + + OutdoorAir:NodeList, + Sys 2 OutsideAirInletNodes; !- Node or NodeList Name 1 + + NodeList, + Sys 2 OutsideAirInletNodes, !- Name + Sys 2 Outside Air Inlet Node; !- Node 1 Name + + AirLoopHVAC, + WAHP package single zone 2, !- Name + , !- Controller List Name + Heat Pump 1 Avail List, !- Availability Manager List Name + 1.0, !- Design Supply Air Flow Rate {m3/s} + Sys 2 Air Loop Branches, !- Branch List Name + , !- Connector List Name + Sys 2 Outdoor Air Mixer Inlet Node, !- Supply Side Inlet Node Name + Sys 2 Return Air Mixer Outlet, !- Demand Side Outlet Node Name + Sys 2 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + Sys 2 Air Loop Outlet Node; !- Supply Side Outlet Node Names + + BranchList, + Sys 2 Air Loop Branches, !- Name + Sys 2 Air Loop Main Branch; !- Branch 1 Name + + Branch, + Sys 2 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + OA Sys 2, !- Component 1 Name + Sys 2 Outdoor Air Mixer Inlet Node, !- Component 1 Inlet Node Name + Sys 2 Mixed Air Node, !- Component 1 Outlet Node Name + AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type + Water-To-Air Heat Pump Unit 2, !- Component 2 Name + Sys 2 Mixed Air Node, !- Component 2 Inlet Node Name + Sys 2 Air Loop Outlet Node; !- Component 2 Outlet Node Name + + AvailabilityManagerAssignmentList, + Heat Pump 2 Avail List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Heat Pump 2 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Heat Pump 2 Avail, !- Name + FanAndCoilAvailSched; !- Schedule Name + + AvailabilityManagerAssignmentList, + Outdoor Air 2 Avail List,!- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Outdoor Air 2 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Outdoor Air 2 Avail, !- Name + OutdoorAirAvailSched; !- Schedule Name + + AirLoopHVAC:OutdoorAirSystem, + OA Sys 2, !- Name + OA Sys 2 Controllers, !- Controller List Name + OA Sys 2 Equipment, !- Outdoor Air Equipment List Name + Outdoor Air 2 Avail List;!- Availability Manager List Name + + AirLoopHVAC:ControllerList, + OA Sys 2 Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + OA Controller 2; !- Controller 1 Name + + Controller:OutdoorAir, + OA Controller 2, !- Name + Sys 2 Relief Air Outlet Node, !- Relief Air Outlet Node Name + Sys 2 Outdoor Air Mixer Inlet Node, !- Return Air Node Name + Sys 2 Mixed Air Node, !- Mixed Air Node Name + Sys 2 Outside Air Inlet Node, !- Actuator Node Name + 0.05, !- Minimum Outdoor Air Flow Rate {m3/s} + 1.0, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + OAFractionSched; !- Minimum Outdoor Air Schedule Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA Sys 2 Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + OA Mixing Box 2; !- Component 1 Name + + ZoneControl:Thermostat, + Zone 2 Thermostat, !- Name + SPACE2-1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dual Setpoint Sched 2; !- Control 1 Name + + ThermostatSetpoint:DualSetpoint, + Dual Setpoint Sched 2, !- Name + Heating Setpoints, !- Heating Setpoint Temperature Schedule Name + Cooling Setpoints; !- Cooling Setpoint Temperature Schedule Name + + AirLoopHVAC:SupplyPath, + Sys 2 HeatPumpSupplyPath,!- Name + Sys 2 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + Sys 2 Zone Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + Sys 2 HeatPumpReturnPath,!- Name + Sys 2 Return Air Mixer Outlet, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + Sys 2 Zone Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + Sys 2 Zone Supply Air Splitter, !- Name + Sys 2 Zone Equipment Inlet Node, !- Inlet Node Name + Zone 2 Inlet Node; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + Sys 2 Zone Return Air Mixer, !- Name + Sys 2 Return Air Mixer Outlet, !- Outlet Node Name + Zone 2 Outlet Node; !- Inlet 1 Node Name + + ZoneHVAC:EquipmentConnections, + SPACE2-1, !- Zone Name + Zone2Equipment, !- Zone Conditioning Equipment List Name + Zone2Inlets, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Zone 2 Node, !- Zone Air Node Name + Zone 2 Outlet Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentList, + Zone2Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Zone2DirectAir, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + AirTerminal:SingleDuct:Uncontrolled, + Zone2DirectAir, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Zone 2 Inlet Node, !- Zone Supply Air Node Name + 1.0; !- Maximum Air Flow Rate {m3/s} + + NodeList, + Zone2Inlets, !- Name + Zone 2 Inlet Node; !- Node 1 Name + + NodeList, + Zone2 List, !- Name + Zone 2 Node; !- Node 1 Name + + OutdoorAir:Mixer, + OA Mixing Box 2, !- Name + Sys 2 Mixed Air Node, !- Mixed Air Node Name + Sys 2 Outside Air Inlet Node, !- Outdoor Air Stream Node Name + Sys 2 Relief Air Outlet Node, !- Relief Air Stream Node Name + Sys 2 Outdoor Air Mixer Inlet Node; !- Return Air Stream Node Name + + AirLoopHVAC:UnitaryHeatPump:WaterToAir, + Water-To-Air Heat Pump Unit 2, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Sys 2 Mixed Air Node, !- Air Inlet Node Name + Sys 2 Air Loop Outlet Node, !- Air Outlet Node Name + 1.0, !- Supply Air Flow Rate {m3/s} + SPACE2-1, !- Controlling Zone or Thermostat Location + Fan:OnOff, !- Supply Air Fan Object Type + Supply Fan 2, !- Supply Air Fan Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type + Sys 2 Heat Pump Heating Mode, !- Heating Coil Name + 0.001, !- Heating Convergence + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type + Sys 2 Heat Pump Cooling Mode, !- Cooling Coil Name + 0.001, !- Cooling Convergence + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Heat Pump Time Constant {s} + 0.01, !- Fraction of On-Cycle Power Use + 60, !- Heat Pump Fan Delay Time {s} + Coil:Heating:Fuel, !- Supplemental Heating Coil Object Type + Heat Pump DX Supp Heating Coil 2, !- Supplemental Heating Coil Name + 50, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 21, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + Sys 2 Outside Air Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + ContinuousFanSch; !- Supply Air Fan Operating Mode Schedule Name + + Coil:Cooling:WaterToAirHeatPump:EquationFit, + Sys 2 Heat Pump Cooling Mode, !- Name + Sys 2 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name + Sys 2 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name + Sys 2 Cooling Coil Air Inlet Node, !- Air Inlet Node Name + Sys 2 Heating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.00165, !- Rated Water Flow Rate {m3/s} + 11562.8, !- Gross Rated Total Cooling Capacity {W} + 8133.53, !- Gross Rated Sensible Cooling Capacity {W} + 7.007757577, !- Gross Rated Cooling COP + -0.68126221, !- Total Cooling Capacity Coefficient 1 + 1.99529297, !- Total Cooling Capacity Coefficient 2 + -0.93611888, !- Total Cooling Capacity Coefficient 3 + 0.02081177, !- Total Cooling Capacity Coefficient 4 + 0.008438868, !- Total Cooling Capacity Coefficient 5 + 2.24209455, !- Sensible Cooling Capacity Coefficient 1 + 7.28913391, !- Sensible Cooling Capacity Coefficient 2 + -9.06079896, !- Sensible Cooling Capacity Coefficient 3 + -0.36729404, !- Sensible Cooling Capacity Coefficient 4 + 0.218826161, !- Sensible Cooling Capacity Coefficient 5 + 0.00901534, !- Sensible Cooling Capacity Coefficient 6 + -3.20456384, !- Cooling Power Consumption Coefficient 1 + 0.47656454, !- Cooling Power Consumption Coefficient 2 + 3.16734236, !- Cooling Power Consumption Coefficient 3 + 0.10244637, !- Cooling Power Consumption Coefficient 4 + -0.038132556, !- Cooling Power Consumption Coefficient 5 + 0, !- Nominal Time for Condensate Removal to Begin {s} + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + + Coil:Heating:WaterToAirHeatPump:EquationFit, + Sys 2 Heat Pump Heating Mode, !- Name + Sys 2 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name + Sys 2 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name + Sys 2 Heating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 2 SuppHeating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.00165, !- Rated Water Flow Rate {m3/s} + 10078.365, !- Gross Rated Heating Capacity {W} + 3.167053691, !- Gross Rated Heating COP + -5.50102734, !- Heating Capacity Coefficient 1 + -0.96688754, !- Heating Capacity Coefficient 2 + 7.70755007, !- Heating Capacity Coefficient 3 + 0.031928881, !- Heating Capacity Coefficient 4 + 0.028112522, !- Heating Capacity Coefficient 5 + -7.47517858, !- Heating Power Consumption Coefficient 1 + 6.40876653, !- Heating Power Consumption Coefficient 2 + 1.99711665, !- Heating Power Consumption Coefficient 3 + -0.050682973, !- Heating Power Consumption Coefficient 4 + 0.011385145; !- Heating Power Consumption Coefficient 5 + + Fan:OnOff, + Supply Fan 2, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + 0.5, !- Fan Total Efficiency + 300.0, !- Pressure Rise {Pa} + 1.0, !- Maximum Flow Rate {m3/s} + 0.9, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + Sys 2 Mixed Air Node, !- Air Inlet Node Name + Sys 2 Cooling Coil Air Inlet Node; !- Air Outlet Node Name + + Coil:Heating:Fuel, + Heat Pump DX Supp Heating Coil 2, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + 32000, !- Nominal Capacity {W} + Sys 2 SuppHeating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 2 Air Loop Outlet Node; !- Air Outlet Node Name + +! ** end system 2 +!***SYSTEM 3 SERVING ZONES 3 + + OutdoorAir:NodeList, + Sys 3 OutsideAirInletNodes; !- Node or NodeList Name 1 + + NodeList, + Sys 3 OutsideAirInletNodes, !- Name + Sys 3 Outside Air Inlet Node; !- Node 1 Name + + AirLoopHVAC, + WAHP package single zone 3, !- Name + , !- Controller List Name + Heat Pump 3 Avail List, !- Availability Manager List Name + 1.0, !- Design Supply Air Flow Rate {m3/s} + Sys 3 Air Loop Branches, !- Branch List Name + , !- Connector List Name + Sys 3 Outdoor Air Mixer Inlet Node, !- Supply Side Inlet Node Name + Sys 3 Return Air Mixer Outlet, !- Demand Side Outlet Node Name + Sys 3 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + Sys 3 Air Loop Outlet Node; !- Supply Side Outlet Node Names + + BranchList, + Sys 3 Air Loop Branches, !- Name + Sys 3 Air Loop Main Branch; !- Branch 1 Name + + Branch, + Sys 3 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + OA Sys 3, !- Component 1 Name + Sys 3 Outdoor Air Mixer Inlet Node, !- Component 1 Inlet Node Name + Sys 3 Mixed Air Node, !- Component 1 Outlet Node Name + AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type + Water-To-Air Heat Pump Unit 3, !- Component 2 Name + Sys 3 Mixed Air Node, !- Component 2 Inlet Node Name + Sys 3 Air Loop Outlet Node; !- Component 2 Outlet Node Name + + AvailabilityManagerAssignmentList, + Heat Pump 3 Avail List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Heat Pump 3 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Heat Pump 3 Avail, !- Name + FanAndCoilAvailSched; !- Schedule Name + + AvailabilityManagerAssignmentList, + Outdoor Air 3 Avail List,!- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Outdoor Air 3 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Outdoor Air 3 Avail, !- Name + OutdoorAirAvailSched; !- Schedule Name + + AirLoopHVAC:OutdoorAirSystem, + OA Sys 3, !- Name + OA Sys 3 Controllers, !- Controller List Name + OA Sys 3 Equipment, !- Outdoor Air Equipment List Name + Outdoor Air 3 Avail List;!- Availability Manager List Name + + AirLoopHVAC:ControllerList, + OA Sys 3 Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + OA Controller 3; !- Controller 1 Name + + Controller:OutdoorAir, + OA Controller 3, !- Name + Sys 3 Relief Air Outlet Node, !- Relief Air Outlet Node Name + Sys 3 Outdoor Air Mixer Inlet Node, !- Return Air Node Name + Sys 3 Mixed Air Node, !- Mixed Air Node Name + Sys 3 Outside Air Inlet Node, !- Actuator Node Name + 0.1, !- Minimum Outdoor Air Flow Rate {m3/s} + 1.0, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + OAFractionSched; !- Minimum Outdoor Air Schedule Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA Sys 3 Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + OA Mixing Box 3; !- Component 1 Name + + ZoneControl:Thermostat, + Zone 3 Thermostat, !- Name + SPACE3-1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dual Setpoint Sched 3; !- Control 1 Name + + ThermostatSetpoint:DualSetpoint, + Dual Setpoint Sched 3, !- Name + Heating Setpoints, !- Heating Setpoint Temperature Schedule Name + Cooling Setpoints; !- Cooling Setpoint Temperature Schedule Name + + AirLoopHVAC:SupplyPath, + Sys 3 HeatPumpSupplyPath,!- Name + Sys 3 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + Sys 3 Zone Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + Sys 3 HeatPumpReturnPath,!- Name + Sys 3 Return Air Mixer Outlet, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + Sys 3 Zone Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + Sys 3 Zone Supply Air Splitter, !- Name + Sys 3 Zone Equipment Inlet Node, !- Inlet Node Name + Zone 3 Inlet Node; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + Sys 3 Zone Return Air Mixer, !- Name + Sys 3 Return Air Mixer Outlet, !- Outlet Node Name + Zone 3 Outlet Node; !- Inlet 1 Node Name + + ZoneHVAC:EquipmentConnections, + SPACE3-1, !- Zone Name + Zone3Equipment, !- Zone Conditioning Equipment List Name + Zone3Inlets, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Zone 3 Node, !- Zone Air Node Name + Zone 3 Outlet Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentList, + Zone3Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Zone3DirectAir, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + AirTerminal:SingleDuct:Uncontrolled, + Zone3DirectAir, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Zone 3 Inlet Node, !- Zone Supply Air Node Name + 1.0; !- Maximum Air Flow Rate {m3/s} + + NodeList, + Zone3Inlets, !- Name + Zone 3 Inlet Node; !- Node 1 Name + + NodeList, + Zone3 List, !- Name + Zone 3 Node; !- Node 1 Name + + OutdoorAir:Mixer, + OA Mixing Box 3, !- Name + Sys 3 Mixed Air Node, !- Mixed Air Node Name + Sys 3 Outside Air Inlet Node, !- Outdoor Air Stream Node Name + Sys 3 Relief Air Outlet Node, !- Relief Air Stream Node Name + Sys 3 Outdoor Air Mixer Inlet Node; !- Return Air Stream Node Name + + AirLoopHVAC:UnitaryHeatPump:WaterToAir, + Water-To-Air Heat Pump Unit 3, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Sys 3 Mixed Air Node, !- Air Inlet Node Name + Sys 3 Air Loop Outlet Node, !- Air Outlet Node Name + 1.0, !- Supply Air Flow Rate {m3/s} + SPACE3-1, !- Controlling Zone or Thermostat Location + Fan:OnOff, !- Supply Air Fan Object Type + Supply Fan 3, !- Supply Air Fan Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type + Sys 3 Heat Pump Heating Mode, !- Heating Coil Name + 0.001, !- Heating Convergence + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type + Sys 3 Heat Pump Cooling Mode, !- Cooling Coil Name + 0.001, !- Cooling Convergence + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Heat Pump Time Constant {s} + 0.01, !- Fraction of On-Cycle Power Use + 60, !- Heat Pump Fan Delay Time {s} + Coil:Heating:Fuel, !- Supplemental Heating Coil Object Type + Heat Pump DX Supp Heating Coil 3, !- Supplemental Heating Coil Name + 50, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 21, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + Sys 3 Outside Air Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + ContinuousFanSch; !- Supply Air Fan Operating Mode Schedule Name + + Coil:Cooling:WaterToAirHeatPump:EquationFit, + Sys 3 Heat Pump Cooling Mode, !- Name + Sys 3 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name + Sys 3 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name + Sys 3 Cooling Coil Air Inlet Node, !- Air Inlet Node Name + Sys 3 Heating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.00165, !- Rated Water Flow Rate {m3/s} + 23125.6, !- Gross Rated Total Cooling Capacity {W} + 16267.06, !- Gross Rated Sensible Cooling Capacity {W} + 7.007757577, !- Gross Rated Cooling COP + -0.68126221, !- Total Cooling Capacity Coefficient 1 + 1.99529297, !- Total Cooling Capacity Coefficient 2 + -0.93611888, !- Total Cooling Capacity Coefficient 3 + 0.02081177, !- Total Cooling Capacity Coefficient 4 + 0.008438868, !- Total Cooling Capacity Coefficient 5 + 2.24209455, !- Sensible Cooling Capacity Coefficient 1 + 7.28913391, !- Sensible Cooling Capacity Coefficient 2 + -9.06079896, !- Sensible Cooling Capacity Coefficient 3 + -0.36729404, !- Sensible Cooling Capacity Coefficient 4 + 0.218826161, !- Sensible Cooling Capacity Coefficient 5 + 0.00901534, !- Sensible Cooling Capacity Coefficient 6 + -3.20456384, !- Cooling Power Consumption Coefficient 1 + 0.47656454, !- Cooling Power Consumption Coefficient 2 + 3.16734236, !- Cooling Power Consumption Coefficient 3 + 0.10244637, !- Cooling Power Consumption Coefficient 4 + -0.038132556, !- Cooling Power Consumption Coefficient 5 + 0, !- Nominal Time for Condensate Removal to Begin {s} + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + + Coil:Heating:WaterToAirHeatPump:EquationFit, + Sys 3 Heat Pump Heating Mode, !- Name + Sys 3 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name + Sys 3 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name + Sys 3 Heating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 3 SuppHeating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.00165, !- Rated Water Flow Rate {m3/s} + 19156.73, !- Gross Rated Heating Capacity {W} + 3.167053691, !- Gross Rated Heating COP + -5.50102734, !- Heating Capacity Coefficient 1 + -0.96688754, !- Heating Capacity Coefficient 2 + 7.70755007, !- Heating Capacity Coefficient 3 + 0.031928881, !- Heating Capacity Coefficient 4 + 0.028112522, !- Heating Capacity Coefficient 5 + -7.47517858, !- Heating Power Consumption Coefficient 1 + 6.40876653, !- Heating Power Consumption Coefficient 2 + 1.99711665, !- Heating Power Consumption Coefficient 3 + -0.050682973, !- Heating Power Consumption Coefficient 4 + 0.011385145; !- Heating Power Consumption Coefficient 5 + + Fan:OnOff, + Supply Fan 3, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + 0.5, !- Fan Total Efficiency + 300.0, !- Pressure Rise {Pa} + 1.0, !- Maximum Flow Rate {m3/s} + 0.9, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + Sys 3 Mixed Air Node, !- Air Inlet Node Name + Sys 3 Cooling Coil Air Inlet Node; !- Air Outlet Node Name + + Coil:Heating:Fuel, + Heat Pump DX Supp Heating Coil 3, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + 32000, !- Nominal Capacity {W} + Sys 3 SuppHeating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 3 Air Loop Outlet Node; !- Air Outlet Node Name + +!***END SYSTEM 3 +!***SYSTEM 4 SERVING ZONE 4 + + OutdoorAir:NodeList, + Sys 4 OutsideAirInletNodes; !- Node or NodeList Name 1 + + NodeList, + Sys 4 OutsideAirInletNodes, !- Name + Sys 4 Outside Air Inlet Node; !- Node 1 Name + + AirLoopHVAC, + WAHP package single zone 4, !- Name + , !- Controller List Name + Heat Pump 4 Avail List, !- Availability Manager List Name + 1.0, !- Design Supply Air Flow Rate {m3/s} + Sys 4 Air Loop Branches, !- Branch List Name + , !- Connector List Name + Sys 4 Outdoor Air Mixer Inlet Node, !- Supply Side Inlet Node Name + Sys 4 Return Air Mixer Outlet, !- Demand Side Outlet Node Name + Sys 4 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + Sys 4 Air Loop Outlet Node; !- Supply Side Outlet Node Names + + BranchList, + Sys 4 Air Loop Branches, !- Name + Sys 4 Air Loop Main Branch; !- Branch 1 Name + + Branch, + Sys 4 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + OA Sys 4, !- Component 1 Name + Sys 4 Outdoor Air Mixer Inlet Node, !- Component 1 Inlet Node Name + Sys 4 Mixed Air Node, !- Component 1 Outlet Node Name + AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type + Water-To-Air Heat Pump Unit 4, !- Component 2 Name + Sys 4 Mixed Air Node, !- Component 2 Inlet Node Name + Sys 4 Air Loop Outlet Node; !- Component 2 Outlet Node Name + + AvailabilityManagerAssignmentList, + Heat Pump 4 Avail List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Heat Pump 4 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Heat Pump 4 Avail, !- Name + FanAndCoilAvailSched; !- Schedule Name + + AvailabilityManagerAssignmentList, + Outdoor Air 4 Avail List,!- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Outdoor Air 4 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Outdoor Air 4 Avail, !- Name + OutdoorAirAvailSched; !- Schedule Name + + AirLoopHVAC:OutdoorAirSystem, + OA Sys 4, !- Name + OA Sys 4 Controllers, !- Controller List Name + OA Sys 4 Equipment, !- Outdoor Air Equipment List Name + Outdoor Air 4 Avail List;!- Availability Manager List Name + + AirLoopHVAC:ControllerList, + OA Sys 4 Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + OA Controller 4; !- Controller 1 Name + + Controller:OutdoorAir, + OA Controller 4, !- Name + Sys 4 Relief Air Outlet Node, !- Relief Air Outlet Node Name + Sys 4 Outdoor Air Mixer Inlet Node, !- Return Air Node Name + Sys 4 Mixed Air Node, !- Mixed Air Node Name + Sys 4 Outside Air Inlet Node, !- Actuator Node Name + 0.05, !- Minimum Outdoor Air Flow Rate {m3/s} + 1.0, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + OAFractionSched; !- Minimum Outdoor Air Schedule Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA Sys 4 Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + OA Mixing Box 4; !- Component 1 Name + + ZoneControl:Thermostat, + Zone 4 Thermostat, !- Name + SPACE4-1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dual Setpoint Sched 4; !- Control 1 Name + + ThermostatSetpoint:DualSetpoint, + Dual Setpoint Sched 4, !- Name + Heating Setpoints, !- Heating Setpoint Temperature Schedule Name + Cooling Setpoints; !- Cooling Setpoint Temperature Schedule Name + + AirLoopHVAC:SupplyPath, + Sys 4 HeatPumpSupplyPath,!- Name + Sys 4 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + Sys 4 Zone Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + Sys 4 HeatPumpReturnPath,!- Name + Sys 4 Return Air Mixer Outlet, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + Sys 4 Zone Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + Sys 4 Zone Supply Air Splitter, !- Name + Sys 4 Zone Equipment Inlet Node, !- Inlet Node Name + Zone 4 Inlet Node; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + Sys 4 Zone Return Air Mixer, !- Name + Sys 4 Return Air Mixer Outlet, !- Outlet Node Name + Zone 4 Outlet Node; !- Inlet 1 Node Name + + ZoneHVAC:EquipmentConnections, + SPACE4-1, !- Zone Name + Zone4Equipment, !- Zone Conditioning Equipment List Name + Zone4Inlets, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Zone 4 Node, !- Zone Air Node Name + Zone 4 Outlet Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentList, + Zone4Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Zone4DirectAir, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + AirTerminal:SingleDuct:Uncontrolled, + Zone4DirectAir, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Zone 4 Inlet Node, !- Zone Supply Air Node Name + 1.0; !- Maximum Air Flow Rate {m3/s} + + NodeList, + Zone4Inlets, !- Name + Zone 4 Inlet Node; !- Node 1 Name + + NodeList, + Zone4 List, !- Name + Zone 4 Node; !- Node 1 Name + + OutdoorAir:Mixer, + OA Mixing Box 4, !- Name + Sys 4 Mixed Air Node, !- Mixed Air Node Name + Sys 4 Outside Air Inlet Node, !- Outdoor Air Stream Node Name + Sys 4 Relief Air Outlet Node, !- Relief Air Stream Node Name + Sys 4 Outdoor Air Mixer Inlet Node; !- Return Air Stream Node Name + + AirLoopHVAC:UnitaryHeatPump:WaterToAir, + Water-To-Air Heat Pump Unit 4, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Sys 4 Mixed Air Node, !- Air Inlet Node Name + Sys 4 Air Loop Outlet Node, !- Air Outlet Node Name + 1.0, !- Supply Air Flow Rate {m3/s} + SPACE4-1, !- Controlling Zone or Thermostat Location + Fan:OnOff, !- Supply Air Fan Object Type + Supply Fan 4, !- Supply Air Fan Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type + Sys 4 Heat Pump Heating Mode, !- Heating Coil Name + 0.001, !- Heating Convergence + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type + Sys 4 Heat Pump Cooling Mode, !- Cooling Coil Name + 0.001, !- Cooling Convergence + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Heat Pump Time Constant {s} + 0.01, !- Fraction of On-Cycle Power Use + 60, !- Heat Pump Fan Delay Time {s} + Coil:Heating:Fuel, !- Supplemental Heating Coil Object Type + Heat Pump DX Supp Heating Coil 4, !- Supplemental Heating Coil Name + 50, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 21, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + Sys 4 Outside Air Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + ContinuousFanSch; !- Supply Air Fan Operating Mode Schedule Name + + Coil:Cooling:WaterToAirHeatPump:EquationFit, + Sys 4 Heat Pump Cooling Mode, !- Name + Sys 4 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name + Sys 4 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name + Sys 4 Cooling Coil Air Inlet Node, !- Air Inlet Node Name + Sys 4 Heating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.00165, !- Rated Water Flow Rate {m3/s} + 11562.8, !- Gross Rated Total Cooling Capacity {W} + 8133.53, !- Gross Rated Sensible Cooling Capacity {W} + 7.007757577, !- Gross Rated Cooling COP + -0.68126221, !- Total Cooling Capacity Coefficient 1 + 1.99529297, !- Total Cooling Capacity Coefficient 2 + -0.93611888, !- Total Cooling Capacity Coefficient 3 + 0.02081177, !- Total Cooling Capacity Coefficient 4 + 0.008438868, !- Total Cooling Capacity Coefficient 5 + 2.24209455, !- Sensible Cooling Capacity Coefficient 1 + 7.28913391, !- Sensible Cooling Capacity Coefficient 2 + -9.06079896, !- Sensible Cooling Capacity Coefficient 3 + -0.36729404, !- Sensible Cooling Capacity Coefficient 4 + 0.218826161, !- Sensible Cooling Capacity Coefficient 5 + 0.00901534, !- Sensible Cooling Capacity Coefficient 6 + -3.20456384, !- Cooling Power Consumption Coefficient 1 + 0.47656454, !- Cooling Power Consumption Coefficient 2 + 3.16734236, !- Cooling Power Consumption Coefficient 3 + 0.10244637, !- Cooling Power Consumption Coefficient 4 + -0.038132556, !- Cooling Power Consumption Coefficient 5 + 0, !- Nominal Time for Condensate Removal to Begin {s} + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + + Coil:Heating:WaterToAirHeatPump:EquationFit, + Sys 4 Heat Pump Heating Mode, !- Name + Sys 4 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name + Sys 4 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name + Sys 4 Heating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 4 SuppHeating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.00165, !- Rated Water Flow Rate {m3/s} + 10078.365, !- Gross Rated Heating Capacity {W} + 3.167053691, !- Gross Rated Heating COP + -5.50102734, !- Heating Capacity Coefficient 1 + -0.96688754, !- Heating Capacity Coefficient 2 + 7.70755007, !- Heating Capacity Coefficient 3 + 0.031928881, !- Heating Capacity Coefficient 4 + 0.028112522, !- Heating Capacity Coefficient 5 + -7.47517858, !- Heating Power Consumption Coefficient 1 + 6.40876653, !- Heating Power Consumption Coefficient 2 + 1.99711665, !- Heating Power Consumption Coefficient 3 + -0.050682973, !- Heating Power Consumption Coefficient 4 + 0.011385145; !- Heating Power Consumption Coefficient 5 + + Fan:OnOff, + Supply Fan 4, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + 0.5, !- Fan Total Efficiency + 300.0, !- Pressure Rise {Pa} + 1.0, !- Maximum Flow Rate {m3/s} + 0.9, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + Sys 4 Mixed Air Node, !- Air Inlet Node Name + Sys 4 Cooling Coil Air Inlet Node; !- Air Outlet Node Name + + Coil:Heating:Fuel, + Heat Pump DX Supp Heating Coil 4, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + 32000, !- Nominal Capacity {W} + Sys 4 SuppHeating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 4 Air Loop Outlet Node; !- Air Outlet Node Name + +!***END SYSTEM 4 +!***SYSTEM 5 SERVING ZONE 5 + + OutdoorAir:NodeList, + Sys 5 OutsideAirInletNodes; !- Node or NodeList Name 1 + + NodeList, + Sys 5 OutsideAirInletNodes, !- Name + Sys 5 Outside Air Inlet Node; !- Node 1 Name + + AirLoopHVAC, + WAHP package single zone 5, !- Name + , !- Controller List Name + Heat Pump 1 Avail List, !- Availability Manager List Name + 1.0, !- Design Supply Air Flow Rate {m3/s} + Sys 5 Air Loop Branches, !- Branch List Name + , !- Connector List Name + Sys 5 Outdoor Air Mixer Inlet Node, !- Supply Side Inlet Node Name + Sys 5 Return Air Mixer Outlet, !- Demand Side Outlet Node Name + Sys 5 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + Sys 5 Air Loop Outlet Node; !- Supply Side Outlet Node Names + + BranchList, + Sys 5 Air Loop Branches, !- Name + Sys 5 Air Loop Main Branch; !- Branch 1 Name + + Branch, + Sys 5 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + OA Sys 5, !- Component 1 Name + Sys 5 Outdoor Air Mixer Inlet Node, !- Component 1 Inlet Node Name + Sys 5 Mixed Air Node, !- Component 1 Outlet Node Name + AirLoopHVAC:UnitaryHeatPump:WaterToAir, !- Component 2 Object Type + Water-To-Air Heat Pump Unit 5, !- Component 2 Name + Sys 5 Mixed Air Node, !- Component 2 Inlet Node Name + Sys 5 Air Loop Outlet Node; !- Component 2 Outlet Node Name + + AvailabilityManagerAssignmentList, + Heat Pump 5 Avail List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Heat Pump 5 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Heat Pump 5 Avail, !- Name + FanAndCoilAvailSched; !- Schedule Name + + AvailabilityManagerAssignmentList, + Outdoor Air 5 Avail List,!- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + Outdoor Air 5 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + Outdoor Air 5 Avail, !- Name + OutdoorAirAvailSched; !- Schedule Name + + AirLoopHVAC:OutdoorAirSystem, + OA Sys 5, !- Name + OA Sys 5 Controllers, !- Controller List Name + OA Sys 5 Equipment, !- Outdoor Air Equipment List Name + Outdoor Air 5 Avail List;!- Availability Manager List Name + + AirLoopHVAC:ControllerList, + OA Sys 5 Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + OA Controller 5; !- Controller 1 Name + + Controller:OutdoorAir, + OA Controller 5, !- Name + Sys 5 Relief Air Outlet Node, !- Relief Air Outlet Node Name + Sys 5 Outdoor Air Mixer Inlet Node, !- Return Air Node Name + Sys 5 Mixed Air Node, !- Mixed Air Node Name + Sys 5 Outside Air Inlet Node, !- Actuator Node Name + 0.2, !- Minimum Outdoor Air Flow Rate {m3/s} + 1.0, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + OAFractionSched; !- Minimum Outdoor Air Schedule Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA Sys 5 Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + OA Mixing Box 5; !- Component 1 Name + + ZoneControl:Thermostat, + Zone 5 Thermostat, !- Name + SPACE5-1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dual Setpoint Sched 5; !- Control 1 Name + + ThermostatSetpoint:DualSetpoint, + Dual Setpoint Sched 5, !- Name + Heating Setpoints, !- Heating Setpoint Temperature Schedule Name + Cooling Setpoints; !- Cooling Setpoint Temperature Schedule Name + + AirLoopHVAC:SupplyPath, + Sys 5 HeatPumpSupplyPath,!- Name + Sys 5 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + Sys 5 Zone Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + Sys 5 HeatPumpReturnPath,!- Name + Sys 5 Return Air Mixer Outlet, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + Sys 5 Zone Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + Sys 5 Zone Supply Air Splitter, !- Name + Sys 5 Zone Equipment Inlet Node, !- Inlet Node Name + Zone 5 Inlet Node; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + Sys 5 Zone Return Air Mixer, !- Name + Sys 5 Return Air Mixer Outlet, !- Outlet Node Name + Zone 5 Outlet Node; !- Inlet 1 Node Name + + ZoneHVAC:EquipmentConnections, + SPACE5-1, !- Zone Name + Zone5Equipment, !- Zone Conditioning Equipment List Name + Zone5Inlets, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Zone 5 Node, !- Zone Air Node Name + Zone 5 Outlet Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentList, + Zone5Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Zone5DirectAir, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + AirTerminal:SingleDuct:Uncontrolled, + Zone5DirectAir, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Zone 5 Inlet Node, !- Zone Supply Air Node Name + 1.0; !- Maximum Air Flow Rate {m3/s} + + NodeList, + Zone5Inlets, !- Name + Zone 5 Inlet Node; !- Node 1 Name + + NodeList, + Zone5 List, !- Name + Zone 5 Node; !- Node 1 Name + + OutdoorAir:Mixer, + OA Mixing Box 5, !- Name + Sys 5 Mixed Air Node, !- Mixed Air Node Name + Sys 5 Outside Air Inlet Node, !- Outdoor Air Stream Node Name + Sys 5 Relief Air Outlet Node, !- Relief Air Stream Node Name + Sys 5 Outdoor Air Mixer Inlet Node; !- Return Air Stream Node Name + + AirLoopHVAC:UnitaryHeatPump:WaterToAir, + Water-To-Air Heat Pump Unit 5, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + Sys 5 Mixed Air Node, !- Air Inlet Node Name + Sys 5 Air Loop Outlet Node, !- Air Outlet Node Name + 1.0, !- Supply Air Flow Rate {m3/s} + SPACE5-1, !- Controlling Zone or Thermostat Location + Fan:OnOff, !- Supply Air Fan Object Type + Supply Fan 5, !- Supply Air Fan Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Heating Coil Object Type + Sys 5 Heat Pump Heating Mode, !- Heating Coil Name + 0.001, !- Heating Convergence + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Cooling Coil Object Type + Sys 5 Heat Pump Cooling Mode, !- Cooling Coil Name + 0.001, !- Cooling Convergence + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Heat Pump Time Constant {s} + 0.01, !- Fraction of On-Cycle Power Use + 60, !- Heat Pump Fan Delay Time {s} + Coil:Heating:Fuel, !- Supplemental Heating Coil Object Type + Heat Pump DX Supp Heating Coil 5, !- Supplemental Heating Coil Name + 50, !- Maximum Supply Air Temperature from Supplemental Heater {C} + 21, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + Sys 5 Outside Air Inlet Node, !- Outdoor Dry-Bulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + ContinuousFanSch; !- Supply Air Fan Operating Mode Schedule Name + + Coil:Cooling:WaterToAirHeatPump:EquationFit, + Sys 5 Heat Pump Cooling Mode, !- Name + Sys 5 Water to Air Heat Pump Source Side1 Inlet Node, !- Water Inlet Node Name + Sys 5 Water to Air Heat Pump Source Side1 Outlet Node, !- Water Outlet Node Name + Sys 5 Cooling Coil Air Inlet Node, !- Air Inlet Node Name + Sys 5 Heating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.0033, !- Rated Water Flow Rate {m3/s} + 23125.59, !- Gross Rated Total Cooling Capacity {W} + 16267, !- Gross Rated Sensible Cooling Capacity {W} + 7.007757577, !- Gross Rated Cooling COP + -0.68126221, !- Total Cooling Capacity Coefficient 1 + 1.99529297, !- Total Cooling Capacity Coefficient 2 + -0.93611888, !- Total Cooling Capacity Coefficient 3 + 0.02081177, !- Total Cooling Capacity Coefficient 4 + 0.008438868, !- Total Cooling Capacity Coefficient 5 + 2.24209455, !- Sensible Cooling Capacity Coefficient 1 + 7.28913391, !- Sensible Cooling Capacity Coefficient 2 + -9.06079896, !- Sensible Cooling Capacity Coefficient 3 + -0.36729404, !- Sensible Cooling Capacity Coefficient 4 + 0.218826161, !- Sensible Cooling Capacity Coefficient 5 + 0.00901534, !- Sensible Cooling Capacity Coefficient 6 + -3.20456384, !- Cooling Power Consumption Coefficient 1 + 0.47656454, !- Cooling Power Consumption Coefficient 2 + 3.16734236, !- Cooling Power Consumption Coefficient 3 + 0.10244637, !- Cooling Power Consumption Coefficient 4 + -0.038132556, !- Cooling Power Consumption Coefficient 5 + 0, !- Nominal Time for Condensate Removal to Begin {s} + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + + Coil:Heating:WaterToAirHeatPump:EquationFit, + Sys 5 Heat Pump Heating Mode, !- Name + Sys 5 Water to Air Heat Pump Source Side2 Inlet Node, !- Water Inlet Node Name + Sys 5 Water to Air Heat Pump Source Side2 Outlet Node, !- Water Outlet Node Name + Sys 5 Heating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 5 SuppHeating Coil Air Inlet Node, !- Air Outlet Node Name + 1.0, !- Rated Air Flow Rate {m3/s} + 0.0033, !- Rated Water Flow Rate {m3/s} + 19156.73, !- Gross Rated Heating Capacity {W} + 3.167053691, !- Gross Rated Heating COP + -5.50102734, !- Heating Capacity Coefficient 1 + -0.96688754, !- Heating Capacity Coefficient 2 + 7.70755007, !- Heating Capacity Coefficient 3 + 0.031928881, !- Heating Capacity Coefficient 4 + 0.028112522, !- Heating Capacity Coefficient 5 + -7.47517858, !- Heating Power Consumption Coefficient 1 + 6.40876653, !- Heating Power Consumption Coefficient 2 + 1.99711665, !- Heating Power Consumption Coefficient 3 + -0.050682973, !- Heating Power Consumption Coefficient 4 + 0.011385145; !- Heating Power Consumption Coefficient 5 + + Fan:OnOff, + Supply Fan 5, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + 0.5, !- Fan Total Efficiency + 300.0, !- Pressure Rise {Pa} + 1.0, !- Maximum Flow Rate {m3/s} + 0.9, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + Sys 5 Mixed Air Node, !- Air Inlet Node Name + Sys 5 Cooling Coil Air Inlet Node; !- Air Outlet Node Name + + Coil:Heating:Fuel, + Heat Pump DX Supp Heating Coil 5, !- Name + FanAndCoilAvailSched, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + 32000, !- Nominal Capacity {W} + Sys 5 SuppHeating Coil Air Inlet Node, !- Air Inlet Node Name + Sys 5 Air Loop Outlet Node; !- Air Outlet Node Name + +!***END SYSTEM 5 + + CondenserLoop, + Water Source Heat Pump Condenser Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Tower Loop Operation, !- Condenser Equipment Operation Scheme Name + Condenser Supply Outlet Node, !- Condenser Loop Temperature Setpoint Node Name + 80, !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + 0.0099, !- Maximum Loop Flow Rate {m3/s} + 0, !- Minimum Loop Flow Rate {m3/s} + autocalculate, !- Condenser Loop Volume {m3} + Condenser Supply Inlet Node, !- Condenser Side Inlet Node Name + Condenser Supply Outlet Node, !- Condenser Side Outlet Node Name + Condenser Supply Side Branches, !- Condenser Side Branch List Name + Condenser Supply Side Connectors, !- Condenser Side Connector List Name + Condenser Demand Inlet Node, !- Demand Side Inlet Node Name + Condenser Demand Outlet Node, !- Demand Side Outlet Node Name + Condenser Demand Side Branches, !- Condenser Demand Side Branch List Name + Condenser Demand Side Connectors, !- Condenser Demand Side Connector List Name + SequentialLoad; !- Load Distribution Scheme + + SetpointManager:FollowGroundTemperature, + MyCondenserControl, !- Name + Temperature, !- Control Variable + Site:GroundTemperature:Deep, !- Reference Ground Temperature Object Type + 0, !- Offset Temperature Difference {deltaC} + 80.0, !- Maximum Setpoint Temperature {C} + 10.0, !- Minimum Setpoint Temperature {C} + Condenser Supply Outlet Node; !- Setpoint Node or NodeList Name + + BranchList, + Condenser Supply Side Branches, !- Name + Condenser Supply Inlet Branch, !- Branch 1 Name + Condenser Supply GHE Branch, !- Branch 2 Name + Condenser Supply Bypass Branch, !- Branch 3 Name + Condenser Supply Outlet Branch; !- Branch 4 Name + + ConnectorList, + Condenser Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Condenser Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Condenser Supply Mixer; !- Connector 2 Name + + Branch, + Condenser Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:ConstantSpeed, !- Component 1 Object Type + Cond Circ Pump, !- Component 1 Name + Condenser Supply Inlet Node, !- Component 1 Inlet Node Name + Condenser Pump Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Condenser Supply GHE Branch, !- Name + , !- Pressure Drop Curve Name + GroundHeatExchanger:System, !- Component 1 Object Type + Vertical Ground Heat Exchanger, !- Component 1 Name + GHE Inlet Node, !- Component 1 Inlet Node Name + GHE Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Condenser Supply Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Condenser Supply Side Bypass, !- Component 1 Name + Cond Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + Cond Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Condenser Supply Side Bypass, !- Name + Cond Supply Bypass Inlet Node, !- Inlet Node Name + Cond Supply Bypass Outlet Node; !- Outlet Node Name + + Branch, + Condenser Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Condenser Supply Outlet, !- Component 1 Name + Condenser Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + Condenser Supply Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Condenser Supply Outlet, !- Name + Condenser Supply Exit Pipe Inlet Node, !- Inlet Node Name + Condenser Supply Outlet Node; !- Outlet Node Name + + BranchList, + Condenser Demand Side Branches, !- Name + Condenser Demand Inlet Branch, !- Branch 1 Name + Sys 1 Gshp Cooling Condenser Branch, !- Branch 2 Name + Sys 1 Gshp Heating Condenser Branch, !- Branch 3 Name + Sys 2 Gshp Cooling Condenser Branch, !- Branch 4 Name + Sys 2 Gshp Heating Condenser Branch, !- Branch 5 Name + Sys 3 Gshp Cooling Condenser Branch, !- Branch 6 Name + Sys 3 Gshp Heating Condenser Branch, !- Branch 7 Name + Sys 4 Gshp Cooling Condenser Branch, !- Branch 8 Name + Sys 4 Gshp Heating Condenser Branch, !- Branch 9 Name + Sys 5 Gshp Cooling Condenser Branch, !- Branch 10 Name + Sys 5 Gshp Heating Condenser Branch, !- Branch 11 Name + Condenser Demand Bypass Branch, !- Branch 12 Name + Condenser Demand Outlet Branch; !- Branch 13 Name + + ConnectorList, + Condenser Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Condenser Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Condenser Demand Mixer; !- Connector 2 Name + + Branch, + Condenser Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Condenser Demand Inlet Pipe, !- Component 1 Name + Condenser Demand Inlet Node, !- Component 1 Inlet Node Name + Condenser Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Condenser Demand Inlet Pipe, !- Name + Condenser Demand Inlet Node, !- Inlet Node Name + Condenser Demand Entrance Pipe Outlet Node; !- Outlet Node Name + + Branch, + Sys 1 Gshp Cooling Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 1 Heat Pump Cooling Mode, !- Component 1 Name + Sys 1 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name + Sys 1 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Sys 1 Gshp Heating Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 1 Heat Pump Heating Mode, !- Component 1 Name + Sys 1 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name + Sys 1 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Sys 2 Gshp Cooling Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 2 Heat Pump Cooling Mode, !- Component 1 Name + Sys 2 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name + Sys 2 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Sys 2 Gshp Heating Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 2 Heat Pump Heating Mode, !- Component 1 Name + Sys 2 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name + Sys 2 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Sys 3 Gshp Cooling Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 3 Heat Pump Cooling Mode, !- Component 1 Name + Sys 3 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name + Sys 3 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Sys 3 Gshp Heating Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 3 Heat Pump Heating Mode, !- Component 1 Name + Sys 3 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name + Sys 3 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Sys 4 Gshp Cooling Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 4 Heat Pump Cooling Mode, !- Component 1 Name + Sys 4 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name + Sys 4 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Sys 4 Gshp Heating Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 4 Heat Pump Heating Mode, !- Component 1 Name + Sys 4 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name + Sys 4 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Sys 5 Gshp Cooling Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 5 Heat Pump Cooling Mode, !- Component 1 Name + Sys 5 Water to Air Heat Pump Source Side1 Inlet Node, !- Component 1 Inlet Node Name + Sys 5 Water to Air Heat Pump Source Side1 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Sys 5 Gshp Heating Condenser Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:WaterToAirHeatPump:EquationFit, !- Component 1 Object Type + Sys 5 Heat Pump Heating Mode, !- Component 1 Name + Sys 5 Water to Air Heat Pump Source Side2 Inlet Node, !- Component 1 Inlet Node Name + Sys 5 Water to Air Heat Pump Source Side2 Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Condenser Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Condenser Demand Side Bypass, !- Component 1 Name + Cond Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + Cond Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Condenser Demand Side Bypass, !- Name + Cond Demand Bypass Inlet Node, !- Inlet Node Name + Cond Demand Bypass Outlet Node; !- Outlet Node Name + + Branch, + Condenser Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Condenser Demand Outlet Pipe, !- Component 1 Name + Condenser Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + Condenser Demand Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Condenser Demand Outlet Pipe, !- Name + Condenser Demand Exit Pipe Inlet Node, !- Inlet Node Name + Condenser Demand Outlet Node; !- Outlet Node Name + + Connector:Splitter, + Condenser Demand Splitter, !- Name + Condenser Demand Inlet Branch, !- Inlet Branch Name + Sys 1 Gshp Cooling Condenser Branch, !- Outlet Branch 1 Name + Sys 1 Gshp Heating Condenser Branch, !- Outlet Branch 2 Name + Sys 2 Gshp Cooling Condenser Branch, !- Outlet Branch 3 Name + Sys 2 Gshp Heating Condenser Branch, !- Outlet Branch 4 Name + Sys 3 Gshp Cooling Condenser Branch, !- Outlet Branch 5 Name + Sys 3 Gshp Heating Condenser Branch, !- Outlet Branch 6 Name + Sys 4 Gshp Cooling Condenser Branch, !- Outlet Branch 7 Name + Sys 4 Gshp Heating Condenser Branch, !- Outlet Branch 8 Name + Sys 5 Gshp Cooling Condenser Branch, !- Outlet Branch 9 Name + Sys 5 Gshp Heating Condenser Branch, !- Outlet Branch 10 Name + Condenser Demand Bypass Branch; !- Outlet Branch 11 Name + + Connector:Mixer, + Condenser Demand Mixer, !- Name + Condenser Demand Outlet Branch, !- Outlet Branch Name + Sys 1 Gshp Cooling Condenser Branch, !- Inlet Branch 1 Name + Sys 1 Gshp Heating Condenser Branch, !- Inlet Branch 2 Name + Sys 2 Gshp Cooling Condenser Branch, !- Inlet Branch 3 Name + Sys 2 Gshp Heating Condenser Branch, !- Inlet Branch 4 Name + Sys 3 Gshp Cooling Condenser Branch, !- Inlet Branch 5 Name + Sys 3 Gshp Heating Condenser Branch, !- Inlet Branch 6 Name + Sys 4 Gshp Cooling Condenser Branch, !- Inlet Branch 7 Name + Sys 4 Gshp Heating Condenser Branch, !- Inlet Branch 8 Name + Sys 5 Gshp Cooling Condenser Branch, !- Inlet Branch 9 Name + Sys 5 Gshp Heating Condenser Branch, !- Inlet Branch 10 Name + Condenser Demand Bypass Branch; !- Inlet Branch 11 Name + + Connector:Splitter, + Condenser Supply Splitter, !- Name + Condenser Supply Inlet Branch, !- Inlet Branch Name + Condenser Supply GHE Branch, !- Outlet Branch 1 Name + Condenser Supply Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + Condenser Supply Mixer, !- Name + Condenser Supply Outlet Branch, !- Outlet Branch Name + Condenser Supply GHE Branch, !- Inlet Branch 1 Name + Condenser Supply Bypass Branch; !- Inlet Branch 2 Name + + CondenserEquipmentOperationSchemes, + Tower Loop Operation, !- Name + PlantEquipmentOperation:Uncontrolled, !- Control Scheme 1 Object Type + Year Round Tower Operation, !- Control Scheme 1 Name + ON; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:Uncontrolled, + Year Round Tower Operation, !- Name + All Towers; !- Equipment List Name + + CondenserEquipmentList, + All Towers, !- Name + GroundHeatExchanger:System, !- Equipment 1 Object Type + Vertical Ground Heat Exchanger; !- Equipment 1 Name + + GroundHeatExchanger:System, + Vertical Ground Heat Exchanger, !- Name + GHE Inlet Node, !- Inlet Node Name + GHE Outlet Node, !- Outlet Node Name + 0.00330000, !- Design Flow Rate {m3/s} + Site:GroundTemperature:Undisturbed:KusudaAchenbach, !- Undisturbed Ground Temperature Model Type + Vertical Ground Heat Exchanger Ground Temps, !- Undisturbed Ground Temperature Model Name + 0.692626E+00, !- Ground Thermal Conductivity {W/m-K} + 0.234700E+07, !- Ground Thermal Heat Capacity {J/m3-K} + Vertical Ground Heat Exchanger g-functions; !- GHE:Vertical:ResponseFactors Object Name + + GroundHeatExchanger:Vertical:Properties, + Vertical Ground Heat Exchanger Props, !- Name + 1, !- Depth of Top of Borehole {m} + 76.2, !- Borehole Length {m} + 0.127016, !- Borehole Diameter {m} + 0.692626E+00, !- Grout Thermal Conductivity {W/m-K} + 3.90E+06, !- Grout Thermal Heat Capacity {J/m3-K} + 0.391312E+00, !- Pipe Thermal Conductivity {W/m-K} + 1.542E+06, !- Pipe Thermal Heat Capacity {J/m3-K} + 2.66667E-02, !- Pipe Outer Diameter {m} + 2.41285E-03, !- Pipe Thickness {m} + 5.1225E-02; !- U-Tube Distance {m} + + Site:GroundTemperature:Undisturbed:KusudaAchenbach, + Vertical Ground Heat Exchanger Ground Temps, !- Name + 0.692626E+00, !- Soil Thermal Conductivity {W/m-K} + 920, !- Soil Density {kg/m3} + 2551.09, !- Soil Specific Heat {J/kg-K} + 13.375, !- Average Soil Surface Temperature {C} + 3.2, !- Average Amplitude of Surface Temperature {deltaC} + 8; !- Phase Shift of Minimum Surface Temperature {days} + + GroundHeatExchanger:ResponseFactors, + Vertical Ground Heat Exchanger g-functions, !- Name + Vertical Ground Heat Exchanger Props, !- GHE:Vertical:Properties Object Name + 120, !- Number of Boreholes + 0.0005, !- G-Function Reference Ratio {dimensionless} + -15.2996, !- g-Function Ln(T/Ts) Value 1 + -0.348322, !- g-Function g Value 1 + -14.201, !- g-Function Ln(T/Ts) Value 2 + 0.022208, !- g-Function g Value 2 + -13.2202, !- g-Function Ln(T/Ts) Value 3 + 0.412345, !- g-Function g Value 3 + -12.2086, !- g-Function Ln(T/Ts) Value 4 + 0.867498, !- g-Function g Value 4 + -11.1888, !- g-Function Ln(T/Ts) Value 5 + 1.357839, !- g-Function g Value 5 + -10.1816, !- g-Function Ln(T/Ts) Value 6 + 1.852024, !- g-Function g Value 6 + -9.1815, !- g-Function Ln(T/Ts) Value 7 + 2.345656, !- g-Function g Value 7 + -8.6809, !- g-Function Ln(T/Ts) Value 8 + 2.593958, !- g-Function g Value 8 + -8.5, !- g-Function Ln(T/Ts) Value 9 + 2.679, !- g-Function g Value 9 + -7.8, !- g-Function Ln(T/Ts) Value 10 + 3.023, !- g-Function g Value 10 + -7.2, !- g-Function Ln(T/Ts) Value 11 + 3.32, !- g-Function g Value 11 + -6.5, !- g-Function Ln(T/Ts) Value 12 + 3.681, !- g-Function g Value 12 + -5.9, !- g-Function Ln(T/Ts) Value 13 + 4.071, !- g-Function g Value 13 + -5.2, !- g-Function Ln(T/Ts) Value 14 + 4.828, !- g-Function g Value 14 + -4.5, !- g-Function Ln(T/Ts) Value 15 + 6.253, !- g-Function g Value 15 + -3.963, !- g-Function Ln(T/Ts) Value 16 + 7.894, !- g-Function g Value 16 + -3.27, !- g-Function Ln(T/Ts) Value 17 + 11.82, !- g-Function g Value 17 + -2.864, !- g-Function Ln(T/Ts) Value 18 + 15.117, !- g-Function g Value 18 + -2.577, !- g-Function Ln(T/Ts) Value 19 + 18.006, !- g-Function g Value 19 + -2.171, !- g-Function Ln(T/Ts) Value 20 + 22.887, !- g-Function g Value 20 + -1.884, !- g-Function Ln(T/Ts) Value 21 + 26.924, !- g-Function g Value 21 + -1.191, !- g-Function Ln(T/Ts) Value 22 + 38.004, !- g-Function g Value 22 + -0.497, !- g-Function Ln(T/Ts) Value 23 + 49.919, !- g-Function g Value 23 + -0.274, !- g-Function Ln(T/Ts) Value 24 + 53.407, !- g-Function g Value 24 + -0.051, !- g-Function Ln(T/Ts) Value 25 + 56.632, !- g-Function g Value 25 + 0.196, !- g-Function Ln(T/Ts) Value 26 + 59.825, !- g-Function g Value 26 + 0.419, !- g-Function Ln(T/Ts) Value 27 + 62.349, !- g-Function g Value 27 + 0.642, !- g-Function Ln(T/Ts) Value 28 + 64.524, !- g-Function g Value 28 + 0.873, !- g-Function Ln(T/Ts) Value 29 + 66.412, !- g-Function g Value 29 + 1.112, !- g-Function Ln(T/Ts) Value 30 + 67.993, !- g-Function g Value 30 + 1.335, !- g-Function Ln(T/Ts) Value 31 + 69.162, !- g-Function g Value 31 + 1.679, !- g-Function Ln(T/Ts) Value 32 + 70.476, !- g-Function g Value 32 + 2.028, !- g-Function Ln(T/Ts) Value 33 + 71.361, !- g-Function g Value 33 + 2.275, !- g-Function Ln(T/Ts) Value 34 + 71.79, !- g-Function g Value 34 + 3.003, !- g-Function Ln(T/Ts) Value 35 + 72.511; !- g-Function g Value 35 + + Pump:ConstantSpeed, + Cond Circ Pump, !- Name + Condenser Supply Inlet Node, !- Inlet Node Name + Condenser Pump Outlet Node, !- Outlet Node Name + .0099, !- Design Flow Rate {m3/s} + 50000, !- Design Pump Head {Pa} + 600, !- Design Power Consumption {W} + .87, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + CONTINUOUS; !- Pump Control Type + + Curve:Quadratic, + HPACCOOLPLFFPLR, !- Name + 0.75, !- Coefficient1 Constant + 0.25, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + + Curve:Quadratic, + HPACHEATPLFFPLR, !- Name + 0.75, !- Coefficient1 Constant + 0.25, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + + Schedule:Compact, + Hot Water Demand Schedule, !- Name + Fraction, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR: AllDays, !- Field 2 + UNTIL: 6:00,0, !- Field 3 + UNTIL: 7:00,0.003, !- Field 5 + UNTIL: 13:00,0, !- Field 7 + UNTIL: 13:30,0.002, !- Field 9 + UNTIL: 18:00,0, !- Field 11 + UNTIL: 18:30,0.005, !- Field 13 + UNTIL: 24:00,0; !- Field 15 + + Schedule:Compact, + DesuperheaterSched, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + DesuperheaterTempSch, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + Hot Water Setpoint Temp Schedule, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,40.0; !- Field 3 + + Coil:WaterHeating:Desuperheater, + WaterHeatingCoil, !- Name + DesuperheaterSched, !- Availability Schedule Name + DesuperheaterTempSch, !- Setpoint Temperature Schedule Name + 4.0, !- Dead Band Temperature Difference {deltaC} + 0.25, !- Rated Heat Reclaim Recovery Efficiency + 50.0, !- Rated Inlet Water Temperature {C} + 35.0, !- Rated Outdoor Air Temperature {C} + 50.0, !- Maximum Inlet Water Temperature for Heat Reclaim {C} + HEffFTemp, !- Heat Reclaim Efficiency Function of Temperature Curve Name + WaterHeatingCoilInletNode, !- Water Inlet Node Name + WaterHeatingCoilOutletNode, !- Water Outlet Node Name + WaterHeater:Stratified, !- Tank Object Type + StratifiedWaterHeater, !- Tank Name + Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Heating Source Object Type + Sys 5 Heat Pump Cooling Mode, !- Heating Source Name + 0.0001, !- Water Flow Rate {m3/s} + 25.0, !- Water Pump Power {W} + 0.2, !- Fraction of Pump Heat to Water + 10.0, !- On-Cycle Parasitic Electric Load {W} + 10.0; !- Off-Cycle Parasitic Electric Load {W} + + Curve:Biquadratic, + HEffFTemp, !- Name + 1.0, !- Coefficient1 Constant + 0.0, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Coefficient4 y + 0.0, !- Coefficient5 y**2 + 0.0, !- Coefficient6 x*y + 50.0, !- Minimum Value of x + 80.0, !- Maximum Value of x + 20.0, !- Minimum Value of y + 45.0, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + + WaterHeater:Stratified, + StratifiedWaterHeater, !- Name + , !- End-Use Subcategory + 0.3785, !- Tank Volume {m3} + 0.514882, !- Tank Height {m} + VerticalCylinder, !- Tank Shape + , !- Tank Perimeter {m} + 82.2222, !- Maximum Temperature Limit {C} + MasterSlave, !- Heater Priority Control + Hot Water Setpoint Temp Schedule, !- Heater 1 Setpoint Temperature Schedule Name + 2.0, !- Heater 1 Deadband Temperature Difference {deltaC} + 5000, !- Heater 1 Capacity {W} + 0.360417, !- Heater 1 Height {m} + Hot Water Setpoint Temp Schedule, !- Heater 2 Setpoint Temperature Schedule Name + 2.0, !- Heater 2 Deadband Temperature Difference {deltaC} + 0, !- Heater 2 Capacity {W} + 0.154465, !- Heater 2 Height {m} + ELECTRICITY, !- Heater Fuel Type + 0.95, !- Heater Thermal Efficiency + 10, !- Off Cycle Parasitic Fuel Consumption Rate {W} + ELECTRICITY, !- Off Cycle Parasitic Fuel Type + 0, !- Off Cycle Parasitic Heat Fraction to Tank + 0.308929, !- Off Cycle Parasitic Height {m} + 30, !- On Cycle Parasitic Fuel Consumption Rate {W} + ELECTRICITY, !- On Cycle Parasitic Fuel Type + 0, !- On Cycle Parasitic Heat Fraction to Tank + 0.308929, !- On Cycle Parasitic Height {m} + ZONE, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + SPACE5-1, !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 0.658944, !- Uniform Skin Loss Coefficient per Unit Area to Ambient Temperature {W/m2-K} + 1.000000, !- Skin Loss Fraction to Zone + , !- Off Cycle Flue Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Flue Loss Fraction to Zone + 0.00379, !- Peak Use Flow Rate {m3/s} + Hot Water Demand Schedule, !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Use Side Inlet Node Name + , !- Use Side Outlet Node Name + , !- Use Side Effectiveness + 0, !- Use Side Inlet Height {m} + autocalculate, !- Use Side Outlet Height {m} + WaterHeatingCoilOutletNode, !- Source Side Inlet Node Name + WaterHeatingCoilInletNode, !- Source Side Outlet Node Name + 0.95, !- Source Side Effectiveness + 0, !- Source Side Inlet Height {m} + 0.257441, !- Source Side Outlet Height {m} + Fixed, !- Inlet Mode + , !- Use Side Design Flow Rate {m3/s} + , !- Source Side Design Flow Rate {m3/s} + , !- Indirect Water Heating Recovery Time {hr} + 6; !- Number of Nodes + + Output:Variable,*,Unitary System Requested Sensible Cooling Rate,hourly; + + Output:Variable,*,Unitary System Requested Latent Cooling Rate,hourly; + + Output:Variable,*,Unitary System Requested Heating Rate,hourly; + + Output:Variable,*,Unitary System Fan Part Load Ratio,hourly; + + Output:Variable,*,Unitary System Compressor Part Load Ratio,hourly; + + Output:Variable,*,Zone Air System Sensible Heating Energy,hourly; + + Output:Variable,*,Zone Air System Sensible Heating Rate,hourly; + + Output:Variable,*,Zone Air System Sensible Cooling Energy,hourly; + + Output:Variable,*,Zone Air System Sensible Cooling Rate,hourly; + + Output:Variable,*,Zone Air Temperature,hourly; + + Output:Variable,*,Zone Air Relative Humidity,hourly; + + Output:Variable,*,Zone Air Humidity Ratio,hourly; + + Output:Variable,*,Fan Electric Power,hourly; + + Output:Variable,*,Heating Coil Electric Power,hourly; + + Output:Variable,*,Cooling Coil Total Cooling Rate,hourly; + + Output:Variable,*,Cooling Coil Sensible Cooling Rate,hourly; + + Output:Variable,*,Cooling Coil Source Side Heat Transfer Rate,hourly; + + Output:Variable,*,Cooling Coil Part Load Ratio,hourly; + + Output:Variable,*,Cooling Coil Air Outlet Temperature,hourly; + + Output:Variable,*,Cooling Coil Air Outlet Humidity Ratio,hourly; + + Output:Variable,*,Cooling Coil Air Inlet Temperature,hourly; + + Output:Variable,*,Cooling Coil Air Inlet Humidity Ratio,hourly; + + Output:Variable,*,Cooling Coil Source Side Outlet Temperature,hourly; + + Output:Variable,*,Cooling Coil Source Side Inlet Temperature,hourly; + + Output:Variable,*,Heating Coil Heating Energy,hourly; + + Output:Variable,*,Heating Coil Heating Rate,hourly; + + Output:Variable,*,Heating Coil Gas Rate,hourly; + + Output:Variable,*,Fan Electric Power,hourly; + + Output:Variable,*,Cooling Coil Air Mass Flow Rate,hourly; + + Output:Variable,Sys 1 Mixed Air Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Sys 1 Air Loop Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Sys 2 Mixed Air Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Sys 2 Air Loop Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Sys 3 Mixed Air Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Sys 3 Air Loop Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Sys 4 Mixed Air Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Sys 4 Air Loop Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Sys 5 Mixed Air Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Sys 5 Air Loop Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,*,Water Heater Tank Temperature,hourly; + + Output:Variable,*,Water Heater Final Tank Temperature,hourly; + + Output:Variable,*,Water Heater Heat Loss Rate,hourly; + + Output:Variable,*,Water Heater Heat Loss Energy,hourly; + + Output:Variable,*,Water Heater Source Side Mass Flow Rate,hourly; + + Output:Variable,*,Water Heater Source Side Inlet Temperature,hourly; + + Output:Variable,*,Water Heater Source Side Outlet Temperature,hourly; + + Output:Variable,*,Water Heater Source Side Heat Transfer Rate,hourly; + + Output:Variable,*,Water Heater Source Side Heat Transfer Energy,hourly; + + Output:Variable,*,Water Heater Off Cycle Parasitic Tank Heat Transfer Rate,hourly; + + Output:Variable,*,Water Heater Off Cycle Parasitic Tank Heat Transfer Energy,hourly; + + Output:Variable,*,Water Heater On Cycle Parasitic Tank Heat Transfer Rate,hourly; + + Output:Variable,*,Water Heater On Cycle Parasitic Tank Heat Transfer Energy,hourly; + + Output:Variable,*,Water Heater Total Demand Heat Transfer Rate,hourly; + + Output:Variable,*,Water Heater Total Demand Heat Transfer Energy,hourly; + + Output:Variable,*,Water Heater Heating Rate,hourly; + + Output:Variable,*,Water Heater Heating Energy,hourly; + + Output:Variable,*,Water Heater Unmet Demand Heat Transfer Rate,hourly; + + Output:Variable,*,Water Heater Unmet Demand Heat Transfer Energy,hourly; + + Output:Variable,*,Water Heater Venting Heat Transfer Rate,hourly; + + Output:Variable,*,Water Heater Venting Heat Transfer Energy,hourly; + + Output:Variable,*,Water Heater Net Heat Transfer Rate,hourly; + + Output:Variable,*,Water Heater Net Heat Transfer Energy,hourly; + + Output:Variable,*,Water Heater Cycle On Count,hourly; + + Output:Variable,*,Water Heater Runtime Fraction,hourly; + + Output:Variable,*,Water Heater Part Load Ratio,hourly; + + Output:Variable,*,Water Heater Electric Power,hourly; + + Output:Variable,*,Water Heater Electric Energy,hourly; + + Output:Variable,*,Water Heater Off Cycle Parasitic Electric Power,hourly; + + Output:Variable,*,Water Heater Off Cycle Parasitic Electric Energy,hourly; + + Output:Variable,*,Water Heater On Cycle Parasitic Electric Power,hourly; + + Output:Variable,*,Water Heater On Cycle Parasitic Electric Energy,hourly; + + Output:Variable,*,Water Heater Water Volume Flow Rate,hourly; + + Output:Variable,*,Water Heater Water Volume,hourly; + + Output:Variable,*,Water Heater Mains Water Volume,hourly; + + Output:Variable,*,Water Heater Heat Reclaim Efficiency Modifier Multiplier,hourly; + + Output:Variable,*,Water Heater Pump Electric Power,hourly; + + Output:Variable,*,Water Heater Pump Electric Energy,hourly; + + Output:VariableDictionary,Regular; + + Output:Surfaces:Drawing,dxf; + + Output:Constructions,Constructions; + + Output:Meter:MeterFileOnly,Electricity:Facility,monthly; + + Output:Meter:MeterFileOnly,Electricity:Building,monthly; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly; + + Output:Meter:MeterFileOnly,Electricity:HVAC,monthly; + + Output:Meter:MeterFileOnly,Electricity:Plant,monthly; + + Output:Meter:MeterFileOnly,Gas:Facility,monthly; + + Output:Meter:MeterFileOnly,Electricity:Facility,runperiod; + + Output:Meter:MeterFileOnly,Electricity:Building,runperiod; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,runperiod; + + Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; + + Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; + + Output:Meter:MeterFileOnly,Gas:Facility,runperiod; + + OutputControl:Table:Style, + HTML; !- Column Separator + + Output:Table:SummaryReports, + AllSummary; !- Report 1 Name + diff --git a/testfiles/LookupTable.csv b/testfiles/LookupTable.csv new file mode 100644 index 00000000000..76c39a875d6 --- /dev/null +++ b/testfiles/LookupTable.csv @@ -0,0 +1,31 @@ + Tiwb, Todb, EIR +12.77778, 18.00000, 0.750374374 + , 24.00000, 0.834785832 + , 30.00000, 0.950729763 + , 36.00000, 1.098206165 + , 42.00000, 1.277215039 + , 46.11111, 1.418073932 +15.00000, , 0.760275481 + , , 0.834979909 + , , 0.941216809 + , , 1.078986181 + , , 1.248288025 + , , 1.382495806 +18.30000, , 0.763612751 + , , 0.823902225 + , , 0.91572417 + , , 1.039078588 + , , 1.193965478 + , , 1.318296348 +21.70000, , 0.752843265 + , , 0.798280967 + , , 0.875251142 + , , 0.983753788 + , , 1.123788906 + , , 1.237943566 +23.88889, , 0.738279952 + , , 0.774156215 + , , 0.84156495 + , , 0.940506158 + , , 1.070979837 + , , 1.178583142 \ No newline at end of file diff --git a/testfiles/LookupTables.idf b/testfiles/LookupTables.idf index 2239ae7b22f..d05d2838c50 100644 --- a/testfiles/LookupTables.idf +++ b/testfiles/LookupTables.idf @@ -238,7 +238,7 @@ !- =========== ALL OBJECTS IN CLASS: RUNPERIOD =========== RunPeriod, - Run Period 1, !- Name + Jan, !- Name 1, !- Begin Month 14, !- Begin Day of Month , !- Begin Year @@ -253,7 +253,7 @@ Yes; !- Use Weather File Snow Indicators RunPeriod, - Run Period 2, !- Name + July, !- Name 7, !- Begin Month 7, !- Begin Day of Month , !- Begin Year @@ -1822,85 +1822,114 @@ ! Create a performance curve and use it throughout the simulation. ! Since the DisplayExtraWarnings flag is used, write the performance cuve to eio file. - Table:OneIndependentVariable, + + Table:IndependentVariable, + HPACCoolCapFFF_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Divisor + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 1.0, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + HPACCoolCapFFF_IndependentVariableList, !- Name + HPACCoolCapFFF_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACCoolCapFFF, !- Name - Quadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - 0.5, !- Minimum Value of X - 1.5, !- Maximum Value of X - 0.8, !- Minimum Table Output - 1.5, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACCoolCapFFF_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.8, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.8, !- Output Value #1 - 1.0, !- X Value #2 - 1.0, !- Output Value #2 - 1.5, !- X Value #3 - 1.1; !- Output Value #3 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.8, !- Output Value 1 + 1.0, !- Extended Field + 1.1; !- Extended Field ! Create a performance curve and use it throughout the simulation ! Since the DisplayExtraWarnings flag is used, the table data read is echoed to the eio file - Table:MultiVariableLookup, - HPACCoolCapFFF2, !- Name - EvaluateCurveToLimits, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + + Table:IndependentVariable, + HPACCoolCapFFF2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - , !- X2 Sort Order - , !- Normalization Reference - 0.5, !- Minimum Value of X1 - 1.5, !- Maximum Value of X1 - , !- Minimum Value of X2 - , !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.8, !- Minimum Table Output - 1.5, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - , !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 1.0, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + HPACCoolCapFFF2_IndependentVariableList, !- Name + HPACCoolCapFFF2_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, + HPACCoolCapFFF2, !- Name + HPACCoolCapFFF2_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.8, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - 1, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 0.0, !- Field 1 Determined by the Number of Independent Variables - 1.0, !- Field 2 Determined by the Number of Independent Variables - 1.5, !- Field 3 Determined by the Number of Independent Variables - 0.8, !- - 1.0, !- - 1.1; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.8, !- Output Value 1 + 1.0, !- Extended Field + 1.1; !- Extended Field ! Use linear interpolation of table to evaluate the tabular data. Do not extrapolate. ! Curve Type needs to be Quadratic for this curves "usage" even though a linear curve is modeled - Table:OneIndependentVariable, + + Table:IndependentVariable, + HPACCoolCapFFF3_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 1.5; !- Extended Field + + Table:IndependentVariableList, + HPACCoolCapFFF3_IndependentVariableList, !- Name + HPACCoolCapFFF3_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACCoolCapFFF3, !- Name - Quadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 0.5, !- Minimum Value of X - 1.5, !- Maximum Value of X - 0.8, !- Minimum Table Output - 1.5, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACCoolCapFFF3_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.8, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.8, !- Output Value #1 - 1.5, !- X Value #2 - 1.1; !- Output Value #2 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.8, !- Output Value 1 + 1.1; !- Extended Field ! Curve:Quadratic, ! HPACEIRFFF, !- Name @@ -1911,113 +1940,117 @@ ! 1.5; !- Maximum Value of x ! Evaluate the tabular data using the Lagrange interpolation equation with 3 point (Quadratic) interpolation - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACEIRFFF_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.5, !- Extended Field + 1.0, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + HPACEIRFFF_IndependentVariableList, !- Name + HPACEIRFFF_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACEIRFFF, !- Name - Quadratic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 0.5, !- Minimum Value of X - 1.5, !- Maximum Value of X - 0.0, !- Minimum Table Output - 1.5, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACEIRFFF_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 1.1552, !- Output Value #1 - 0.5, !- X Value #2 - 1.0712, !- Output Value #2 - 1.0, !- X Value #3 - 1.0, !- Output Value #3 - 1.5, !- X Value #4 - 0.9416; !- Output Value #4 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.1552, !- Output Value 1 + 1.0712, !- Extended Field + 1.0, !- Extended Field + 0.9416; !- Extended Field ! create performance curve and use it throughout the simulation. At least 3 data points (Quadratic) are required. - Table:MultiVariableLookup, - HPACEIRFFF2, !- Name - EvaluateCurveToLimits, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + HPACEIRFFF2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - , !- X2 Sort Order - , !- Normalization Reference - 0.5, !- Minimum Value of X1 - 1.5, !- Maximum Value of X1 - , !- Minimum Value of X2 - , !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.0, !- Minimum Table Output - 1.5, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - , !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.5, !- Extended Field + 1.0, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + HPACEIRFFF2_IndependentVariableList, !- Name + HPACEIRFFF2_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, + HPACEIRFFF2, !- Name + HPACEIRFFF2_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - 1, !- Number of Independent Variables - 4, !- Number of Values for Independent Variable X1 - 0.0, !- Field 1 Determined by the Number of Independent Variables - 0.5, !- Field 2 Determined by the Number of Independent Variables - 1.0, !- Field 3 Determined by the Number of Independent Variables - 1.5, !- - 1.1552, !- - 1.0712, !- - 1.0, !- - 0.9416; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.1552, !- Output Value 1 + 1.0712, !- Extended Field + 1.0, !- Extended Field + 0.9416; !- Extended Field ! Linearly interpolate table with no extrapolation. - Table:MultiVariableLookup, - HPACEIRFFF3, !- Name - LinearInterpolationOfTable, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + HPACEIRFFF3_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - , !- X2 Sort Order - , !- Normalization Reference - 0.5, !- Minimum Value of X1 - 1.5, !- Maximum Value of X1 - , !- Minimum Value of X2 - , !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.0, !- Minimum Table Output - 1.5, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - , !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.5, !- Extended Field + 1.0, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + HPACEIRFFF3_IndependentVariableList, !- Name + HPACEIRFFF3_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, + HPACEIRFFF3, !- Name + HPACEIRFFF3_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - 1, !- Number of Independent Variables - 4, !- Number of Values for Independent Variable X1 - 0.0, !- Field 1 Determined by the Number of Independent Variables - 0.5, !- Field 2 Determined by the Number of Independent Variables - 1.0, !- Field 3 Determined by the Number of Independent Variables - 1.5, !- - 1.1552, !- - 1.0712, !- - 1.0, !- - 0.9416; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.1552, !- Output Value 1 + 1.0712, !- Extended Field + 1.0, !- Extended Field + 0.9416; !- Extended Field ! Curve:Quadratic, ! HPACPLFFPLR, !- Name @@ -2028,61 +2061,109 @@ ! 1.0; !- Maximum Value of x ! Use linear interpolation of table with no extrapolation - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACPLFFPLR_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACPLFFPLR_IndependentVariableList, !- Name + HPACPLFFPLR_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACPLFFPLR, !- Name - Quadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.0, !- Maximum Value of X - 0.85, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACPLFFPLR_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.85, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.85, !- Output Value #1 - 1.0, !- X Value #2 - 1.0; !- Output Value #2 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.85, !- Output Value 1 + 1.0; !- Extended Field ! create performance curve and use it throughout simulation. At least 3 data points are required for Quadratic curves. - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACPLFFPLR2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.5, !- Extended Field + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACPLFFPLR2_IndependentVariableList, !- Name + HPACPLFFPLR2_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACPLFFPLR2, !- Name - Quadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.0, !- Maximum Value of X - 0.85, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACPLFFPLR2_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.85, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.85, !- Output Value #1 - 0.5, !- X Value #2 - 0.925, !- Output Value #2 - 1.0, !- X Value #3 - 1.0; !- Output Value #3 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.85, !- Output Value 1 + 0.925, !- Extended Field + 1.0; !- Extended Field ! Use Quadratic interpolation of tabular data. Although this is a linear curve, this example is shown for illustration purposes. - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACPLFFPLR3_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.5, !- Extended Field + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACPLFFPLR3_IndependentVariableList, !- Name + HPACPLFFPLR3_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACPLFFPLR3, !- Name - Quadratic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.0, !- Maximum Value of X - 0.85, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACPLFFPLR3_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.85, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.85, !- Output Value #1 - 0.5, !- X Value #2 - 0.925, !- Output Value #2 - 1.0, !- X Value #3 - 1.0; !- Output Value #3 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.85, !- Output Value 1 + 0.925, !- Extended Field + 1.0; !- Extended Field ! Curve:Quadratic, ! HPACHeatEIRFFF, !- Name @@ -2093,141 +2174,124 @@ ! 1.0; !- Maximum Value of x ! Linearly interpolate tabular data, do not extrapolate - Table:MultiVariableLookup, - HPACHeatEIRFFF, !- Name - LinearInterpolationOfTable, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + + Table:IndependentVariable, + HPACHeatEIRFFF_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - , !- X2 Sort Order - , !- Normalization Reference - 0.0, !- Minimum Value of X1 - 1.0, !- Maximum Value of X1 - , !- Minimum Value of X2 - , !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.0, !- Minimum Table Output - 1.5, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - , !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.25, !- Extended Field + 0.5, !- Extended Field + 0.75, !- Extended Field + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACHeatEIRFFF_IndependentVariableList, !- Name + HPACHeatEIRFFF_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, + HPACHeatEIRFFF, !- Name + HPACHeatEIRFFF_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - 1, !- Number of Independent Variables - 5, !- Number of Values for Independent Variable X1 - 0.0, !- Field 1 Determined by the Number of Independent Variables - 0.25, !- Field 2 Determined by the Number of Independent Variables - 0.5, !- Field 3 Determined by the Number of Independent Variables - 0.75, !- - 1.0, !- - 1.3824, !- - 1.2772, !- - 1.1784, !- - 1.0860, !- - 1.0; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.3824, !- Output Value 1 + 1.2772, !- Extended Field + 1.1784, !- Extended Field + 1.0860, !- Extended Field + 1.0; !- Extended Field ! create performance curve and use it throughout simulation. At least 3 data points are required for Quadratic curves. - Table:MultiVariableLookup, - HPACHeatEIRFFF2, !- Name - EvaluateCurveToLimits, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + HPACHeatEIRFFF2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - , !- X2 Sort Order - , !- Normalization Reference - 0.0, !- Minimum Value of X1 - 1.0, !- Maximum Value of X1 - , !- Minimum Value of X2 - , !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.0, !- Minimum Table Output - 1.5, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - , !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.25, !- Extended Field + 0.5, !- Extended Field + 0.75, !- Extended Field + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACHeatEIRFFF2_IndependentVariableList, !- Name + HPACHeatEIRFFF2_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, + HPACHeatEIRFFF2, !- Name + HPACHeatEIRFFF2_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - 1, !- Number of Independent Variables - 5, !- Number of Values for Independent Variable X1 - 0.0, !- Field 1 Determined by the Number of Independent Variables - 0.25, !- Field 2 Determined by the Number of Independent Variables - 0.5, !- Field 3 Determined by the Number of Independent Variables - 0.75, !- - 1.0, !- - 1.3824, !- - 1.2772, !- - 1.1784, !- - 1.0860, !- - 1.0; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.3824, !- Output Value 1 + 1.2772, !- Extended Field + 1.1784, !- Extended Field + 1.0860, !- Extended Field + 1.0; !- Extended Field ! Use Quadratic interpolation of tabular data. - Table:MultiVariableLookup, - HPACHeatEIRFFF3, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + HPACHeatEIRFFF3_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - , !- X2 Sort Order - , !- Normalization Reference - 0.0, !- Minimum Value of X1 - 1.0, !- Maximum Value of X1 - , !- Minimum Value of X2 - , !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.0, !- Minimum Table Output - 1.5, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - , !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.25, !- Extended Field + 0.5, !- Extended Field + 0.75, !- Extended Field + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACHeatEIRFFF3_IndependentVariableList, !- Name + HPACHeatEIRFFF3_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, + HPACHeatEIRFFF3, !- Name + HPACHeatEIRFFF3_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.0, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - 1, !- Number of Independent Variables - 5, !- Number of Values for Independent Variable X1 - 0.0, !- Field 1 Determined by the Number of Independent Variables - 0.25, !- Field 2 Determined by the Number of Independent Variables - 0.5, !- Field 3 Determined by the Number of Independent Variables - 0.75, !- - 1.0, !- - 1.3824, !- - 1.2772, !- - 1.1784, !- - 1.0860, !- - 1.0; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.3824, !- Output Value 1 + 1.2772, !- Extended Field + 1.1784, !- Extended Field + 1.0860, !- Extended Field + 1.0; !- Extended Field ! Curve:Quadratic, ! HPACCOOLPLFFPLR, !- Name @@ -2238,59 +2302,107 @@ ! 1.0; !- Maximum Value of x ! Linearly interpolate tabular data - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACCOOLPLFFPLR_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACCOOLPLFFPLR_IndependentVariableList, !- Name + HPACCOOLPLFFPLR_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACCOOLPLFFPLR, !- Name - Quadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.0, !- Maximum Value of X - 0.75, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACCOOLPLFFPLR_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.75, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.75, !- Output Value #1 - 1.0, !- X Value #2 - 1.0; !- Output Value #2 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.75, !- Output Value 1 + 1.0; !- Extended Field ! Use Quadratic interpolation of tabular data. - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACCOOLPLFFPLR2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACCOOLPLFFPLR2_IndependentVariableList, !- Name + HPACCOOLPLFFPLR2_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACCOOLPLFFPLR2, !- Name - Quadratic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.0, !- Maximum Value of X - 0.75, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACCOOLPLFFPLR2_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.75, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.75, !- Output Value #1 - 1.0, !- X Value #2 - 1.0; !- Output Value #2 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.75, !- Output Value 1 + 1.0; !- Extended Field ! create performance curve and use it throughout simulation. At least 3 data points are required for Quadratic curves. - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACCOOLPLFFPLR3_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.5, !- Extended Field + 1.0; !- Extended Field + + Table:IndependentVariableList, + HPACCOOLPLFFPLR3_IndependentVariableList, !- Name + HPACCOOLPLFFPLR3_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACCOOLPLFFPLR3, !- Name - Quadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.0, !- Maximum Value of X - 0.75, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + HPACCOOLPLFFPLR3_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.75, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.75, !- Output Value #1 - 0.5, !- X Value #2 - 0.875, !- Output Value #2 - 1.0, !- X Value #3 - 1.0; !- Output Value #3 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.75, !- Output Value 1 + 0.875, !- Extended Field + 1.0; !- Extended Field !- =========== ALL OBJECTS IN CLASS: CURVE:CUBIC =========== ! Curve:Cubic, @@ -2306,77 +2418,125 @@ ! Temperature, !- Input Unit Type for X ! Dimensionless; !- Output Unit Type - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACHeatCapFT_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + -20.0, !- Minimum Value + 20.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -20.0, !- Value 1 + -10.0, !- Extended Field + 0.0, !- Extended Field + 10.0, !- Extended Field + 20.0, !- Extended Field + 30.0; !- Extended Field + + Table:IndependentVariableList, + HPACHeatCapFT_IndependentVariableList, !- Name + HPACHeatCapFT_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACHeatCapFT, !- Name - Cubic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - -20.0, !- Minimum Value of X - 20.0, !- Maximum Value of X - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X + HPACHeatCapFT_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - -20.0, !- X Value #1 - 0.237719, !- Output Value #1 - -10.0, !- X Value #2 - 0.493858, !- Output Value #2 - 0.0, !- X Value #3 - 0.758746, !- Output Value #3 - 10.0, !- X Value #4 - 1.053377, !- Output Value #4 - 20.0, !- X Value #5 - 1.398746, !- Output Value #5 - 30.0, !- X Value #6 - 1.815849; !- Output Value #6 - - Table:OneIndependentVariable, + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.237719, !- Output Value 1 + 0.493858, !- Extended Field + 0.758746, !- Extended Field + 1.053377, !- Extended Field + 1.398746, !- Extended Field + 1.815849; !- Extended Field + + Table:IndependentVariable, + HPACHeatCapFT2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20.0, !- Minimum Value + 20.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -20.0, !- Value 1 + -10.0, !- Extended Field + 0.0, !- Extended Field + 10.0, !- Extended Field + 20.0, !- Extended Field + 30.0; !- Extended Field + + Table:IndependentVariableList, + HPACHeatCapFT2_IndependentVariableList, !- Name + HPACHeatCapFT2_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACHeatCapFT2, !- Name - Cubic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - -20.0, !- Minimum Value of X - 20.0, !- Maximum Value of X - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X + HPACHeatCapFT2_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - -20.0, !- X Value #1 - 0.237719, !- Output Value #1 - -10.0, !- X Value #2 - 0.493858, !- Output Value #2 - 0.0, !- X Value #3 - 0.758746, !- Output Value #3 - 10.0, !- X Value #4 - 1.053377, !- Output Value #4 - 20.0, !- X Value #5 - 1.398746, !- Output Value #5 - 30.0, !- X Value #6 - 1.815849; !- Output Value #6 - - Table:OneIndependentVariable, + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.237719, !- Output Value 1 + 0.493858, !- Extended Field + 0.758746, !- Extended Field + 1.053377, !- Extended Field + 1.398746, !- Extended Field + 1.815849; !- Extended Field + + Table:IndependentVariable, + HPACHeatCapFT3_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + -20.0, !- Minimum Value + 20.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -20.0, !- Value 1 + -10.0, !- Extended Field + 0.0, !- Extended Field + 10.0, !- Extended Field + 20.0, !- Extended Field + 30.0; !- Extended Field + + Table:IndependentVariableList, + HPACHeatCapFT3_IndependentVariableList, !- Name + HPACHeatCapFT3_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACHeatCapFT3, !- Name - Cubic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - -20.0, !- Minimum Value of X - 20.0, !- Maximum Value of X - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X + HPACHeatCapFT3_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - -20.0, !- X Value #1 - 0.237719, !- Output Value #1 - -10.0, !- X Value #2 - 0.493858, !- Output Value #2 - 0.0, !- X Value #3 - 0.758746, !- Output Value #3 - 10.0, !- X Value #4 - 1.053377, !- Output Value #4 - 20.0, !- X Value #5 - 1.398746, !- Output Value #5 - 30.0, !- X Value #6 - 1.815849; !- Output Value #6 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.237719, !- Output Value 1 + 0.493858, !- Extended Field + 0.758746, !- Extended Field + 1.053377, !- Extended Field + 1.398746, !- Extended Field + 1.815849; !- Extended Field ! Curve:Cubic, ! HPACHeatCapFFF, !- Name @@ -2388,135 +2548,118 @@ ! 1.5; !- Maximum Value of x ! Use Lagrange interpolation 4th order polynomial to evaluate tabular data - Table:MultiVariableLookup, - HPACHeatCapFFF, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 4, !- Number of Interpolation Points - Cubic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + HPACHeatCapFFF_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - , !- X2 Sort Order - , !- Normalization Reference - 0.5, !- Minimum Value of X1 - 1.5, !- Maximum Value of X1 - , !- Minimum Value of X2 - , !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - , !- Minimum Table Output - , !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.5, !- Extended Field + 1.0, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + HPACHeatCapFFF_IndependentVariableList, !- Name + HPACHeatCapFFF_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, + HPACHeatCapFFF, !- Name + HPACHeatCapFFF_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - 1, !- Number of Independent Variables - 4, !- Number of Values for Independent Variable X1 - 0.0, !- Field 1 Determined by the Number of Independent Variables - 0.5, !- Field 2 Determined by the Number of Independent Variables - 1.0, !- Field 3 Determined by the Number of Independent Variables - 1.5, !- - 0.84, !- - 0.92, !- - 1.0, !- - 1.08; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.84, !- Output Value 1 + 0.92, !- Extended Field + 1.0, !- Extended Field + 1.08; !- Extended Field ! create performance curve and use throughout simulation - Table:MultiVariableLookup, - HPACHeatCapFFF2, !- Name - EvaluateCurveToLimits, !- Interpolation Method - 4, !- Number of Interpolation Points - Cubic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + + Table:IndependentVariable, + HPACHeatCapFFF2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - DESCENDING, !- X1 Sort Order - , !- X2 Sort Order - , !- Normalization Reference - 0.5, !- Minimum Value of X1 - 1.5, !- Maximum Value of X1 - , !- Minimum Value of X2 - , !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - , !- Minimum Table Output - , !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.5, !- Extended Field + 1.0, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + HPACHeatCapFFF2_IndependentVariableList, !- Name + HPACHeatCapFFF2_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, + HPACHeatCapFFF2, !- Name + HPACHeatCapFFF2_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - 1, !- Number of Independent Variables - 4, !- Number of Values for Independent Variable X1 - 0.0, !- Field 1 Determined by the Number of Independent Variables - 0.5, !- Field 2 Determined by the Number of Independent Variables - 1.0, !- Field 3 Determined by the Number of Independent Variables - 1.5, !- - 1.08, !- - 1.0, !- - 0.92, !- - 0.84; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.84, !- Output Value 1 + 0.92, !- Extended Field + 1.0, !- Extended Field + 1.08; !- Extended Field ! linearly interpolate tabular data - Table:MultiVariableLookup, - HPACHeatCapFFF3, !- Name - LinearInterpolationOfTable, !- Interpolation Method - 2, !- Number of Interpolation Points - Cubic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + HPACHeatCapFFF3_IndependentVariable1, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - DESCENDING, !- X1 Sort Order - , !- X2 Sort Order - , !- Normalization Reference - 0.5, !- Minimum Value of X1 - 1.5, !- Maximum Value of X1 - , !- Minimum Value of X2 - , !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - , !- Minimum Table Output - , !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.5, !- Extended Field + 1.0, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + HPACHeatCapFFF3_IndependentVariableList, !- Name + HPACHeatCapFFF3_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, + HPACHeatCapFFF3, !- Name + HPACHeatCapFFF3_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - 1, !- Number of Independent Variables - 4, !- Number of Values for Independent Variable X1 - 0.0, !- Field 1 Determined by the Number of Independent Variables - 0.5, !- Field 2 Determined by the Number of Independent Variables - 1.0, !- Field 3 Determined by the Number of Independent Variables - 1.5, !- - 1.08, !- - 1.0, !- - 0.92, !- - 0.84; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.84, !- Output Value 1 + 0.92, !- Extended Field + 1.0, !- Extended Field + 1.08; !- Extended Field ! Curve:Cubic, ! HPACHeatEIRFT, !- Name @@ -2534,79 +2677,127 @@ ! note maximum value of X1 used here and written to performance cuve object will be 30 since ! the tabular data includes this data point - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACHeatEIRFT_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + -20.0, !- Minimum Value + 20.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -20.0, !- Value 1 + -10.0, !- Extended Field + 0.0, !- Extended Field + 10.0, !- Extended Field + 20.0, !- Extended Field + 30.0; !- Extended Field + + Table:IndependentVariableList, + HPACHeatEIRFT_IndependentVariableList, !- Name + HPACHeatEIRFT_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACHeatEIRFT, !- Name - Cubic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - -20.0, !- Minimum Value of X - 20.0, !- Maximum Value of X - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X + HPACHeatEIRFT_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - -20.0, !- X Value #1 - 2.39469, !- Output Value #1 - -10.0, !- X Value #2 - 1.619991, !- Output Value #2 - 0.0, !- X Value #3 - 1.19248, !- Output Value #3 - 10.0, !- X Value #4 - 0.972459, !- Output Value #4 - 20.0, !- X Value #5 - 0.81996, !- Output Value #5 - 30.0, !- X Value #6 - 0.595015; !- Output Value #6 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.39469, !- Output Value 1 + 1.619991, !- Extended Field + 1.19248, !- Extended Field + 0.972459, !- Extended Field + 0.81996, !- Extended Field + 0.595015; !- Extended Field ! create performance curve and use throughout simulation ! note maximum value of X1 used here and written to performance cuve object will be 20 since ! the tabular data does not include the "30" data point - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACHeatEIRFT2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + -20.0, !- Minimum Value + 20.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -20.0, !- Value 1 + -10.0, !- Extended Field + 0.0, !- Extended Field + 10.0, !- Extended Field + 20.0; !- Extended Field + + Table:IndependentVariableList, + HPACHeatEIRFT2_IndependentVariableList, !- Name + HPACHeatEIRFT2_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACHeatEIRFT2, !- Name - Cubic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - -20.0, !- Minimum Value of X - 20.0, !- Maximum Value of X - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X + HPACHeatEIRFT2_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - -20.0, !- X Value #1 - 2.39469, !- Output Value #1 - -10.0, !- X Value #2 - 1.619991, !- Output Value #2 - 0.0, !- X Value #3 - 1.19248, !- Output Value #3 - 10.0, !- X Value #4 - 0.972459, !- Output Value #4 - 20.0, !- X Value #5 - 0.81996; !- Output Value #5 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.39469, !- Output Value 1 + 1.619991, !- Extended Field + 1.19248, !- Extended Field + 0.972459, !- Extended Field + 0.81996; !- Extended Field ! Use Lagrange form of the interpolation equation. - Table:OneIndependentVariable, + Table:IndependentVariable, + HPACHeatEIRFT3_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20.0, !- Minimum Value + 20.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -20.0, !- Value 1 + -10.0, !- Extended Field + 0.0, !- Extended Field + 10.0, !- Extended Field + 20.0; !- Extended Field + + Table:IndependentVariableList, + HPACHeatEIRFT3_IndependentVariableList, !- Name + HPACHeatEIRFT3_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, HPACHeatEIRFT3, !- Name - Cubic, !- Curve Type - LagrangeinterpolationLinearExtrapolation, !- Interpolation Method - -20.0, !- Minimum Value of X - 20.0, !- Maximum Value of X - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X + HPACHeatEIRFT3_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - -20.0, !- X Value #1 - 2.39469, !- Output Value #1 - -10.0, !- X Value #2 - 1.619991, !- Output Value #2 - 0.0, !- X Value #3 - 1.19248, !- Output Value #3 - 10.0, !- X Value #4 - 0.972459, !- Output Value #4 - 20.0, !- X Value #5 - 0.81996; !- Output Value #5 + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.39469, !- Output Value 1 + 1.619991, !- Extended Field + 1.19248, !- Extended Field + 0.972459, !- Extended Field + 0.81996; !- Extended Field ! Curve:Cubic, ! FanEffRatioCurve, !- Name @@ -2621,49 +2812,65 @@ ! Use Lagrange form of the interpolation equation. ! LagrangeinterpolationLinearExtrapolation, !- Interpolation Method - Table:OneIndependentVariable, + Table:IndependentVariable, + FanEffRatioCurve_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 0.5, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.1, !- Extended Field + 0.2, !- Extended Field + 0.3, !- Extended Field + 0.4, !- Extended Field + 0.5, !- Extended Field + 0.6, !- Extended Field + 0.7, !- Extended Field + 0.8, !- Extended Field + 0.9, !- Extended Field + 1.0, !- Extended Field + 1.1, !- Extended Field + 1.2, !- Extended Field + 1.3, !- Extended Field + 1.4, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + FanEffRatioCurve_IndependentVariableList, !- Name + FanEffRatioCurve_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, FanEffRatioCurve, !- Name - Cubic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - 0.5, !- Minimum Value of X - 1.5, !- Maximum Value of X - 0.3, !- Minimum Table Output - 1.0, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + FanEffRatioCurve_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0.3, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.338568, !- Output Value #1 - 0.1, !- X Value #2 - 0.496712, !- Output Value #2 - 0.2, !- X Value #3 - 0.627567, !- Output Value #3 - 0.3, !- X Value #4 - 0.733698, !- Output Value #4 - 0.4, !- X Value #5 - 0.817673, !- Output Value #5 - 0.5, !- X Value #6 - 0.882059, !- Output Value #6 - 0.6, !- X Value #7 - 0.929421, !- Output Value #7 - 0.7, !- - 0.962327, !- - 0.8, !- - 0.983343, !- - 0.9, !- - 0.995035, !- - 1.0, !- - 0.999970, !- - 1.1, !- - 1.000715, !- - 1.2, !- - 0.999837, !- - 1.3, !- - 0.999901, !- - 1.4, !- - 1.003475, !- - 1.5, !- - 1.013124; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.338568, !- Output Value 1 + 0.496712, !- Extended Field + 0.627567, !- Extended Field + 0.733698, !- Extended Field + 0.817673, !- Extended Field + 0.882059, !- Extended Field + 0.929421, !- Extended Field + 0.962327, !- Extended Field + 0.983343, !- Extended Field + 0.995035, !- Extended Field + 0.999970, !- Extended Field + 1.000715, !- Extended Field + 0.999837, !- Extended Field + 0.999901, !- Extended Field + 1.003475, !- Extended Field + 1.013124; !- Extended Field !- =========== ALL OBJECTS IN CLASS: CURVE:EXPONENT =========== ! Curve = C1 + C2*x**C3, x = fan speed ratio @@ -2678,33 +2885,49 @@ ! 1.5; !- Maximum Curve Output ! Use Lagrange form of the interpolation equation. Interpolation Method EvaluateCurveToLimits is not allowed. - Table:OneIndependentVariable, + Table:IndependentVariable, + FanPowerRatioCurve_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.5, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Value 1 + 0.2, !- Extended Field + 0.4, !- Extended Field + 0.6, !- Extended Field + 0.8, !- Extended Field + 1.0, !- Extended Field + 1.25, !- Extended Field + 1.5; !- Extended Field + + Table:IndependentVariableList, + FanPowerRatioCurve_IndependentVariableList, !- Name + FanPowerRatioCurve_IndependentVariable1; !- Independent Variable 1 Name + + Table:Lookup, FanPowerRatioCurve, !- Name - , !- Curve Type - LagrangeinterpolationLinearExtrapolation, !- Interpolation Method - 0.0, !- Minimum Value of X - 1.5, !- Maximum Value of X - , !- Minimum Table Output - , !- Maximum Table Output - Dimensionless, !- Input Unit Type for X + FanPowerRatioCurve_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference - 0.0, !- X Value #1 - 0.0, !- Output Value #1 - 0.2, !- X Value #2 - 0.008, !- Output Value #2 - 0.4, !- X Value #3 - 0.064, !- Output Value #3 - 0.6, !- X Value #4 - 0.216, !- Output Value #4 - 0.8, !- X Value #5 - 0.512, !- Output Value #5 - 1.0, !- X Value #6 - 1.0, !- Output Value #6 - 1.25, !- X Value #7 - 1.953125, !- Output Value #7 - 1.5, !- - 3.357; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0, !- Output Value 1 + 0.008, !- Extended Field + 0.064, !- Extended Field + 0.216, !- Extended Field + 0.512, !- Extended Field + 1.0, !- Extended Field + 1.953125, !- Extended Field + 3.357; !- Extended Field !- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC =========== ! Curve:Biquadratic, @@ -2725,379 +2948,296 @@ ! Temperature, !- Input Unit Type for Y ! Dimensionless; !- Output Unit Type - Table:TwoIndependentVariables, + + Table:IndependentVariable, + HPACCoolCapFT_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 12.77778, !- Minimum Value + 23.88889, !- Maximum Value + 19.44449, !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 12.77778, !- Value 1 + 15.00000, !- Extended Field + 18.00000, !- Extended Field + 19.44449, !- Extended Field + 21.00000, !- Extended Field + 23.88889; !- Extended Field + + Table:IndependentVariable, + HPACCoolCapFT_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 18.0, !- Minimum Value + 46.11111, !- Maximum Value + 35.00000, !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 18.00000, !- Value 1 + 24.00000, !- Extended Field + 30.00000, !- Extended Field + 35.00000, !- Extended Field + 36.00000, !- Extended Field + 41.00000, !- Extended Field + 46.11111; !- Extended Field + + Table:IndependentVariableList, + HPACCoolCapFT_IndependentVariableList, !- Name + HPACCoolCapFT_IndependentVariable1, !- Independent Variable 1 Name + HPACCoolCapFT_IndependentVariable2; !- Extended Field + + Table:Lookup, HPACCoolCapFT, !- Name - BiQuadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - 12.77778, !- Minimum Value of X - 23.88889, !- Maximum Value of X - 18.0, !- Minimum Value of Y - 46.11111, !- Maximum Value of Y - 0, !- Minimum Table Output - 40000, !- Maximum Table Output - Temperature, !- Input Unit Type for X - Temperature, !- Input Unit Type for Y + HPACCoolCapFT_IndependentVariableList, !- Independent Variable List Name + AutomaticWithDivisor, !- Normalization Method + , !- Normalization Divisor + 0, !- Minimum Output + 40000, !- Maximum Output Dimensionless, !- Output Unit Type - 24999.9597049817, !- Normalization Reference , !- External File Name - 12.77778, !- X Value #1 - 36, !- Y Value #1 - 19524.15032, !- Output Value #1 - 12.77778, !- X Value #2 - 41, !- Y Value #2 - 18178.81244, !- Output Value #2 - 12.77778, !- X Value #3 - 46.11111, !- Y Value #3 - 16810.36004, !- Output Value #3 - 15, !- X Value #4 - 18, !- Y Value #4 - 25997.3589, !- Output Value #4 - 15, !- - 30, !- - 22716.4017, !- - 12.77778, !- - 30, !- - 21147.21662, !- - 12.77778, !- - 35, !- - 19794.00525, !- - 15, !- - 24, !- - 24352.1562, !- - 12.77778, !- - 18, !- - 24421.69383, !- - 12.77778, !- - 24, !- - 22779.73113, !- - 15, !- - 35, !- - 21360.49033, !- - 15, !- - 36, !- - 21090.0954, !- - 15, !- - 41, !- - 19742.05753, !- - 15, !- - 46.11111, !- - 18370.84513, !- - 18, !- - 18, !- - 28392.31868, !- - 23.88889, !- - 41, !- - 27683.36592, !- - 23.88889, !- - 46.11111, !- - 26301.11353, !- - 18, !- - 24, !- - 26742.74198, !- - 18, !- - 30, !- - 25102.61348, !- - 23.88889, !- - 35, !- - 29314.75872, !- - 23.88889, !- - 36, !- - 29042.2038, !- - 19.44448943, !- - 24, !- - 28003.546, !- - 19.44448943, !- - 30, !- - 26361.31143, !- - 18, !- - 35, !- - 23743.0571, !- - 18, !- - 36, !- - 23471.93318, !- - 18, !- - 41, !- - 22120.2503, !- - 18, !- - 46.11111, !- - 20745.3119, !- - 21, !- - 18, !- - 31094.97495, !- - 21, !- - 24, !- - 29441.02425, !- - 19.44448943, !- - 18, !- - 29655.22876, !- - 21, !- - 30, !- - 27796.52175, !- - 21, !- - 35, !- - 26433.32038, !- - 21, !- - 36, !- - 26161.46745, !- - 21, !- - 41, !- - 24806.13958, !- - 21, !- - 46.11111, !- - 23427.47518, !- - 23.88889, !- - 18, !- - 33988.3473, !- - 23.88889, !- - 24, !- - 32330.1846, !- - 23.88889, !- - 30, !- - 30681.4701, !- - 19.44448943, !- - 35, !- - 25000, !- - 19.44448943, !- - 36, !- - 24728.52506, !- - 19.44448943, !- - 41, !- - 23375.08713, !- - 19.44448943, !- - 46.11111, !- - 21998.35468; !- - - Table:TwoIndependentVariables, + , !- External File Column Number + , !- External File Starting Row Number + 24421.69383, !- Output Value 1 + 22779.73113, !- Extended Field + 21147.21662, !- Extended Field + 19794.00525, !- Extended Field + 19524.15032, !- Extended Field + 18178.81244, !- Extended Field + 16810.36004, !- Extended Field + 25997.3589, !- Extended Field + 24352.1562, !- Extended Field + 22716.4017, !- Extended Field + 21360.49033, !- Extended Field + 21090.0954, !- Extended Field + 19742.05753, !- Extended Field + 18370.84513, !- Extended Field + 28392.31868, !- Extended Field + 26742.74198, !- Extended Field + 25102.61348, !- Extended Field + 23743.0571, !- Extended Field + 23471.93318, !- Extended Field + 22120.2503, !- Extended Field + 20745.3119, !- Extended Field + 29655.22876, !- Extended Field + 28003.546, !- Extended Field + 26361.31143, !- Extended Field + 25000, !- Extended Field + 24728.52506, !- Extended Field + 23375.08713, !- Extended Field + 21998.35468, !- Extended Field + 31094.97495, !- Extended Field + 29441.02425, !- Extended Field + 27796.52175, !- Extended Field + 26433.32038, !- Extended Field + 26161.46745, !- Extended Field + 24806.13958, !- Extended Field + 23427.47518, !- Extended Field + 33988.3473, !- Extended Field + 32330.1846, !- Extended Field + 30681.4701, !- Extended Field + 29314.75872, !- Extended Field + 29042.2038, !- Extended Field + 27683.36592, !- Extended Field + 26301.11353; !- Extended Field + + + Table:IndependentVariable, + HPACCoolCapFT2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 12.77778, !- Minimum Value + 23.88889, !- Maximum Value + 19.44449, !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 12.77778, !- Value 1 + 15.00000, !- Extended Field + 18.00000, !- Extended Field + 19.44449, !- Extended Field + 21.00000, !- Extended Field + 23.88889; !- Extended Field + + Table:IndependentVariable, + HPACCoolCapFT2_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 18.0, !- Minimum Value + 46.11111, !- Maximum Value + 35.00000, !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 18.00000, !- Value 1 + 24.00000, !- Extended Field + 30.00000, !- Extended Field + 35.00000, !- Extended Field + 36.00000, !- Extended Field + 41.00000, !- Extended Field + 46.11111; !- Extended Field + + Table:IndependentVariableList, + HPACCoolCapFT2_IndependentVariableList, !- Name + HPACCoolCapFT2_IndependentVariable1, !- Independent Variable 1 Name + HPACCoolCapFT2_IndependentVariable2; !- Extended Field + + Table:Lookup, HPACCoolCapFT2, !- Name - BiQuadratic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 12.77778, !- Minimum Value of X - 23.88889, !- Maximum Value of X - 18.0, !- Minimum Value of Y - 46.11111, !- Maximum Value of Y - 0, !- Minimum Table Output - 40000, !- Maximum Table Output - Temperature, !- Input Unit Type for X - Temperature, !- Input Unit Type for Y + HPACCoolCapFT2_IndependentVariableList, !- Independent Variable List Name + AutomaticWithDivisor, !- Normalization Method + , !- Normalization Divisor + 0, !- Minimum Output + 40000, !- Maximum Output Dimensionless, !- Output Unit Type - 24999.9597049817, !- Normalization Reference , !- External File Name - 12.77778, !- X Value #1 - 36, !- Y Value #1 - 19524.15032, !- Output Value #1 - 12.77778, !- X Value #2 - 41, !- Y Value #2 - 18178.81244, !- Output Value #2 - 12.77778, !- X Value #3 - 46.11111, !- Y Value #3 - 16810.36004, !- Output Value #3 - 15, !- X Value #4 - 18, !- Y Value #4 - 25997.3589, !- Output Value #4 - 15, !- - 30, !- - 22716.4017, !- - 12.77778, !- - 30, !- - 21147.21662, !- - 12.77778, !- - 35, !- - 19794.00525, !- - 15, !- - 24, !- - 24352.1562, !- - 12.77778, !- - 18, !- - 24421.69383, !- - 12.77778, !- - 24, !- - 22779.73113, !- - 15, !- - 35, !- - 21360.49033, !- - 15, !- - 36, !- - 21090.0954, !- - 15, !- - 41, !- - 19742.05753, !- - 15, !- - 46.11111, !- - 18370.84513, !- - 18, !- - 18, !- - 28392.31868, !- - 23.88889, !- - 41, !- - 27683.36592, !- - 23.88889, !- - 46.11111, !- - 26301.11353, !- - 18, !- - 24, !- - 26742.74198, !- - 18, !- - 30, !- - 25102.61348, !- - 23.88889, !- - 35, !- - 29314.75872, !- - 23.88889, !- - 36, !- - 29042.2038, !- - 19.44448943, !- - 24, !- - 28003.546, !- - 19.44448943, !- - 30, !- - 26361.31143, !- - 18, !- - 35, !- - 23743.0571, !- - 18, !- - 36, !- - 23471.93318, !- - 18, !- - 41, !- - 22120.2503, !- - 18, !- - 46.11111, !- - 20745.3119, !- - 21, !- - 18, !- - 31094.97495, !- - 21, !- - 24, !- - 29441.02425, !- - 19.44448943, !- - 18, !- - 29655.22876, !- - 21, !- - 30, !- - 27796.52175, !- - 21, !- - 35, !- - 26433.32038, !- - 21, !- - 36, !- - 26161.46745, !- - 21, !- - 41, !- - 24806.13958, !- - 21, !- - 46.11111, !- - 23427.47518, !- - 23.88889, !- - 18, !- - 33988.3473, !- - 23.88889, !- - 24, !- - 32330.1846, !- - 23.88889, !- - 30, !- - 30681.4701, !- - 19.44448943, !- - 35, !- - 25000, !- - 19.44448943, !- - 36, !- - 24728.52506, !- - 19.44448943, !- - 41, !- - 23375.08713, !- - 19.44448943, !- - 46.11111, !- - 21998.35468; !- - - Table:MultiVariableLookup, - HPACCoolCapFT3, !- Name - LagrangeinterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - BiQuadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + , !- External File Column Number + , !- External File Starting Row Number + 24421.69383, !- Output Value 1 + 22779.73113, !- Extended Field + 21147.21662, !- Extended Field + 19794.00525, !- Extended Field + 19524.15032, !- Extended Field + 18178.81244, !- Extended Field + 16810.36004, !- Extended Field + 25997.3589, !- Extended Field + 24352.1562, !- Extended Field + 22716.4017, !- Extended Field + 21360.49033, !- Extended Field + 21090.0954, !- Extended Field + 19742.05753, !- Extended Field + 18370.84513, !- Extended Field + 28392.31868, !- Extended Field + 26742.74198, !- Extended Field + 25102.61348, !- Extended Field + 23743.0571, !- Extended Field + 23471.93318, !- Extended Field + 22120.2503, !- Extended Field + 20745.3119, !- Extended Field + 29655.22876, !- Extended Field + 28003.546, !- Extended Field + 26361.31143, !- Extended Field + 25000, !- Extended Field + 24728.52506, !- Extended Field + 23375.08713, !- Extended Field + 21998.35468, !- Extended Field + 31094.97495, !- Extended Field + 29441.02425, !- Extended Field + 27796.52175, !- Extended Field + 26433.32038, !- Extended Field + 26161.46745, !- Extended Field + 24806.13958, !- Extended Field + 23427.47518, !- Extended Field + 33988.3473, !- Extended Field + 32330.1846, !- Extended Field + 30681.4701, !- Extended Field + 29314.75872, !- Extended Field + 29042.2038, !- Extended Field + 27683.36592, !- Extended Field + 26301.11353; !- Extended Field + + + Table:IndependentVariable, + HPACCoolCapFT3_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 12.77778, !- Minimum Value + 23.88889, !- Maximum Value + 19.44449, !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 12.77778, !- Value 1 + 15, !- Extended Field + 18, !- Extended Field + 19.44448943, !- Extended Field + 21, !- Extended Field + 23.88889; !- Extended Field + + Table:IndependentVariable, + HPACCoolCapFT3_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 18.0, !- Minimum Value + 46.11111, !- Maximum Value + 35, !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - ASCENDING, !- X2 Sort Order - 24999.9597049817, !- Normalization Reference - 12.77778, !- Minimum Value of X1 - 23.88889, !- Maximum Value of X1 - 18.0, !- Minimum Value of X2 - 46.11111, !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 18, !- Value 1 + 24, !- Extended Field + 30, !- Extended Field + 35, !- Extended Field + 36, !- Extended Field + 41, !- Extended Field + 46.11111; !- Extended Field + + Table:IndependentVariableList, + HPACCoolCapFT3_IndependentVariableList, !- Name + HPACCoolCapFT3_IndependentVariable1, !- Independent Variable 1 Name + HPACCoolCapFT3_IndependentVariable2; !- Extended Field + + Table:Lookup, + HPACCoolCapFT3, !- Name + HPACCoolCapFT3_IndependentVariableList, !- Independent Variable List Name + AutomaticWithDivisor, !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - 2, !- Number of Independent Variables - 6, !- Number of Values for Independent Variable X1 - 7, !- Field 1 Determined by the Number of Independent Variables - 12.77778, !- Field 2 Determined by the Number of Independent Variables - 15, !- Field 3 Determined by the Number of Independent Variables - 18, !- - 19.44448943, !- - 21, !- - 23.88889, !- - 18, !- - 24, !- - 30, !- - 35, !- - 36, !- - 41, !- - 46.11111, !- - 24421.69383, !- - 25997.3589, !- - 28392.31868, !- - 29655.22876, !- - 31094.97495, !- - 33988.3473, !- - 22779.73113, !- - 24352.1562, !- - 26742.74198, !- - 28003.546, !- - 29441.02425, !- - 32330.1846, !- - 21147.21662, !- - 22716.4017, !- - 25102.61348, !- - 26361.31143, !- - 27796.52175, !- - 30681.4701, !- - 19794.00525, !- - 21360.49033, !- - 23743.0571, !- - 25000, !- - 26433.32038, !- - 29314.75872, !- - 19524.15032, !- - 21090.0954, !- - 23471.93318, !- - 24728.52506, !- - 26161.46745, !- - 29042.2038, !- - 18178.81244, !- - 19742.05753, !- - 22120.2503, !- - 23375.08713, !- - 24806.13958, !- - 27683.36592, !- - 16810.36004, !- - 18370.84513, !- - 20745.3119, !- - 21998.35468, !- - 23427.47518, !- - 26301.11353; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 24421.69383, !- Output Value 1 + 22779.73113, !- Extended Field + 21147.21662, !- Extended Field + 19794.00525, !- Extended Field + 19524.15032, !- Extended Field + 18178.81244, !- Extended Field + 16810.36004, !- Extended Field + 25997.3589, !- Extended Field + 24352.1562, !- Extended Field + 22716.4017, !- Extended Field + 21360.49033, !- Extended Field + 21090.0954, !- Extended Field + 19742.05753, !- Extended Field + 18370.84513, !- Extended Field + 28392.31868, !- Extended Field + 26742.74198, !- Extended Field + 25102.61348, !- Extended Field + 23743.0571, !- Extended Field + 23471.93318, !- Extended Field + 22120.2503, !- Extended Field + 20745.3119, !- Extended Field + 29655.22876, !- Extended Field + 28003.546, !- Extended Field + 26361.31143, !- Extended Field + 25000, !- Extended Field + 24728.52506, !- Extended Field + 23375.08713, !- Extended Field + 21998.35468, !- Extended Field + 31094.97495, !- Extended Field + 29441.02425, !- Extended Field + 27796.52175, !- Extended Field + 26433.32038, !- Extended Field + 26161.46745, !- Extended Field + 24806.13958, !- Extended Field + 23427.47518, !- Extended Field + 33988.3473, !- Extended Field + 32330.1846, !- Extended Field + 30681.4701, !- Extended Field + 29314.75872, !- Extended Field + 29042.2038, !- Extended Field + 27683.36592, !- Extended Field + 26301.11353; !- Extended Field ! Curve:Biquadratic, ! HPACEIRFT, !- Name @@ -3118,3335 +3258,3026 @@ ! Dimensionless; !- Output Unit Type ! create performance curve for use thorughout simulation. At least 6 data points are required. - Table:TwoIndependentVariables, + + Table:IndependentVariable, + HPACEIRFT_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 12.77778, !- Minimum Value + 23.88889, !- Maximum Value + 19.44449, !- Normalization Reference Value + Temperature, !- Unit Type + LookupTable.csv, !- External File Name + 1, !- External File Column Number + 2; !- External File Starting Row Number + + Table:IndependentVariable, + HPACEIRFT_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 18.0, !- Minimum Value + 46.11111, !- Maximum Value + 35.00000, !- Normalization Reference Value + Temperature, !- Unit Type + LookupTable.csv, !- External File Name + 2, !- External File Column Number + 2; !- External File Starting Row Number + + Table:IndependentVariableList, + HPACEIRFT_IndependentVariableList, !- Name + HPACEIRFT_IndependentVariable1, !- Independent Variable 1 Name + HPACEIRFT_IndependentVariable2; !- Extended Field + + Table:Lookup, HPACEIRFT, !- Name - BiQuadratic, !- Curve Type - EvaluateCurveToLimits, !- Interpolation Method - 12.77778, !- Minimum Value of X - 23.88889, !- Maximum Value of X - 18.0, !- Minimum Value of Y - 46.11111, !- Maximum Value of Y - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X - Temperature, !- Input Unit Type for Y + HPACEIRFT_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference + LookupTable.csv, !- External File Name + 3, !- External File Column Number + 2; !- External File Starting Row Number + + Table:IndependentVariable, + HPACEIRFT2_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 12.77778, !- Minimum Value + 23.88889, !- Maximum Value + 19.44449, !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - 12.77778, !- X Value #1 - 18, !- Y Value #1 - 0.750374374, !- Output Value #1 - 12.77778, !- X Value #2 - 24, !- Y Value #2 - 0.834785832, !- Output Value #2 - 12.77778, !- X Value #3 - 30, !- Y Value #3 - 0.950729763, !- Output Value #3 - 12.77778, !- X Value #4 - 36, !- Y Value #4 - 1.098206165, !- Output Value #4 - 12.77778, !- - 42, !- - 1.277215039, !- - 12.77778, !- - 46.11111, !- - 1.418073932, !- - 15, !- - 18, !- - 0.760275481, !- - 15, !- - 24, !- - 0.834979909, !- - 15, !- - 30, !- - 0.941216809, !- - 15, !- - 36, !- - 1.078986181, !- - 15, !- - 42, !- - 1.248288025, !- - 15, !- - 46.11111, !- - 1.382495806, !- - 18.3, !- - 18, !- - 0.763612751, !- - 18.3, !- - 24, !- - 0.823902225, !- - 18.3, !- - 30, !- - 0.91572417, !- - 18.3, !- - 36, !- - 1.039078588, !- - 18.3, !- - 42, !- - 1.193965478, !- - 18.3, !- - 46.11111, !- - 1.318296348, !- - 21.7, !- - 18, !- - 0.752843265, !- - 21.7, !- - 24, !- - 0.798280967, !- - 21.7, !- - 30, !- - 0.875251142, !- - 21.7, !- - 36, !- - 0.983753788, !- - 21.7, !- - 42, !- - 1.123788906, !- - 21.7, !- - 46.11111, !- - 1.237943566, !- - 23.88889, !- - 18, !- - 0.738279952, !- - 23.88889, !- - 24, !- - 0.774156215, !- - 23.88889, !- - 30, !- - 0.84156495, !- - 23.88889, !- - 36, !- - 0.940506158, !- - 23.88889, !- - 42, !- - 1.070979837, !- - 23.88889, !- - 46.11111, !- - 1.178583142; !- - - Table:TwoIndependentVariables, + , !- External File Column Number + , !- External File Starting Row Number + 12.77778, !- Value 1 + 15.00000, !- Extended Field + 18.30000, !- Extended Field + 21.70000, !- Extended Field + 23.88889; !- Extended Field + + Table:IndependentVariable, + HPACEIRFT2_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 18.0, !- Minimum Value + 46.11111, !- Maximum Value + 35.00000, !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 18.00000, !- Value 1 + 24.00000, !- Extended Field + 30.00000, !- Extended Field + 36.00000, !- Extended Field + 42.00000, !- Extended Field + 46.11111; !- Extended Field + + Table:IndependentVariableList, + HPACEIRFT2_IndependentVariableList, !- Name + HPACEIRFT2_IndependentVariable1, !- Independent Variable 1 Name + HPACEIRFT2_IndependentVariable2; !- Extended Field + + Table:Lookup, HPACEIRFT2, !- Name - BiQuadratic, !- Curve Type - LagrangeinterpolationLinearExtrapolation, !- Interpolation Method - 12.77778, !- Minimum Value of X - 23.88889, !- Maximum Value of X - 18.0, !- Minimum Value of Y - 46.11111, !- Maximum Value of Y - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X - Temperature, !- Input Unit Type for Y + HPACEIRFT2_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference , !- External File Name - 12.77778, !- X Value #1 - 18, !- Y Value #1 - 0.750374374, !- Output Value #1 - 12.77778, !- X Value #2 - 24, !- Y Value #2 - 0.834785832, !- Output Value #2 - 12.77778, !- X Value #3 - 30, !- Y Value #3 - 0.950729763, !- Output Value #3 - 12.77778, !- X Value #4 - 36, !- Y Value #4 - 1.098206165, !- Output Value #4 - 12.77778, !- - 42, !- - 1.277215039, !- - 12.77778, !- - 46.11111, !- - 1.418073932, !- - 15, !- - 18, !- - 0.760275481, !- - 15, !- - 24, !- - 0.834979909, !- - 15, !- - 30, !- - 0.941216809, !- - 15, !- - 36, !- - 1.078986181, !- - 15, !- - 42, !- - 1.248288025, !- - 15, !- - 46.11111, !- - 1.382495806, !- - 18.3, !- - 18, !- - 0.763612751, !- - 18.3, !- - 24, !- - 0.823902225, !- - 18.3, !- - 30, !- - 0.91572417, !- - 18.3, !- - 36, !- - 1.039078588, !- - 18.3, !- - 42, !- - 1.193965478, !- - 18.3, !- - 46.11111, !- - 1.318296348, !- - 21.7, !- - 18, !- - 0.752843265, !- - 21.7, !- - 24, !- - 0.798280967, !- - 21.7, !- - 30, !- - 0.875251142, !- - 21.7, !- - 36, !- - 0.983753788, !- - 21.7, !- - 42, !- - 1.123788906, !- - 21.7, !- - 46.11111, !- - 1.237943566, !- - 23.88889, !- - 18, !- - 0.738279952, !- - 23.88889, !- - 24, !- - 0.774156215, !- - 23.88889, !- - 30, !- - 0.84156495, !- - 23.88889, !- - 36, !- - 0.940506158, !- - 23.88889, !- - 42, !- - 1.070979837, !- - 23.88889, !- - 46.11111, !- - 1.178583142; !- + , !- External File Column Number + , !- External File Starting Row Number + 0.750374374, !- Output Value 1 + 0.834785832, !- Extended Field + 0.950729763, !- Extended Field + 1.098206165, !- Extended Field + 1.277215039, !- Extended Field + 1.418073932, !- Extended Field + 0.760275481, !- Extended Field + 0.834979909, !- Extended Field + 0.941216809, !- Extended Field + 1.078986181, !- Extended Field + 1.248288025, !- Extended Field + 1.382495806, !- Extended Field + 0.763612751, !- Extended Field + 0.823902225, !- Extended Field + 0.91572417, !- Extended Field + 1.039078588, !- Extended Field + 1.193965478, !- Extended Field + 1.318296348, !- Extended Field + 0.752843265, !- Extended Field + 0.798280967, !- Extended Field + 0.875251142, !- Extended Field + 0.983753788, !- Extended Field + 1.123788906, !- Extended Field + 1.237943566, !- Extended Field + 0.738279952, !- Extended Field + 0.774156215, !- Extended Field + 0.84156495, !- Extended Field + 0.940506158, !- Extended Field + 1.070979837, !- Extended Field + 1.178583142; !- Extended Field ! create performance curve for use thorughout simulation. At least 6 data points are required. - Table:MultiVariableLookup, - HPACEIRFT3, !- Name - EvaluateCurveToLimits, !- Interpolation Method - 3, !- Number of Interpolation Points - BiQuadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + HPACEIRFT3_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 12.77778, !- Minimum Value + 23.88889, !- Maximum Value + 19.44449, !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - ASCENDING, !- X2 Sort Order - , !- Normalization Reference - 12.77778, !- Minimum Value of X1 - 23.88889, !- Maximum Value of X1 - 18.0, !- Minimum Value of X2 - 46.11111, !- Maximum Value of X2 - , !- Minimum Value of X3 - , !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - , !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 12.77778, !- Value 1 + 15, !- Extended Field + 18.3, !- Extended Field + 21.7, !- Extended Field + 23.88889; !- Extended Field + + Table:IndependentVariable, + HPACEIRFT3_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Constant, !- Extrapolation Method + 18.0, !- Minimum Value + 46.11111, !- Maximum Value + 35.00000, !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 18, !- Value 1 + 24, !- Extended Field + 30, !- Extended Field + 36, !- Extended Field + 42, !- Extended Field + 46.11111; !- Extended Field + + Table:IndependentVariableList, + HPACEIRFT3_IndependentVariableList, !- Name + HPACEIRFT3_IndependentVariable1, !- Independent Variable 1 Name + HPACEIRFT3_IndependentVariable2; !- Extended Field + + Table:Lookup, + HPACEIRFT3, !- Name + HPACEIRFT3_IndependentVariableList, !- Independent Variable List Name + AutomaticWithDivisor, !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - 2, !- Number of Independent Variables - 5, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 12.77778, !- Field 2 Determined by the Number of Independent Variables - 15, !- Field 3 Determined by the Number of Independent Variables - 18.3, !- - 21.7, !- - 23.88889, !- - 18, !- - 24, !- - 30, !- - 36, !- - 42, !- - 46.11111, !- - 0.750374374, !- - 0.760275481, !- - 0.763612751, !- - 0.752843265, !- - 0.738279952, !- - 0.834785832, !- - 0.834979909, !- - 0.823902225, !- - 0.798280967, !- - 0.774156215, !- - 0.950729763, !- - 0.941216809, !- - 0.91572417, !- - 0.875251142, !- - 0.84156495, !- - 1.098206165, !- - 1.078986181, !- - 1.039078588, !- - 0.983753788, !- - 0.940506158, !- - 1.277215039, !- - 1.248288025, !- - 1.193965478, !- - 1.123788906, !- - 1.070979837, !- - 1.418073932, !- - 1.382495806, !- - 1.318296348, !- - 1.237943566, !- - 1.178583142; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.750374374, !- Output Value 1 + 0.834785832, !- Extended Field + 0.950729763, !- Extended Field + 1.098206165, !- Extended Field + 1.277215039, !- Extended Field + 1.418073932, !- Extended Field + 0.760275481, !- Extended Field + 0.834979909, !- Extended Field + 0.941216809, !- Extended Field + 1.078986181, !- Extended Field + 1.248288025, !- Extended Field + 1.382495806, !- Extended Field + 0.763612751, !- Extended Field + 0.823902225, !- Extended Field + 0.91572417, !- Extended Field + 1.039078588, !- Extended Field + 1.193965478, !- Extended Field + 1.318296348, !- Extended Field + 0.752843265, !- Extended Field + 0.798280967, !- Extended Field + 0.875251142, !- Extended Field + 0.983753788, !- Extended Field + 1.123788906, !- Extended Field + 1.237943566, !- Extended Field + 0.738279952, !- Extended Field + 0.774156215, !- Extended Field + 0.84156495, !- Extended Field + 0.940506158, !- Extended Field + 1.070979837, !- Extended Field + 1.178583142; !- Extended Field !- This table is not used in this input file and is here simply as an example for a 5 indepenendent variable table. !- This table can not be used to perform a regression anaysis to create a performance curve (2 independent variabls max). !- The only valid choices for Interpolation Method are LinearInterpolationOfTable and LagrangeInterpolationLinearExtrapolation. !C:\TableDataDiretory\My5IVLookupTableData_CommaSeparated.txt, !- External File Name - Table:MultiVariableLookup, - My5VariableLookupTable, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - BiQuadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + + Table:IndependentVariable, + My5VariableLookupTable_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 60, !- Minimum Value + 120, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - ASCENDING, !- X1 Sort Order - DESCENDING, !- X2 Sort Order - , !- Normalization Reference - 60, !- Minimum Value of X1 - 120, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 1, !- Maximum Value of X2 - 0, !- Minimum Value of X3 - 1, !- Maximum Value of X3 - 60, !- Minimum Value of X4 - 120, !- Maximum Value of X4 - 30, !- Minimum Value of X5 - 60, !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0, !- Minimum Table Output - 10, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Temperature, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 72.000000000, !- Value 1 + 74.000000000, !- Extended Field + 76.000000000, !- Extended Field + 78.000000000, !- Extended Field + 80.000000000; !- Extended Field + + Table:IndependentVariable, + My5VariableLookupTable_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.400000006, !- Value 1 + 0.449999988, !- Extended Field + 0.500000000, !- Extended Field + 0.550000012, !- Extended Field + 0.599999964, !- Extended Field + 0.649999976; !- Extended Field + + Table:IndependentVariable, + My5VariableLookupTable_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.100000001, !- Value 1 + 0.199999988, !- Extended Field + 0.299999982, !- Extended Field + 0.399999976, !- Extended Field + 0.499999970, !- Extended Field + 0.599999964, !- Extended Field + 0.699999988, !- Extended Field + 0.799999952, !- Extended Field + 0.899999976; !- Extended Field + + Table:IndependentVariable, + My5VariableLookupTable_IndependentVariable4, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 60, !- Minimum Value + 120, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 75.000000000, !- Value 1 + 85.000000000, !- Extended Field + 95.000000000, !- Extended Field + 105.000000000, !- Extended Field + 115.000000000; !- Extended Field + + Table:IndependentVariable, + My5VariableLookupTable_IndependentVariable5, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 30, !- Minimum Value + 60, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 38.900001526, !- Value 1 + 58.299999237; !- Extended Field + + Table:IndependentVariableList, + My5VariableLookupTable_IndependentVariableList, !- Name + My5VariableLookupTable_IndependentVariable1, !- Independent Variable 1 Name + My5VariableLookupTable_IndependentVariable2, !- Extended Field + My5VariableLookupTable_IndependentVariable3, !- Extended Field + My5VariableLookupTable_IndependentVariable4, !- Extended Field + My5VariableLookupTable_IndependentVariable5; !- Extended Field + + Table:Lookup, + My5VariableLookupTable, !- Name + My5VariableLookupTable_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + 0, !- Minimum Output + 10, !- Maximum Output Dimensionless, !- Output Unit Type - 5, !- Number of Independent Variables - 5, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 9, !- Field 2 Determined by the Number of Independent Variables - 5, !- Field 3 Determined by the Number of Independent Variables - 2, !- - 72.000000000, !- - 74.000000000, !- - 76.000000000, !- - 78.000000000, !- - 80.000000000, !- - 0.400000006, !- - 0.449999988, !- - 0.500000000, !- - 0.550000012, !- - 0.599999964, !- - 0.649999976, !- - 0.100000001, !- - 0.199999988, !- - 0.299999982, !- - 0.399999976, !- - 0.499999970, !- - 0.599999964, !- - 0.699999988, !- - 0.799999952, !- - 0.899999976, !- - 75.000000000, !- - 85.000000000, !- - 95.000000000, !- - 105.000000000, !- - 115.000000000, !- - 38.900001526, !- - 58.299999237, !- - 0.100000001, !- - 75.000000000, !- - 38.900001526, !- - 8.362903595E+00, !- - 8.673998833E+00, !- - 8.985898018E+00, !- - 9.311108589E+00, !- - 9.640462875E+00, !- - 8.132709503E+00, !- - 8.430570602E+00, !- - 8.734939575E+00, !- - 9.043934822E+00, !- - 9.371000290E+00, !- - 7.932241917E+00, !- - 8.218854904E+00, !- - 8.503153801E+00, !- - 8.792686462E+00, !- - 9.090137482E+00, !- - 7.745451927E+00, !- - 8.006804466E+00, !- - 8.278247833E+00, !- - 8.558484077E+00, !- - 8.845284462E+00, !- - 7.555707932E+00, !- - 7.807681561E+00, !- - 8.068052292E+00, !- - 8.333242416E+00, !- - 8.604722977E+00, !- - 7.362575054E+00, !- - 7.589694977E+00, !- - 7.834506035E+00, !- - 8.091814995E+00, !- - 8.347365379E+00, !- - 0.199999988, !- - 75.000000000, !- - 38.900001526, !- - 8.009307861E+00, !- - 8.301462173E+00, !- - 8.601654053E+00, !- - 8.909973145E+00, !- - 9.222886086E+00, !- - 7.791565418E+00, !- - 8.070688248E+00, !- - 8.363984108E+00, !- - 8.651149750E+00, !- - 8.960956573E+00, !- - 7.600991249E+00, !- - 7.873175621E+00, !- - 8.143985748E+00, !- - 8.419803619E+00, !- - 8.701591492E+00, !- - 7.423594952E+00, !- - 7.667917728E+00, !- - 7.928957462E+00, !- - 8.195877075E+00, !- - 8.469383240E+00, !- - 7.243413448E+00, !- - 7.482439041E+00, !- - 7.730514526E+00, !- - 7.981428146E+00, !- - 8.239952087E+00, !- - 7.058471680E+00, !- - 7.277166367E+00, !- - 7.513321400E+00, !- - 7.751350403E+00, !- - 7.995945930E+00, !- - 0.299999982, !- - 75.000000000, !- - 38.900001526, !- - 7.685127735E+00, !- - 7.971322536E+00, !- - 8.256714821E+00, !- - 8.544967651E+00, !- - 8.849281311E+00, !- - 7.484996319E+00, !- - 7.747642994E+00, !- - 8.031193733E+00, !- - 8.304456711E+00, !- - 8.598163605E+00, !- - 7.303447723E+00, !- - 7.562814236E+00, !- - 7.820975304E+00, !- - 8.084726334E+00, !- - 8.354193687E+00, !- - 7.135470867E+00, !- - 7.367517948E+00, !- - 7.617700577E+00, !- - 7.870592117E+00, !- - 8.131596565E+00, !- - 6.962431431E+00, !- - 7.190596104E+00, !- - 7.426773548E+00, !- - 7.666893005E+00, !- - 7.912358284E+00, !- - 6.787916183E+00, !- - 6.996275425E+00, !- - 7.221558571E+00, !- - 7.452087879E+00, !- - 7.680626869E+00, !- - 0.399999976, !- - 75.000000000, !- - 38.900001526, !- - 7.399798870E+00, !- - 7.671185017E+00, !- - 7.945892811E+00, !- - 8.224569321E+00, !- - 8.513233185E+00, !- - 7.208674908E+00, !- - 7.458854198E+00, !- - 7.725589275E+00, !- - 7.992704868E+00, !- - 8.270493507E+00, !- - 7.034598827E+00, !- - 7.285416126E+00, !- - 7.530445099E+00, !- - 7.782519341E+00, !- - 8.039845467E+00, !- - 6.876236439E+00, !- - 7.104327679E+00, !- - 7.334428310E+00, !- - 7.577397823E+00, !- - 7.826413631E+00, !- - 6.708562851E+00, !- - 6.927354813E+00, !- - 7.153215885E+00, !- - 7.383201599E+00, !- - 7.618229866E+00, !- - 6.546977043E+00, !- - 6.746573925E+00, !- - 6.957671642E+00, !- - 7.176038742E+00, !- - 7.397747993E+00, !- - 0.499999970, !- - 75.000000000, !- - 38.900001526, !- - 7.145950794E+00, !- - 7.400495052E+00, !- - 7.667282104E+00, !- - 7.932030201E+00, !- - 8.207801819E+00, !- - 6.957647800E+00, !- - 7.198328972E+00, !- - 7.450638294E+00, !- - 7.709997177E+00, !- - 7.973426342E+00, !- - 6.790382385E+00, !- - 7.030717850E+00, !- - 7.266670704E+00, !- - 7.509929657E+00, !- - 7.756206036E+00, !- - 6.638187885E+00, !- - 6.857587814E+00, !- - 7.078690052E+00, !- - 7.311843395E+00, !- - 7.550194263E+00, !- - 6.477313995E+00, !- - 6.687936306E+00, !- - 6.904848099E+00, !- - 7.125885010E+00, !- - 7.351845264E+00, !- - 6.324665070E+00, !- - 6.515085220E+00, !- - 6.717224121E+00, !- - 6.927174091E+00, !- - 7.141005039E+00, !- - 0.599999964, !- - 75.000000000, !- - 38.900001526, !- - 6.907789230E+00, !- - 7.148267746E+00, !- - 7.407217979E+00, !- - 7.666702271E+00, !- - 7.931069374E+00, !- - 6.728770256E+00, !- - 6.960438251E+00, !- - 7.199522972E+00, !- - 7.453735828E+00, !- - 7.702408791E+00, !- - 6.567364693E+00, !- - 6.791221619E+00, !- - 7.026438713E+00, !- - 7.259836197E+00, !- - 7.497921944E+00, !- - 6.419781208E+00, !- - 6.633556366E+00, !- - 6.848979473E+00, !- - 7.069762230E+00, !- - 7.299444199E+00, !- - 6.265988827E+00, !- - 6.468684673E+00, !- - 6.678459644E+00, !- - 6.890955448E+00, !- - 7.108711243E+00, !- - 6.122149467E+00, !- - 6.303151131E+00, !- - 6.497097015E+00, !- - 6.700903416E+00, !- - 6.906543255E+00, !- - 0.699999988, !- - 75.000000000, !- - 38.900001526, !- - 6.689438820E+00, !- - 6.923577785E+00, !- - 7.172022820E+00, !- - 7.426824570E+00, !- - 7.705205441E+00, !- - 6.518424034E+00, !- - 6.742029190E+00, !- - 6.971834660E+00, !- - 7.218411446E+00, !- - 7.457614422E+00, !- - 6.362292290E+00, !- - 6.578548908E+00, !- - 6.803874016E+00, !- - 7.032155991E+00, !- - 7.261574745E+00, !- - 6.220606327E+00, !- - 6.428524494E+00, !- - 6.636671543E+00, !- - 6.846909046E+00, !- - 7.069701672E+00, !- - 6.072504997E+00, !- - 6.268546581E+00, !- - 6.470074654E+00, !- - 6.675432682E+00, !- - 6.885981560E+00, !- - 5.934712887E+00, !- - 6.109331131E+00, !- - 6.293673038E+00, !- - 6.492287636E+00, !- - 6.691280842E+00, !- - 0.799999952, !- - 75.000000000, !- - 38.900001526, !- - 6.489015579E+00, !- - 6.716403484E+00, !- - 6.955620289E+00, !- - 7.223652840E+00, !- - 7.472298145E+00, !- - 6.325336933E+00, !- - 6.541736603E+00, !- - 6.763221741E+00, !- - 6.996306896E+00, !- - 7.233995914E+00, !- - 6.173942089E+00, !- - 6.383189678E+00, !- - 6.602017879E+00, !- - 6.821907520E+00, !- - 7.044112682E+00, !- - 6.037173748E+00, !- - 6.238247871E+00, !- - 6.439656258E+00, !- - 6.643716335E+00, !- - 6.858282089E+00, !- - 5.890603065E+00, !- - 6.083823681E+00, !- - 6.278072834E+00, !- - 6.477452755E+00, !- - 6.680627346E+00, !- - 5.764327049E+00, !- - 5.930488586E+00, !- - 6.108554840E+00, !- - 6.298379898E+00, !- - 6.490669250E+00, !- - 0.899999976, !- - 75.000000000, !- - 38.900001526, !- - 6.303743839E+00, !- - 6.530200481E+00, !- - 6.784637928E+00, !- - 6.991819859E+00, !- - 7.231474876E+00, !- - 6.147313595E+00, !- - 6.356653214E+00, !- - 6.571243286E+00, !- - 6.793537140E+00, !- - 7.027364731E+00, !- - 6.000426292E+00, !- - 6.202982426E+00, !- - 6.414974213E+00, !- - 6.627170086E+00, !- - 6.843828201E+00, !- - 5.867774487E+00, !- - 6.062170506E+00, !- - 6.258625507E+00, !- - 6.460041046E+00, !- - 6.663432121E+00, !- - 5.731920242E+00, !- - 5.912743092E+00, !- - 6.101835251E+00, !- - 6.295457840E+00, !- - 6.491116524E+00, !- - 5.591607571E+00, !- - 5.765592575E+00, !- - 5.942604542E+00, !- - 6.125249863E+00, !- - 6.314370632E+00, !- - 0.100000001, !- - 85.000000000, !- - 38.900001526, !- - 7.259115219E+00, !- - 7.515392303E+00, !- - 7.789088249E+00, !- - 8.064186096E+00, !- - 8.345357895E+00, !- - 7.068078518E+00, !- - 7.315042973E+00, !- - 7.565517902E+00, !- - 7.832796097E+00, !- - 8.103903770E+00, !- - 6.904254436E+00, !- - 7.141640186E+00, !- - 7.382932663E+00, !- - 7.630719185E+00, !- - 7.883708954E+00, !- - 6.740654945E+00, !- - 6.965732098E+00, !- - 7.194357395E+00, !- - 7.430022717E+00, !- - 7.673000336E+00, !- - 6.577650547E+00, !- - 6.793304920E+00, !- - 7.014332771E+00, !- - 7.240844727E+00, !- - 7.471778393E+00, !- - 6.415134430E+00, !- - 6.616100788E+00, !- - 6.822233677E+00, !- - 7.038028717E+00, !- - 7.252334118E+00, !- - 0.199999988, !- - 85.000000000, !- - 38.900001526, !- - 6.885031223E+00, !- - 7.129337311E+00, !- - 7.416170597E+00, !- - 7.677256107E+00, !- - 7.939831257E+00, !- - 6.708860874E+00, !- - 6.941539764E+00, !- - 7.177498817E+00, !- - 7.424939156E+00, !- - 7.677475452E+00, !- - 6.554399967E+00, !- - 6.778627872E+00, !- - 7.005578995E+00, !- - 7.239647865E+00, !- - 7.478278637E+00, !- - 6.402157784E+00, !- - 6.611999512E+00, !- - 6.824309349E+00, !- - 7.050069332E+00, !- - 7.279421806E+00, !- - 6.249315739E+00, !- - 6.454176903E+00, !- - 6.658972263E+00, !- - 6.872204304E+00, !- - 7.090047359E+00, !- - 6.102263927E+00, !- - 6.284310341E+00, !- - 6.475070953E+00, !- - 6.682870865E+00, !- - 6.883549690E+00, !- - 0.299999982, !- - 85.000000000, !- - 38.900001526, !- - 6.557442188E+00, !- - 6.801762104E+00, !- - 7.061593533E+00, !- - 7.288024902E+00, !- - 7.559077740E+00, !- - 6.393248558E+00, !- - 6.612651825E+00, !- - 6.837590218E+00, !- - 7.073652267E+00, !- - 7.316460609E+00, !- - 6.247449875E+00, !- - 6.459414959E+00, !- - 6.676310062E+00, !- - 6.896777153E+00, !- - 7.123293400E+00, !- - 6.103424549E+00, !- - 6.304987431E+00, !- - 6.509762287E+00, !- - 6.717011452E+00, !- - 6.934377670E+00, !- - 5.959203243E+00, !- - 6.152974606E+00, !- - 6.346560478E+00, !- - 6.548887730E+00, !- - 6.755382538E+00, !- - 5.821782112E+00, !- - 5.993262768E+00, !- - 6.174466133E+00, !- - 6.369593620E+00, !- - 6.561481953E+00, !- - 0.399999976, !- - 85.000000000, !- - 38.900001526, !- - 6.267533302E+00, !- - 6.498164654E+00, !- - 6.747991085E+00, !- - 6.986202717E+00, !- - 7.204495907E+00, !- - 6.114499092E+00, !- - 6.323793411E+00, !- - 6.537453175E+00, !- - 6.756989956E+00, !- - 6.991371632E+00, !- - 5.969236374E+00, !- - 6.177954674E+00, !- - 6.384465694E+00, !- - 6.593772888E+00, !- - 6.810007572E+00, !- - 5.838998318E+00, !- - 6.030385017E+00, !- - 6.225597858E+00, !- - 6.421393871E+00, !- - 6.629512310E+00, !- - 5.698288918E+00, !- - 5.886136532E+00, !- - 6.070774078E+00, !- - 6.263503551E+00, !- - 6.460413456E+00, !- - 5.574851990E+00, !- - 5.735158920E+00, !- - 5.912261009E+00, !- - 6.094168186E+00, !- - 6.276163101E+00, !- - 0.499999970, !- - 85.000000000, !- - 38.900001526, !- - 6.009854317E+00, !- - 6.225393772E+00, !- - 6.449347496E+00, !- - 6.697661400E+00, !- - 6.924942493E+00, !- - 5.864756584E+00, !- - 6.066350460E+00, !- - 6.271222115E+00, !- - 6.480144978E+00, !- - 6.699311733E+00, !- - 5.726833344E+00, !- - 5.926858902E+00, !- - 6.124229431E+00, !- - 6.323792934E+00, !- - 6.531667709E+00, !- - 5.602781773E+00, !- - 5.785144329E+00, !- - 5.975097656E+00, !- - 6.165617943E+00, !- - 6.358923912E+00, !- - 5.470835686E+00, !- - 5.647620678E+00, !- - 5.824313164E+00, !- - 6.009182930E+00, !- - 6.197026730E+00, !- - 5.339015961E+00, !- - 5.503248215E+00, !- - 5.674411297E+00, !- - 5.843969345E+00, !- - 6.022156715E+00, !- - 0.599999964, !- - 85.000000000, !- - 38.900001526, !- - 5.780550957E+00, !- - 5.989607811E+00, !- - 6.202156544E+00, !- - 6.438942909E+00, !- - 6.661171436E+00, !- - 5.642451286E+00, !- - 5.835155964E+00, !- - 6.030970097E+00, !- - 6.232661724E+00, !- - 6.439006329E+00, !- - 5.512694359E+00, !- - 5.701502800E+00, !- - 5.890693188E+00, !- - 6.082732677E+00, !- - 6.282021523E+00, !- - 5.391224384E+00, !- - 5.565419674E+00, !- - 5.747687340E+00, !- - 5.930199146E+00, !- - 6.113877773E+00, !- - 5.264094830E+00, !- - 5.433780670E+00, !- - 5.603850365E+00, !- - 5.779636860E+00, !- - 5.960750580E+00, !- - 5.135111809E+00, !- - 5.295738220E+00, !- - 5.458507061E+00, !- - 5.623476505E+00, !- - 5.794256687E+00, !- - 0.699999988, !- - 85.000000000, !- - 38.900001526, !- - 5.573001862E+00, !- - 5.766656399E+00, !- - 5.974468231E+00, !- - 6.183267593E+00, !- - 6.418684483E+00, !- - 5.440592766E+00, !- - 5.626262188E+00, !- - 5.815647602E+00, !- - 6.008687973E+00, !- - 6.206381321E+00, !- - 5.312497616E+00, !- - 5.490357399E+00, !- - 5.679677963E+00, !- - 5.864483356E+00, !- - 6.054956913E+00, !- - 5.199712276E+00, !- - 5.366889000E+00, !- - 5.541965961E+00, !- - 5.720563889E+00, !- - 5.900403500E+00, !- - 5.077210903E+00, !- - 5.240164280E+00, !- - 5.408108711E+00, !- - 5.573952198E+00, !- - 5.747310638E+00, !- - 4.953996658E+00, !- - 5.108690739E+00, !- - 5.265069485E+00, !- - 5.423257828E+00, !- - 5.587748528E+00, !- - 0.799999952, !- - 85.000000000, !- - 38.900001526, !- - 5.385197639E+00, !- - 5.570212364E+00, !- - 5.766171932E+00, !- - 5.970887661E+00, !- - 6.200608730E+00, !- - 5.256859303E+00, !- - 5.436903000E+00, !- - 5.619208813E+00, !- - 5.804953575E+00, !- - 5.996304512E+00, !- - 5.133303165E+00, !- - 5.305369854E+00, !- - 5.488326073E+00, !- - 5.666195869E+00, !- - 5.850347519E+00, !- - 5.024937630E+00, !- - 5.186417103E+00, !- - 5.355296612E+00, !- - 5.528422832E+00, !- - 5.701529980E+00, !- - 4.907347679E+00, !- - 5.064217091E+00, !- - 5.225800514E+00, !- - 5.386115551E+00, !- - 5.553591728E+00, !- - 4.788144588E+00, !- - 4.938503265E+00, !- - 5.089111328E+00, !- - 5.243773460E+00, !- - 5.401223660E+00, !- - 0.899999976, !- - 85.000000000, !- - 38.900001526, !- - 5.205968857E+00, !- - 5.392455578E+00, !- - 5.584018230E+00, !- - 5.779130936E+00, !- - 5.977272511E+00, !- - 5.089895725E+00, !- - 5.264051437E+00, !- - 5.440124512E+00, !- - 5.620657444E+00, !- - 5.805341244E+00, !- - 4.969322681E+00, !- - 5.136226654E+00, !- - 5.313691139E+00, !- - 5.485387802E+00, !- - 5.663928986E+00, !- - 4.861190319E+00, !- - 5.022156715E+00, !- - 5.184958458E+00, !- - 5.352128506E+00, !- - 5.522233963E+00, !- - 4.751545906E+00, !- - 4.903371334E+00, !- - 5.059786320E+00, !- - 5.215235233E+00, !- - 5.377421856E+00, !- - 4.637542248E+00, !- - 4.782901764E+00, !- - 4.928544521E+00, !- - 5.077798843E+00, !- - 5.230047226E+00, !- - 0.100000001, !- - 95.000000000, !- - 38.900001526, !- - 6.265818119E+00, !- - 6.529644012E+00, !- - 6.744442940E+00, !- - 7.022602558E+00, !- - 7.244069099E+00, !- - 6.117252350E+00, !- - 6.336417675E+00, !- - 6.559382439E+00, !- - 6.786314011E+00, !- - 7.029621124E+00, !- - 5.974964142E+00, !- - 6.186730862E+00, !- - 6.402053356E+00, !- - 6.622272491E+00, !- - 6.844865322E+00, !- - 5.833756924E+00, !- - 6.037249565E+00, !- - 6.241466999E+00, !- - 6.446889877E+00, !- - 6.662258625E+00, !- - 5.687562466E+00, !- - 5.884980679E+00, !- - 6.084312439E+00, !- - 6.286014557E+00, !- - 6.487462521E+00, !- - 5.561378956E+00, !- - 5.730063438E+00, !- - 5.912848473E+00, !- - 6.106351376E+00, !- - 6.301912308E+00, !- - 0.199999988, !- - 95.000000000, !- - 38.900001526, !- - 5.875678539E+00, !- - 6.099098682E+00, !- - 6.348540783E+00, !- - 6.557084084E+00, !- - 6.823448658E+00, !- - 5.743342876E+00, !- - 5.948241711E+00, !- - 6.156836033E+00, !- - 6.368998528E+00, !- - 6.592295647E+00, !- - 5.610363960E+00, !- - 5.808525085E+00, !- - 6.009937763E+00, !- - 6.215979099E+00, !- - 6.424310207E+00, !- - 5.478412151E+00, !- - 5.669564247E+00, !- - 5.860869884E+00, !- - 6.052073956E+00, !- - 6.253448486E+00, !- - 5.346921444E+00, !- - 5.527234077E+00, !- - 5.713076591E+00, !- - 5.902079582E+00, !- - 6.093647003E+00, !- - 5.210948944E+00, !- - 5.379645348E+00, !- - 5.557474613E+00, !- - 5.734667301E+00, !- - 5.918112278E+00, !- - 0.299999982, !- - 95.000000000, !- - 38.900001526, !- - 5.552942753E+00, !- - 5.750362396E+00, !- - 5.961650372E+00, !- - 6.208573341E+00, !- - 6.431177139E+00, !- - 5.423380852E+00, !- - 5.616480350E+00, !- - 5.813141823E+00, !- - 6.013071537E+00, !- - 6.226220131E+00, !- - 5.298839569E+00, !- - 5.485311985E+00, !- - 5.675266266E+00, !- - 5.869135380E+00, !- - 6.065243244E+00, !- - 5.174295425E+00, !- - 5.355134010E+00, !- - 5.537789345E+00, !- - 5.719225883E+00, !- - 5.902607441E+00, !- - 5.056111336E+00, !- - 5.221462727E+00, !- - 5.396158218E+00, !- - 5.574186325E+00, !- - 5.754336834E+00, !- - 4.921727657E+00, !- - 5.083371162E+00, !- - 5.251560211E+00, !- - 5.418694496E+00, !- - 5.593299389E+00, !- - 0.399999976, !- - 95.000000000, !- - 38.900001526, !- - 5.269816875E+00, !- - 5.454057693E+00, !- - 5.657199860E+00, !- - 5.887099266E+00, !- - 6.074626446E+00, !- - 5.146901608E+00, !- - 5.329955101E+00, !- - 5.516353607E+00, !- - 5.705649853E+00, !- - 5.899142265E+00, !- - 5.029285431E+00, !- - 5.206041336E+00, !- - 5.385974407E+00, !- - 5.569976330E+00, !- - 5.755909920E+00, !- - 4.912029266E+00, !- - 5.082716942E+00, !- - 5.255975723E+00, !- - 5.431810856E+00, !- - 5.606380463E+00, !- - 4.799509525E+00, !- - 4.958413124E+00, !- - 5.121944427E+00, !- - 5.291065693E+00, !- - 5.462572098E+00, !- - 4.670700073E+00, !- - 4.827322960E+00, !- - 4.986678123E+00, !- - 5.145022869E+00, !- - 5.307498932E+00, !- - 0.499999970, !- - 95.000000000, !- - 38.900001526, !- - 5.022109032E+00, !- - 5.202180862E+00, !- - 5.381332397E+00, !- - 5.578413963E+00, !- - 5.805573463E+00, !- - 4.904779434E+00, !- - 5.079360962E+00, !- - 5.257004261E+00, !- - 5.437585354E+00, !- - 5.622056007E+00, !- - 4.793041706E+00, !- - 4.961609364E+00, !- - 5.133027554E+00, !- - 5.308581352E+00, !- - 5.485919476E+00, !- - 4.681702137E+00, !- - 4.845311165E+00, !- - 5.009767056E+00, !- - 5.176888466E+00, !- - 5.343790054E+00, !- - 4.574587345E+00, !- - 4.726264954E+00, !- - 4.882099152E+00, !- - 5.043515682E+00, !- - 5.207358837E+00, !- - 4.452416420E+00, !- - 4.604852200E+00, !- - 4.755833626E+00, !- - 4.905735016E+00, !- - 5.057929039E+00, !- - 0.599999964, !- - 95.000000000, !- - 38.900001526, !- - 4.803382397E+00, !- - 4.975688934E+00, !- - 5.146772861E+00, !- - 5.333453655E+00, !- - 5.545248985E+00, !- - 4.691107750E+00, !- - 4.858166218E+00, !- - 5.028070450E+00, !- - 5.200999260E+00, !- - 5.377251148E+00, !- - 4.580348969E+00, !- - 4.745856285E+00, !- - 4.909888268E+00, !- - 5.077527523E+00, !- - 5.247940063E+00, !- - 4.478251457E+00, !- - 4.634954453E+00, !- - 4.792548656E+00, !- - 4.952445507E+00, !- - 5.114014149E+00, !- - 4.375974178E+00, !- - 4.521392822E+00, !- - 4.670769215E+00, !- - 4.824653149E+00, !- - 4.981656551E+00, !- - 4.261509418E+00, !- - 4.406624794E+00, !- - 4.549997330E+00, !- - 4.693954945E+00, !- - 4.839537621E+00, !- - 0.699999988, !- - 95.000000000, !- - 38.900001526, !- - 4.608055115E+00, !- - 4.773705006E+00, !- - 4.938142300E+00, !- - 5.115269184E+00, !- - 5.295624256E+00, !- - 4.500204563E+00, !- - 4.660661221E+00, !- - 4.823926926E+00, !- - 4.990267277E+00, !- - 5.159505844E+00, !- - 4.394011021E+00, !- - 4.548789501E+00, !- - 4.710763454E+00, !- - 4.872128487E+00, !- - 5.035537720E+00, !- - 4.296442509E+00, !- - 4.447676182E+00, !- - 4.598396778E+00, !- - 4.752495289E+00, !- - 4.907447338E+00, !- - 4.196975231E+00, !- - 4.338334560E+00, !- - 4.481674671E+00, !- - 4.629499912E+00, !- - 4.780550003E+00, !- - 4.090961933E+00, !- - 4.229338169E+00, !- - 4.367697716E+00, !- - 4.505301952E+00, !- - 4.644484997E+00, !- - 0.799999952, !- - 95.000000000, !- - 38.900001526, !- - 4.432907104E+00, !- - 4.592493534E+00, !- - 4.750811577E+00, !- - 4.921542168E+00, !- - 5.090443134E+00, !- - 4.333018780E+00, !- - 4.483508587E+00, !- - 4.640776634E+00, !- - 4.801027775E+00, !- - 4.964085102E+00, !- - 4.230231762E+00, !- - 4.380027294E+00, !- - 4.527555466E+00, !- - 4.687577724E+00, !- - 4.845128536E+00, !- - 4.137532234E+00, !- - 4.278978348E+00, !- - 4.424193382E+00, !- - 4.572300434E+00, !- - 4.721938133E+00, !- - 4.034814358E+00, !- - 4.174008369E+00, !- - 4.313586235E+00, !- - 4.454438210E+00, !- - 4.599135399E+00, !- - 3.942223310E+00, !- - 4.070342541E+00, !- - 4.204514027E+00, !- - 4.336077690E+00, !- - 4.472176552E+00, !- - 0.899999976, !- - 95.000000000, !- - 38.900001526, !- - 4.274369717E+00, !- - 4.428541660E+00, !- - 4.581320763E+00, !- - 4.741332531E+00, !- - 4.908604622E+00, !- - 4.177935123E+00, !- - 4.323220730E+00, !- - 4.475039005E+00, !- - 4.629886150E+00, !- - 4.787294865E+00, !- - 4.079145908E+00, !- - 4.223449230E+00, !- - 4.370092869E+00, !- - 4.521348476E+00, !- - 4.672896862E+00, !- - 3.985496998E+00, !- - 4.126290321E+00, !- - 4.267317772E+00, !- - 4.409982204E+00, !- - 4.554020405E+00, !- - 3.893064976E+00, !- - 4.023557186E+00, !- - 4.160269737E+00, !- - 4.295764923E+00, !- - 4.435796738E+00, !- - 3.797810793E+00, !- - 3.928039551E+00, !- - 4.052258968E+00, !- - 4.182612419E+00, !- - 4.313734531E+00, !- - 0.100000001, !- - 105.000000000, !- - 38.900001526, !- - 5.478792667E+00, !- - 5.672461987E+00, !- - 5.883401871E+00, !- - 6.122305870E+00, !- - 6.321151257E+00, !- - 5.351415634E+00, !- - 5.541706562E+00, !- - 5.735638618E+00, !- - 5.933269024E+00, !- - 6.134923458E+00, !- - 5.228453636E+00, !- - 5.412066460E+00, !- - 5.599658012E+00, !- - 5.791125774E+00, !- - 5.986018658E+00, !- - 5.106378078E+00, !- - 5.284238815E+00, !- - 5.463829041E+00, !- - 5.643599510E+00, !- - 5.824174404E+00, !- - 4.988528252E+00, !- - 5.152242184E+00, !- - 5.324547291E+00, !- - 5.500236511E+00, !- - 5.679171562E+00, !- - 4.856426239E+00, !- - 5.016389847E+00, !- - 5.182260513E+00, !- - 5.347247124E+00, !- - 5.517039299E+00, !- - 0.199999988, !- - 105.000000000, !- - 38.900001526, !- - 5.078141689E+00, !- - 5.260044098E+00, !- - 5.442511082E+00, !- - 5.641021252E+00, !- - 5.871208668E+00, !- - 4.959412098E+00, !- - 5.135681152E+00, !- - 5.315515518E+00, !- - 5.498252869E+00, !- - 5.684760571E+00, !- - 4.846199036E+00, !- - 5.016622066E+00, !- - 5.189938545E+00, !- - 5.367602348E+00, !- - 5.547017097E+00, !- - 4.733241558E+00, !- - 4.898372650E+00, !- - 5.064977646E+00, !- - 5.234532833E+00, !- - 5.403240681E+00, !- - 4.625233650E+00, !- - 4.778360367E+00, !- - 4.936174393E+00, !- - 5.099000454E+00, !- - 5.264979362E+00, !- - 4.499900341E+00, !- - 4.654961109E+00, !- - 4.807723522E+00, !- - 4.959453106E+00, !- - 5.113693714E+00, !- - 0.299999982, !- - 105.000000000, !- - 38.900001526, !- - 4.746022224E+00, !- - 4.916712284E+00, !- - 5.085526466E+00, !- - 5.269220352E+00, !- - 5.474384308E+00, !- - 4.634940147E+00, !- - 4.800217628E+00, !- - 4.968211651E+00, !- - 5.139404774E+00, !- - 5.313824177E+00, !- - 4.525182724E+00, !- - 4.689095974E+00, !- - 4.851440907E+00, !- - 5.017714977E+00, !- - 5.185760975E+00, !- - 4.424629688E+00, !- - 4.579445839E+00, !- - 4.735455990E+00, !- - 4.893860340E+00, !- - 5.053450108E+00, !- - 4.318246841E+00, !- - 4.467160702E+00, !- - 4.614931583E+00, !- - 4.767291069E+00, !- - 4.922698021E+00, !- - 4.215000153E+00, !- - 4.354058743E+00, !- - 4.496406555E+00, !- - 4.638218880E+00, !- - 4.782167912E+00, !- - 0.399999976, !- - 105.000000000, !- - 38.900001526, !- - 4.465662003E+00, !- - 4.626673222E+00, !- - 4.786415577E+00, !- - 4.958582878E+00, !- - 5.129953384E+00, !- - 4.364847183E+00, !- - 4.516757488E+00, !- - 4.675396919E+00, !- - 4.837037086E+00, !- - 5.001500130E+00, !- - 4.261543751E+00, !- - 4.412250519E+00, !- - 4.565674782E+00, !- - 4.722590446E+00, !- - 4.881437778E+00, !- - 4.163243294E+00, !- - 4.310263157E+00, !- - 4.456765652E+00, !- - 4.606181622E+00, !- - 4.757133484E+00, !- - 4.066405773E+00, !- - 4.204323769E+00, !- - 4.345078945E+00, !- - 4.486968994E+00, !- - 4.633729458E+00, !- - 3.965012312E+00, !- - 4.098854542E+00, !- - 4.235047817E+00, !- - 4.366966248E+00, !- - 4.501732826E+00, !- - 0.499999970, !- - 105.000000000, !- - 38.900001526, !- - 4.225430012E+00, !- - 4.378235340E+00, !- - 4.533998013E+00, !- - 4.688241005E+00, !- - 4.854315758E+00, !- - 4.129887581E+00, !- - 4.273901939E+00, !- - 4.424383163E+00, !- - 4.577785015E+00, !- - 4.733813286E+00, !- - 4.031987667E+00, !- - 4.175057411E+00, !- - 4.320383072E+00, !- - 4.468637943E+00, !- - 4.620494843E+00, !- - 3.939349413E+00, !- - 4.077044964E+00, !- - 4.218636990E+00, !- - 4.360036850E+00, !- - 4.504095554E+00, !- - 3.847514629E+00, !- - 3.977113485E+00, !- - 4.112696171E+00, !- - 4.246874809E+00, !- - 4.385681629E+00, !- - 3.754904747E+00, !- - 3.883594513E+00, !- - 4.005920887E+00, !- - 4.135806561E+00, !- - 4.265062809E+00, !- - 0.599999964, !- - 105.000000000, !- - 38.900001526, !- - 4.016684532E+00, !- - 4.162656784E+00, !- - 4.311038971E+00, !- - 4.457917690E+00, !- - 4.616483212E+00, !- - 3.922473907E+00, !- - 4.066949368E+00, !- - 4.210782528E+00, !- - 4.352741241E+00, !- - 4.501504421E+00, !- - 3.838938475E+00, !- - 3.968930006E+00, !- - 4.107569218E+00, !- - 4.248976231E+00, !- - 4.392503262E+00, !- - 3.744658709E+00, !- - 3.875930309E+00, !- - 4.011085987E+00, !- - 4.146692276E+00, !- - 4.283577919E+00, !- - 3.653898954E+00, !- - 3.781394243E+00, !- - 3.910522223E+00, !- - 4.039862633E+00, !- - 4.170699596E+00, !- - 3.576648712E+00, !- - 3.692175150E+00, !- - 3.810397863E+00, !- - 3.934948206E+00, !- - 4.057412148E+00, !- - 0.699999988, !- - 105.000000000, !- - 38.900001526, !- - 3.833137274E+00, !- - 3.972941875E+00, !- - 4.115065098E+00, !- - 4.255578041E+00, !- - 4.407533646E+00, !- - 3.742910624E+00, !- - 3.881416559E+00, !- - 4.019218445E+00, !- - 4.159143448E+00, !- - 4.297399998E+00, !- - 3.661478519E+00, !- - 3.787622213E+00, !- - 3.920671463E+00, !- - 4.055865765E+00, !- - 4.193391323E+00, !- - 3.577022791E+00, !- - 3.699072123E+00, !- - 3.828642368E+00, !- - 3.958528042E+00, !- - 4.089569092E+00, !- - 3.486876965E+00, !- - 3.609050274E+00, !- - 3.732484341E+00, !- - 3.856472492E+00, !- - 3.981773853E+00, !- - 3.413802624E+00, !- - 3.526281357E+00, !- - 3.640485287E+00, !- - 3.758456469E+00, !- - 3.875012398E+00, !- - 0.799999952, !- - 105.000000000, !- - 38.900001526, !- - 3.670227766E+00, !- - 3.804687262E+00, !- - 3.941093922E+00, !- - 4.075778008E+00, !- - 4.221858025E+00, !- - 3.586875916E+00, !- - 3.713503361E+00, !- - 3.849284172E+00, !- - 3.983653307E+00, !- - 4.120388985E+00, !- - 3.505703688E+00, !- - 3.632487059E+00, !- - 3.754672050E+00, !- - 3.884611607E+00, !- - 4.016403198E+00, !- - 3.424330235E+00, !- - 3.542086124E+00, !- - 3.666731834E+00, !- - 3.791580200E+00, !- - 3.918364763E+00, !- - 3.338736296E+00, !- - 3.452963352E+00, !- - 3.573394537E+00, !- - 3.694033861E+00, !- - 3.814131975E+00, !- - 3.276224613E+00, !- - 3.379363537E+00, !- - 3.488256216E+00, !- - 3.600348949E+00, !- - 3.713266134E+00, !- - 0.899999976, !- - 105.000000000, !- - 38.900001526, !- - 3.524268627E+00, !- - 3.653710365E+00, !- - 3.785371542E+00, !- - 3.919330835E+00, !- - 4.056106091E+00, !- - 3.443814039E+00, !- - 3.569433212E+00, !- - 3.693234444E+00, !- - 3.826505184E+00, !- - 3.958516836E+00, !- - 3.364982843E+00, !- - 3.485446930E+00, !- - 3.611217976E+00, !- - 3.730961084E+00, !- - 3.858362436E+00, !- - 3.287377834E+00, !- - 3.401325941E+00, !- - 3.521437883E+00, !- - 3.641806602E+00, !- - 3.764061451E+00, !- - 3.207520008E+00, !- - 3.316485167E+00, !- - 3.431980610E+00, !- - 3.548186064E+00, !- - 3.663763523E+00, !- - 3.149424076E+00, !- - 3.246051311E+00, !- - 3.355411291E+00, !- - 3.459404469E+00, !- - 3.568409204E+00, !- - 0.100000001, !- - 115.000000000, !- - 38.900001526, !- - 4.795506477E+00, !- - 4.967991829E+00, !- - 5.139030933E+00, !- - 5.325824738E+00, !- - 5.537942886E+00, !- - 4.682466507E+00, !- - 4.850346565E+00, !- - 5.020451069E+00, !- - 5.193316460E+00, !- - 5.369692326E+00, !- - 4.571524143E+00, !- - 4.737256050E+00, !- - 4.902056694E+00, !- - 5.069809437E+00, !- - 5.240264416E+00, !- - 4.469242573E+00, !- - 4.626205444E+00, !- - 4.784678459E+00, !- - 4.944638729E+00, !- - 5.106239319E+00, !- - 4.367332458E+00, !- - 4.512448311E+00, !- - 4.662125587E+00, !- - 4.816768646E+00, !- - 4.973769665E+00, !- - 4.252896786E+00, !- - 4.397991180E+00, !- - 4.542633533E+00, !- - 4.685476780E+00, !- - 4.831119537E+00, !- - 0.199999988, !- - 115.000000000, !- - 38.900001526, !- - 4.379165173E+00, !- - 4.537815094E+00, !- - 4.694672585E+00, !- - 4.863941669E+00, !- - 5.030898571E+00, !- - 4.279997349E+00, !- - 4.429395199E+00, !- - 4.585656643E+00, !- - 4.744600773E+00, !- - 4.906162739E+00, !- - 4.178440094E+00, !- - 4.326724529E+00, !- - 4.477281570E+00, !- - 4.632334709E+00, !- - 4.788365364E+00, !- - 4.082480907E+00, !- - 4.226610661E+00, !- - 4.370663643E+00, !- - 4.517953873E+00, !- - 4.666257381E+00, !- - 3.987135887E+00, !- - 4.122473240E+00, !- - 4.261363029E+00, !- - 4.400531769E+00, !- - 4.544614315E+00, !- - 3.889457464E+00, !- - 4.020779610E+00, !- - 4.148842812E+00, !- - 4.284040451E+00, !- - 4.418254375E+00, !- - 0.299999982, !- - 115.000000000, !- - 38.900001526, !- - 4.046626568E+00, !- - 4.193892479E+00, !- - 4.343548298E+00, !- - 4.491932392E+00, !- - 4.651689529E+00, !- - 3.951549530E+00, !- - 4.097333431E+00, !- - 4.242412567E+00, !- - 4.385854721E+00, !- - 4.535798073E+00, !- - 3.867507219E+00, !- - 3.998401403E+00, !- - 4.138268948E+00, !- - 4.280905724E+00, !- - 4.427577496E+00, !- - 3.772341490E+00, !- - 3.904481888E+00, !- - 4.040813923E+00, !- - 4.176886559E+00, !- - 4.315496922E+00, !- - 3.680396795E+00, !- - 3.809316635E+00, !- - 3.939260960E+00, !- - 4.069732666E+00, !- - 4.201843739E+00, !- - 3.602622032E+00, !- - 3.718833685E+00, !- - 3.838255882E+00, !- - 3.963798761E+00, !- - 4.087574482E+00, !- - 0.399999976, !- - 115.000000000, !- - 38.900001526, !- - 3.773223162E+00, !- - 3.911310434E+00, !- - 4.051672935E+00, !- - 4.190409660E+00, !- - 4.340476513E+00, !- - 3.684253693E+00, !- - 3.817579508E+00, !- - 3.957106829E+00, !- - 4.095319748E+00, !- - 4.236000538E+00, !- - 3.604022503E+00, !- - 3.733906269E+00, !- - 3.859795809E+00, !- - 3.993319273E+00, !- - 4.129092216E+00, !- - 3.520467758E+00, !- - 3.641252518E+00, !- - 3.769021749E+00, !- - 3.897285938E+00, !- - 4.026811600E+00, !- - 3.432062864E+00, !- - 3.552544355E+00, !- - 3.674516439E+00, !- - 3.796953440E+00, !- - 3.920437813E+00, !- - 3.361993790E+00, !- - 3.471579790E+00, !- - 3.583178043E+00, !- - 3.699356556E+00, !- - 3.815665007E+00, !- - 0.499999970, !- - 115.000000000, !- - 38.900001526, !- - 3.543877363E+00, !- - 3.674151182E+00, !- - 3.806744576E+00, !- - 3.941725731E+00, !- - 4.079491615E+00, !- - 3.462814331E+00, !- - 3.585751772E+00, !- - 3.714024544E+00, !- - 3.848193169E+00, !- - 3.981164455E+00, !- - 3.383302927E+00, !- - 3.504762411E+00, !- - 3.631300211E+00, !- - 3.751971722E+00, !- - 3.880251408E+00, !- - 3.305186987E+00, !- - 3.419627190E+00, !- - 3.540932417E+00, !- - 3.662034273E+00, !- - 3.785277605E+00, !- - 3.225223541E+00, !- - 3.337544203E+00, !- - 3.450650454E+00, !- - 3.567762852E+00, !- - 3.685244560E+00, !- - 3.164888382E+00, !- - 3.264980793E+00, !- - 3.370674133E+00, !- - 3.477819204E+00, !- - 3.587766171E+00, !- - 0.599999964, !- - 115.000000000, !- - 38.900001526, !- - 3.347181559E+00, !- - 3.471241713E+00, !- - 3.597339869E+00, !- - 3.725689173E+00, !- - 3.852596998E+00, !- - 3.273642063E+00, !- - 3.390737295E+00, !- - 3.512812138E+00, !- - 3.636956692E+00, !- - 3.763408184E+00, !- - 3.195384979E+00, !- - 3.310755253E+00, !- - 3.428107500E+00, !- - 3.550463915E+00, !- - 3.667455912E+00, !- - 3.121171951E+00, !- - 3.230427027E+00, !- - 3.345760345E+00, !- - 3.460776329E+00, !- - 3.574449539E+00, !- - 3.045976877E+00, !- - 3.154997826E+00, !- - 3.257719040E+00, !- - 3.370491505E+00, !- - 3.483410120E+00, !- - 3.000915051E+00, !- - 3.099263430E+00, !- - 3.186673403E+00, !- - 3.288674355E+00, !- - 3.392398119E+00, !- - 0.699999988, !- - 115.000000000, !- - 38.900001526, !- - 3.176667452E+00, !- - 3.295194387E+00, !- - 3.415434122E+00, !- - 3.537672758E+00, !- - 3.658605337E+00, !- - 3.106608629E+00, !- - 3.218400002E+00, !- - 3.335004568E+00, !- - 3.453538418E+00, !- - 3.574031830E+00, !- - 3.032178879E+00, !- - 3.142996073E+00, !- - 3.254061699E+00, !- - 3.368885279E+00, !- - 3.486968756E+00, !- - 2.961471796E+00, !- - 3.065936804E+00, !- - 3.176185846E+00, !- - 3.286256790E+00, !- - 3.394574881E+00, !- - 2.890764713E+00, !- - 2.996693850E+00, !- - 3.093227386E+00, !- - 3.196953773E+00, !- - 3.308069468E+00, !- - 2.855482101E+00, !- - 2.945691824E+00, !- - 3.036231041E+00, !- - 3.124284029E+00, !- - 3.226423979E+00, !- - 0.799999952, !- - 115.000000000, !- - 38.900001526, !- - 3.026700258E+00, !- - 3.140242815E+00, !- - 3.255634069E+00, !- - 3.373034000E+00, !- - 3.492646456E+00, !- - 2.959598303E+00, !- - 3.066935539E+00, !- - 3.178555489E+00, !- - 3.292290688E+00, !- - 3.407998323E+00, !- - 2.889244080E+00, !- - 2.994839430E+00, !- - 3.102666140E+00, !- - 3.213477373E+00, !- - 3.321787357E+00, !- - 2.821158648E+00, !- - 2.921641588E+00, !- - 3.025346041E+00, !- - 3.132569313E+00, !- - 3.236310720E+00, !- - 2.755269766E+00, !- - 2.854261160E+00, !- - 2.950181723E+00, !- - 3.048103809E+00, !- - 3.152718306E+00, !- - 2.724778652E+00, !- - 2.813699484E+00, !- - 2.899749756E+00, !- - 2.986849308E+00, !- - 3.077438831E+00, !- - 0.899999976, !- - 115.000000000, !- - 38.900001526, !- - 2.896623611E+00, !- - 3.003277779E+00, !- - 3.114252567E+00, !- - 3.227175713E+00, !- - 3.342195511E+00, !- - 2.827304125E+00, !- - 2.932736158E+00, !- - 3.040383101E+00, !- - 3.149653912E+00, !- - 3.260942221E+00, !- - 2.764928102E+00, !- - 2.866711378E+00, !- - 2.967506886E+00, !- - 3.074157715E+00, !- - 3.181578398E+00, !- - 2.697119474E+00, !- - 2.793930292E+00, !- - 2.893359184E+00, !- - 2.996702909E+00, !- - 3.096420050E+00, !- - 2.634537935E+00, !- - 2.729699850E+00, !- - 2.823709965E+00, !- - 2.917130470E+00, !- - 3.013827324E+00, !- - 2.611109972E+00, !- - 2.696688414E+00, !- - 2.782607079E+00, !- - 2.863797903E+00, !- - 2.951459169E+00, !- - 0.100000001, !- - 75.000000000, !- - 58.299999237, !- - 6.614890575E+00, !- - 6.810268402E+00, !- - 7.013449669E+00, !- - 7.250644684E+00, !- - 7.463451862E+00, !- - 6.469597340E+00, !- - 6.658178806E+00, !- - 6.849824429E+00, !- - 7.052212715E+00, !- - 7.253409386E+00, !- - 6.344264507E+00, !- - 6.522658348E+00, !- - 6.708246231E+00, !- - 6.897933960E+00, !- - 7.091972828E+00, !- - 6.212648392E+00, !- - 6.387226105E+00, !- - 6.561947823E+00, !- - 6.744252205E+00, !- - 6.930411816E+00, !- - 6.090908051E+00, !- - 6.256607056E+00, !- - 6.426496983E+00, !- - 6.596893787E+00, !- - 6.773152351E+00, !- - 5.977621078E+00, !- - 6.121460438E+00, !- - 6.280433655E+00, !- - 6.443144321E+00, !- - 6.608690739E+00, !- - 0.199999988, !- - 75.000000000, !- - 58.299999237, !- - 6.437195778E+00, !- - 6.625999451E+00, !- - 6.845403194E+00, !- - 7.047512531E+00, !- - 7.252279758E+00, !- - 6.300640583E+00, !- - 6.481092453E+00, !- - 6.666503429E+00, !- - 6.854986668E+00, !- - 7.052266121E+00, !- - 6.177239418E+00, !- - 6.351890087E+00, !- - 6.529346466E+00, !- - 6.714089394E+00, !- - 6.898213387E+00, !- - 6.056131363E+00, !- - 6.220650673E+00, !- - 6.389541149E+00, !- - 6.564785957E+00, !- - 6.743075371E+00, !- - 5.935261726E+00, !- - 6.095316887E+00, !- - 6.258352757E+00, !- - 6.423393250E+00, !- - 6.593661785E+00, !- - 5.827745914E+00, !- - 5.964964867E+00, !- - 6.115698338E+00, !- - 6.275013924E+00, !- - 6.434765339E+00, !- - 0.299999982, !- - 75.000000000, !- - 58.299999237, !- - 6.272996902E+00, !- - 6.456026077E+00, !- - 6.665751934E+00, !- - 6.861422062E+00, !- - 7.058192730E+00, !- - 6.140730858E+00, !- - 6.315301895E+00, !- - 6.493605614E+00, !- - 6.675853252E+00, !- - 6.864450455E+00, !- - 6.023365498E+00, !- - 6.190094471E+00, !- - 6.362260342E+00, !- - 6.538141727E+00, !- - 6.716826439E+00, !- - 5.904573917E+00, !- - 6.061465740E+00, !- - 6.226971149E+00, !- - 6.395552158E+00, !- - 6.567961693E+00, !- - 5.788144112E+00, !- - 5.942730427E+00, !- - 6.099964619E+00, !- - 6.260389328E+00, !- - 6.424003601E+00, !- - 5.675687790E+00, !- - 5.817724228E+00, !- - 5.965429306E+00, !- - 6.116866589E+00, !- - 6.271291256E+00, !- - 0.399999976, !- - 75.000000000, !- - 58.299999237, !- - 6.115934372E+00, !- - 6.296797276E+00, !- - 6.497159004E+00, !- - 6.683243275E+00, !- - 6.876799107E+00, !- - 5.990266800E+00, !- - 6.159377098E+00, !- - 6.331331730E+00, !- - 6.507037640E+00, !- - 6.690601349E+00, !- - 5.876889229E+00, !- - 6.039663792E+00, !- - 6.204627037E+00, !- - 6.374321461E+00, !- - 6.547197819E+00, !- - 5.761773109E+00, !- - 5.917528152E+00, !- - 6.073550701E+00, !- - 6.236245155E+00, !- - 6.402959824E+00, !- - 5.649316311E+00, !- - 5.799838066E+00, !- - 5.951397419E+00, !- - 6.106398582E+00, !- - 6.264423370E+00, !- - 5.540472031E+00, !- - 5.678174019E+00, !- - 5.821099758E+00, !- - 5.967467308E+00, !- - 6.118630886E+00, !- - 0.499999970, !- - 75.000000000, !- - 58.299999237, !- - 5.964260578E+00, !- - 6.143978596E+00, !- - 6.323215485E+00, !- - 6.518142700E+00, !- - 6.702101231E+00, !- - 5.848473549E+00, !- - 6.012340069E+00, !- - 6.179885387E+00, !- - 6.349714279E+00, !- - 6.528713226E+00, !- - 5.736573219E+00, !- - 5.896039486E+00, !- - 6.057255745E+00, !- - 6.221218109E+00, !- - 6.388646603E+00, !- - 5.627822399E+00, !- - 5.779146671E+00, !- - 5.929581165E+00, !- - 6.088517666E+00, !- - 6.249155045E+00, !- - 5.517734528E+00, !- - 5.662953377E+00, !- - 5.810193539E+00, !- - 5.961737156E+00, !- - 6.115994453E+00, !- - 5.413061142E+00, !- - 5.546539783E+00, !- - 5.685180187E+00, !- - 5.826014519E+00, !- - 5.973212242E+00, !- - 0.599999964, !- - 75.000000000, !- - 58.299999237, !- - 5.827105999E+00, !- - 5.996510983E+00, !- - 6.171720982E+00, !- - 6.363539696E+00, !- - 6.541901112E+00, !- - 5.714367867E+00, !- - 5.874050140E+00, !- - 6.035767555E+00, !- - 6.199849606E+00, !- - 6.365886211E+00, !- - 5.607739449E+00, !- - 5.761077404E+00, !- - 5.916110516E+00, !- - 6.075847626E+00, !- - 6.237580776E+00, !- - 5.500931263E+00, !- - 5.646841049E+00, !- - 5.792086601E+00, !- - 5.946479797E+00, !- - 6.102530003E+00, !- - 5.393327713E+00, !- - 5.534634590E+00, !- - 5.678385258E+00, !- - 5.824723721E+00, !- - 5.972952843E+00, !- - 5.287734985E+00, !- - 5.422757626E+00, !- - 5.557792664E+00, !- - 5.694126129E+00, !- - 5.837879658E+00, !- - 0.699999988, !- - 75.000000000, !- - 58.299999237, !- - 5.697559834E+00, !- - 5.863407612E+00, !- - 6.032904625E+00, !- - 6.219405651E+00, !- - 6.391744614E+00, !- - 5.588305950E+00, !- - 5.743122101E+00, !- - 5.900133133E+00, !- - 6.059448242E+00, !- - 6.220281124E+00, !- - 5.484051704E+00, !- - 5.633965492E+00, !- - 5.785008430E+00, !- - 5.938997746E+00, !- - 6.096254826E+00, !- - 5.379985809E+00, !- - 5.522183418E+00, !- - 5.667860031E+00, !- - 5.813575268E+00, !- - 5.963943481E+00, !- - 5.275744915E+00, !- - 5.413354397E+00, !- - 5.553740501E+00, !- - 5.695723057E+00, !- - 5.840014458E+00, !- - 5.173496246E+00, !- - 5.304619789E+00, !- - 5.436291695E+00, !- - 5.569237709E+00, !- - 5.707314014E+00, !- - 0.799999952, !- - 75.000000000, !- - 58.299999237, !- - 5.576480865E+00, !- - 5.751817226E+00, !- - 5.898470879E+00, !- - 6.064816952E+00, !- - 6.249140263E+00, !- - 5.469569683E+00, !- - 5.620636940E+00, !- - 5.772529125E+00, !- - 5.926271439E+00, !- - 6.083116531E+00, !- - 5.367290497E+00, !- - 5.512750149E+00, !- - 5.661391258E+00, !- - 5.810192108E+00, !- - 5.962996006E+00, !- - 5.267321110E+00, !- - 5.405645847E+00, !- - 5.546125412E+00, !- - 5.687580109E+00, !- - 5.835635662E+00, !- - 5.165346146E+00, !- - 5.298895836E+00, !- - 5.435143471E+00, !- - 5.572319031E+00, !- - 5.714118958E+00, !- - 5.069275856E+00, !- - 5.193670273E+00, !- - 5.322333813E+00, !- - 5.450856686E+00, !- - 5.586402893E+00, !- - 0.899999976, !- - 75.000000000, !- - 58.299999237, !- - 5.459722996E+00, !- - 5.611019611E+00, !- - 5.773139954E+00, !- - 5.933947563E+00, !- - 6.114164829E+00, !- - 5.355599403E+00, !- - 5.503640175E+00, !- - 5.651360989E+00, !- - 5.802900314E+00, !- - 5.954594135E+00, !- - 5.257732391E+00, !- - 5.399222851E+00, !- - 5.543371201E+00, !- - 5.687584400E+00, !- - 5.837213039E+00, !- - 5.158926010E+00, !- - 5.293806076E+00, !- - 5.432742596E+00, !- - 5.572489738E+00, !- - 5.713088989E+00, !- - 5.059987068E+00, !- - 5.190657139E+00, !- - 5.324842930E+00, !- - 5.458418369E+00, !- - 5.595515251E+00, !- - 4.966988564E+00, !- - 5.089081764E+00, !- - 5.214026928E+00, !- - 5.341033459E+00, !- - 5.470568657E+00, !- - 0.100000001, !- - 85.000000000, !- - 58.299999237, !- - 6.035402775E+00, !- - 6.215676785E+00, !- - 6.399796963E+00, !- - 6.579901218E+00, !- - 6.791829109E+00, !- - 5.919128418E+00, !- - 6.085827827E+00, !- - 6.255727768E+00, !- - 6.427909851E+00, !- - 6.605566978E+00, !- - 5.805907726E+00, !- - 5.967883587E+00, !- - 6.129475117E+00, !- - 6.297213554E+00, !- - 6.467256069E+00, !- - 5.690873146E+00, !- - 5.848649025E+00, !- - 6.003612041E+00, !- - 6.162600994E+00, !- - 6.326006413E+00, !- - 5.583977222E+00, !- - 5.730550289E+00, !- - 5.881637096E+00, !- - 6.034423351E+00, !- - 6.190331936E+00, !- - 5.476992130E+00, !- - 5.613017082E+00, !- - 5.755854130E+00, !- - 5.898340225E+00, !- - 6.046777725E+00, !- - 0.199999988, !- - 85.000000000, !- - 58.299999237, !- - 5.821050167E+00, !- - 5.989904404E+00, !- - 6.163610935E+00, !- - 6.338941097E+00, !- - 6.516568184E+00, !- - 5.710094929E+00, !- - 5.870450020E+00, !- - 6.033119202E+00, !- - 6.196250916E+00, !- - 6.364649296E+00, !- - 5.602632999E+00, !- - 5.757025242E+00, !- - 5.912101746E+00, !- - 6.070334911E+00, !- - 6.232855797E+00, !- - 5.497219563E+00, !- - 5.642930031E+00, !- - 5.789280415E+00, !- - 5.942960262E+00, !- - 6.099105835E+00, !- - 5.390059471E+00, !- - 5.531700134E+00, !- - 5.675274849E+00, !- - 5.821051598E+00, !- - 5.970066071E+00, !- - 5.288182259E+00, !- - 5.418835163E+00, !- - 5.555021286E+00, !- - 5.691256523E+00, !- - 5.833468437E+00, !- - 0.299999982, !- - 85.000000000, !- - 58.299999237, !- - 5.626654625E+00, !- - 5.782708645E+00, !- - 5.950288773E+00, !- - 6.120654106E+00, !- - 6.286509037E+00, !- - 5.519384861E+00, !- - 5.671489716E+00, !- - 5.827038765E+00, !- - 5.983567238E+00, !- - 6.144618034E+00, !- - 5.415048599E+00, !- - 5.563240528E+00, !- - 5.713195324E+00, !- - 5.865626335E+00, !- - 6.017868042E+00, !- - 5.314382076E+00, !- - 5.455280781E+00, !- - 5.599353790E+00, !- - 5.741503716E+00, !- - 5.890703678E+00, !- - 5.213568211E+00, !- - 5.347342968E+00, !- - 5.485461235E+00, !- - 5.626687050E+00, !- - 5.768281937E+00, !- - 5.115583897E+00, !- - 5.241176128E+00, !- - 5.370445728E+00, !- - 5.504060745E+00, !- - 5.637518406E+00, !- - 0.399999976, !- - 85.000000000, !- - 58.299999237, !- - 5.441658497E+00, !- - 5.597455978E+00, !- - 5.753883362E+00, !- - 5.915019989E+00, !- - 6.077554226E+00, !- - 5.342590809E+00, !- - 5.488831997E+00, !- - 5.638632774E+00, !- - 5.790908337E+00, !- - 5.943113804E+00, !- - 5.243341446E+00, !- - 5.386150837E+00, !- - 5.529651642E+00, !- - 5.675825596E+00, !- - 5.822843075E+00, !- - 5.145504475E+00, !- - 5.282684803E+00, !- - 5.419732094E+00, !- - 5.559288025E+00, !- - 5.699913502E+00, !- - 5.049658298E+00, !- - 5.178739071E+00, !- - 5.311344147E+00, !- - 5.445790768E+00, !- - 5.582251549E+00, !- - 4.954899788E+00, !- - 5.076574802E+00, !- - 5.202059269E+00, !- - 5.329813480E+00, !- - 5.458990574E+00, !- - 0.499999970, !- - 85.000000000, !- - 58.299999237, !- - 5.270390034E+00, !- - 5.425292492E+00, !- - 5.591092110E+00, !- - 5.728784561E+00, !- - 5.888763905E+00, !- - 5.179948330E+00, !- - 5.321340084E+00, !- - 5.465774536E+00, !- - 5.612274647E+00, !- - 5.759010792E+00, !- - 5.084234238E+00, !- - 5.223321438E+00, !- - 5.360546589E+00, !- - 5.501731873E+00, !- - 5.642362118E+00, !- - 4.991046906E+00, !- - 5.122609138E+00, !- - 5.256457806E+00, !- - 5.389475346E+00, !- - 5.524308681E+00, !- - 4.898374557E+00, !- - 5.022617340E+00, !- - 5.150495529E+00, !- - 5.280981064E+00, !- - 5.412129402E+00, !- - 4.805108070E+00, !- - 4.924659252E+00, !- - 5.045931816E+00, !- - 5.167368889E+00, !- - 5.293461800E+00, !- - 0.599999964, !- - 85.000000000, !- - 58.299999237, !- - 5.118095875E+00, !- - 5.261785507E+00, !- - 5.407487392E+00, !- - 5.575722694E+00, !- - 5.709294319E+00, !- - 5.030347347E+00, !- - 5.166612148E+00, !- - 5.304997921E+00, !- - 5.447424412E+00, !- - 5.586746216E+00, !- - 4.938645363E+00, !- - 5.071573257E+00, !- - 5.205302238E+00, !- - 5.340401173E+00, !- - 5.476398945E+00, !- - 4.846477985E+00, !- - 4.975328922E+00, !- - 5.101285934E+00, !- - 5.233515263E+00, !- - 5.365790844E+00, !- - 4.757647991E+00, !- - 4.879446030E+00, !- - 5.003041744E+00, !- - 5.128049374E+00, !- - 5.254741192E+00, !- - 4.673123360E+00, !- - 4.784769535E+00, !- - 4.902111053E+00, !- - 5.020566940E+00, !- - 5.141088486E+00, !- - 0.699999988, !- - 85.000000000, !- - 58.299999237, !- - 4.975697041E+00, !- - 5.113364220E+00, !- - 5.256854534E+00, !- - 5.415294647E+00, !- - 5.556859016E+00, !- - 4.891887188E+00, !- - 5.023264408E+00, !- - 5.158555984E+00, !- - 5.293369293E+00, !- - 5.429458141E+00, !- - 4.802292824E+00, !- - 4.930915356E+00, !- - 5.061599255E+00, !- - 5.191950798E+00, !- - 5.322807312E+00, !- - 4.715676785E+00, !- - 4.837822437E+00, !- - 4.961469650E+00, !- - 5.089176178E+00, !- - 5.216177464E+00, !- - 4.627378464E+00, !- - 4.745872021E+00, !- - 4.864442825E+00, !- - 4.985915661E+00, !- - 5.108726978E+00, !- - 4.542742252E+00, !- - 4.654483795E+00, !- - 4.767890930E+00, !- - 4.883265495E+00, !- - 4.999247551E+00, !- - 0.799999952, !- - 85.000000000, !- - 58.299999237, !- - 4.845118999E+00, !- - 4.977121353E+00, !- - 5.114276886E+00, !- - 5.252412319E+00, !- - 5.409336090E+00, !- - 4.762873650E+00, !- - 4.891179562E+00, !- - 5.021779060E+00, !- - 5.151800156E+00, !- - 5.284872532E+00, !- - 4.675914764E+00, !- - 4.802259922E+00, !- - 4.927602291E+00, !- - 5.053623676E+00, !- - 5.180578232E+00, !- - 4.591048241E+00, !- - 4.710546970E+00, !- - 4.831434250E+00, !- - 4.953225136E+00, !- - 5.077535629E+00, !- - 4.507058620E+00, !- - 4.621417046E+00, !- - 4.737654686E+00, !- - 4.854518890E+00, !- - 4.974004269E+00, !- - 4.423262119E+00, !- - 4.533410549E+00, !- - 4.644570351E+00, !- - 4.754851818E+00, !- - 4.866945267E+00, !- - 0.899999976, !- - 85.000000000, !- - 58.299999237, !- - 4.722049713E+00, !- - 4.850332260E+00, !- - 4.980817318E+00, !- - 5.118879795E+00, !- - 5.254069805E+00, !- - 4.642199039E+00, !- - 4.767061234E+00, !- - 4.893881798E+00, !- - 5.021631241E+00, !- - 5.148960114E+00, !- - 4.557866573E+00, !- - 4.680134773E+00, !- - 4.802395821E+00, !- - 4.924877167E+00, !- - 5.049587727E+00, !- - 4.475465298E+00, !- - 4.592361450E+00, !- - 4.709136486E+00, !- - 4.827679157E+00, !- - 4.948237419E+00, !- - 4.393925190E+00, !- - 4.506555557E+00, !- - 4.618322849E+00, !- - 4.731986046E+00, !- - 4.847842693E+00, !- - 4.313993931E+00, !- - 4.420815468E+00, !- - 4.528480053E+00, !- - 4.636391163E+00, !- - 4.746408939E+00, !- - 0.100000001, !- - 95.000000000, !- - 58.299999237, !- - 5.487927914E+00, !- - 5.642860413E+00, !- - 5.798964977E+00, !- - 5.960851669E+00, !- - 6.149898529E+00, !- - 5.388586044E+00, !- - 5.537911892E+00, !- - 5.690798759E+00, !- - 5.844200134E+00, !- - 5.999458790E+00, !- - 5.287981987E+00, !- - 5.431830883E+00, !- - 5.577692986E+00, !- - 5.730578423E+00, !- - 5.884419441E+00, !- - 5.193953514E+00, !- - 5.331958294E+00, !- - 5.471730709E+00, !- - 5.611553192E+00, !- - 5.757737160E+00, !- - 5.094443798E+00, !- - 5.227858067E+00, !- - 5.363395214E+00, !- - 5.499602795E+00, !- - 5.638093948E+00, !- - 4.999321938E+00, !- - 5.123147964E+00, !- - 5.250985146E+00, !- - 5.381668568E+00, !- - 5.512525082E+00, !- - 0.199999988, !- - 95.000000000, !- - 58.299999237, !- - 5.232323647E+00, !- - 5.382132053E+00, !- - 5.528323650E+00, !- - 5.679924488E+00, !- - 5.852448463E+00, !- - 5.141625404E+00, !- - 5.282531261E+00, !- - 5.427262783E+00, !- - 5.572304249E+00, !- - 5.718806744E+00, !- - 5.045829296E+00, !- - 5.182530880E+00, !- - 5.320215225E+00, !- - 5.459527493E+00, !- - 5.610488415E+00, !- - 4.955916405E+00, !- - 5.088325977E+00, !- - 5.221038342E+00, !- - 5.355476856E+00, !- - 5.489861488E+00, !- - 4.863385201E+00, !- - 4.990301132E+00, !- - 5.118272781E+00, !- - 5.247378349E+00, !- - 5.381688595E+00, !- - 4.774666786E+00, !- - 4.892100334E+00, !- - 5.013357639E+00, !- - 5.137402534E+00, !- - 5.260118008E+00, !- - 0.299999982, !- - 95.000000000, !- - 58.299999237, !- - 5.007820129E+00, !- - 5.148941040E+00, !- - 5.289780140E+00, !- - 5.429224968E+00, !- - 5.576091290E+00, !- - 4.921418190E+00, !- - 5.055762768E+00, !- - 5.191711903E+00, !- - 5.330193996E+00, !- - 5.469635487E+00, !- - 4.830846310E+00, !- - 4.960540295E+00, !- - 5.091709137E+00, !- - 5.228606224E+00, !- - 5.366895676E+00, !- - 4.745734215E+00, !- - 4.871196747E+00, !- - 4.998585701E+00, !- - 5.125581264E+00, !- - 5.252283096E+00, !- - 4.653966904E+00, !- - 4.778232098E+00, !- - 4.900776386E+00, !- - 5.023360729E+00, !- - 5.148485661E+00, !- - 4.574736118E+00, !- - 4.686445236E+00, !- - 4.802161694E+00, !- - 4.919339657E+00, !- - 5.036231995E+00, !- - 0.399999976, !- - 95.000000000, !- - 58.299999237, !- - 4.807190418E+00, !- - 4.941989899E+00, !- - 5.076850891E+00, !- - 5.209631920E+00, !- - 5.346198559E+00, !- - 4.724722862E+00, !- - 4.853143215E+00, !- - 4.982690811E+00, !- - 5.115265369E+00, !- - 5.246607780E+00, !- - 4.638192654E+00, !- - 4.762283802E+00, !- - 4.887605667E+00, !- - 5.018881321E+00, !- - 5.147677898E+00, !- - 4.557390213E+00, !- - 4.677456379E+00, !- - 4.799187660E+00, !- - 4.921954632E+00, !- - 5.044197083E+00, !- - 4.470071793E+00, !- - 4.588573456E+00, !- - 4.705975056E+00, !- - 4.823027134E+00, !- - 4.944842815E+00, !- - 4.391927242E+00, !- - 4.502099991E+00, !- - 4.612606525E+00, !- - 4.724680901E+00, !- - 4.838133812E+00, !- - 0.499999970, !- - 95.000000000, !- - 58.299999237, !- - 4.626783371E+00, !- - 4.756107330E+00, !- - 4.885150909E+00, !- - 5.012045383E+00, !- - 5.142550945E+00, !- - 4.547863483E+00, !- - 4.670895100E+00, !- - 4.795166492E+00, !- - 4.921880722E+00, !- - 5.047430038E+00, !- - 4.464698315E+00, !- - 4.583920956E+00, !- - 4.703958988E+00, !- - 4.829933643E+00, !- - 4.953141689E+00, !- - 4.383663177E+00, !- - 4.502892017E+00, !- - 4.619640827E+00, !- - 4.737299919E+00, !- - 4.855941296E+00, !- - 4.304298401E+00, !- - 4.414020538E+00, !- - 4.530632496E+00, !- - 4.643774986E+00, !- - 4.757191658E+00, !- - 4.229625702E+00, !- - 4.335733891E+00, !- - 4.442311764E+00, !- - 4.549467564E+00, !- - 4.658334255E+00, !- - 0.599999964, !- - 95.000000000, !- - 58.299999237, !- - 4.463489532E+00, !- - 4.588046074E+00, !- - 4.712088108E+00, !- - 4.833668232E+00, !- - 4.957357407E+00, !- - 4.387747765E+00, !- - 4.506156445E+00, !- - 4.625563145E+00, !- - 4.747342110E+00, !- - 4.867711544E+00, !- - 4.307724476E+00, !- - 4.422573090E+00, !- - 4.537991524E+00, !- - 4.659260273E+00, !- - 4.777550220E+00, !- - 4.230091095E+00, !- - 4.345058918E+00, !- - 4.456985950E+00, !- - 4.570482254E+00, !- - 4.684392452E+00, !- - 4.154481888E+00, !- - 4.259934902E+00, !- - 4.371480942E+00, !- - 4.480884075E+00, !- - 4.589886189E+00, !- - 4.083983421E+00, !- - 4.185217857E+00, !- - 4.287743092E+00, !- - 4.391180038E+00, !- - 4.495141983E+00, !- - 0.699999988, !- - 95.000000000, !- - 58.299999237, !- - 4.315114021E+00, !- - 4.435134888E+00, !- - 4.554670334E+00, !- - 4.671873093E+00, !- - 4.790678024E+00, !- - 4.241845131E+00, !- - 4.356169701E+00, !- - 4.471357346E+00, !- - 4.588679790E+00, !- - 4.704517841E+00, !- - 4.165188789E+00, !- - 4.275683403E+00, !- - 4.391186237E+00, !- - 4.504190922E+00, !- - 4.618098259E+00, !- - 4.090209007E+00, !- - 4.200871944E+00, !- - 4.309335709E+00, !- - 4.418723583E+00, !- - 4.528567791E+00, !- - 4.017769814E+00, !- - 4.119766235E+00, !- - 4.226928711E+00, !- - 4.332682610E+00, !- - 4.437765598E+00, !- - 3.950441360E+00, !- - 4.048425198E+00, !- - 4.147320747E+00, !- - 4.246908665E+00, !- - 4.347802162E+00, !- - 0.799999952, !- - 95.000000000, !- - 58.299999237, !- - 4.179100990E+00, !- - 4.296833992E+00, !- - 4.410723209E+00, !- - 4.524978161E+00, !- - 4.638459682E+00, !- - 4.108288288E+00, !- - 4.218849182E+00, !- - 4.330227852E+00, !- - 4.442162514E+00, !- - 4.555315495E+00, !- - 4.034177303E+00, !- - 4.141543865E+00, !- - 4.253102303E+00, !- - 4.362112045E+00, !- - 4.472169876E+00, !- - 3.961931705E+00, !- - 4.069127560E+00, !- - 4.174113750E+00, !- - 4.279769421E+00, !- - 4.386049271E+00, !- - 3.892168045E+00, !- - 3.991228104E+00, !- - 4.094691753E+00, !- - 4.196826935E+00, !- - 4.298497200E+00, !- - 3.829097748E+00, !- - 3.923006058E+00, !- - 4.018646717E+00, !- - 4.114741325E+00, !- - 4.212297916E+00, !- - 0.899999976, !- - 95.000000000, !- - 58.299999237, !- - 4.054514885E+00, !- - 4.168607712E+00, !- - 4.279270172E+00, !- - 4.389719963E+00, !- - 4.499501705E+00, !- - 3.985894680E+00, !- - 4.093180180E+00, !- - 4.201250553E+00, !- - 4.309693336E+00, !- - 4.423439980E+00, !- - 3.914147854E+00, !- - 4.018187523E+00, !- - 4.122880936E+00, !- - 4.232377052E+00, !- - 4.338852406E+00, !- - 3.844367981E+00, !- - 3.948388100E+00, !- - 4.049954414E+00, !- - 4.152520180E+00, !- - 4.255734921E+00, !- - 3.777657986E+00, !- - 3.873054743E+00, !- - 3.970090866E+00, !- - 4.072500706E+00, !- - 4.171607018E+00, !- - 3.716623068E+00, !- - 3.808047771E+00, !- - 3.900614977E+00, !- - 3.993982792E+00, !- - 4.088237286E+00, !- - 0.100000001, !- - 105.000000000, !- - 58.299999237, !- - 4.957024574E+00, !- - 5.096623898E+00, !- - 5.236547947E+00, !- - 5.373332024E+00, !- - 5.517992496E+00, !- - 4.871440411E+00, !- - 5.004393578E+00, !- - 5.138714314E+00, !- - 5.276421547E+00, !- - 5.413926125E+00, !- - 4.782605171E+00, !- - 4.910242081E+00, !- - 5.040062428E+00, !- - 5.175903797E+00, !- - 5.312035084E+00, !- - 4.698727131E+00, !- - 4.821814537E+00, !- - 4.948050976E+00, !- - 5.074018955E+00, !- - 5.202155590E+00, !- - 4.607835293E+00, !- - 4.730983734E+00, !- - 4.851247787E+00, !- - 4.972860813E+00, !- - 5.099308491E+00, !- - 4.529986858E+00, !- - 4.640068531E+00, !- - 4.754805088E+00, !- - 4.869659901E+00, !- - 4.985126019E+00, !- - 0.199999988, !- - 105.000000000, !- - 58.299999237, !- - 4.668751240E+00, !- - 4.802227497E+00, !- - 4.930825710E+00, !- - 5.059146881E+00, !- - 5.191219807E+00, !- - 4.589283466E+00, !- - 4.713427544E+00, !- - 4.839844704E+00, !- - 4.968054771E+00, !- - 5.095014572E+00, !- - 4.505195618E+00, !- - 4.625598431E+00, !- - 4.746862411E+00, !- - 4.874894142E+00, !- - 4.999397278E+00, !- - 4.423122883E+00, !- - 4.543682098E+00, !- - 4.661152840E+00, !- - 4.781403065E+00, !- - 4.900730610E+00, !- - 4.343052864E+00, !- - 4.453740597E+00, !- - 4.571639538E+00, !- - 4.685811520E+00, !- - 4.803839684E+00, !- - 4.266988754E+00, !- - 4.374536514E+00, !- - 4.481939316E+00, !- - 4.589905262E+00, !- - 4.700374603E+00, !- - 0.299999982, !- - 105.000000000, !- - 58.299999237, !- - 4.421822548E+00, !- - 4.545287609E+00, !- - 4.668195724E+00, !- - 4.788751602E+00, !- - 4.911129475E+00, !- - 4.346750736E+00, !- - 4.464244843E+00, !- - 4.582497597E+00, !- - 4.703119278E+00, !- - 4.822359085E+00, !- - 4.267882824E+00, !- - 4.381216049E+00, !- - 4.499984741E+00, !- - 4.615890980E+00, !- - 4.733228207E+00, !- - 4.190729618E+00, !- - 4.304688454E+00, !- - 4.415481091E+00, !- - 4.528050423E+00, !- - 4.640956879E+00, !- - 4.115947247E+00, !- - 4.220407009E+00, !- - 4.330955982E+00, !- - 4.439368248E+00, !- - 4.547296047E+00, !- - 4.046103001E+00, !- - 4.146707058E+00, !- - 4.248055935E+00, !- - 4.350585461E+00, !- - 4.454191685E+00, !- - 0.399999976, !- - 105.000000000, !- - 58.299999237, !- - 4.206876278E+00, !- - 4.321431637E+00, !- - 4.440407753E+00, !- - 4.555666447E+00, !- - 4.670117855E+00, !- - 4.135492802E+00, !- - 4.246842861E+00, !- - 4.359245777E+00, !- - 4.472060680E+00, !- - 4.586258888E+00, !- - 4.060804844E+00, !- - 4.168990135E+00, !- - 4.281350136E+00, !- - 4.391343594E+00, !- - 4.502279758E+00, !- - 3.987950563E+00, !- - 4.095942497E+00, !- - 4.201744080E+00, !- - 4.308263779E+00, !- - 4.415286541E+00, !- - 3.917137384E+00, !- - 4.017260075E+00, !- - 4.121622086E+00, !- - 4.224592686E+00, !- - 4.327034950E+00, !- - 3.853337526E+00, !- - 3.948281765E+00, !- - 4.044469357E+00, !- - 4.141622066E+00, !- - 4.240265369E+00, !- - 0.499999970, !- - 105.000000000, !- - 58.299999237, !- - 4.017937660E+00, !- - 4.131142616E+00, !- - 4.240682125E+00, !- - 4.350210190E+00, !- - 4.459012985E+00, !- - 3.949881792E+00, !- - 4.056292057E+00, !- - 4.163374424E+00, !- - 4.270777702E+00, !- - 4.383692741E+00, !- - 3.878722191E+00, !- - 3.981941700E+00, !- - 4.085928917E+00, !- - 4.194205761E+00, !- - 4.299785614E+00, !- - 3.809622526E+00, !- - 3.912805557E+00, !- - 4.013590813E+00, !- - 4.115396023E+00, !- - 4.217382908E+00, !- - 3.743564606E+00, !- - 3.838251114E+00, !- - 3.934475899E+00, !- - 4.036098003E+00, !- - 4.134304523E+00, !- - 3.683333635E+00, !- - 3.774010420E+00, !- - 3.865805149E+00, !- - 3.958500147E+00, !- - 4.051796436E+00, !- - 0.599999964, !- - 105.000000000, !- - 58.299999237, !- - 3.850387335E+00, !- - 3.954945326E+00, !- - 4.063608646E+00, !- - 4.168386936E+00, !- - 4.272239208E+00, !- - 3.785199404E+00, !- - 3.887063980E+00, !- - 3.989630222E+00, !- - 4.092403412E+00, !- - 4.200609684E+00, !- - 3.717064142E+00, !- - 3.816104889E+00, !- - 3.915759325E+00, !- - 4.015416622E+00, !- - 4.119870186E+00, !- - 3.651733637E+00, !- - 3.750336885E+00, !- - 3.846765995E+00, !- - 3.944792509E+00, !- - 4.042029381E+00, !- - 3.588845491E+00, !- - 3.680245399E+00, !- - 3.771435976E+00, !- - 3.864407539E+00, !- - 3.963193178E+00, !- - 3.534864187E+00, !- - 3.619703054E+00, !- - 3.706410646E+00, !- - 3.795963526E+00, !- - 3.885314226E+00, !- - 0.699999988, !- - 105.000000000, !- - 58.299999237, !- - 3.703943253E+00, !- - 3.800546408E+00, !- - 3.904876471E+00, !- - 4.005362034E+00, !- - 4.105903149E+00, !- - 3.637578249E+00, !- - 3.735409975E+00, !- - 3.833901405E+00, !- - 3.932480812E+00, !- - 4.031095982E+00, !- - 3.572322607E+00, !- - 3.667176008E+00, !- - 3.762970924E+00, !- - 3.858791113E+00, !- - 3.959079504E+00, !- - 3.509460688E+00, !- - 3.601334810E+00, !- - 3.697365761E+00, !- - 3.791439056E+00, !- - 3.885087967E+00, !- - 3.451619387E+00, !- - 3.538154364E+00, !- - 3.626332998E+00, !- - 3.718320608E+00, !- - 3.809180975E+00, !- - 3.400571823E+00, !- - 3.481964827E+00, !- - 3.565042257E+00, !- - 3.649593115E+00, !- - 3.736445904E+00, !- - 0.799999952, !- - 105.000000000, !- - 58.299999237, !- - 3.569216013E+00, !- - 3.662858486E+00, !- - 3.763027191E+00, !- - 3.859755039E+00, !- - 3.956446648E+00, !- - 3.505066156E+00, !- - 3.599837542E+00, !- - 3.694655418E+00, !- - 3.789647102E+00, !- - 3.884470224E+00, !- - 3.448462963E+00, !- - 3.533828735E+00, !- - 3.626407146E+00, !- - 3.722590208E+00, !- - 3.815413475E+00, !- - 3.382235050E+00, !- - 3.470417976E+00, !- - 3.563070536E+00, !- - 3.653936863E+00, !- - 3.744590998E+00, !- - 3.327729702E+00, !- - 3.410133362E+00, !- - 3.495568037E+00, !- - 3.580934763E+00, !- - 3.671747684E+00, !- - 3.280770779E+00, !- - 3.356564760E+00, !- - 3.436962605E+00, !- - 3.519353867E+00, !- - 3.601330996E+00, !- - 0.899999976, !- - 105.000000000, !- - 58.299999237, !- - 3.446807861E+00, !- - 3.536618710E+00, !- - 3.633608580E+00, !- - 3.727164507E+00, !- - 3.820527554E+00, !- - 3.385422230E+00, !- - 3.476547241E+00, !- - 3.567628860E+00, !- - 3.659549475E+00, !- - 3.751011848E+00, !- - 3.329627991E+00, !- - 3.419174433E+00, !- - 3.501956224E+00, !- - 3.591130972E+00, !- - 3.684755802E+00, !- - 3.266721487E+00, !- - 3.352364540E+00, !- - 3.441581726E+00, !- - 3.528435707E+00, !- - 3.616210699E+00, !- - 3.213448763E+00, !- - 3.295887232E+00, !- - 3.377073288E+00, !- - 3.459924936E+00, !- - 3.546308994E+00, !- - 3.176591158E+00, !- - 3.247481823E+00, !- - 3.323341846E+00, !- - 3.401257277E+00, !- - 3.480300426E+00, !- - 0.100000001, !- - 115.000000000, !- - 58.299999237, !- - 4.460855007E+00, !- - 4.585332394E+00, !- - 4.709547520E+00, !- - 4.831313133E+00, !- - 4.955133438E+00, !- - 4.384663105E+00, !- - 4.503357410E+00, !- - 4.622905254E+00, !- - 4.744850159E+00, !- - 4.865392208E+00, !- - 4.304696560E+00, !- - 4.419706821E+00, !- - 4.535254478E+00, !- - 4.656619072E+00, !- - 4.775087357E+00, !- - 4.226997375E+00, !- - 4.341928005E+00, !- - 4.454235077E+00, !- - 4.567765713E+00, !- - 4.681788445E+00, !- - 4.151290417E+00, !- - 4.256874084E+00, !- - 4.368354797E+00, !- - 4.477987766E+00, !- - 4.587171078E+00, !- - 4.080477238E+00, !- - 4.182036877E+00, !- - 4.284708500E+00, !- - 4.388213158E+00, !- - 4.492309093E+00, !- - 0.199999988, !- - 115.000000000, !- - 58.299999237, !- - 4.141300201E+00, !- - 4.258165359E+00, !- - 4.371217728E+00, !- - 4.484603882E+00, !- - 4.597279072E+00, !- - 4.070995331E+00, !- - 4.180844784E+00, !- - 4.291338444E+00, !- - 4.402402878E+00, !- - 4.514749050E+00, !- - 3.997491360E+00, !- - 4.103945255E+00, !- - 4.214802742E+00, !- - 4.323048592E+00, !- - 4.432274342E+00, !- - 3.925898314E+00, !- - 4.032236099E+00, !- - 4.136296272E+00, !- - 4.241358280E+00, !- - 4.346870899E+00, !- - 3.856354952E+00, !- - 3.955104351E+00, !- - 4.053944111E+00, !- - 4.159054756E+00, !- - 4.260761261E+00, !- - 3.793963909E+00, !- - 3.887492895E+00, !- - 3.982269287E+00, !- - 4.078569889E+00, !- - 4.174734592E+00, !- - 0.299999982, !- - 115.000000000, !- - 58.299999237, !- - 3.876779318E+00, !- - 3.982169867E+00, !- - 4.091721058E+00, !- - 4.197297573E+00, !- - 4.301459312E+00, !- - 3.811079264E+00, !- - 3.913727522E+00, !- - 4.017100811E+00, !- - 4.120775700E+00, !- - 4.230053902E+00, !- - 3.742474318E+00, !- - 3.842166185E+00, !- - 3.942623854E+00, !- - 4.043078899E+00, !- - 4.149192333E+00, !- - 3.676090479E+00, !- - 3.775779247E+00, !- - 3.872962952E+00, !- - 3.971735954E+00, !- - 4.069765568E+00, !- - 3.612916708E+00, !- - 3.704997778E+00, !- - 3.796836376E+00, !- - 3.890637636E+00, !- - 3.990009546E+00, !- - 3.558807611E+00, !- - 3.643677473E+00, !- - 3.731016636E+00, !- - 3.821774960E+00, !- - 3.911710501E+00, !- - 0.399999976, !- - 115.000000000, !- - 58.299999237, !- - 3.657182693E+00, !- - 3.752252579E+00, !- - 3.855612278E+00, !- - 3.954930544E+00, !- - 4.054257393E+00, !- - 3.592070103E+00, !- - 3.688347816E+00, !- - 3.785125494E+00, !- - 3.882921457E+00, !- - 3.980341673E+00, !- - 3.533327818E+00, !- - 3.621060133E+00, !- - 3.715607166E+00, !- - 3.809846640E+00, !- - 3.909278393E+00, !- - 3.465097904E+00, !- - 3.555590630E+00, !- - 3.650814056E+00, !- - 3.743732929E+00, !- - 3.835963011E+00, !- - 3.407375097E+00, !- - 3.493364573E+00, !- - 3.580856323E+00, !- - 3.671992540E+00, !- - 3.761761189E+00, !- - 3.357495546E+00, !- - 3.441192150E+00, !- - 3.519597292E+00, !- - 3.603796005E+00, !- - 3.689723015E+00, !- - 0.499999970, !- - 115.000000000, !- - 58.299999237, !- - 3.465313196E+00, !- - 3.555579662E+00, !- - 3.653928518E+00, !- - 3.747934818E+00, !- - 3.841983080E+00, !- - 3.403489828E+00, !- - 3.495268345E+00, !- - 3.587454796E+00, !- - 3.679810524E+00, !- - 3.771945000E+00, !- - 3.347298861E+00, !- - 3.437404156E+00, !- - 3.520670176E+00, !- - 3.614867926E+00, !- - 3.705056429E+00, !- - 3.283938885E+00, !- - 3.370134115E+00, !- - 3.459958553E+00, !- - 3.547214985E+00, !- - 3.636529922E+00, !- - 3.230689764E+00, !- - 3.313179970E+00, !- - 3.394925117E+00, !- - 3.478220463E+00, !- - 3.565139771E+00, !- - 3.191438675E+00, !- - 3.261447668E+00, !- - 3.341298580E+00, !- - 3.418901682E+00, !- - 3.498242617E+00, !- - 0.599999964, !- - 115.000000000, !- - 58.299999237, !- - 3.298300505E+00, !- - 3.387736320E+00, !- - 3.474177837E+00, !- - 3.566943884E+00, !- - 3.655979872E+00, !- - 3.238316774E+00, !- - 3.326630116E+00, !- - 3.414466143E+00, !- - 3.501969814E+00, !- - 3.589229107E+00, !- - 3.185648441E+00, !- - 3.270263672E+00, !- - 3.357322931E+00, !- - 3.436857224E+00, !- - 3.526371956E+00, !- - 3.126179457E+00, !- - 3.208326101E+00, !- - 3.290561438E+00, !- - 3.377085686E+00, !- - 3.461460829E+00, !- - 3.075015545E+00, !- - 3.155661106E+00, !- - 3.234322786E+00, !- - 3.312305927E+00, !- - 3.391895056E+00, !- - 3.044783115E+00, !- - 3.117329121E+00, !- - 3.185958147E+00, !- - 3.259939194E+00, !- - 3.333685160E+00, !- - 0.699999988, !- - 115.000000000, !- - 58.299999237, !- - 3.151167870E+00, !- - 3.237563610E+00, !- - 3.320027351E+00, !- - 3.408847809E+00, !- - 3.494282246E+00, !- - 3.094303131E+00, !- - 3.178087950E+00, !- - 3.262979031E+00, !- - 3.347122431E+00, !- - 3.430588007E+00, !- - 3.043186903E+00, !- - 3.124871969E+00, !- - 3.206598520E+00, !- - 3.290448904E+00, !- - 3.370334625E+00, !- - 2.986647606E+00, !- - 3.065408230E+00, !- - 3.144641876E+00, !- - 3.227889776E+00, !- - 3.307798862E+00, !- - 2.940667868E+00, !- - 3.014415264E+00, !- - 3.089119911E+00, !- - 3.167710304E+00, !- - 3.244073153E+00, !- - 2.915406227E+00, !- - 2.980991602E+00, !- - 3.050520658E+00, !- - 3.118648291E+00, !- - 3.190841913E+00, !- - 0.799999952, !- - 115.000000000, !- - 58.299999237, !- - 3.020508289E+00, !- - 3.102938652E+00, !- - 3.182062626E+00, !- - 3.267274857E+00, !- - 3.349242687E+00, !- - 2.965867043E+00, !- - 3.046403170E+00, !- - 3.127121687E+00, !- - 3.208091497E+00, !- - 3.288571358E+00, !- - 2.917077065E+00, !- - 2.995556593E+00, !- - 3.073635817E+00, !- - 3.156931639E+00, !- - 3.232934713E+00, !- - 2.863228798E+00, !- - 2.938800097E+00, !- - 3.014897585E+00, !- - 3.094262123E+00, !- - 3.170980453E+00, !- - 2.817813873E+00, !- - 2.890356779E+00, !- - 2.964620590E+00, !- - 3.037699461E+00, !- - 3.111128807E+00, !- - 2.799231052E+00, !- - 2.862735987E+00, !- - 2.928508759E+00, !- - 2.995723724E+00, !- - 3.060733080E+00, !- - 0.899999976, !- - 115.000000000, !- - 58.299999237, !- - 2.902925014E+00, !- - 2.982273579E+00, !- - 3.061761856E+00, !- - 3.137973547E+00, !- - 3.219460249E+00, !- - 2.850191832E+00, !- - 2.927748680E+00, !- - 3.005531549E+00, !- - 3.083178043E+00, !- - 3.161187410E+00, !- - 2.803539753E+00, !- - 2.879143476E+00, !- - 2.955021381E+00, !- - 3.029503345E+00, !- - 3.108935118E+00, !- - 2.752101660E+00, !- - 2.824911833E+00, !- - 2.898008823E+00, !- - 2.974530458E+00, !- - 3.048349380E+00, !- - 2.708879948E+00, !- - 2.779573679E+00, !- - 2.849396944E+00, !- - 2.921314955E+00, !- - 2.991593361E+00, !- - 2.693839312E+00, !- - 2.756402969E+00, !- - 2.824288845E+00, !- - 2.883990526E+00, !- - 2.949110746E+00; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 7.362575054E+00, !- Output Value 1 + 5.977621078E+00, !- Extended Field + 6.415134430E+00, !- Extended Field + 5.476992130E+00, !- Extended Field + 5.561378956E+00, !- Extended Field + 4.999321938E+00, !- Extended Field + 4.856426239E+00, !- Extended Field + 4.529986858E+00, !- Extended Field + 4.252896786E+00, !- Extended Field + 4.080477238E+00, !- Extended Field + 7.058471680E+00, !- Extended Field + 5.827745914E+00, !- Extended Field + 6.102263927E+00, !- Extended Field + 5.288182259E+00, !- Extended Field + 5.210948944E+00, !- Extended Field + 4.774666786E+00, !- Extended Field + 4.499900341E+00, !- Extended Field + 4.266988754E+00, !- Extended Field + 3.889457464E+00, !- Extended Field + 3.793963909E+00, !- Extended Field + 6.787916183E+00, !- Extended Field + 5.675687790E+00, !- Extended Field + 5.821782112E+00, !- Extended Field + 5.115583897E+00, !- Extended Field + 4.921727657E+00, !- Extended Field + 4.574736118E+00, !- Extended Field + 4.215000153E+00, !- Extended Field + 4.046103001E+00, !- Extended Field + 3.602622032E+00, !- Extended Field + 3.558807611E+00, !- Extended Field + 6.546977043E+00, !- Extended Field + 5.540472031E+00, !- Extended Field + 5.574851990E+00, !- Extended Field + 4.954899788E+00, !- Extended Field + 4.670700073E+00, !- Extended Field + 4.391927242E+00, !- Extended Field + 3.965012312E+00, !- Extended Field + 3.853337526E+00, !- Extended Field + 3.361993790E+00, !- Extended Field + 3.357495546E+00, !- Extended Field + 6.324665070E+00, !- Extended Field + 5.413061142E+00, !- Extended Field + 5.339015961E+00, !- Extended Field + 4.805108070E+00, !- Extended Field + 4.452416420E+00, !- Extended Field + 4.229625702E+00, !- Extended Field + 3.754904747E+00, !- Extended Field + 3.683333635E+00, !- Extended Field + 3.164888382E+00, !- Extended Field + 3.191438675E+00, !- Extended Field + 6.122149467E+00, !- Extended Field + 5.287734985E+00, !- Extended Field + 5.135111809E+00, !- Extended Field + 4.673123360E+00, !- Extended Field + 4.261509418E+00, !- Extended Field + 4.083983421E+00, !- Extended Field + 3.576648712E+00, !- Extended Field + 3.534864187E+00, !- Extended Field + 3.000915051E+00, !- Extended Field + 3.044783115E+00, !- Extended Field + 5.934712887E+00, !- Extended Field + 5.173496246E+00, !- Extended Field + 4.953996658E+00, !- Extended Field + 4.542742252E+00, !- Extended Field + 4.090961933E+00, !- Extended Field + 3.950441360E+00, !- Extended Field + 3.413802624E+00, !- Extended Field + 3.400571823E+00, !- Extended Field + 2.855482101E+00, !- Extended Field + 2.915406227E+00, !- Extended Field + 5.764327049E+00, !- Extended Field + 5.069275856E+00, !- Extended Field + 4.788144588E+00, !- Extended Field + 4.423262119E+00, !- Extended Field + 3.942223310E+00, !- Extended Field + 3.829097748E+00, !- Extended Field + 3.276224613E+00, !- Extended Field + 3.280770779E+00, !- Extended Field + 2.724778652E+00, !- Extended Field + 2.799231052E+00, !- Extended Field + 5.591607571E+00, !- Extended Field + 4.966988564E+00, !- Extended Field + 4.637542248E+00, !- Extended Field + 4.313993931E+00, !- Extended Field + 3.797810793E+00, !- Extended Field + 3.716623068E+00, !- Extended Field + 3.149424076E+00, !- Extended Field + 3.176591158E+00, !- Extended Field + 2.611109972E+00, !- Extended Field + 2.693839312E+00, !- Extended Field + 7.555707932E+00, !- Extended Field + 6.090908051E+00, !- Extended Field + 6.577650547E+00, !- Extended Field + 5.583977222E+00, !- Extended Field + 5.687562466E+00, !- Extended Field + 5.094443798E+00, !- Extended Field + 4.988528252E+00, !- Extended Field + 4.607835293E+00, !- Extended Field + 4.367332458E+00, !- Extended Field + 4.151290417E+00, !- Extended Field + 7.243413448E+00, !- Extended Field + 5.935261726E+00, !- Extended Field + 6.249315739E+00, !- Extended Field + 5.390059471E+00, !- Extended Field + 5.346921444E+00, !- Extended Field + 4.863385201E+00, !- Extended Field + 4.625233650E+00, !- Extended Field + 4.343052864E+00, !- Extended Field + 3.987135887E+00, !- Extended Field + 3.856354952E+00, !- Extended Field + 6.962431431E+00, !- Extended Field + 5.788144112E+00, !- Extended Field + 5.959203243E+00, !- Extended Field + 5.213568211E+00, !- Extended Field + 5.056111336E+00, !- Extended Field + 4.653966904E+00, !- Extended Field + 4.318246841E+00, !- Extended Field + 4.115947247E+00, !- Extended Field + 3.680396795E+00, !- Extended Field + 3.612916708E+00, !- Extended Field + 6.708562851E+00, !- Extended Field + 5.649316311E+00, !- Extended Field + 5.698288918E+00, !- Extended Field + 5.049658298E+00, !- Extended Field + 4.799509525E+00, !- Extended Field + 4.470071793E+00, !- Extended Field + 4.066405773E+00, !- Extended Field + 3.917137384E+00, !- Extended Field + 3.432062864E+00, !- Extended Field + 3.407375097E+00, !- Extended Field + 6.477313995E+00, !- Extended Field + 5.517734528E+00, !- Extended Field + 5.470835686E+00, !- Extended Field + 4.898374557E+00, !- Extended Field + 4.574587345E+00, !- Extended Field + 4.304298401E+00, !- Extended Field + 3.847514629E+00, !- Extended Field + 3.743564606E+00, !- Extended Field + 3.225223541E+00, !- Extended Field + 3.230689764E+00, !- Extended Field + 6.265988827E+00, !- Extended Field + 5.393327713E+00, !- Extended Field + 5.264094830E+00, !- Extended Field + 4.757647991E+00, !- Extended Field + 4.375974178E+00, !- Extended Field + 4.154481888E+00, !- Extended Field + 3.653898954E+00, !- Extended Field + 3.588845491E+00, !- Extended Field + 3.045976877E+00, !- Extended Field + 3.075015545E+00, !- Extended Field + 6.072504997E+00, !- Extended Field + 5.275744915E+00, !- Extended Field + 5.077210903E+00, !- Extended Field + 4.627378464E+00, !- Extended Field + 4.196975231E+00, !- Extended Field + 4.017769814E+00, !- Extended Field + 3.486876965E+00, !- Extended Field + 3.451619387E+00, !- Extended Field + 2.890764713E+00, !- Extended Field + 2.940667868E+00, !- Extended Field + 5.890603065E+00, !- Extended Field + 5.165346146E+00, !- Extended Field + 4.907347679E+00, !- Extended Field + 4.507058620E+00, !- Extended Field + 4.034814358E+00, !- Extended Field + 3.892168045E+00, !- Extended Field + 3.338736296E+00, !- Extended Field + 3.327729702E+00, !- Extended Field + 2.755269766E+00, !- Extended Field + 2.817813873E+00, !- Extended Field + 5.731920242E+00, !- Extended Field + 5.059987068E+00, !- Extended Field + 4.751545906E+00, !- Extended Field + 4.393925190E+00, !- Extended Field + 3.893064976E+00, !- Extended Field + 3.777657986E+00, !- Extended Field + 3.207520008E+00, !- Extended Field + 3.213448763E+00, !- Extended Field + 2.634537935E+00, !- Extended Field + 2.708879948E+00, !- Extended Field + 7.745451927E+00, !- Extended Field + 6.212648392E+00, !- Extended Field + 6.740654945E+00, !- Extended Field + 5.690873146E+00, !- Extended Field + 5.833756924E+00, !- Extended Field + 5.193953514E+00, !- Extended Field + 5.106378078E+00, !- Extended Field + 4.698727131E+00, !- Extended Field + 4.469242573E+00, !- Extended Field + 4.226997375E+00, !- Extended Field + 7.423594952E+00, !- Extended Field + 6.056131363E+00, !- Extended Field + 6.402157784E+00, !- Extended Field + 5.497219563E+00, !- Extended Field + 5.478412151E+00, !- Extended Field + 4.955916405E+00, !- Extended Field + 4.733241558E+00, !- Extended Field + 4.423122883E+00, !- Extended Field + 4.082480907E+00, !- Extended Field + 3.925898314E+00, !- Extended Field + 7.135470867E+00, !- Extended Field + 5.904573917E+00, !- Extended Field + 6.103424549E+00, !- Extended Field + 5.314382076E+00, !- Extended Field + 5.174295425E+00, !- Extended Field + 4.745734215E+00, !- Extended Field + 4.424629688E+00, !- Extended Field + 4.190729618E+00, !- Extended Field + 3.772341490E+00, !- Extended Field + 3.676090479E+00, !- Extended Field + 6.876236439E+00, !- Extended Field + 5.761773109E+00, !- Extended Field + 5.838998318E+00, !- Extended Field + 5.145504475E+00, !- Extended Field + 4.912029266E+00, !- Extended Field + 4.557390213E+00, !- Extended Field + 4.163243294E+00, !- Extended Field + 3.987950563E+00, !- Extended Field + 3.520467758E+00, !- Extended Field + 3.465097904E+00, !- Extended Field + 6.638187885E+00, !- Extended Field + 5.627822399E+00, !- Extended Field + 5.602781773E+00, !- Extended Field + 4.991046906E+00, !- Extended Field + 4.681702137E+00, !- Extended Field + 4.383663177E+00, !- Extended Field + 3.939349413E+00, !- Extended Field + 3.809622526E+00, !- Extended Field + 3.305186987E+00, !- Extended Field + 3.283938885E+00, !- Extended Field + 6.419781208E+00, !- Extended Field + 5.500931263E+00, !- Extended Field + 5.391224384E+00, !- Extended Field + 4.846477985E+00, !- Extended Field + 4.478251457E+00, !- Extended Field + 4.230091095E+00, !- Extended Field + 3.744658709E+00, !- Extended Field + 3.651733637E+00, !- Extended Field + 3.121171951E+00, !- Extended Field + 3.126179457E+00, !- Extended Field + 6.220606327E+00, !- Extended Field + 5.379985809E+00, !- Extended Field + 5.199712276E+00, !- Extended Field + 4.715676785E+00, !- Extended Field + 4.296442509E+00, !- Extended Field + 4.090209007E+00, !- Extended Field + 3.577022791E+00, !- Extended Field + 3.509460688E+00, !- Extended Field + 2.961471796E+00, !- Extended Field + 2.986647606E+00, !- Extended Field + 6.037173748E+00, !- Extended Field + 5.267321110E+00, !- Extended Field + 5.024937630E+00, !- Extended Field + 4.591048241E+00, !- Extended Field + 4.137532234E+00, !- Extended Field + 3.961931705E+00, !- Extended Field + 3.424330235E+00, !- Extended Field + 3.382235050E+00, !- Extended Field + 2.821158648E+00, !- Extended Field + 2.863228798E+00, !- Extended Field + 5.867774487E+00, !- Extended Field + 5.158926010E+00, !- Extended Field + 4.861190319E+00, !- Extended Field + 4.475465298E+00, !- Extended Field + 3.985496998E+00, !- Extended Field + 3.844367981E+00, !- Extended Field + 3.287377834E+00, !- Extended Field + 3.266721487E+00, !- Extended Field + 2.697119474E+00, !- Extended Field + 2.752101660E+00, !- Extended Field + 7.932241917E+00, !- Extended Field + 6.344264507E+00, !- Extended Field + 6.904254436E+00, !- Extended Field + 5.805907726E+00, !- Extended Field + 5.974964142E+00, !- Extended Field + 5.287981987E+00, !- Extended Field + 5.228453636E+00, !- Extended Field + 4.782605171E+00, !- Extended Field + 4.571524143E+00, !- Extended Field + 4.304696560E+00, !- Extended Field + 7.600991249E+00, !- Extended Field + 6.177239418E+00, !- Extended Field + 6.554399967E+00, !- Extended Field + 5.602632999E+00, !- Extended Field + 5.610363960E+00, !- Extended Field + 5.045829296E+00, !- Extended Field + 4.846199036E+00, !- Extended Field + 4.505195618E+00, !- Extended Field + 4.178440094E+00, !- Extended Field + 3.997491360E+00, !- Extended Field + 7.303447723E+00, !- Extended Field + 6.023365498E+00, !- Extended Field + 6.247449875E+00, !- Extended Field + 5.415048599E+00, !- Extended Field + 5.298839569E+00, !- Extended Field + 4.830846310E+00, !- Extended Field + 4.525182724E+00, !- Extended Field + 4.267882824E+00, !- Extended Field + 3.867507219E+00, !- Extended Field + 3.742474318E+00, !- Extended Field + 7.034598827E+00, !- Extended Field + 5.876889229E+00, !- Extended Field + 5.969236374E+00, !- Extended Field + 5.243341446E+00, !- Extended Field + 5.029285431E+00, !- Extended Field + 4.638192654E+00, !- Extended Field + 4.261543751E+00, !- Extended Field + 4.060804844E+00, !- Extended Field + 3.604022503E+00, !- Extended Field + 3.533327818E+00, !- Extended Field + 6.790382385E+00, !- Extended Field + 5.736573219E+00, !- Extended Field + 5.726833344E+00, !- Extended Field + 5.084234238E+00, !- Extended Field + 4.793041706E+00, !- Extended Field + 4.464698315E+00, !- Extended Field + 4.031987667E+00, !- Extended Field + 3.878722191E+00, !- Extended Field + 3.383302927E+00, !- Extended Field + 3.347298861E+00, !- Extended Field + 6.567364693E+00, !- Extended Field + 5.607739449E+00, !- Extended Field + 5.512694359E+00, !- Extended Field + 4.938645363E+00, !- Extended Field + 4.580348969E+00, !- Extended Field + 4.307724476E+00, !- Extended Field + 3.838938475E+00, !- Extended Field + 3.717064142E+00, !- Extended Field + 3.195384979E+00, !- Extended Field + 3.185648441E+00, !- Extended Field + 6.362292290E+00, !- Extended Field + 5.484051704E+00, !- Extended Field + 5.312497616E+00, !- Extended Field + 4.802292824E+00, !- Extended Field + 4.394011021E+00, !- Extended Field + 4.165188789E+00, !- Extended Field + 3.661478519E+00, !- Extended Field + 3.572322607E+00, !- Extended Field + 3.032178879E+00, !- Extended Field + 3.043186903E+00, !- Extended Field + 6.173942089E+00, !- Extended Field + 5.367290497E+00, !- Extended Field + 5.133303165E+00, !- Extended Field + 4.675914764E+00, !- Extended Field + 4.230231762E+00, !- Extended Field + 4.034177303E+00, !- Extended Field + 3.505703688E+00, !- Extended Field + 3.448462963E+00, !- Extended Field + 2.889244080E+00, !- Extended Field + 2.917077065E+00, !- Extended Field + 6.000426292E+00, !- Extended Field + 5.257732391E+00, !- Extended Field + 4.969322681E+00, !- Extended Field + 4.557866573E+00, !- Extended Field + 4.079145908E+00, !- Extended Field + 3.914147854E+00, !- Extended Field + 3.364982843E+00, !- Extended Field + 3.329627991E+00, !- Extended Field + 2.764928102E+00, !- Extended Field + 2.803539753E+00, !- Extended Field + 8.132709503E+00, !- Extended Field + 6.469597340E+00, !- Extended Field + 7.068078518E+00, !- Extended Field + 5.919128418E+00, !- Extended Field + 6.117252350E+00, !- Extended Field + 5.388586044E+00, !- Extended Field + 5.351415634E+00, !- Extended Field + 4.871440411E+00, !- Extended Field + 4.682466507E+00, !- Extended Field + 4.384663105E+00, !- Extended Field + 7.791565418E+00, !- Extended Field + 6.300640583E+00, !- Extended Field + 6.708860874E+00, !- Extended Field + 5.710094929E+00, !- Extended Field + 5.743342876E+00, !- Extended Field + 5.141625404E+00, !- Extended Field + 4.959412098E+00, !- Extended Field + 4.589283466E+00, !- Extended Field + 4.279997349E+00, !- Extended Field + 4.070995331E+00, !- Extended Field + 7.484996319E+00, !- Extended Field + 6.140730858E+00, !- Extended Field + 6.393248558E+00, !- Extended Field + 5.519384861E+00, !- Extended Field + 5.423380852E+00, !- Extended Field + 4.921418190E+00, !- Extended Field + 4.634940147E+00, !- Extended Field + 4.346750736E+00, !- Extended Field + 3.951549530E+00, !- Extended Field + 3.811079264E+00, !- Extended Field + 7.208674908E+00, !- Extended Field + 5.990266800E+00, !- Extended Field + 6.114499092E+00, !- Extended Field + 5.342590809E+00, !- Extended Field + 5.146901608E+00, !- Extended Field + 4.724722862E+00, !- Extended Field + 4.364847183E+00, !- Extended Field + 4.135492802E+00, !- Extended Field + 3.684253693E+00, !- Extended Field + 3.592070103E+00, !- Extended Field + 6.957647800E+00, !- Extended Field + 5.848473549E+00, !- Extended Field + 5.864756584E+00, !- Extended Field + 5.179948330E+00, !- Extended Field + 4.904779434E+00, !- Extended Field + 4.547863483E+00, !- Extended Field + 4.129887581E+00, !- Extended Field + 3.949881792E+00, !- Extended Field + 3.462814331E+00, !- Extended Field + 3.403489828E+00, !- Extended Field + 6.728770256E+00, !- Extended Field + 5.714367867E+00, !- Extended Field + 5.642451286E+00, !- Extended Field + 5.030347347E+00, !- Extended Field + 4.691107750E+00, !- Extended Field + 4.387747765E+00, !- Extended Field + 3.922473907E+00, !- Extended Field + 3.785199404E+00, !- Extended Field + 3.273642063E+00, !- Extended Field + 3.238316774E+00, !- Extended Field + 6.518424034E+00, !- Extended Field + 5.588305950E+00, !- Extended Field + 5.440592766E+00, !- Extended Field + 4.891887188E+00, !- Extended Field + 4.500204563E+00, !- Extended Field + 4.241845131E+00, !- Extended Field + 3.742910624E+00, !- Extended Field + 3.637578249E+00, !- Extended Field + 3.106608629E+00, !- Extended Field + 3.094303131E+00, !- Extended Field + 6.325336933E+00, !- Extended Field + 5.469569683E+00, !- Extended Field + 5.256859303E+00, !- Extended Field + 4.762873650E+00, !- Extended Field + 4.333018780E+00, !- Extended Field + 4.108288288E+00, !- Extended Field + 3.586875916E+00, !- Extended Field + 3.505066156E+00, !- Extended Field + 2.959598303E+00, !- Extended Field + 2.965867043E+00, !- Extended Field + 6.147313595E+00, !- Extended Field + 5.355599403E+00, !- Extended Field + 5.089895725E+00, !- Extended Field + 4.642199039E+00, !- Extended Field + 4.177935123E+00, !- Extended Field + 3.985894680E+00, !- Extended Field + 3.443814039E+00, !- Extended Field + 3.385422230E+00, !- Extended Field + 2.827304125E+00, !- Extended Field + 2.850191832E+00, !- Extended Field + 8.362903595E+00, !- Extended Field + 6.614890575E+00, !- Extended Field + 7.259115219E+00, !- Extended Field + 6.035402775E+00, !- Extended Field + 6.265818119E+00, !- Extended Field + 5.487927914E+00, !- Extended Field + 5.478792667E+00, !- Extended Field + 4.957024574E+00, !- Extended Field + 4.795506477E+00, !- Extended Field + 4.460855007E+00, !- Extended Field + 8.009307861E+00, !- Extended Field + 6.437195778E+00, !- Extended Field + 6.885031223E+00, !- Extended Field + 5.821050167E+00, !- Extended Field + 5.875678539E+00, !- Extended Field + 5.232323647E+00, !- Extended Field + 5.078141689E+00, !- Extended Field + 4.668751240E+00, !- Extended Field + 4.379165173E+00, !- Extended Field + 4.141300201E+00, !- Extended Field + 7.685127735E+00, !- Extended Field + 6.272996902E+00, !- Extended Field + 6.557442188E+00, !- Extended Field + 5.626654625E+00, !- Extended Field + 5.552942753E+00, !- Extended Field + 5.007820129E+00, !- Extended Field + 4.746022224E+00, !- Extended Field + 4.421822548E+00, !- Extended Field + 4.046626568E+00, !- Extended Field + 3.876779318E+00, !- Extended Field + 7.399798870E+00, !- Extended Field + 6.115934372E+00, !- Extended Field + 6.267533302E+00, !- Extended Field + 5.441658497E+00, !- Extended Field + 5.269816875E+00, !- Extended Field + 4.807190418E+00, !- Extended Field + 4.465662003E+00, !- Extended Field + 4.206876278E+00, !- Extended Field + 3.773223162E+00, !- Extended Field + 3.657182693E+00, !- Extended Field + 7.145950794E+00, !- Extended Field + 5.964260578E+00, !- Extended Field + 6.009854317E+00, !- Extended Field + 5.270390034E+00, !- Extended Field + 5.022109032E+00, !- Extended Field + 4.626783371E+00, !- Extended Field + 4.225430012E+00, !- Extended Field + 4.017937660E+00, !- Extended Field + 3.543877363E+00, !- Extended Field + 3.465313196E+00, !- Extended Field + 6.907789230E+00, !- Extended Field + 5.827105999E+00, !- Extended Field + 5.780550957E+00, !- Extended Field + 5.118095875E+00, !- Extended Field + 4.803382397E+00, !- Extended Field + 4.463489532E+00, !- Extended Field + 4.016684532E+00, !- Extended Field + 3.850387335E+00, !- Extended Field + 3.347181559E+00, !- Extended Field + 3.298300505E+00, !- Extended Field + 6.689438820E+00, !- Extended Field + 5.697559834E+00, !- Extended Field + 5.573001862E+00, !- Extended Field + 4.975697041E+00, !- Extended Field + 4.608055115E+00, !- Extended Field + 4.315114021E+00, !- Extended Field + 3.833137274E+00, !- Extended Field + 3.703943253E+00, !- Extended Field + 3.176667452E+00, !- Extended Field + 3.151167870E+00, !- Extended Field + 6.489015579E+00, !- Extended Field + 5.576480865E+00, !- Extended Field + 5.385197639E+00, !- Extended Field + 4.845118999E+00, !- Extended Field + 4.432907104E+00, !- Extended Field + 4.179100990E+00, !- Extended Field + 3.670227766E+00, !- Extended Field + 3.569216013E+00, !- Extended Field + 3.026700258E+00, !- Extended Field + 3.020508289E+00, !- Extended Field + 6.303743839E+00, !- Extended Field + 5.459722996E+00, !- Extended Field + 5.205968857E+00, !- Extended Field + 4.722049713E+00, !- Extended Field + 4.274369717E+00, !- Extended Field + 4.054514885E+00, !- Extended Field + 3.524268627E+00, !- Extended Field + 3.446807861E+00, !- Extended Field + 2.896623611E+00, !- Extended Field + 2.902925014E+00, !- Extended Field + 7.589694977E+00, !- Extended Field + 6.121460438E+00, !- Extended Field + 6.616100788E+00, !- Extended Field + 5.613017082E+00, !- Extended Field + 5.730063438E+00, !- Extended Field + 5.123147964E+00, !- Extended Field + 5.016389847E+00, !- Extended Field + 4.640068531E+00, !- Extended Field + 4.397991180E+00, !- Extended Field + 4.182036877E+00, !- Extended Field + 7.277166367E+00, !- Extended Field + 5.964964867E+00, !- Extended Field + 6.284310341E+00, !- Extended Field + 5.418835163E+00, !- Extended Field + 5.379645348E+00, !- Extended Field + 4.892100334E+00, !- Extended Field + 4.654961109E+00, !- Extended Field + 4.374536514E+00, !- Extended Field + 4.020779610E+00, !- Extended Field + 3.887492895E+00, !- Extended Field + 6.996275425E+00, !- Extended Field + 5.817724228E+00, !- Extended Field + 5.993262768E+00, !- Extended Field + 5.241176128E+00, !- Extended Field + 5.083371162E+00, !- Extended Field + 4.686445236E+00, !- Extended Field + 4.354058743E+00, !- Extended Field + 4.146707058E+00, !- Extended Field + 3.718833685E+00, !- Extended Field + 3.643677473E+00, !- Extended Field + 6.746573925E+00, !- Extended Field + 5.678174019E+00, !- Extended Field + 5.735158920E+00, !- Extended Field + 5.076574802E+00, !- Extended Field + 4.827322960E+00, !- Extended Field + 4.502099991E+00, !- Extended Field + 4.098854542E+00, !- Extended Field + 3.948281765E+00, !- Extended Field + 3.471579790E+00, !- Extended Field + 3.441192150E+00, !- Extended Field + 6.515085220E+00, !- Extended Field + 5.546539783E+00, !- Extended Field + 5.503248215E+00, !- Extended Field + 4.924659252E+00, !- Extended Field + 4.604852200E+00, !- Extended Field + 4.335733891E+00, !- Extended Field + 3.883594513E+00, !- Extended Field + 3.774010420E+00, !- Extended Field + 3.264980793E+00, !- Extended Field + 3.261447668E+00, !- Extended Field + 6.303151131E+00, !- Extended Field + 5.422757626E+00, !- Extended Field + 5.295738220E+00, !- Extended Field + 4.784769535E+00, !- Extended Field + 4.406624794E+00, !- Extended Field + 4.185217857E+00, !- Extended Field + 3.692175150E+00, !- Extended Field + 3.619703054E+00, !- Extended Field + 3.099263430E+00, !- Extended Field + 3.117329121E+00, !- Extended Field + 6.109331131E+00, !- Extended Field + 5.304619789E+00, !- Extended Field + 5.108690739E+00, !- Extended Field + 4.654483795E+00, !- Extended Field + 4.229338169E+00, !- Extended Field + 4.048425198E+00, !- Extended Field + 3.526281357E+00, !- Extended Field + 3.481964827E+00, !- Extended Field + 2.945691824E+00, !- Extended Field + 2.980991602E+00, !- Extended Field + 5.930488586E+00, !- Extended Field + 5.193670273E+00, !- Extended Field + 4.938503265E+00, !- Extended Field + 4.533410549E+00, !- Extended Field + 4.070342541E+00, !- Extended Field + 3.923006058E+00, !- Extended Field + 3.379363537E+00, !- Extended Field + 3.356564760E+00, !- Extended Field + 2.813699484E+00, !- Extended Field + 2.862735987E+00, !- Extended Field + 5.765592575E+00, !- Extended Field + 5.089081764E+00, !- Extended Field + 4.782901764E+00, !- Extended Field + 4.420815468E+00, !- Extended Field + 3.928039551E+00, !- Extended Field + 3.808047771E+00, !- Extended Field + 3.246051311E+00, !- Extended Field + 3.247481823E+00, !- Extended Field + 2.696688414E+00, !- Extended Field + 2.756402969E+00, !- Extended Field + 7.807681561E+00, !- Extended Field + 6.256607056E+00, !- Extended Field + 6.793304920E+00, !- Extended Field + 5.730550289E+00, !- Extended Field + 5.884980679E+00, !- Extended Field + 5.227858067E+00, !- Extended Field + 5.152242184E+00, !- Extended Field + 4.730983734E+00, !- Extended Field + 4.512448311E+00, !- Extended Field + 4.256874084E+00, !- Extended Field + 7.482439041E+00, !- Extended Field + 6.095316887E+00, !- Extended Field + 6.454176903E+00, !- Extended Field + 5.531700134E+00, !- Extended Field + 5.527234077E+00, !- Extended Field + 4.990301132E+00, !- Extended Field + 4.778360367E+00, !- Extended Field + 4.453740597E+00, !- Extended Field + 4.122473240E+00, !- Extended Field + 3.955104351E+00, !- Extended Field + 7.190596104E+00, !- Extended Field + 5.942730427E+00, !- Extended Field + 6.152974606E+00, !- Extended Field + 5.347342968E+00, !- Extended Field + 5.221462727E+00, !- Extended Field + 4.778232098E+00, !- Extended Field + 4.467160702E+00, !- Extended Field + 4.220407009E+00, !- Extended Field + 3.809316635E+00, !- Extended Field + 3.704997778E+00, !- Extended Field + 6.927354813E+00, !- Extended Field + 5.799838066E+00, !- Extended Field + 5.886136532E+00, !- Extended Field + 5.178739071E+00, !- Extended Field + 4.958413124E+00, !- Extended Field + 4.588573456E+00, !- Extended Field + 4.204323769E+00, !- Extended Field + 4.017260075E+00, !- Extended Field + 3.552544355E+00, !- Extended Field + 3.493364573E+00, !- Extended Field + 6.687936306E+00, !- Extended Field + 5.662953377E+00, !- Extended Field + 5.647620678E+00, !- Extended Field + 5.022617340E+00, !- Extended Field + 4.726264954E+00, !- Extended Field + 4.414020538E+00, !- Extended Field + 3.977113485E+00, !- Extended Field + 3.838251114E+00, !- Extended Field + 3.337544203E+00, !- Extended Field + 3.313179970E+00, !- Extended Field + 6.468684673E+00, !- Extended Field + 5.534634590E+00, !- Extended Field + 5.433780670E+00, !- Extended Field + 4.879446030E+00, !- Extended Field + 4.521392822E+00, !- Extended Field + 4.259934902E+00, !- Extended Field + 3.781394243E+00, !- Extended Field + 3.680245399E+00, !- Extended Field + 3.154997826E+00, !- Extended Field + 3.155661106E+00, !- Extended Field + 6.268546581E+00, !- Extended Field + 5.413354397E+00, !- Extended Field + 5.240164280E+00, !- Extended Field + 4.745872021E+00, !- Extended Field + 4.338334560E+00, !- Extended Field + 4.119766235E+00, !- Extended Field + 3.609050274E+00, !- Extended Field + 3.538154364E+00, !- Extended Field + 2.996693850E+00, !- Extended Field + 3.014415264E+00, !- Extended Field + 6.083823681E+00, !- Extended Field + 5.298895836E+00, !- Extended Field + 5.064217091E+00, !- Extended Field + 4.621417046E+00, !- Extended Field + 4.174008369E+00, !- Extended Field + 3.991228104E+00, !- Extended Field + 3.452963352E+00, !- Extended Field + 3.410133362E+00, !- Extended Field + 2.854261160E+00, !- Extended Field + 2.890356779E+00, !- Extended Field + 5.912743092E+00, !- Extended Field + 5.190657139E+00, !- Extended Field + 4.903371334E+00, !- Extended Field + 4.506555557E+00, !- Extended Field + 4.023557186E+00, !- Extended Field + 3.873054743E+00, !- Extended Field + 3.316485167E+00, !- Extended Field + 3.295887232E+00, !- Extended Field + 2.729699850E+00, !- Extended Field + 2.779573679E+00, !- Extended Field + 8.006804466E+00, !- Extended Field + 6.387226105E+00, !- Extended Field + 6.965732098E+00, !- Extended Field + 5.848649025E+00, !- Extended Field + 6.037249565E+00, !- Extended Field + 5.331958294E+00, !- Extended Field + 5.284238815E+00, !- Extended Field + 4.821814537E+00, !- Extended Field + 4.626205444E+00, !- Extended Field + 4.341928005E+00, !- Extended Field + 7.667917728E+00, !- Extended Field + 6.220650673E+00, !- Extended Field + 6.611999512E+00, !- Extended Field + 5.642930031E+00, !- Extended Field + 5.669564247E+00, !- Extended Field + 5.088325977E+00, !- Extended Field + 4.898372650E+00, !- Extended Field + 4.543682098E+00, !- Extended Field + 4.226610661E+00, !- Extended Field + 4.032236099E+00, !- Extended Field + 7.367517948E+00, !- Extended Field + 6.061465740E+00, !- Extended Field + 6.304987431E+00, !- Extended Field + 5.455280781E+00, !- Extended Field + 5.355134010E+00, !- Extended Field + 4.871196747E+00, !- Extended Field + 4.579445839E+00, !- Extended Field + 4.304688454E+00, !- Extended Field + 3.904481888E+00, !- Extended Field + 3.775779247E+00, !- Extended Field + 7.104327679E+00, !- Extended Field + 5.917528152E+00, !- Extended Field + 6.030385017E+00, !- Extended Field + 5.282684803E+00, !- Extended Field + 5.082716942E+00, !- Extended Field + 4.677456379E+00, !- Extended Field + 4.310263157E+00, !- Extended Field + 4.095942497E+00, !- Extended Field + 3.641252518E+00, !- Extended Field + 3.555590630E+00, !- Extended Field + 6.857587814E+00, !- Extended Field + 5.779146671E+00, !- Extended Field + 5.785144329E+00, !- Extended Field + 5.122609138E+00, !- Extended Field + 4.845311165E+00, !- Extended Field + 4.502892017E+00, !- Extended Field + 4.077044964E+00, !- Extended Field + 3.912805557E+00, !- Extended Field + 3.419627190E+00, !- Extended Field + 3.370134115E+00, !- Extended Field + 6.633556366E+00, !- Extended Field + 5.646841049E+00, !- Extended Field + 5.565419674E+00, !- Extended Field + 4.975328922E+00, !- Extended Field + 4.634954453E+00, !- Extended Field + 4.345058918E+00, !- Extended Field + 3.875930309E+00, !- Extended Field + 3.750336885E+00, !- Extended Field + 3.230427027E+00, !- Extended Field + 3.208326101E+00, !- Extended Field + 6.428524494E+00, !- Extended Field + 5.522183418E+00, !- Extended Field + 5.366889000E+00, !- Extended Field + 4.837822437E+00, !- Extended Field + 4.447676182E+00, !- Extended Field + 4.200871944E+00, !- Extended Field + 3.699072123E+00, !- Extended Field + 3.601334810E+00, !- Extended Field + 3.065936804E+00, !- Extended Field + 3.065408230E+00, !- Extended Field + 6.238247871E+00, !- Extended Field + 5.405645847E+00, !- Extended Field + 5.186417103E+00, !- Extended Field + 4.710546970E+00, !- Extended Field + 4.278978348E+00, !- Extended Field + 4.069127560E+00, !- Extended Field + 3.542086124E+00, !- Extended Field + 3.470417976E+00, !- Extended Field + 2.921641588E+00, !- Extended Field + 2.938800097E+00, !- Extended Field + 6.062170506E+00, !- Extended Field + 5.293806076E+00, !- Extended Field + 5.022156715E+00, !- Extended Field + 4.592361450E+00, !- Extended Field + 4.126290321E+00, !- Extended Field + 3.948388100E+00, !- Extended Field + 3.401325941E+00, !- Extended Field + 3.352364540E+00, !- Extended Field + 2.793930292E+00, !- Extended Field + 2.824911833E+00, !- Extended Field + 8.218854904E+00, !- Extended Field + 6.522658348E+00, !- Extended Field + 7.141640186E+00, !- Extended Field + 5.967883587E+00, !- Extended Field + 6.186730862E+00, !- Extended Field + 5.431830883E+00, !- Extended Field + 5.412066460E+00, !- Extended Field + 4.910242081E+00, !- Extended Field + 4.737256050E+00, !- Extended Field + 4.419706821E+00, !- Extended Field + 7.873175621E+00, !- Extended Field + 6.351890087E+00, !- Extended Field + 6.778627872E+00, !- Extended Field + 5.757025242E+00, !- Extended Field + 5.808525085E+00, !- Extended Field + 5.182530880E+00, !- Extended Field + 5.016622066E+00, !- Extended Field + 4.625598431E+00, !- Extended Field + 4.326724529E+00, !- Extended Field + 4.103945255E+00, !- Extended Field + 7.562814236E+00, !- Extended Field + 6.190094471E+00, !- Extended Field + 6.459414959E+00, !- Extended Field + 5.563240528E+00, !- Extended Field + 5.485311985E+00, !- Extended Field + 4.960540295E+00, !- Extended Field + 4.689095974E+00, !- Extended Field + 4.381216049E+00, !- Extended Field + 3.998401403E+00, !- Extended Field + 3.842166185E+00, !- Extended Field + 7.285416126E+00, !- Extended Field + 6.039663792E+00, !- Extended Field + 6.177954674E+00, !- Extended Field + 5.386150837E+00, !- Extended Field + 5.206041336E+00, !- Extended Field + 4.762283802E+00, !- Extended Field + 4.412250519E+00, !- Extended Field + 4.168990135E+00, !- Extended Field + 3.733906269E+00, !- Extended Field + 3.621060133E+00, !- Extended Field + 7.030717850E+00, !- Extended Field + 5.896039486E+00, !- Extended Field + 5.926858902E+00, !- Extended Field + 5.223321438E+00, !- Extended Field + 4.961609364E+00, !- Extended Field + 4.583920956E+00, !- Extended Field + 4.175057411E+00, !- Extended Field + 3.981941700E+00, !- Extended Field + 3.504762411E+00, !- Extended Field + 3.437404156E+00, !- Extended Field + 6.791221619E+00, !- Extended Field + 5.761077404E+00, !- Extended Field + 5.701502800E+00, !- Extended Field + 5.071573257E+00, !- Extended Field + 4.745856285E+00, !- Extended Field + 4.422573090E+00, !- Extended Field + 3.968930006E+00, !- Extended Field + 3.816104889E+00, !- Extended Field + 3.310755253E+00, !- Extended Field + 3.270263672E+00, !- Extended Field + 6.578548908E+00, !- Extended Field + 5.633965492E+00, !- Extended Field + 5.490357399E+00, !- Extended Field + 4.930915356E+00, !- Extended Field + 4.548789501E+00, !- Extended Field + 4.275683403E+00, !- Extended Field + 3.787622213E+00, !- Extended Field + 3.667176008E+00, !- Extended Field + 3.142996073E+00, !- Extended Field + 3.124871969E+00, !- Extended Field + 6.383189678E+00, !- Extended Field + 5.512750149E+00, !- Extended Field + 5.305369854E+00, !- Extended Field + 4.802259922E+00, !- Extended Field + 4.380027294E+00, !- Extended Field + 4.141543865E+00, !- Extended Field + 3.632487059E+00, !- Extended Field + 3.533828735E+00, !- Extended Field + 2.994839430E+00, !- Extended Field + 2.995556593E+00, !- Extended Field + 6.202982426E+00, !- Extended Field + 5.399222851E+00, !- Extended Field + 5.136226654E+00, !- Extended Field + 4.680134773E+00, !- Extended Field + 4.223449230E+00, !- Extended Field + 4.018187523E+00, !- Extended Field + 3.485446930E+00, !- Extended Field + 3.419174433E+00, !- Extended Field + 2.866711378E+00, !- Extended Field + 2.879143476E+00, !- Extended Field + 8.430570602E+00, !- Extended Field + 6.658178806E+00, !- Extended Field + 7.315042973E+00, !- Extended Field + 6.085827827E+00, !- Extended Field + 6.336417675E+00, !- Extended Field + 5.537911892E+00, !- Extended Field + 5.541706562E+00, !- Extended Field + 5.004393578E+00, !- Extended Field + 4.850346565E+00, !- Extended Field + 4.503357410E+00, !- Extended Field + 8.070688248E+00, !- Extended Field + 6.481092453E+00, !- Extended Field + 6.941539764E+00, !- Extended Field + 5.870450020E+00, !- Extended Field + 5.948241711E+00, !- Extended Field + 5.282531261E+00, !- Extended Field + 5.135681152E+00, !- Extended Field + 4.713427544E+00, !- Extended Field + 4.429395199E+00, !- Extended Field + 4.180844784E+00, !- Extended Field + 7.747642994E+00, !- Extended Field + 6.315301895E+00, !- Extended Field + 6.612651825E+00, !- Extended Field + 5.671489716E+00, !- Extended Field + 5.616480350E+00, !- Extended Field + 5.055762768E+00, !- Extended Field + 4.800217628E+00, !- Extended Field + 4.464244843E+00, !- Extended Field + 4.097333431E+00, !- Extended Field + 3.913727522E+00, !- Extended Field + 7.458854198E+00, !- Extended Field + 6.159377098E+00, !- Extended Field + 6.323793411E+00, !- Extended Field + 5.488831997E+00, !- Extended Field + 5.329955101E+00, !- Extended Field + 4.853143215E+00, !- Extended Field + 4.516757488E+00, !- Extended Field + 4.246842861E+00, !- Extended Field + 3.817579508E+00, !- Extended Field + 3.688347816E+00, !- Extended Field + 7.198328972E+00, !- Extended Field + 6.012340069E+00, !- Extended Field + 6.066350460E+00, !- Extended Field + 5.321340084E+00, !- Extended Field + 5.079360962E+00, !- Extended Field + 4.670895100E+00, !- Extended Field + 4.273901939E+00, !- Extended Field + 4.056292057E+00, !- Extended Field + 3.585751772E+00, !- Extended Field + 3.495268345E+00, !- Extended Field + 6.960438251E+00, !- Extended Field + 5.874050140E+00, !- Extended Field + 5.835155964E+00, !- Extended Field + 5.166612148E+00, !- Extended Field + 4.858166218E+00, !- Extended Field + 4.506156445E+00, !- Extended Field + 4.066949368E+00, !- Extended Field + 3.887063980E+00, !- Extended Field + 3.390737295E+00, !- Extended Field + 3.326630116E+00, !- Extended Field + 6.742029190E+00, !- Extended Field + 5.743122101E+00, !- Extended Field + 5.626262188E+00, !- Extended Field + 5.023264408E+00, !- Extended Field + 4.660661221E+00, !- Extended Field + 4.356169701E+00, !- Extended Field + 3.881416559E+00, !- Extended Field + 3.735409975E+00, !- Extended Field + 3.218400002E+00, !- Extended Field + 3.178087950E+00, !- Extended Field + 6.541736603E+00, !- Extended Field + 5.620636940E+00, !- Extended Field + 5.436903000E+00, !- Extended Field + 4.891179562E+00, !- Extended Field + 4.483508587E+00, !- Extended Field + 4.218849182E+00, !- Extended Field + 3.713503361E+00, !- Extended Field + 3.599837542E+00, !- Extended Field + 3.066935539E+00, !- Extended Field + 3.046403170E+00, !- Extended Field + 6.356653214E+00, !- Extended Field + 5.503640175E+00, !- Extended Field + 5.264051437E+00, !- Extended Field + 4.767061234E+00, !- Extended Field + 4.323220730E+00, !- Extended Field + 4.093180180E+00, !- Extended Field + 3.569433212E+00, !- Extended Field + 3.476547241E+00, !- Extended Field + 2.932736158E+00, !- Extended Field + 2.927748680E+00, !- Extended Field + 8.673998833E+00, !- Extended Field + 6.810268402E+00, !- Extended Field + 7.515392303E+00, !- Extended Field + 6.215676785E+00, !- Extended Field + 6.529644012E+00, !- Extended Field + 5.642860413E+00, !- Extended Field + 5.672461987E+00, !- Extended Field + 5.096623898E+00, !- Extended Field + 4.967991829E+00, !- Extended Field + 4.585332394E+00, !- Extended Field + 8.301462173E+00, !- Extended Field + 6.625999451E+00, !- Extended Field + 7.129337311E+00, !- Extended Field + 5.989904404E+00, !- Extended Field + 6.099098682E+00, !- Extended Field + 5.382132053E+00, !- Extended Field + 5.260044098E+00, !- Extended Field + 4.802227497E+00, !- Extended Field + 4.537815094E+00, !- Extended Field + 4.258165359E+00, !- Extended Field + 7.971322536E+00, !- Extended Field + 6.456026077E+00, !- Extended Field + 6.801762104E+00, !- Extended Field + 5.782708645E+00, !- Extended Field + 5.750362396E+00, !- Extended Field + 5.148941040E+00, !- Extended Field + 4.916712284E+00, !- Extended Field + 4.545287609E+00, !- Extended Field + 4.193892479E+00, !- Extended Field + 3.982169867E+00, !- Extended Field + 7.671185017E+00, !- Extended Field + 6.296797276E+00, !- Extended Field + 6.498164654E+00, !- Extended Field + 5.597455978E+00, !- Extended Field + 5.454057693E+00, !- Extended Field + 4.941989899E+00, !- Extended Field + 4.626673222E+00, !- Extended Field + 4.321431637E+00, !- Extended Field + 3.911310434E+00, !- Extended Field + 3.752252579E+00, !- Extended Field + 7.400495052E+00, !- Extended Field + 6.143978596E+00, !- Extended Field + 6.225393772E+00, !- Extended Field + 5.425292492E+00, !- Extended Field + 5.202180862E+00, !- Extended Field + 4.756107330E+00, !- Extended Field + 4.378235340E+00, !- Extended Field + 4.131142616E+00, !- Extended Field + 3.674151182E+00, !- Extended Field + 3.555579662E+00, !- Extended Field + 7.148267746E+00, !- Extended Field + 5.996510983E+00, !- Extended Field + 5.989607811E+00, !- Extended Field + 5.261785507E+00, !- Extended Field + 4.975688934E+00, !- Extended Field + 4.588046074E+00, !- Extended Field + 4.162656784E+00, !- Extended Field + 3.954945326E+00, !- Extended Field + 3.471241713E+00, !- Extended Field + 3.387736320E+00, !- Extended Field + 6.923577785E+00, !- Extended Field + 5.863407612E+00, !- Extended Field + 5.766656399E+00, !- Extended Field + 5.113364220E+00, !- Extended Field + 4.773705006E+00, !- Extended Field + 4.435134888E+00, !- Extended Field + 3.972941875E+00, !- Extended Field + 3.800546408E+00, !- Extended Field + 3.295194387E+00, !- Extended Field + 3.237563610E+00, !- Extended Field + 6.716403484E+00, !- Extended Field + 5.751817226E+00, !- Extended Field + 5.570212364E+00, !- Extended Field + 4.977121353E+00, !- Extended Field + 4.592493534E+00, !- Extended Field + 4.296833992E+00, !- Extended Field + 3.804687262E+00, !- Extended Field + 3.662858486E+00, !- Extended Field + 3.140242815E+00, !- Extended Field + 3.102938652E+00, !- Extended Field + 6.530200481E+00, !- Extended Field + 5.611019611E+00, !- Extended Field + 5.392455578E+00, !- Extended Field + 4.850332260E+00, !- Extended Field + 4.428541660E+00, !- Extended Field + 4.168607712E+00, !- Extended Field + 3.653710365E+00, !- Extended Field + 3.536618710E+00, !- Extended Field + 3.003277779E+00, !- Extended Field + 2.982273579E+00, !- Extended Field + 7.834506035E+00, !- Extended Field + 6.280433655E+00, !- Extended Field + 6.822233677E+00, !- Extended Field + 5.755854130E+00, !- Extended Field + 5.912848473E+00, !- Extended Field + 5.250985146E+00, !- Extended Field + 5.182260513E+00, !- Extended Field + 4.754805088E+00, !- Extended Field + 4.542633533E+00, !- Extended Field + 4.284708500E+00, !- Extended Field + 7.513321400E+00, !- Extended Field + 6.115698338E+00, !- Extended Field + 6.475070953E+00, !- Extended Field + 5.555021286E+00, !- Extended Field + 5.557474613E+00, !- Extended Field + 5.013357639E+00, !- Extended Field + 4.807723522E+00, !- Extended Field + 4.481939316E+00, !- Extended Field + 4.148842812E+00, !- Extended Field + 3.982269287E+00, !- Extended Field + 7.221558571E+00, !- Extended Field + 5.965429306E+00, !- Extended Field + 6.174466133E+00, !- Extended Field + 5.370445728E+00, !- Extended Field + 5.251560211E+00, !- Extended Field + 4.802161694E+00, !- Extended Field + 4.496406555E+00, !- Extended Field + 4.248055935E+00, !- Extended Field + 3.838255882E+00, !- Extended Field + 3.731016636E+00, !- Extended Field + 6.957671642E+00, !- Extended Field + 5.821099758E+00, !- Extended Field + 5.912261009E+00, !- Extended Field + 5.202059269E+00, !- Extended Field + 4.986678123E+00, !- Extended Field + 4.612606525E+00, !- Extended Field + 4.235047817E+00, !- Extended Field + 4.044469357E+00, !- Extended Field + 3.583178043E+00, !- Extended Field + 3.519597292E+00, !- Extended Field + 6.717224121E+00, !- Extended Field + 5.685180187E+00, !- Extended Field + 5.674411297E+00, !- Extended Field + 5.045931816E+00, !- Extended Field + 4.755833626E+00, !- Extended Field + 4.442311764E+00, !- Extended Field + 4.005920887E+00, !- Extended Field + 3.865805149E+00, !- Extended Field + 3.370674133E+00, !- Extended Field + 3.341298580E+00, !- Extended Field + 6.497097015E+00, !- Extended Field + 5.557792664E+00, !- Extended Field + 5.458507061E+00, !- Extended Field + 4.902111053E+00, !- Extended Field + 4.549997330E+00, !- Extended Field + 4.287743092E+00, !- Extended Field + 3.810397863E+00, !- Extended Field + 3.706410646E+00, !- Extended Field + 3.186673403E+00, !- Extended Field + 3.185958147E+00, !- Extended Field + 6.293673038E+00, !- Extended Field + 5.436291695E+00, !- Extended Field + 5.265069485E+00, !- Extended Field + 4.767890930E+00, !- Extended Field + 4.367697716E+00, !- Extended Field + 4.147320747E+00, !- Extended Field + 3.640485287E+00, !- Extended Field + 3.565042257E+00, !- Extended Field + 3.036231041E+00, !- Extended Field + 3.050520658E+00, !- Extended Field + 6.108554840E+00, !- Extended Field + 5.322333813E+00, !- Extended Field + 5.089111328E+00, !- Extended Field + 4.644570351E+00, !- Extended Field + 4.204514027E+00, !- Extended Field + 4.018646717E+00, !- Extended Field + 3.488256216E+00, !- Extended Field + 3.436962605E+00, !- Extended Field + 2.899749756E+00, !- Extended Field + 2.928508759E+00, !- Extended Field + 5.942604542E+00, !- Extended Field + 5.214026928E+00, !- Extended Field + 4.928544521E+00, !- Extended Field + 4.528480053E+00, !- Extended Field + 4.052258968E+00, !- Extended Field + 3.900614977E+00, !- Extended Field + 3.355411291E+00, !- Extended Field + 3.323341846E+00, !- Extended Field + 2.782607079E+00, !- Extended Field + 2.824288845E+00, !- Extended Field + 8.068052292E+00, !- Extended Field + 6.426496983E+00, !- Extended Field + 7.014332771E+00, !- Extended Field + 5.881637096E+00, !- Extended Field + 6.084312439E+00, !- Extended Field + 5.363395214E+00, !- Extended Field + 5.324547291E+00, !- Extended Field + 4.851247787E+00, !- Extended Field + 4.662125587E+00, !- Extended Field + 4.368354797E+00, !- Extended Field + 7.730514526E+00, !- Extended Field + 6.258352757E+00, !- Extended Field + 6.658972263E+00, !- Extended Field + 5.675274849E+00, !- Extended Field + 5.713076591E+00, !- Extended Field + 5.118272781E+00, !- Extended Field + 4.936174393E+00, !- Extended Field + 4.571639538E+00, !- Extended Field + 4.261363029E+00, !- Extended Field + 4.053944111E+00, !- Extended Field + 7.426773548E+00, !- Extended Field + 6.099964619E+00, !- Extended Field + 6.346560478E+00, !- Extended Field + 5.485461235E+00, !- Extended Field + 5.396158218E+00, !- Extended Field + 4.900776386E+00, !- Extended Field + 4.614931583E+00, !- Extended Field + 4.330955982E+00, !- Extended Field + 3.939260960E+00, !- Extended Field + 3.796836376E+00, !- Extended Field + 7.153215885E+00, !- Extended Field + 5.951397419E+00, !- Extended Field + 6.070774078E+00, !- Extended Field + 5.311344147E+00, !- Extended Field + 5.121944427E+00, !- Extended Field + 4.705975056E+00, !- Extended Field + 4.345078945E+00, !- Extended Field + 4.121622086E+00, !- Extended Field + 3.674516439E+00, !- Extended Field + 3.580856323E+00, !- Extended Field + 6.904848099E+00, !- Extended Field + 5.810193539E+00, !- Extended Field + 5.824313164E+00, !- Extended Field + 5.150495529E+00, !- Extended Field + 4.882099152E+00, !- Extended Field + 4.530632496E+00, !- Extended Field + 4.112696171E+00, !- Extended Field + 3.934475899E+00, !- Extended Field + 3.450650454E+00, !- Extended Field + 3.394925117E+00, !- Extended Field + 6.678459644E+00, !- Extended Field + 5.678385258E+00, !- Extended Field + 5.603850365E+00, !- Extended Field + 5.003041744E+00, !- Extended Field + 4.670769215E+00, !- Extended Field + 4.371480942E+00, !- Extended Field + 3.910522223E+00, !- Extended Field + 3.771435976E+00, !- Extended Field + 3.257719040E+00, !- Extended Field + 3.234322786E+00, !- Extended Field + 6.470074654E+00, !- Extended Field + 5.553740501E+00, !- Extended Field + 5.408108711E+00, !- Extended Field + 4.864442825E+00, !- Extended Field + 4.481674671E+00, !- Extended Field + 4.226928711E+00, !- Extended Field + 3.732484341E+00, !- Extended Field + 3.626332998E+00, !- Extended Field + 3.093227386E+00, !- Extended Field + 3.089119911E+00, !- Extended Field + 6.278072834E+00, !- Extended Field + 5.435143471E+00, !- Extended Field + 5.225800514E+00, !- Extended Field + 4.737654686E+00, !- Extended Field + 4.313586235E+00, !- Extended Field + 4.094691753E+00, !- Extended Field + 3.573394537E+00, !- Extended Field + 3.495568037E+00, !- Extended Field + 2.950181723E+00, !- Extended Field + 2.964620590E+00, !- Extended Field + 6.101835251E+00, !- Extended Field + 5.324842930E+00, !- Extended Field + 5.059786320E+00, !- Extended Field + 4.618322849E+00, !- Extended Field + 4.160269737E+00, !- Extended Field + 3.970090866E+00, !- Extended Field + 3.431980610E+00, !- Extended Field + 3.377073288E+00, !- Extended Field + 2.823709965E+00, !- Extended Field + 2.849396944E+00, !- Extended Field + 8.278247833E+00, !- Extended Field + 6.561947823E+00, !- Extended Field + 7.194357395E+00, !- Extended Field + 6.003612041E+00, !- Extended Field + 6.241466999E+00, !- Extended Field + 5.471730709E+00, !- Extended Field + 5.463829041E+00, !- Extended Field + 4.948050976E+00, !- Extended Field + 4.784678459E+00, !- Extended Field + 4.454235077E+00, !- Extended Field + 7.928957462E+00, !- Extended Field + 6.389541149E+00, !- Extended Field + 6.824309349E+00, !- Extended Field + 5.789280415E+00, !- Extended Field + 5.860869884E+00, !- Extended Field + 5.221038342E+00, !- Extended Field + 5.064977646E+00, !- Extended Field + 4.661152840E+00, !- Extended Field + 4.370663643E+00, !- Extended Field + 4.136296272E+00, !- Extended Field + 7.617700577E+00, !- Extended Field + 6.226971149E+00, !- Extended Field + 6.509762287E+00, !- Extended Field + 5.599353790E+00, !- Extended Field + 5.537789345E+00, !- Extended Field + 4.998585701E+00, !- Extended Field + 4.735455990E+00, !- Extended Field + 4.415481091E+00, !- Extended Field + 4.040813923E+00, !- Extended Field + 3.872962952E+00, !- Extended Field + 7.334428310E+00, !- Extended Field + 6.073550701E+00, !- Extended Field + 6.225597858E+00, !- Extended Field + 5.419732094E+00, !- Extended Field + 5.255975723E+00, !- Extended Field + 4.799187660E+00, !- Extended Field + 4.456765652E+00, !- Extended Field + 4.201744080E+00, !- Extended Field + 3.769021749E+00, !- Extended Field + 3.650814056E+00, !- Extended Field + 7.078690052E+00, !- Extended Field + 5.929581165E+00, !- Extended Field + 5.975097656E+00, !- Extended Field + 5.256457806E+00, !- Extended Field + 5.009767056E+00, !- Extended Field + 4.619640827E+00, !- Extended Field + 4.218636990E+00, !- Extended Field + 4.013590813E+00, !- Extended Field + 3.540932417E+00, !- Extended Field + 3.459958553E+00, !- Extended Field + 6.848979473E+00, !- Extended Field + 5.792086601E+00, !- Extended Field + 5.747687340E+00, !- Extended Field + 5.101285934E+00, !- Extended Field + 4.792548656E+00, !- Extended Field + 4.456985950E+00, !- Extended Field + 4.011085987E+00, !- Extended Field + 3.846765995E+00, !- Extended Field + 3.345760345E+00, !- Extended Field + 3.290561438E+00, !- Extended Field + 6.636671543E+00, !- Extended Field + 5.667860031E+00, !- Extended Field + 5.541965961E+00, !- Extended Field + 4.961469650E+00, !- Extended Field + 4.598396778E+00, !- Extended Field + 4.309335709E+00, !- Extended Field + 3.828642368E+00, !- Extended Field + 3.697365761E+00, !- Extended Field + 3.176185846E+00, !- Extended Field + 3.144641876E+00, !- Extended Field + 6.439656258E+00, !- Extended Field + 5.546125412E+00, !- Extended Field + 5.355296612E+00, !- Extended Field + 4.831434250E+00, !- Extended Field + 4.424193382E+00, !- Extended Field + 4.174113750E+00, !- Extended Field + 3.666731834E+00, !- Extended Field + 3.563070536E+00, !- Extended Field + 3.025346041E+00, !- Extended Field + 3.014897585E+00, !- Extended Field + 6.258625507E+00, !- Extended Field + 5.432742596E+00, !- Extended Field + 5.184958458E+00, !- Extended Field + 4.709136486E+00, !- Extended Field + 4.267317772E+00, !- Extended Field + 4.049954414E+00, !- Extended Field + 3.521437883E+00, !- Extended Field + 3.441581726E+00, !- Extended Field + 2.893359184E+00, !- Extended Field + 2.898008823E+00, !- Extended Field + 8.503153801E+00, !- Extended Field + 6.708246231E+00, !- Extended Field + 7.382932663E+00, !- Extended Field + 6.129475117E+00, !- Extended Field + 6.402053356E+00, !- Extended Field + 5.577692986E+00, !- Extended Field + 5.599658012E+00, !- Extended Field + 5.040062428E+00, !- Extended Field + 4.902056694E+00, !- Extended Field + 4.535254478E+00, !- Extended Field + 8.143985748E+00, !- Extended Field + 6.529346466E+00, !- Extended Field + 7.005578995E+00, !- Extended Field + 5.912101746E+00, !- Extended Field + 6.009937763E+00, !- Extended Field + 5.320215225E+00, !- Extended Field + 5.189938545E+00, !- Extended Field + 4.746862411E+00, !- Extended Field + 4.477281570E+00, !- Extended Field + 4.214802742E+00, !- Extended Field + 7.820975304E+00, !- Extended Field + 6.362260342E+00, !- Extended Field + 6.676310062E+00, !- Extended Field + 5.713195324E+00, !- Extended Field + 5.675266266E+00, !- Extended Field + 5.091709137E+00, !- Extended Field + 4.851440907E+00, !- Extended Field + 4.499984741E+00, !- Extended Field + 4.138268948E+00, !- Extended Field + 3.942623854E+00, !- Extended Field + 7.530445099E+00, !- Extended Field + 6.204627037E+00, !- Extended Field + 6.384465694E+00, !- Extended Field + 5.529651642E+00, !- Extended Field + 5.385974407E+00, !- Extended Field + 4.887605667E+00, !- Extended Field + 4.565674782E+00, !- Extended Field + 4.281350136E+00, !- Extended Field + 3.859795809E+00, !- Extended Field + 3.715607166E+00, !- Extended Field + 7.266670704E+00, !- Extended Field + 6.057255745E+00, !- Extended Field + 6.124229431E+00, !- Extended Field + 5.360546589E+00, !- Extended Field + 5.133027554E+00, !- Extended Field + 4.703958988E+00, !- Extended Field + 4.320383072E+00, !- Extended Field + 4.085928917E+00, !- Extended Field + 3.631300211E+00, !- Extended Field + 3.520670176E+00, !- Extended Field + 7.026438713E+00, !- Extended Field + 5.916110516E+00, !- Extended Field + 5.890693188E+00, !- Extended Field + 5.205302238E+00, !- Extended Field + 4.909888268E+00, !- Extended Field + 4.537991524E+00, !- Extended Field + 4.107569218E+00, !- Extended Field + 3.915759325E+00, !- Extended Field + 3.428107500E+00, !- Extended Field + 3.357322931E+00, !- Extended Field + 6.803874016E+00, !- Extended Field + 5.785008430E+00, !- Extended Field + 5.679677963E+00, !- Extended Field + 5.061599255E+00, !- Extended Field + 4.710763454E+00, !- Extended Field + 4.391186237E+00, !- Extended Field + 3.920671463E+00, !- Extended Field + 3.762970924E+00, !- Extended Field + 3.254061699E+00, !- Extended Field + 3.206598520E+00, !- Extended Field + 6.602017879E+00, !- Extended Field + 5.661391258E+00, !- Extended Field + 5.488326073E+00, !- Extended Field + 4.927602291E+00, !- Extended Field + 4.527555466E+00, !- Extended Field + 4.253102303E+00, !- Extended Field + 3.754672050E+00, !- Extended Field + 3.626407146E+00, !- Extended Field + 3.102666140E+00, !- Extended Field + 3.073635817E+00, !- Extended Field + 6.414974213E+00, !- Extended Field + 5.543371201E+00, !- Extended Field + 5.313691139E+00, !- Extended Field + 4.802395821E+00, !- Extended Field + 4.370092869E+00, !- Extended Field + 4.122880936E+00, !- Extended Field + 3.611217976E+00, !- Extended Field + 3.501956224E+00, !- Extended Field + 2.967506886E+00, !- Extended Field + 2.955021381E+00, !- Extended Field + 8.734939575E+00, !- Extended Field + 6.849824429E+00, !- Extended Field + 7.565517902E+00, !- Extended Field + 6.255727768E+00, !- Extended Field + 6.559382439E+00, !- Extended Field + 5.690798759E+00, !- Extended Field + 5.735638618E+00, !- Extended Field + 5.138714314E+00, !- Extended Field + 5.020451069E+00, !- Extended Field + 4.622905254E+00, !- Extended Field + 8.363984108E+00, !- Extended Field + 6.666503429E+00, !- Extended Field + 7.177498817E+00, !- Extended Field + 6.033119202E+00, !- Extended Field + 6.156836033E+00, !- Extended Field + 5.427262783E+00, !- Extended Field + 5.315515518E+00, !- Extended Field + 4.839844704E+00, !- Extended Field + 4.585656643E+00, !- Extended Field + 4.291338444E+00, !- Extended Field + 8.031193733E+00, !- Extended Field + 6.493605614E+00, !- Extended Field + 6.837590218E+00, !- Extended Field + 5.827038765E+00, !- Extended Field + 5.813141823E+00, !- Extended Field + 5.191711903E+00, !- Extended Field + 4.968211651E+00, !- Extended Field + 4.582497597E+00, !- Extended Field + 4.242412567E+00, !- Extended Field + 4.017100811E+00, !- Extended Field + 7.725589275E+00, !- Extended Field + 6.331331730E+00, !- Extended Field + 6.537453175E+00, !- Extended Field + 5.638632774E+00, !- Extended Field + 5.516353607E+00, !- Extended Field + 4.982690811E+00, !- Extended Field + 4.675396919E+00, !- Extended Field + 4.359245777E+00, !- Extended Field + 3.957106829E+00, !- Extended Field + 3.785125494E+00, !- Extended Field + 7.450638294E+00, !- Extended Field + 6.179885387E+00, !- Extended Field + 6.271222115E+00, !- Extended Field + 5.465774536E+00, !- Extended Field + 5.257004261E+00, !- Extended Field + 4.795166492E+00, !- Extended Field + 4.424383163E+00, !- Extended Field + 4.163374424E+00, !- Extended Field + 3.714024544E+00, !- Extended Field + 3.587454796E+00, !- Extended Field + 7.199522972E+00, !- Extended Field + 6.035767555E+00, !- Extended Field + 6.030970097E+00, !- Extended Field + 5.304997921E+00, !- Extended Field + 5.028070450E+00, !- Extended Field + 4.625563145E+00, !- Extended Field + 4.210782528E+00, !- Extended Field + 3.989630222E+00, !- Extended Field + 3.512812138E+00, !- Extended Field + 3.414466143E+00, !- Extended Field + 6.971834660E+00, !- Extended Field + 5.900133133E+00, !- Extended Field + 5.815647602E+00, !- Extended Field + 5.158555984E+00, !- Extended Field + 4.823926926E+00, !- Extended Field + 4.471357346E+00, !- Extended Field + 4.019218445E+00, !- Extended Field + 3.833901405E+00, !- Extended Field + 3.335004568E+00, !- Extended Field + 3.262979031E+00, !- Extended Field + 6.763221741E+00, !- Extended Field + 5.772529125E+00, !- Extended Field + 5.619208813E+00, !- Extended Field + 5.021779060E+00, !- Extended Field + 4.640776634E+00, !- Extended Field + 4.330227852E+00, !- Extended Field + 3.849284172E+00, !- Extended Field + 3.694655418E+00, !- Extended Field + 3.178555489E+00, !- Extended Field + 3.127121687E+00, !- Extended Field + 6.571243286E+00, !- Extended Field + 5.651360989E+00, !- Extended Field + 5.440124512E+00, !- Extended Field + 4.893881798E+00, !- Extended Field + 4.475039005E+00, !- Extended Field + 4.201250553E+00, !- Extended Field + 3.693234444E+00, !- Extended Field + 3.567628860E+00, !- Extended Field + 3.040383101E+00, !- Extended Field + 3.005531549E+00, !- Extended Field + 8.985898018E+00, !- Extended Field + 7.013449669E+00, !- Extended Field + 7.789088249E+00, !- Extended Field + 6.399796963E+00, !- Extended Field + 6.744442940E+00, !- Extended Field + 5.798964977E+00, !- Extended Field + 5.883401871E+00, !- Extended Field + 5.236547947E+00, !- Extended Field + 5.139030933E+00, !- Extended Field + 4.709547520E+00, !- Extended Field + 8.601654053E+00, !- Extended Field + 6.845403194E+00, !- Extended Field + 7.416170597E+00, !- Extended Field + 6.163610935E+00, !- Extended Field + 6.348540783E+00, !- Extended Field + 5.528323650E+00, !- Extended Field + 5.442511082E+00, !- Extended Field + 4.930825710E+00, !- Extended Field + 4.694672585E+00, !- Extended Field + 4.371217728E+00, !- Extended Field + 8.256714821E+00, !- Extended Field + 6.665751934E+00, !- Extended Field + 7.061593533E+00, !- Extended Field + 5.950288773E+00, !- Extended Field + 5.961650372E+00, !- Extended Field + 5.289780140E+00, !- Extended Field + 5.085526466E+00, !- Extended Field + 4.668195724E+00, !- Extended Field + 4.343548298E+00, !- Extended Field + 4.091721058E+00, !- Extended Field + 7.945892811E+00, !- Extended Field + 6.497159004E+00, !- Extended Field + 6.747991085E+00, !- Extended Field + 5.753883362E+00, !- Extended Field + 5.657199860E+00, !- Extended Field + 5.076850891E+00, !- Extended Field + 4.786415577E+00, !- Extended Field + 4.440407753E+00, !- Extended Field + 4.051672935E+00, !- Extended Field + 3.855612278E+00, !- Extended Field + 7.667282104E+00, !- Extended Field + 6.323215485E+00, !- Extended Field + 6.449347496E+00, !- Extended Field + 5.591092110E+00, !- Extended Field + 5.381332397E+00, !- Extended Field + 4.885150909E+00, !- Extended Field + 4.533998013E+00, !- Extended Field + 4.240682125E+00, !- Extended Field + 3.806744576E+00, !- Extended Field + 3.653928518E+00, !- Extended Field + 7.407217979E+00, !- Extended Field + 6.171720982E+00, !- Extended Field + 6.202156544E+00, !- Extended Field + 5.407487392E+00, !- Extended Field + 5.146772861E+00, !- Extended Field + 4.712088108E+00, !- Extended Field + 4.311038971E+00, !- Extended Field + 4.063608646E+00, !- Extended Field + 3.597339869E+00, !- Extended Field + 3.474177837E+00, !- Extended Field + 7.172022820E+00, !- Extended Field + 6.032904625E+00, !- Extended Field + 5.974468231E+00, !- Extended Field + 5.256854534E+00, !- Extended Field + 4.938142300E+00, !- Extended Field + 4.554670334E+00, !- Extended Field + 4.115065098E+00, !- Extended Field + 3.904876471E+00, !- Extended Field + 3.415434122E+00, !- Extended Field + 3.320027351E+00, !- Extended Field + 6.955620289E+00, !- Extended Field + 5.898470879E+00, !- Extended Field + 5.766171932E+00, !- Extended Field + 5.114276886E+00, !- Extended Field + 4.750811577E+00, !- Extended Field + 4.410723209E+00, !- Extended Field + 3.941093922E+00, !- Extended Field + 3.763027191E+00, !- Extended Field + 3.255634069E+00, !- Extended Field + 3.182062626E+00, !- Extended Field + 6.784637928E+00, !- Extended Field + 5.773139954E+00, !- Extended Field + 5.584018230E+00, !- Extended Field + 4.980817318E+00, !- Extended Field + 4.581320763E+00, !- Extended Field + 4.279270172E+00, !- Extended Field + 3.785371542E+00, !- Extended Field + 3.633608580E+00, !- Extended Field + 3.114252567E+00, !- Extended Field + 3.061761856E+00, !- Extended Field + 8.091814995E+00, !- Extended Field + 6.443144321E+00, !- Extended Field + 7.038028717E+00, !- Extended Field + 5.898340225E+00, !- Extended Field + 6.106351376E+00, !- Extended Field + 5.381668568E+00, !- Extended Field + 5.347247124E+00, !- Extended Field + 4.869659901E+00, !- Extended Field + 4.685476780E+00, !- Extended Field + 4.388213158E+00, !- Extended Field + 7.751350403E+00, !- Extended Field + 6.275013924E+00, !- Extended Field + 6.682870865E+00, !- Extended Field + 5.691256523E+00, !- Extended Field + 5.734667301E+00, !- Extended Field + 5.137402534E+00, !- Extended Field + 4.959453106E+00, !- Extended Field + 4.589905262E+00, !- Extended Field + 4.284040451E+00, !- Extended Field + 4.078569889E+00, !- Extended Field + 7.452087879E+00, !- Extended Field + 6.116866589E+00, !- Extended Field + 6.369593620E+00, !- Extended Field + 5.504060745E+00, !- Extended Field + 5.418694496E+00, !- Extended Field + 4.919339657E+00, !- Extended Field + 4.638218880E+00, !- Extended Field + 4.350585461E+00, !- Extended Field + 3.963798761E+00, !- Extended Field + 3.821774960E+00, !- Extended Field + 7.176038742E+00, !- Extended Field + 5.967467308E+00, !- Extended Field + 6.094168186E+00, !- Extended Field + 5.329813480E+00, !- Extended Field + 5.145022869E+00, !- Extended Field + 4.724680901E+00, !- Extended Field + 4.366966248E+00, !- Extended Field + 4.141622066E+00, !- Extended Field + 3.699356556E+00, !- Extended Field + 3.603796005E+00, !- Extended Field + 6.927174091E+00, !- Extended Field + 5.826014519E+00, !- Extended Field + 5.843969345E+00, !- Extended Field + 5.167368889E+00, !- Extended Field + 4.905735016E+00, !- Extended Field + 4.549467564E+00, !- Extended Field + 4.135806561E+00, !- Extended Field + 3.958500147E+00, !- Extended Field + 3.477819204E+00, !- Extended Field + 3.418901682E+00, !- Extended Field + 6.700903416E+00, !- Extended Field + 5.694126129E+00, !- Extended Field + 5.623476505E+00, !- Extended Field + 5.020566940E+00, !- Extended Field + 4.693954945E+00, !- Extended Field + 4.391180038E+00, !- Extended Field + 3.934948206E+00, !- Extended Field + 3.795963526E+00, !- Extended Field + 3.288674355E+00, !- Extended Field + 3.259939194E+00, !- Extended Field + 6.492287636E+00, !- Extended Field + 5.569237709E+00, !- Extended Field + 5.423257828E+00, !- Extended Field + 4.883265495E+00, !- Extended Field + 4.505301952E+00, !- Extended Field + 4.246908665E+00, !- Extended Field + 3.758456469E+00, !- Extended Field + 3.649593115E+00, !- Extended Field + 3.124284029E+00, !- Extended Field + 3.118648291E+00, !- Extended Field + 6.298379898E+00, !- Extended Field + 5.450856686E+00, !- Extended Field + 5.243773460E+00, !- Extended Field + 4.754851818E+00, !- Extended Field + 4.336077690E+00, !- Extended Field + 4.114741325E+00, !- Extended Field + 3.600348949E+00, !- Extended Field + 3.519353867E+00, !- Extended Field + 2.986849308E+00, !- Extended Field + 2.995723724E+00, !- Extended Field + 6.125249863E+00, !- Extended Field + 5.341033459E+00, !- Extended Field + 5.077798843E+00, !- Extended Field + 4.636391163E+00, !- Extended Field + 4.182612419E+00, !- Extended Field + 3.993982792E+00, !- Extended Field + 3.459404469E+00, !- Extended Field + 3.401257277E+00, !- Extended Field + 2.863797903E+00, !- Extended Field + 2.883990526E+00, !- Extended Field + 8.333242416E+00, !- Extended Field + 6.596893787E+00, !- Extended Field + 7.240844727E+00, !- Extended Field + 6.034423351E+00, !- Extended Field + 6.286014557E+00, !- Extended Field + 5.499602795E+00, !- Extended Field + 5.500236511E+00, !- Extended Field + 4.972860813E+00, !- Extended Field + 4.816768646E+00, !- Extended Field + 4.477987766E+00, !- Extended Field + 7.981428146E+00, !- Extended Field + 6.423393250E+00, !- Extended Field + 6.872204304E+00, !- Extended Field + 5.821051598E+00, !- Extended Field + 5.902079582E+00, !- Extended Field + 5.247378349E+00, !- Extended Field + 5.099000454E+00, !- Extended Field + 4.685811520E+00, !- Extended Field + 4.400531769E+00, !- Extended Field + 4.159054756E+00, !- Extended Field + 7.666893005E+00, !- Extended Field + 6.260389328E+00, !- Extended Field + 6.548887730E+00, !- Extended Field + 5.626687050E+00, !- Extended Field + 5.574186325E+00, !- Extended Field + 5.023360729E+00, !- Extended Field + 4.767291069E+00, !- Extended Field + 4.439368248E+00, !- Extended Field + 4.069732666E+00, !- Extended Field + 3.890637636E+00, !- Extended Field + 7.383201599E+00, !- Extended Field + 6.106398582E+00, !- Extended Field + 6.263503551E+00, !- Extended Field + 5.445790768E+00, !- Extended Field + 5.291065693E+00, !- Extended Field + 4.823027134E+00, !- Extended Field + 4.486968994E+00, !- Extended Field + 4.224592686E+00, !- Extended Field + 3.796953440E+00, !- Extended Field + 3.671992540E+00, !- Extended Field + 7.125885010E+00, !- Extended Field + 5.961737156E+00, !- Extended Field + 6.009182930E+00, !- Extended Field + 5.280981064E+00, !- Extended Field + 5.043515682E+00, !- Extended Field + 4.643774986E+00, !- Extended Field + 4.246874809E+00, !- Extended Field + 4.036098003E+00, !- Extended Field + 3.567762852E+00, !- Extended Field + 3.478220463E+00, !- Extended Field + 6.890955448E+00, !- Extended Field + 5.824723721E+00, !- Extended Field + 5.779636860E+00, !- Extended Field + 5.128049374E+00, !- Extended Field + 4.824653149E+00, !- Extended Field + 4.480884075E+00, !- Extended Field + 4.039862633E+00, !- Extended Field + 3.864407539E+00, !- Extended Field + 3.370491505E+00, !- Extended Field + 3.312305927E+00, !- Extended Field + 6.675432682E+00, !- Extended Field + 5.695723057E+00, !- Extended Field + 5.573952198E+00, !- Extended Field + 4.985915661E+00, !- Extended Field + 4.629499912E+00, !- Extended Field + 4.332682610E+00, !- Extended Field + 3.856472492E+00, !- Extended Field + 3.718320608E+00, !- Extended Field + 3.196953773E+00, !- Extended Field + 3.167710304E+00, !- Extended Field + 6.477452755E+00, !- Extended Field + 5.572319031E+00, !- Extended Field + 5.386115551E+00, !- Extended Field + 4.854518890E+00, !- Extended Field + 4.454438210E+00, !- Extended Field + 4.196826935E+00, !- Extended Field + 3.694033861E+00, !- Extended Field + 3.580934763E+00, !- Extended Field + 3.048103809E+00, !- Extended Field + 3.037699461E+00, !- Extended Field + 6.295457840E+00, !- Extended Field + 5.458418369E+00, !- Extended Field + 5.215235233E+00, !- Extended Field + 4.731986046E+00, !- Extended Field + 4.295764923E+00, !- Extended Field + 4.072500706E+00, !- Extended Field + 3.548186064E+00, !- Extended Field + 3.459924936E+00, !- Extended Field + 2.917130470E+00, !- Extended Field + 2.921314955E+00, !- Extended Field + 8.558484077E+00, !- Extended Field + 6.744252205E+00, !- Extended Field + 7.430022717E+00, !- Extended Field + 6.162600994E+00, !- Extended Field + 6.446889877E+00, !- Extended Field + 5.611553192E+00, !- Extended Field + 5.643599510E+00, !- Extended Field + 5.074018955E+00, !- Extended Field + 4.944638729E+00, !- Extended Field + 4.567765713E+00, !- Extended Field + 8.195877075E+00, !- Extended Field + 6.564785957E+00, !- Extended Field + 7.050069332E+00, !- Extended Field + 5.942960262E+00, !- Extended Field + 6.052073956E+00, !- Extended Field + 5.355476856E+00, !- Extended Field + 5.234532833E+00, !- Extended Field + 4.781403065E+00, !- Extended Field + 4.517953873E+00, !- Extended Field + 4.241358280E+00, !- Extended Field + 7.870592117E+00, !- Extended Field + 6.395552158E+00, !- Extended Field + 6.717011452E+00, !- Extended Field + 5.741503716E+00, !- Extended Field + 5.719225883E+00, !- Extended Field + 5.125581264E+00, !- Extended Field + 4.893860340E+00, !- Extended Field + 4.528050423E+00, !- Extended Field + 4.176886559E+00, !- Extended Field + 3.971735954E+00, !- Extended Field + 7.577397823E+00, !- Extended Field + 6.236245155E+00, !- Extended Field + 6.421393871E+00, !- Extended Field + 5.559288025E+00, !- Extended Field + 5.431810856E+00, !- Extended Field + 4.921954632E+00, !- Extended Field + 4.606181622E+00, !- Extended Field + 4.308263779E+00, !- Extended Field + 3.897285938E+00, !- Extended Field + 3.743732929E+00, !- Extended Field + 7.311843395E+00, !- Extended Field + 6.088517666E+00, !- Extended Field + 6.165617943E+00, !- Extended Field + 5.389475346E+00, !- Extended Field + 5.176888466E+00, !- Extended Field + 4.737299919E+00, !- Extended Field + 4.360036850E+00, !- Extended Field + 4.115396023E+00, !- Extended Field + 3.662034273E+00, !- Extended Field + 3.547214985E+00, !- Extended Field + 7.069762230E+00, !- Extended Field + 5.946479797E+00, !- Extended Field + 5.930199146E+00, !- Extended Field + 5.233515263E+00, !- Extended Field + 4.952445507E+00, !- Extended Field + 4.570482254E+00, !- Extended Field + 4.146692276E+00, !- Extended Field + 3.944792509E+00, !- Extended Field + 3.460776329E+00, !- Extended Field + 3.377085686E+00, !- Extended Field + 6.846909046E+00, !- Extended Field + 5.813575268E+00, !- Extended Field + 5.720563889E+00, !- Extended Field + 5.089176178E+00, !- Extended Field + 4.752495289E+00, !- Extended Field + 4.418723583E+00, !- Extended Field + 3.958528042E+00, !- Extended Field + 3.791439056E+00, !- Extended Field + 3.286256790E+00, !- Extended Field + 3.227889776E+00, !- Extended Field + 6.643716335E+00, !- Extended Field + 5.687580109E+00, !- Extended Field + 5.528422832E+00, !- Extended Field + 4.953225136E+00, !- Extended Field + 4.572300434E+00, !- Extended Field + 4.279769421E+00, !- Extended Field + 3.791580200E+00, !- Extended Field + 3.653936863E+00, !- Extended Field + 3.132569313E+00, !- Extended Field + 3.094262123E+00, !- Extended Field + 6.460041046E+00, !- Extended Field + 5.572489738E+00, !- Extended Field + 5.352128506E+00, !- Extended Field + 4.827679157E+00, !- Extended Field + 4.409982204E+00, !- Extended Field + 4.152520180E+00, !- Extended Field + 3.641806602E+00, !- Extended Field + 3.528435707E+00, !- Extended Field + 2.996702909E+00, !- Extended Field + 2.974530458E+00, !- Extended Field + 8.792686462E+00, !- Extended Field + 6.897933960E+00, !- Extended Field + 7.630719185E+00, !- Extended Field + 6.297213554E+00, !- Extended Field + 6.622272491E+00, !- Extended Field + 5.730578423E+00, !- Extended Field + 5.791125774E+00, !- Extended Field + 5.175903797E+00, !- Extended Field + 5.069809437E+00, !- Extended Field + 4.656619072E+00, !- Extended Field + 8.419803619E+00, !- Extended Field + 6.714089394E+00, !- Extended Field + 7.239647865E+00, !- Extended Field + 6.070334911E+00, !- Extended Field + 6.215979099E+00, !- Extended Field + 5.459527493E+00, !- Extended Field + 5.367602348E+00, !- Extended Field + 4.874894142E+00, !- Extended Field + 4.632334709E+00, !- Extended Field + 4.323048592E+00, !- Extended Field + 8.084726334E+00, !- Extended Field + 6.538141727E+00, !- Extended Field + 6.896777153E+00, !- Extended Field + 5.865626335E+00, !- Extended Field + 5.869135380E+00, !- Extended Field + 5.228606224E+00, !- Extended Field + 5.017714977E+00, !- Extended Field + 4.615890980E+00, !- Extended Field + 4.280905724E+00, !- Extended Field + 4.043078899E+00, !- Extended Field + 7.782519341E+00, !- Extended Field + 6.374321461E+00, !- Extended Field + 6.593772888E+00, !- Extended Field + 5.675825596E+00, !- Extended Field + 5.569976330E+00, !- Extended Field + 5.018881321E+00, !- Extended Field + 4.722590446E+00, !- Extended Field + 4.391343594E+00, !- Extended Field + 3.993319273E+00, !- Extended Field + 3.809846640E+00, !- Extended Field + 7.509929657E+00, !- Extended Field + 6.221218109E+00, !- Extended Field + 6.323792934E+00, !- Extended Field + 5.501731873E+00, !- Extended Field + 5.308581352E+00, !- Extended Field + 4.829933643E+00, !- Extended Field + 4.468637943E+00, !- Extended Field + 4.194205761E+00, !- Extended Field + 3.751971722E+00, !- Extended Field + 3.614867926E+00, !- Extended Field + 7.259836197E+00, !- Extended Field + 6.075847626E+00, !- Extended Field + 6.082732677E+00, !- Extended Field + 5.340401173E+00, !- Extended Field + 5.077527523E+00, !- Extended Field + 4.659260273E+00, !- Extended Field + 4.248976231E+00, !- Extended Field + 4.015416622E+00, !- Extended Field + 3.550463915E+00, !- Extended Field + 3.436857224E+00, !- Extended Field + 7.032155991E+00, !- Extended Field + 5.938997746E+00, !- Extended Field + 5.864483356E+00, !- Extended Field + 5.191950798E+00, !- Extended Field + 4.872128487E+00, !- Extended Field + 4.504190922E+00, !- Extended Field + 4.055865765E+00, !- Extended Field + 3.858791113E+00, !- Extended Field + 3.368885279E+00, !- Extended Field + 3.290448904E+00, !- Extended Field + 6.821907520E+00, !- Extended Field + 5.810192108E+00, !- Extended Field + 5.666195869E+00, !- Extended Field + 5.053623676E+00, !- Extended Field + 4.687577724E+00, !- Extended Field + 4.362112045E+00, !- Extended Field + 3.884611607E+00, !- Extended Field + 3.722590208E+00, !- Extended Field + 3.213477373E+00, !- Extended Field + 3.156931639E+00, !- Extended Field + 6.627170086E+00, !- Extended Field + 5.687584400E+00, !- Extended Field + 5.485387802E+00, !- Extended Field + 4.924877167E+00, !- Extended Field + 4.521348476E+00, !- Extended Field + 4.232377052E+00, !- Extended Field + 3.730961084E+00, !- Extended Field + 3.591130972E+00, !- Extended Field + 3.074157715E+00, !- Extended Field + 3.029503345E+00, !- Extended Field + 9.043934822E+00, !- Extended Field + 7.052212715E+00, !- Extended Field + 7.832796097E+00, !- Extended Field + 6.427909851E+00, !- Extended Field + 6.786314011E+00, !- Extended Field + 5.844200134E+00, !- Extended Field + 5.933269024E+00, !- Extended Field + 5.276421547E+00, !- Extended Field + 5.193316460E+00, !- Extended Field + 4.744850159E+00, !- Extended Field + 8.651149750E+00, !- Extended Field + 6.854986668E+00, !- Extended Field + 7.424939156E+00, !- Extended Field + 6.196250916E+00, !- Extended Field + 6.368998528E+00, !- Extended Field + 5.572304249E+00, !- Extended Field + 5.498252869E+00, !- Extended Field + 4.968054771E+00, !- Extended Field + 4.744600773E+00, !- Extended Field + 4.402402878E+00, !- Extended Field + 8.304456711E+00, !- Extended Field + 6.675853252E+00, !- Extended Field + 7.073652267E+00, !- Extended Field + 5.983567238E+00, !- Extended Field + 6.013071537E+00, !- Extended Field + 5.330193996E+00, !- Extended Field + 5.139404774E+00, !- Extended Field + 4.703119278E+00, !- Extended Field + 4.385854721E+00, !- Extended Field + 4.120775700E+00, !- Extended Field + 7.992704868E+00, !- Extended Field + 6.507037640E+00, !- Extended Field + 6.756989956E+00, !- Extended Field + 5.790908337E+00, !- Extended Field + 5.705649853E+00, !- Extended Field + 5.115265369E+00, !- Extended Field + 4.837037086E+00, !- Extended Field + 4.472060680E+00, !- Extended Field + 4.095319748E+00, !- Extended Field + 3.882921457E+00, !- Extended Field + 7.709997177E+00, !- Extended Field + 6.349714279E+00, !- Extended Field + 6.480144978E+00, !- Extended Field + 5.612274647E+00, !- Extended Field + 5.437585354E+00, !- Extended Field + 4.921880722E+00, !- Extended Field + 4.577785015E+00, !- Extended Field + 4.270777702E+00, !- Extended Field + 3.848193169E+00, !- Extended Field + 3.679810524E+00, !- Extended Field + 7.453735828E+00, !- Extended Field + 6.199849606E+00, !- Extended Field + 6.232661724E+00, !- Extended Field + 5.447424412E+00, !- Extended Field + 5.200999260E+00, !- Extended Field + 4.747342110E+00, !- Extended Field + 4.352741241E+00, !- Extended Field + 4.092403412E+00, !- Extended Field + 3.636956692E+00, !- Extended Field + 3.501969814E+00, !- Extended Field + 7.218411446E+00, !- Extended Field + 6.059448242E+00, !- Extended Field + 6.008687973E+00, !- Extended Field + 5.293369293E+00, !- Extended Field + 4.990267277E+00, !- Extended Field + 4.588679790E+00, !- Extended Field + 4.159143448E+00, !- Extended Field + 3.932480812E+00, !- Extended Field + 3.453538418E+00, !- Extended Field + 3.347122431E+00, !- Extended Field + 6.996306896E+00, !- Extended Field + 5.926271439E+00, !- Extended Field + 5.804953575E+00, !- Extended Field + 5.151800156E+00, !- Extended Field + 4.801027775E+00, !- Extended Field + 4.442162514E+00, !- Extended Field + 3.983653307E+00, !- Extended Field + 3.789647102E+00, !- Extended Field + 3.292290688E+00, !- Extended Field + 3.208091497E+00, !- Extended Field + 6.793537140E+00, !- Extended Field + 5.802900314E+00, !- Extended Field + 5.620657444E+00, !- Extended Field + 5.021631241E+00, !- Extended Field + 4.629886150E+00, !- Extended Field + 4.309693336E+00, !- Extended Field + 3.826505184E+00, !- Extended Field + 3.659549475E+00, !- Extended Field + 3.149653912E+00, !- Extended Field + 3.083178043E+00, !- Extended Field + 9.311108589E+00, !- Extended Field + 7.250644684E+00, !- Extended Field + 8.064186096E+00, !- Extended Field + 6.579901218E+00, !- Extended Field + 7.022602558E+00, !- Extended Field + 5.960851669E+00, !- Extended Field + 6.122305870E+00, !- Extended Field + 5.373332024E+00, !- Extended Field + 5.325824738E+00, !- Extended Field + 4.831313133E+00, !- Extended Field + 8.909973145E+00, !- Extended Field + 7.047512531E+00, !- Extended Field + 7.677256107E+00, !- Extended Field + 6.338941097E+00, !- Extended Field + 6.557084084E+00, !- Extended Field + 5.679924488E+00, !- Extended Field + 5.641021252E+00, !- Extended Field + 5.059146881E+00, !- Extended Field + 4.863941669E+00, !- Extended Field + 4.484603882E+00, !- Extended Field + 8.544967651E+00, !- Extended Field + 6.861422062E+00, !- Extended Field + 7.288024902E+00, !- Extended Field + 6.120654106E+00, !- Extended Field + 6.208573341E+00, !- Extended Field + 5.429224968E+00, !- Extended Field + 5.269220352E+00, !- Extended Field + 4.788751602E+00, !- Extended Field + 4.491932392E+00, !- Extended Field + 4.197297573E+00, !- Extended Field + 8.224569321E+00, !- Extended Field + 6.683243275E+00, !- Extended Field + 6.986202717E+00, !- Extended Field + 5.915019989E+00, !- Extended Field + 5.887099266E+00, !- Extended Field + 5.209631920E+00, !- Extended Field + 4.958582878E+00, !- Extended Field + 4.555666447E+00, !- Extended Field + 4.190409660E+00, !- Extended Field + 3.954930544E+00, !- Extended Field + 7.932030201E+00, !- Extended Field + 6.518142700E+00, !- Extended Field + 6.697661400E+00, !- Extended Field + 5.728784561E+00, !- Extended Field + 5.578413963E+00, !- Extended Field + 5.012045383E+00, !- Extended Field + 4.688241005E+00, !- Extended Field + 4.350210190E+00, !- Extended Field + 3.941725731E+00, !- Extended Field + 3.747934818E+00, !- Extended Field + 7.666702271E+00, !- Extended Field + 6.363539696E+00, !- Extended Field + 6.438942909E+00, !- Extended Field + 5.575722694E+00, !- Extended Field + 5.333453655E+00, !- Extended Field + 4.833668232E+00, !- Extended Field + 4.457917690E+00, !- Extended Field + 4.168386936E+00, !- Extended Field + 3.725689173E+00, !- Extended Field + 3.566943884E+00, !- Extended Field + 7.426824570E+00, !- Extended Field + 6.219405651E+00, !- Extended Field + 6.183267593E+00, !- Extended Field + 5.415294647E+00, !- Extended Field + 5.115269184E+00, !- Extended Field + 4.671873093E+00, !- Extended Field + 4.255578041E+00, !- Extended Field + 4.005362034E+00, !- Extended Field + 3.537672758E+00, !- Extended Field + 3.408847809E+00, !- Extended Field + 7.223652840E+00, !- Extended Field + 6.064816952E+00, !- Extended Field + 5.970887661E+00, !- Extended Field + 5.252412319E+00, !- Extended Field + 4.921542168E+00, !- Extended Field + 4.524978161E+00, !- Extended Field + 4.075778008E+00, !- Extended Field + 3.859755039E+00, !- Extended Field + 3.373034000E+00, !- Extended Field + 3.267274857E+00, !- Extended Field + 6.991819859E+00, !- Extended Field + 5.933947563E+00, !- Extended Field + 5.779130936E+00, !- Extended Field + 5.118879795E+00, !- Extended Field + 4.741332531E+00, !- Extended Field + 4.389719963E+00, !- Extended Field + 3.919330835E+00, !- Extended Field + 3.727164507E+00, !- Extended Field + 3.227175713E+00, !- Extended Field + 3.137973547E+00, !- Extended Field + 8.347365379E+00, !- Extended Field + 6.608690739E+00, !- Extended Field + 7.252334118E+00, !- Extended Field + 6.046777725E+00, !- Extended Field + 6.301912308E+00, !- Extended Field + 5.512525082E+00, !- Extended Field + 5.517039299E+00, !- Extended Field + 4.985126019E+00, !- Extended Field + 4.831119537E+00, !- Extended Field + 4.492309093E+00, !- Extended Field + 7.995945930E+00, !- Extended Field + 6.434765339E+00, !- Extended Field + 6.883549690E+00, !- Extended Field + 5.833468437E+00, !- Extended Field + 5.918112278E+00, !- Extended Field + 5.260118008E+00, !- Extended Field + 5.113693714E+00, !- Extended Field + 4.700374603E+00, !- Extended Field + 4.418254375E+00, !- Extended Field + 4.174734592E+00, !- Extended Field + 7.680626869E+00, !- Extended Field + 6.271291256E+00, !- Extended Field + 6.561481953E+00, !- Extended Field + 5.637518406E+00, !- Extended Field + 5.593299389E+00, !- Extended Field + 5.036231995E+00, !- Extended Field + 4.782167912E+00, !- Extended Field + 4.454191685E+00, !- Extended Field + 4.087574482E+00, !- Extended Field + 3.911710501E+00, !- Extended Field + 7.397747993E+00, !- Extended Field + 6.118630886E+00, !- Extended Field + 6.276163101E+00, !- Extended Field + 5.458990574E+00, !- Extended Field + 5.307498932E+00, !- Extended Field + 4.838133812E+00, !- Extended Field + 4.501732826E+00, !- Extended Field + 4.240265369E+00, !- Extended Field + 3.815665007E+00, !- Extended Field + 3.689723015E+00, !- Extended Field + 7.141005039E+00, !- Extended Field + 5.973212242E+00, !- Extended Field + 6.022156715E+00, !- Extended Field + 5.293461800E+00, !- Extended Field + 5.057929039E+00, !- Extended Field + 4.658334255E+00, !- Extended Field + 4.265062809E+00, !- Extended Field + 4.051796436E+00, !- Extended Field + 3.587766171E+00, !- Extended Field + 3.498242617E+00, !- Extended Field + 6.906543255E+00, !- Extended Field + 5.837879658E+00, !- Extended Field + 5.794256687E+00, !- Extended Field + 5.141088486E+00, !- Extended Field + 4.839537621E+00, !- Extended Field + 4.495141983E+00, !- Extended Field + 4.057412148E+00, !- Extended Field + 3.885314226E+00, !- Extended Field + 3.392398119E+00, !- Extended Field + 3.333685160E+00, !- Extended Field + 6.691280842E+00, !- Extended Field + 5.707314014E+00, !- Extended Field + 5.587748528E+00, !- Extended Field + 4.999247551E+00, !- Extended Field + 4.644484997E+00, !- Extended Field + 4.347802162E+00, !- Extended Field + 3.875012398E+00, !- Extended Field + 3.736445904E+00, !- Extended Field + 3.226423979E+00, !- Extended Field + 3.190841913E+00, !- Extended Field + 6.490669250E+00, !- Extended Field + 5.586402893E+00, !- Extended Field + 5.401223660E+00, !- Extended Field + 4.866945267E+00, !- Extended Field + 4.472176552E+00, !- Extended Field + 4.212297916E+00, !- Extended Field + 3.713266134E+00, !- Extended Field + 3.601330996E+00, !- Extended Field + 3.077438831E+00, !- Extended Field + 3.060733080E+00, !- Extended Field + 6.314370632E+00, !- Extended Field + 5.470568657E+00, !- Extended Field + 5.230047226E+00, !- Extended Field + 4.746408939E+00, !- Extended Field + 4.313734531E+00, !- Extended Field + 4.088237286E+00, !- Extended Field + 3.568409204E+00, !- Extended Field + 3.480300426E+00, !- Extended Field + 2.951459169E+00, !- Extended Field + 2.949110746E+00, !- Extended Field + 8.604722977E+00, !- Extended Field + 6.773152351E+00, !- Extended Field + 7.471778393E+00, !- Extended Field + 6.190331936E+00, !- Extended Field + 6.487462521E+00, !- Extended Field + 5.638093948E+00, !- Extended Field + 5.679171562E+00, !- Extended Field + 5.099308491E+00, !- Extended Field + 4.973769665E+00, !- Extended Field + 4.587171078E+00, !- Extended Field + 8.239952087E+00, !- Extended Field + 6.593661785E+00, !- Extended Field + 7.090047359E+00, !- Extended Field + 5.970066071E+00, !- Extended Field + 6.093647003E+00, !- Extended Field + 5.381688595E+00, !- Extended Field + 5.264979362E+00, !- Extended Field + 4.803839684E+00, !- Extended Field + 4.544614315E+00, !- Extended Field + 4.260761261E+00, !- Extended Field + 7.912358284E+00, !- Extended Field + 6.424003601E+00, !- Extended Field + 6.755382538E+00, !- Extended Field + 5.768281937E+00, !- Extended Field + 5.754336834E+00, !- Extended Field + 5.148485661E+00, !- Extended Field + 4.922698021E+00, !- Extended Field + 4.547296047E+00, !- Extended Field + 4.201843739E+00, !- Extended Field + 3.990009546E+00, !- Extended Field + 7.618229866E+00, !- Extended Field + 6.264423370E+00, !- Extended Field + 6.460413456E+00, !- Extended Field + 5.582251549E+00, !- Extended Field + 5.462572098E+00, !- Extended Field + 4.944842815E+00, !- Extended Field + 4.633729458E+00, !- Extended Field + 4.327034950E+00, !- Extended Field + 3.920437813E+00, !- Extended Field + 3.761761189E+00, !- Extended Field + 7.351845264E+00, !- Extended Field + 6.115994453E+00, !- Extended Field + 6.197026730E+00, !- Extended Field + 5.412129402E+00, !- Extended Field + 5.207358837E+00, !- Extended Field + 4.757191658E+00, !- Extended Field + 4.385681629E+00, !- Extended Field + 4.134304523E+00, !- Extended Field + 3.685244560E+00, !- Extended Field + 3.565139771E+00, !- Extended Field + 7.108711243E+00, !- Extended Field + 5.972952843E+00, !- Extended Field + 5.960750580E+00, !- Extended Field + 5.254741192E+00, !- Extended Field + 4.981656551E+00, !- Extended Field + 4.589886189E+00, !- Extended Field + 4.170699596E+00, !- Extended Field + 3.963193178E+00, !- Extended Field + 3.483410120E+00, !- Extended Field + 3.391895056E+00, !- Extended Field + 6.885981560E+00, !- Extended Field + 5.840014458E+00, !- Extended Field + 5.747310638E+00, !- Extended Field + 5.108726978E+00, !- Extended Field + 4.780550003E+00, !- Extended Field + 4.437765598E+00, !- Extended Field + 3.981773853E+00, !- Extended Field + 3.809180975E+00, !- Extended Field + 3.308069468E+00, !- Extended Field + 3.244073153E+00, !- Extended Field + 6.680627346E+00, !- Extended Field + 5.714118958E+00, !- Extended Field + 5.553591728E+00, !- Extended Field + 4.974004269E+00, !- Extended Field + 4.599135399E+00, !- Extended Field + 4.298497200E+00, !- Extended Field + 3.814131975E+00, !- Extended Field + 3.671747684E+00, !- Extended Field + 3.152718306E+00, !- Extended Field + 3.111128807E+00, !- Extended Field + 6.491116524E+00, !- Extended Field + 5.595515251E+00, !- Extended Field + 5.377421856E+00, !- Extended Field + 4.847842693E+00, !- Extended Field + 4.435796738E+00, !- Extended Field + 4.171607018E+00, !- Extended Field + 3.663763523E+00, !- Extended Field + 3.546308994E+00, !- Extended Field + 3.013827324E+00, !- Extended Field + 2.991593361E+00, !- Extended Field + 8.845284462E+00, !- Extended Field + 6.930411816E+00, !- Extended Field + 7.673000336E+00, !- Extended Field + 6.326006413E+00, !- Extended Field + 6.662258625E+00, !- Extended Field + 5.757737160E+00, !- Extended Field + 5.824174404E+00, !- Extended Field + 5.202155590E+00, !- Extended Field + 5.106239319E+00, !- Extended Field + 4.681788445E+00, !- Extended Field + 8.469383240E+00, !- Extended Field + 6.743075371E+00, !- Extended Field + 7.279421806E+00, !- Extended Field + 6.099105835E+00, !- Extended Field + 6.253448486E+00, !- Extended Field + 5.489861488E+00, !- Extended Field + 5.403240681E+00, !- Extended Field + 4.900730610E+00, !- Extended Field + 4.666257381E+00, !- Extended Field + 4.346870899E+00, !- Extended Field + 8.131596565E+00, !- Extended Field + 6.567961693E+00, !- Extended Field + 6.934377670E+00, !- Extended Field + 5.890703678E+00, !- Extended Field + 5.902607441E+00, !- Extended Field + 5.252283096E+00, !- Extended Field + 5.053450108E+00, !- Extended Field + 4.640956879E+00, !- Extended Field + 4.315496922E+00, !- Extended Field + 4.069765568E+00, !- Extended Field + 7.826413631E+00, !- Extended Field + 6.402959824E+00, !- Extended Field + 6.629512310E+00, !- Extended Field + 5.699913502E+00, !- Extended Field + 5.606380463E+00, !- Extended Field + 5.044197083E+00, !- Extended Field + 4.757133484E+00, !- Extended Field + 4.415286541E+00, !- Extended Field + 4.026811600E+00, !- Extended Field + 3.835963011E+00, !- Extended Field + 7.550194263E+00, !- Extended Field + 6.249155045E+00, !- Extended Field + 6.358923912E+00, !- Extended Field + 5.524308681E+00, !- Extended Field + 5.343790054E+00, !- Extended Field + 4.855941296E+00, !- Extended Field + 4.504095554E+00, !- Extended Field + 4.217382908E+00, !- Extended Field + 3.785277605E+00, !- Extended Field + 3.636529922E+00, !- Extended Field + 7.299444199E+00, !- Extended Field + 6.102530003E+00, !- Extended Field + 6.113877773E+00, !- Extended Field + 5.365790844E+00, !- Extended Field + 5.114014149E+00, !- Extended Field + 4.684392452E+00, !- Extended Field + 4.283577919E+00, !- Extended Field + 4.042029381E+00, !- Extended Field + 3.574449539E+00, !- Extended Field + 3.461460829E+00, !- Extended Field + 7.069701672E+00, !- Extended Field + 5.963943481E+00, !- Extended Field + 5.900403500E+00, !- Extended Field + 5.216177464E+00, !- Extended Field + 4.907447338E+00, !- Extended Field + 4.528567791E+00, !- Extended Field + 4.089569092E+00, !- Extended Field + 3.885087967E+00, !- Extended Field + 3.394574881E+00, !- Extended Field + 3.307798862E+00, !- Extended Field + 6.858282089E+00, !- Extended Field + 5.835635662E+00, !- Extended Field + 5.701529980E+00, !- Extended Field + 5.077535629E+00, !- Extended Field + 4.721938133E+00, !- Extended Field + 4.386049271E+00, !- Extended Field + 3.918364763E+00, !- Extended Field + 3.744590998E+00, !- Extended Field + 3.236310720E+00, !- Extended Field + 3.170980453E+00, !- Extended Field + 6.663432121E+00, !- Extended Field + 5.713088989E+00, !- Extended Field + 5.522233963E+00, !- Extended Field + 4.948237419E+00, !- Extended Field + 4.554020405E+00, !- Extended Field + 4.255734921E+00, !- Extended Field + 3.764061451E+00, !- Extended Field + 3.616210699E+00, !- Extended Field + 3.096420050E+00, !- Extended Field + 3.048349380E+00, !- Extended Field + 9.090137482E+00, !- Extended Field + 7.091972828E+00, !- Extended Field + 7.883708954E+00, !- Extended Field + 6.467256069E+00, !- Extended Field + 6.844865322E+00, !- Extended Field + 5.884419441E+00, !- Extended Field + 5.986018658E+00, !- Extended Field + 5.312035084E+00, !- Extended Field + 5.240264416E+00, !- Extended Field + 4.775087357E+00, !- Extended Field + 8.701591492E+00, !- Extended Field + 6.898213387E+00, !- Extended Field + 7.478278637E+00, !- Extended Field + 6.232855797E+00, !- Extended Field + 6.424310207E+00, !- Extended Field + 5.610488415E+00, !- Extended Field + 5.547017097E+00, !- Extended Field + 4.999397278E+00, !- Extended Field + 4.788365364E+00, !- Extended Field + 4.432274342E+00, !- Extended Field + 8.354193687E+00, !- Extended Field + 6.716826439E+00, !- Extended Field + 7.123293400E+00, !- Extended Field + 6.017868042E+00, !- Extended Field + 6.065243244E+00, !- Extended Field + 5.366895676E+00, !- Extended Field + 5.185760975E+00, !- Extended Field + 4.733228207E+00, !- Extended Field + 4.427577496E+00, !- Extended Field + 4.149192333E+00, !- Extended Field + 8.039845467E+00, !- Extended Field + 6.547197819E+00, !- Extended Field + 6.810007572E+00, !- Extended Field + 5.822843075E+00, !- Extended Field + 5.755909920E+00, !- Extended Field + 5.147677898E+00, !- Extended Field + 4.881437778E+00, !- Extended Field + 4.502279758E+00, !- Extended Field + 4.129092216E+00, !- Extended Field + 3.909278393E+00, !- Extended Field + 7.756206036E+00, !- Extended Field + 6.388646603E+00, !- Extended Field + 6.531667709E+00, !- Extended Field + 5.642362118E+00, !- Extended Field + 5.485919476E+00, !- Extended Field + 4.953141689E+00, !- Extended Field + 4.620494843E+00, !- Extended Field + 4.299785614E+00, !- Extended Field + 3.880251408E+00, !- Extended Field + 3.705056429E+00, !- Extended Field + 7.497921944E+00, !- Extended Field + 6.237580776E+00, !- Extended Field + 6.282021523E+00, !- Extended Field + 5.476398945E+00, !- Extended Field + 5.247940063E+00, !- Extended Field + 4.777550220E+00, !- Extended Field + 4.392503262E+00, !- Extended Field + 4.119870186E+00, !- Extended Field + 3.667455912E+00, !- Extended Field + 3.526371956E+00, !- Extended Field + 7.261574745E+00, !- Extended Field + 6.096254826E+00, !- Extended Field + 6.054956913E+00, !- Extended Field + 5.322807312E+00, !- Extended Field + 5.035537720E+00, !- Extended Field + 4.618098259E+00, !- Extended Field + 4.193391323E+00, !- Extended Field + 3.959079504E+00, !- Extended Field + 3.486968756E+00, !- Extended Field + 3.370334625E+00, !- Extended Field + 7.044112682E+00, !- Extended Field + 5.962996006E+00, !- Extended Field + 5.850347519E+00, !- Extended Field + 5.180578232E+00, !- Extended Field + 4.845128536E+00, !- Extended Field + 4.472169876E+00, !- Extended Field + 4.016403198E+00, !- Extended Field + 3.815413475E+00, !- Extended Field + 3.321787357E+00, !- Extended Field + 3.232934713E+00, !- Extended Field + 6.843828201E+00, !- Extended Field + 5.837213039E+00, !- Extended Field + 5.663928986E+00, !- Extended Field + 5.049587727E+00, !- Extended Field + 4.672896862E+00, !- Extended Field + 4.338852406E+00, !- Extended Field + 3.858362436E+00, !- Extended Field + 3.684755802E+00, !- Extended Field + 3.181578398E+00, !- Extended Field + 3.108935118E+00, !- Extended Field + 9.371000290E+00, !- Extended Field + 7.253409386E+00, !- Extended Field + 8.103903770E+00, !- Extended Field + 6.605566978E+00, !- Extended Field + 7.029621124E+00, !- Extended Field + 5.999458790E+00, !- Extended Field + 6.134923458E+00, !- Extended Field + 5.413926125E+00, !- Extended Field + 5.369692326E+00, !- Extended Field + 4.865392208E+00, !- Extended Field + 8.960956573E+00, !- Extended Field + 7.052266121E+00, !- Extended Field + 7.677475452E+00, !- Extended Field + 6.364649296E+00, !- Extended Field + 6.592295647E+00, !- Extended Field + 5.718806744E+00, !- Extended Field + 5.684760571E+00, !- Extended Field + 5.095014572E+00, !- Extended Field + 4.906162739E+00, !- Extended Field + 4.514749050E+00, !- Extended Field + 8.598163605E+00, !- Extended Field + 6.864450455E+00, !- Extended Field + 7.316460609E+00, !- Extended Field + 6.144618034E+00, !- Extended Field + 6.226220131E+00, !- Extended Field + 5.469635487E+00, !- Extended Field + 5.313824177E+00, !- Extended Field + 4.822359085E+00, !- Extended Field + 4.535798073E+00, !- Extended Field + 4.230053902E+00, !- Extended Field + 8.270493507E+00, !- Extended Field + 6.690601349E+00, !- Extended Field + 6.991371632E+00, !- Extended Field + 5.943113804E+00, !- Extended Field + 5.899142265E+00, !- Extended Field + 5.246607780E+00, !- Extended Field + 5.001500130E+00, !- Extended Field + 4.586258888E+00, !- Extended Field + 4.236000538E+00, !- Extended Field + 3.980341673E+00, !- Extended Field + 7.973426342E+00, !- Extended Field + 6.528713226E+00, !- Extended Field + 6.699311733E+00, !- Extended Field + 5.759010792E+00, !- Extended Field + 5.622056007E+00, !- Extended Field + 5.047430038E+00, !- Extended Field + 4.733813286E+00, !- Extended Field + 4.383692741E+00, !- Extended Field + 3.981164455E+00, !- Extended Field + 3.771945000E+00, !- Extended Field + 7.702408791E+00, !- Extended Field + 6.365886211E+00, !- Extended Field + 6.439006329E+00, !- Extended Field + 5.586746216E+00, !- Extended Field + 5.377251148E+00, !- Extended Field + 4.867711544E+00, !- Extended Field + 4.501504421E+00, !- Extended Field + 4.200609684E+00, !- Extended Field + 3.763408184E+00, !- Extended Field + 3.589229107E+00, !- Extended Field + 7.457614422E+00, !- Extended Field + 6.220281124E+00, !- Extended Field + 6.206381321E+00, !- Extended Field + 5.429458141E+00, !- Extended Field + 5.159505844E+00, !- Extended Field + 4.704517841E+00, !- Extended Field + 4.297399998E+00, !- Extended Field + 4.031095982E+00, !- Extended Field + 3.574031830E+00, !- Extended Field + 3.430588007E+00, !- Extended Field + 7.233995914E+00, !- Extended Field + 6.083116531E+00, !- Extended Field + 5.996304512E+00, !- Extended Field + 5.284872532E+00, !- Extended Field + 4.964085102E+00, !- Extended Field + 4.555315495E+00, !- Extended Field + 4.120388985E+00, !- Extended Field + 3.884470224E+00, !- Extended Field + 3.407998323E+00, !- Extended Field + 3.288571358E+00, !- Extended Field + 7.027364731E+00, !- Extended Field + 5.954594135E+00, !- Extended Field + 5.805341244E+00, !- Extended Field + 5.148960114E+00, !- Extended Field + 4.787294865E+00, !- Extended Field + 4.423439980E+00, !- Extended Field + 3.958516836E+00, !- Extended Field + 3.751011848E+00, !- Extended Field + 3.260942221E+00, !- Extended Field + 3.161187410E+00, !- Extended Field + 9.640462875E+00, !- Extended Field + 7.463451862E+00, !- Extended Field + 8.345357895E+00, !- Extended Field + 6.791829109E+00, !- Extended Field + 7.244069099E+00, !- Extended Field + 6.149898529E+00, !- Extended Field + 6.321151257E+00, !- Extended Field + 5.517992496E+00, !- Extended Field + 5.537942886E+00, !- Extended Field + 4.955133438E+00, !- Extended Field + 9.222886086E+00, !- Extended Field + 7.252279758E+00, !- Extended Field + 7.939831257E+00, !- Extended Field + 6.516568184E+00, !- Extended Field + 6.823448658E+00, !- Extended Field + 5.852448463E+00, !- Extended Field + 5.871208668E+00, !- Extended Field + 5.191219807E+00, !- Extended Field + 5.030898571E+00, !- Extended Field + 4.597279072E+00, !- Extended Field + 8.849281311E+00, !- Extended Field + 7.058192730E+00, !- Extended Field + 7.559077740E+00, !- Extended Field + 6.286509037E+00, !- Extended Field + 6.431177139E+00, !- Extended Field + 5.576091290E+00, !- Extended Field + 5.474384308E+00, !- Extended Field + 4.911129475E+00, !- Extended Field + 4.651689529E+00, !- Extended Field + 4.301459312E+00, !- Extended Field + 8.513233185E+00, !- Extended Field + 6.876799107E+00, !- Extended Field + 7.204495907E+00, !- Extended Field + 6.077554226E+00, !- Extended Field + 6.074626446E+00, !- Extended Field + 5.346198559E+00, !- Extended Field + 5.129953384E+00, !- Extended Field + 4.670117855E+00, !- Extended Field + 4.340476513E+00, !- Extended Field + 4.054257393E+00, !- Extended Field + 8.207801819E+00, !- Extended Field + 6.702101231E+00, !- Extended Field + 6.924942493E+00, !- Extended Field + 5.888763905E+00, !- Extended Field + 5.805573463E+00, !- Extended Field + 5.142550945E+00, !- Extended Field + 4.854315758E+00, !- Extended Field + 4.459012985E+00, !- Extended Field + 4.079491615E+00, !- Extended Field + 3.841983080E+00, !- Extended Field + 7.931069374E+00, !- Extended Field + 6.541901112E+00, !- Extended Field + 6.661171436E+00, !- Extended Field + 5.709294319E+00, !- Extended Field + 5.545248985E+00, !- Extended Field + 4.957357407E+00, !- Extended Field + 4.616483212E+00, !- Extended Field + 4.272239208E+00, !- Extended Field + 3.852596998E+00, !- Extended Field + 3.655979872E+00, !- Extended Field + 7.705205441E+00, !- Extended Field + 6.391744614E+00, !- Extended Field + 6.418684483E+00, !- Extended Field + 5.556859016E+00, !- Extended Field + 5.295624256E+00, !- Extended Field + 4.790678024E+00, !- Extended Field + 4.407533646E+00, !- Extended Field + 4.105903149E+00, !- Extended Field + 3.658605337E+00, !- Extended Field + 3.494282246E+00, !- Extended Field + 7.472298145E+00, !- Extended Field + 6.249140263E+00, !- Extended Field + 6.200608730E+00, !- Extended Field + 5.409336090E+00, !- Extended Field + 5.090443134E+00, !- Extended Field + 4.638459682E+00, !- Extended Field + 4.221858025E+00, !- Extended Field + 3.956446648E+00, !- Extended Field + 3.492646456E+00, !- Extended Field + 3.349242687E+00, !- Extended Field + 7.231474876E+00, !- Extended Field + 6.114164829E+00, !- Extended Field + 5.977272511E+00, !- Extended Field + 5.254069805E+00, !- Extended Field + 4.908604622E+00, !- Extended Field + 4.499501705E+00, !- Extended Field + 4.056106091E+00, !- Extended Field + 3.820527554E+00, !- Extended Field + 3.342195511E+00, !- Extended Field + 3.219460249E+00; !- Extended Field !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== diff --git a/testfiles/RefrigeratedWarehouse.idf b/testfiles/RefrigeratedWarehouse.idf index 88aaacec614..dac556b1aab 100644 --- a/testfiles/RefrigeratedWarehouse.idf +++ b/testfiles/RefrigeratedWarehouse.idf @@ -6247,724 +6247,738 @@ , !- Vertical Location ; !- Average Refrigerant Charge Inventory {kg} - Table:MultiVariableLookup, - ColmacCoilInc, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + ColmacCoilInc_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -34.5, !- Minimum Value + 10., !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -34.444, !- Value 1 + -31.666, !- Extended Field + -28.888, !- Extended Field + -26.111, !- Extended Field + -23.333, !- Extended Field + -20.555, !- Extended Field + -17.777, !- Extended Field + -15., !- Extended Field + -12.222, !- Extended Field + -9.444, !- Extended Field + -6.666, !- Extended Field + -3.888, !- Extended Field + -1.111, !- Extended Field + -1.110, !- Extended Field + 1.666, !- Extended Field + 4.44, !- Extended Field + 7.222, !- Extended Field + 10.; !- Extended Field + + Table:IndependentVariable, + ColmacCoilInc_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 4., !- Minimum Value + 12., !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 4., !- Value 1 + 5., !- Extended Field + 6., !- Extended Field + 7., !- Extended Field + 8., !- Extended Field + 9., !- Extended Field + 10., !- Extended Field + 11., !- Extended Field + 12.; !- Extended Field + + Table:IndependentVariable, + ColmacCoilInc_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.65, !- Minimum Value + 0.95, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1., !- Normalization Reference - -34.5, !- Minimum Value of X1 - 10., !- Maximum Value of X1 - 4., !- Minimum Value of X2 - 12., !- Maximum Value of X2 - 0.65, !- Minimum Value of X3 - 0.95, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.35, !- Minimum Table Output - 1.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + .65, !- Value 1 + .75, !- Extended Field + .85, !- Extended Field + .95; !- Extended Field + + Table:IndependentVariableList, + ColmacCoilInc_IndependentVariableList, !- Name + ColmacCoilInc_IndependentVariable1, !- Independent Variable 1 Name + ColmacCoilInc_IndependentVariable2, !- Extended Field + ColmacCoilInc_IndependentVariable3; !- Extended Field + + Table:Lookup, + ColmacCoilInc, !- Name + ColmacCoilInc_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1., !- Normalization Divisor + 0.35, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 18, !- Number of Values for Independent Variable X1 - 9, !- Field 1 Determined by the Number of Independent Variables - 4, !- Field 2 Determined by the Number of Independent Variables - -34.444, !- Field 3 Determined by the Number of Independent Variables - -31.666, !- - -28.888, !- - -26.111, !- - -23.333, !- - -20.555, !- - -17.777, !- - -15., !- - -12.222, !- - -9.444, !- - -6.666, !- - -3.888, !- - -1.111, !- - -1.110, !- - 1.666, !- - 4.44, !- - 7.222, !- - 10., !- - 4., !- - 5., !- - 6., !- - 7., !- - 8., !- - 9., !- - 10., !- - 11., !- - 12., !- - .65, !- - .75, !- - .85, !- - .95, !- - .65, !- - 1.466, !- - 1.468, !- - 1.468, !- - 1.468, !- - 1.468, !- - 1.468, !- - 1.468, !- - 1.468, !- - 1.468, !- - 1.468, !- - 1.468, !- - 1.468, !- - 1.893, !- - 1.468, !- - 1.893, !- - 1.893, !- - 1.893, !- - 1.893, !- - 1.166, !- - 1.167, !- - 1.167, !- - 1.165, !- - 1.162, !- - 1.158, !- - 1.155, !- - 1.152, !- - 1.151, !- - 1.153, !- - 1.16, !- - 1.174, !- - 1.515, !- - 1.174, !- - 1.515, !- - 1.515, !- - 1.515, !- - 1.515, !- - 0.969, !- - 0.968, !- - 0.967, !- - 0.964, !- - 0.96, !- - 0.954, !- - 0.947, !- - 0.94, !- - 0.934, !- - 0.927, !- - 0.923, !- - 0.921, !- - 1.19, !- - 0.922, !- - 1.197, !- - 1.212, !- - 1.238, !- - 1.262, !- - 0.828, !- - 0.828, !- - 0.826, !- - 0.823, !- - 0.818, !- - 0.812, !- - 0.805, !- - 0.796, !- - 0.787, !- - 0.778, !- - 0.769, !- - 0.761, !- - 0.973, !- - 0.754, !- - 0.967, !- - 0.963, !- - 0.964, !- - 0.971, !- - 0.724, !- - 0.723, !- - 0.721, !- - 0.718, !- - 0.713, !- - 0.707, !- - 0.7, !- - 0.691, !- - 0.682, !- - 0.671, !- - 0.661, !- - 0.65, !- - 0.826, !- - 0.64, !- - 0.814, !- - 0.804, !- - 0.795, !- - 0.789, !- - 0.642, !- - 0.642, !- - 0.64, !- - 0.637, !- - 0.633, !- - 0.627, !- - 0.62, !- - 0.611, !- - 0.602, !- - 0.591, !- - 0.58, !- - 0.569, !- - 0.72, !- - 0.558, !- - 0.706, !- - 0.692, !- - 0.68, !- - 0.669, !- - 0.578, !- - 0.577, !- - 0.576, !- - 0.573, !- - 0.569, !- - 0.563, !- - 0.557, !- - 0.549, !- - 0.539, !- - 0.529, !- - 0.518, !- - 0.507, !- - 0.64, !- - 0.495, !- - 0.625, !- - 0.61, !- - 0.596, !- - 0.583, !- - 0.525, !- - 0.524, !- - 0.523, !- - 0.52, !- - 0.517, !- - 0.512, !- - 0.506, !- - 0.498, !- - 0.489, !- - 0.48, !- - 0.469, !- - 0.458, !- - 0.576, !- - 0.446, !- - 0.561, !- - 0.546, !- - 0.532, !- - 0.518, !- - 0.481, !- - 0.48, !- - 0.479, !- - 0.477, !- - 0.474, !- - 0.469, !- - 0.463, !- - 0.456, !- - 0.448, !- - 0.439, !- - 0.429, !- - 0.418, !- - 0.525, !- - 0.407, !- - 0.511, !- - 0.496, !- - 0.481, !- - 0.467, !- - .75, !- - 1.452, !- - 1.451, !- - 1.448, !- - 1.443, !- - 1.435, !- - 1.425, !- - 1.414, !- - 1.403, !- - 1.392, !- - 1.383, !- - 1.377, !- - 1.375, !- - 1.781, !- - 1.38, !- - 1.797, !- - 1.828, !- - 1.879, !- - 1.893, !- - 1.158, !- - 1.156, !- - 1.152, !- - 1.146, !- - 1.137, !- - 1.126, !- - 1.113, !- - 1.099, !- - 1.083, !- - 1.067, !- - 1.052, !- - 1.037, !- - 1.322, !- - 1.024, !- - 1.308, !- - 1.298, !- - 1.293, !- - 1.295, !- - 0.963, !- - 0.961, !- - 0.957, !- - 0.951, !- - 0.943, !- - 0.932, !- - 0.919, !- - 0.905, !- - 0.889, !- - 0.872, !- - 0.854, !- - 0.836, !- - 1.057, !- - 0.818, !- - 1.035, !- - 1.015, !- - 0.997, !- - 0.981, !- - 0.824, !- - 0.822, !- - 0.819, !- - 0.813, !- - 0.806, !- - 0.796, !- - 0.784, !- - 0.771, !- - 0.755, !- - 0.739, !- - 0.721, !- - 0.703, !- - 0.884, !- - 0.684, !- - 0.861, !- - 0.838, !- - 0.816, !- - 0.796, !- - 0.72, !- - 0.719, !- - 0.716, !- - 0.711, !- - 0.704, !- - 0.695, !- - 0.685, !- - 0.672, !- - 0.658, !- - 0.642, !- - 0.625, !- - 0.608, !- - 0.762, !- - 0.59, !- - 0.739, !- - 0.716, !- - 0.694, !- - 0.673, !- - 0.64, !- - 0.638, !- - 0.636, !- - 0.631, !- - 0.625, !- - 0.618, !- - 0.608, !- - 0.596, !- - 0.583, !- - 0.569, !- - 0.553, !- - 0.536, !- - 0.671, !- - 0.52, !- - 0.649, !- - 0.627, !- - 0.606, !- - 0.585, !- - 0.576, !- - 0.574, !- - 0.572, !- - 0.568, !- - 0.563, !- - 0.556, !- - 0.547, !- - 0.537, !- - 0.524, !- - 0.511, !- - 0.496, !- - 0.481, !- - 0.601, !- - 0.465, !- - 0.58, !- - 0.559, !- - 0.539, !- - 0.518, !- - 0.523, !- - 0.522, !- - 0.52, !- - 0.517, !- - 0.512, !- - 0.505, !- - 0.498, !- - 0.488, !- - 0.477, !- - 0.464, !- - 0.451, !- - 0.437, !- - 0.545, !- - 0.422, !- - 0.525, !- - 0.505, !- - 0.486, !- - 0.467, !- - 0.479, !- - 0.478, !- - 0.477, !- - 0.474, !- - 0.469, !- - 0.464, !- - 0.456, !- - 0.448, !- - 0.438, !- - 0.426, !- - 0.414, !- - 0.4, !- - 0.499, !- - 0.386, !- - 0.481, !- - 0.462, !- - 0.444, !- - 0.425, !- - .85, !- - 1.439, !- - 1.434, !- - 1.426, !- - 1.414, !- - 1.397, !- - 1.377, !- - 1.353, !- - 1.326, !- - 1.296, !- - 1.264, !- - 1.231, !- - 1.197, !- - 1.503, !- - 1.164, !- - 1.461, !- - 1.42, !- - 1.382, !- - 1.346, !- - 1.149, !- - 1.145, !- - 1.138, !- - 1.128, !- - 1.114, !- - 1.096, !- - 1.075, !- - 1.051, !- - 1.024, !- - 0.996, !- - 0.965, !- - 0.934, !- - 1.166, !- - 0.903, !- - 1.126, !- - 1.086, !- - 1.048, !- - 1.011, !- - 0.957, !- - 0.953, !- - 0.947, !- - 0.938, !- - 0.927, !- - 0.912, !- - 0.894, !- - 0.873, !- - 0.849, !- - 0.824, !- - 0.797, !- - 0.769, !- - 0.956, !- - 0.74, !- - 0.92, !- - 0.884, !- - 0.848, !- - 0.814, !- - 0.82, !- - 0.817, !- - 0.812, !- - 0.804, !- - 0.794, !- - 0.781, !- - 0.765, !- - 0.747, !- - 0.726, !- - 0.704, !- - 0.68, !- - 0.655, !- - 0.813, !- - 0.629, !- - 0.78, !- - 0.747, !- - 0.715, !- - 0.684, !- - 0.717, !- - 0.715, !- - 0.71, !- - 0.704, !- - 0.695, !- - 0.684, !- - 0.67, !- - 0.654, !- - 0.636, !- - 0.616, !- - 0.594, !- - 0.572, !- - 0.709, !- - 0.549, !- - 0.679, !- - 0.65, !- - 0.62, !- - 0.592, !- - 0.637, !- - 0.635, !- - 0.631, !- - 0.626, !- - 0.618, !- - 0.609, !- - 0.596, !- - 0.582, !- - 0.566, !- - 0.548, !- - 0.529, !- - 0.508, !- - 0.63, !- - 0.487, !- - 0.603, !- - 0.576, !- - 0.549, !- - 0.523, !- - 0.574, !- - 0.572, !- - 0.568, !- - 0.564, !- - 0.557, !- - 0.548, !- - 0.538, !- - 0.525, !- - 0.51, !- - 0.494, !- - 0.477, !- - 0.458, !- - 0.568, !- - 0.439, !- - 0.543, !- - 0.518, !- - 0.494, !- - 0.47, !- - 0.521, !- - 0.52, !- - 0.517, !- - 0.513, !- - 0.507, !- - 0.499, !- - 0.49, !- - 0.478, !- - 0.465, !- - 0.451, !- - 0.435, !- - 0.418, !- - 0.517, !- - 0.4, !- - 0.494, !- - 0.472, !- - 0.449, !- - 0.427, !- - 0.478, !- - 0.477, !- - 0.474, !- - 0.47, !- - 0.465, !- - 0.459, !- - 0.45, !- - 0.44, !- - 0.428, !- - 0.414, !- - 0.4, !- - 0.384, !- - 0.476, !- - 0.368, !- - 0.455, !- - 0.434, !- - 0.413, !- - 0.392, !- - .95, !- - 1.427, !- - 1.418, !- - 1.404, !- - 1.386, !- - 1.362, !- - 1.333, !- - 1.298, !- - 1.259, !- - 1.215, !- - 1.168, !- - 1.118, !- - 1.068, !- - 1.315, !- - 1.017, !- - 1.25, !- - 1.187, !- - 1.125, !- - 1.067, !- - 1.141, !- - 1.135, !- - 1.124, !- - 1.11, !- - 1.091, !- - 1.068, !- - 1.04, !- - 1.009, !- - 0.973, !- - 0.935, !- - 0.895, !- - 0.854, !- - 1.05, !- - 0.813, !- - 0.997, !- - 0.946, !- - 0.896, !- - 0.848, !- - 0.951, !- - 0.946, !- - 0.938, !- - 0.926, !- - 0.911, !- - 0.892, !- - 0.869, !- - 0.843, !- - 0.814, !- - 0.782, !- - 0.748, !- - 0.714, !- - 0.877, !- - 0.679, !- - 0.833, !- - 0.789, !- - 0.747, !- - 0.706, !- - 0.816, !- - 0.811, !- - 0.805, !- - 0.795, !- - 0.783, !- - 0.767, !- - 0.748, !- - 0.725, !- - 0.7, !- - 0.673, !- - 0.644, !- - 0.615, !- - 0.755, !- - 0.584, !- - 0.717, !- - 0.679, !- - 0.642, !- - 0.607, !- - 0.714, !- - 0.71, !- - 0.705, !- - 0.697, !- - 0.686, !- - 0.673, !- - 0.656, !- - 0.637, !- - 0.616, !- - 0.592, !- - 0.567, !- - 0.541, !- - 0.665, !- - 0.514, !- - 0.631, !- - 0.597, !- - 0.564, !- - 0.533, !- - 0.635, !- - 0.632, !- - 0.627, !- - 0.62, !- - 0.611, !- - 0.6, !- - 0.586, !- - 0.569, !- - 0.55, !- - 0.529, !- - 0.507, !- - 0.484, !- - 0.595, !- - 0.46, !- - 0.564, !- - 0.534, !- - 0.505, !- - 0.477, !- - 0.572, !- - 0.569, !- - 0.565, !- - 0.559, !- - 0.551, !- - 0.541, !- - 0.529, !- - 0.514, !- - 0.497, !- - 0.479, !- - 0.459, !- - 0.438, !- - 0.539, !- - 0.417, !- - 0.511, !- - 0.484, !- - 0.457, !- - 0.432, !- - 0.52, !- - 0.518, !- - 0.514, !- - 0.509, !- - 0.502, !- - 0.493, !- - 0.482, !- - 0.469, !- - 0.454, !- - 0.438, !- - 0.42, !- - 0.401, !- - 0.493, !- - 0.382, !- - 0.468, !- - 0.443, !- - 0.419, !- - 0.396, !- - 0.477, !- - 0.475, !- - 0.472, !- - 0.467, !- - 0.461, !- - 0.454, !- - 0.444, !- - 0.432, !- - 0.418, !- - 0.403, !- - 0.387, !- - 0.37, !- - 0.455, !- - 0.352, !- - 0.432, !- - 0.409, !- - 0.387, !- - 0.365; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.466, !- Output Value 1 + 1.452, !- Extended Field + 1.439, !- Extended Field + 1.427, !- Extended Field + 1.166, !- Extended Field + 1.158, !- Extended Field + 1.149, !- Extended Field + 1.141, !- Extended Field + 0.969, !- Extended Field + 0.963, !- Extended Field + 0.957, !- Extended Field + 0.951, !- Extended Field + 0.828, !- Extended Field + 0.824, !- Extended Field + 0.82, !- Extended Field + 0.816, !- Extended Field + 0.724, !- Extended Field + 0.72, !- Extended Field + 0.717, !- Extended Field + 0.714, !- Extended Field + 0.642, !- Extended Field + 0.64, !- Extended Field + 0.637, !- Extended Field + 0.635, !- Extended Field + 0.578, !- Extended Field + 0.576, !- Extended Field + 0.574, !- Extended Field + 0.572, !- Extended Field + 0.525, !- Extended Field + 0.523, !- Extended Field + 0.521, !- Extended Field + 0.52, !- Extended Field + 0.481, !- Extended Field + 0.479, !- Extended Field + 0.478, !- Extended Field + 0.477, !- Extended Field + 1.468, !- Extended Field + 1.451, !- Extended Field + 1.434, !- Extended Field + 1.418, !- Extended Field + 1.167, !- Extended Field + 1.156, !- Extended Field + 1.145, !- Extended Field + 1.135, !- Extended Field + 0.968, !- Extended Field + 0.961, !- Extended Field + 0.953, !- Extended Field + 0.946, !- Extended Field + 0.828, !- Extended Field + 0.822, !- Extended Field + 0.817, !- Extended Field + 0.811, !- Extended Field + 0.723, !- Extended Field + 0.719, !- Extended Field + 0.715, !- Extended Field + 0.71, !- Extended Field + 0.642, !- Extended Field + 0.638, !- Extended Field + 0.635, !- Extended Field + 0.632, !- Extended Field + 0.577, !- Extended Field + 0.574, !- Extended Field + 0.572, !- Extended Field + 0.569, !- Extended Field + 0.524, !- Extended Field + 0.522, !- Extended Field + 0.52, !- Extended Field + 0.518, !- Extended Field + 0.48, !- Extended Field + 0.478, !- Extended Field + 0.477, !- Extended Field + 0.475, !- Extended Field + 1.468, !- Extended Field + 1.448, !- Extended Field + 1.426, !- Extended Field + 1.404, !- Extended Field + 1.167, !- Extended Field + 1.152, !- Extended Field + 1.138, !- Extended Field + 1.124, !- Extended Field + 0.967, !- Extended Field + 0.957, !- Extended Field + 0.947, !- Extended Field + 0.938, !- Extended Field + 0.826, !- Extended Field + 0.819, !- Extended Field + 0.812, !- Extended Field + 0.805, !- Extended Field + 0.721, !- Extended Field + 0.716, !- Extended Field + 0.71, !- Extended Field + 0.705, !- Extended Field + 0.64, !- Extended Field + 0.636, !- Extended Field + 0.631, !- Extended Field + 0.627, !- Extended Field + 0.576, !- Extended Field + 0.572, !- Extended Field + 0.568, !- Extended Field + 0.565, !- Extended Field + 0.523, !- Extended Field + 0.52, !- Extended Field + 0.517, !- Extended Field + 0.514, !- Extended Field + 0.479, !- Extended Field + 0.477, !- Extended Field + 0.474, !- Extended Field + 0.472, !- Extended Field + 1.468, !- Extended Field + 1.443, !- Extended Field + 1.414, !- Extended Field + 1.386, !- Extended Field + 1.165, !- Extended Field + 1.146, !- Extended Field + 1.128, !- Extended Field + 1.11, !- Extended Field + 0.964, !- Extended Field + 0.951, !- Extended Field + 0.938, !- Extended Field + 0.926, !- Extended Field + 0.823, !- Extended Field + 0.813, !- Extended Field + 0.804, !- Extended Field + 0.795, !- Extended Field + 0.718, !- Extended Field + 0.711, !- Extended Field + 0.704, !- Extended Field + 0.697, !- Extended Field + 0.637, !- Extended Field + 0.631, !- Extended Field + 0.626, !- Extended Field + 0.62, !- Extended Field + 0.573, !- Extended Field + 0.568, !- Extended Field + 0.564, !- Extended Field + 0.559, !- Extended Field + 0.52, !- Extended Field + 0.517, !- Extended Field + 0.513, !- Extended Field + 0.509, !- Extended Field + 0.477, !- Extended Field + 0.474, !- Extended Field + 0.47, !- Extended Field + 0.467, !- Extended Field + 1.468, !- Extended Field + 1.435, !- Extended Field + 1.397, !- Extended Field + 1.362, !- Extended Field + 1.162, !- Extended Field + 1.137, !- Extended Field + 1.114, !- Extended Field + 1.091, !- Extended Field + 0.96, !- Extended Field + 0.943, !- Extended Field + 0.927, !- Extended Field + 0.911, !- Extended Field + 0.818, !- Extended Field + 0.806, !- Extended Field + 0.794, !- Extended Field + 0.783, !- Extended Field + 0.713, !- Extended Field + 0.704, !- Extended Field + 0.695, !- Extended Field + 0.686, !- Extended Field + 0.633, !- Extended Field + 0.625, !- Extended Field + 0.618, !- Extended Field + 0.611, !- Extended Field + 0.569, !- Extended Field + 0.563, !- Extended Field + 0.557, !- Extended Field + 0.551, !- Extended Field + 0.517, !- Extended Field + 0.512, !- Extended Field + 0.507, !- Extended Field + 0.502, !- Extended Field + 0.474, !- Extended Field + 0.469, !- Extended Field + 0.465, !- Extended Field + 0.461, !- Extended Field + 1.468, !- Extended Field + 1.425, !- Extended Field + 1.377, !- Extended Field + 1.333, !- Extended Field + 1.158, !- Extended Field + 1.126, !- Extended Field + 1.096, !- Extended Field + 1.068, !- Extended Field + 0.954, !- Extended Field + 0.932, !- Extended Field + 0.912, !- Extended Field + 0.892, !- Extended Field + 0.812, !- Extended Field + 0.796, !- Extended Field + 0.781, !- Extended Field + 0.767, !- Extended Field + 0.707, !- Extended Field + 0.695, !- Extended Field + 0.684, !- Extended Field + 0.673, !- Extended Field + 0.627, !- Extended Field + 0.618, !- Extended Field + 0.609, !- Extended Field + 0.6, !- Extended Field + 0.563, !- Extended Field + 0.556, !- Extended Field + 0.548, !- Extended Field + 0.541, !- Extended Field + 0.512, !- Extended Field + 0.505, !- Extended Field + 0.499, !- Extended Field + 0.493, !- Extended Field + 0.469, !- Extended Field + 0.464, !- Extended Field + 0.459, !- Extended Field + 0.454, !- Extended Field + 1.468, !- Extended Field + 1.414, !- Extended Field + 1.353, !- Extended Field + 1.298, !- Extended Field + 1.155, !- Extended Field + 1.113, !- Extended Field + 1.075, !- Extended Field + 1.04, !- Extended Field + 0.947, !- Extended Field + 0.919, !- Extended Field + 0.894, !- Extended Field + 0.869, !- Extended Field + 0.805, !- Extended Field + 0.784, !- Extended Field + 0.765, !- Extended Field + 0.748, !- Extended Field + 0.7, !- Extended Field + 0.685, !- Extended Field + 0.67, !- Extended Field + 0.656, !- Extended Field + 0.62, !- Extended Field + 0.608, !- Extended Field + 0.596, !- Extended Field + 0.586, !- Extended Field + 0.557, !- Extended Field + 0.547, !- Extended Field + 0.538, !- Extended Field + 0.529, !- Extended Field + 0.506, !- Extended Field + 0.498, !- Extended Field + 0.49, !- Extended Field + 0.482, !- Extended Field + 0.463, !- Extended Field + 0.456, !- Extended Field + 0.45, !- Extended Field + 0.444, !- Extended Field + 1.468, !- Extended Field + 1.403, !- Extended Field + 1.326, !- Extended Field + 1.259, !- Extended Field + 1.152, !- Extended Field + 1.099, !- Extended Field + 1.051, !- Extended Field + 1.009, !- Extended Field + 0.94, !- Extended Field + 0.905, !- Extended Field + 0.873, !- Extended Field + 0.843, !- Extended Field + 0.796, !- Extended Field + 0.771, !- Extended Field + 0.747, !- Extended Field + 0.725, !- Extended Field + 0.691, !- Extended Field + 0.672, !- Extended Field + 0.654, !- Extended Field + 0.637, !- Extended Field + 0.611, !- Extended Field + 0.596, !- Extended Field + 0.582, !- Extended Field + 0.569, !- Extended Field + 0.549, !- Extended Field + 0.537, !- Extended Field + 0.525, !- Extended Field + 0.514, !- Extended Field + 0.498, !- Extended Field + 0.488, !- Extended Field + 0.478, !- Extended Field + 0.469, !- Extended Field + 0.456, !- Extended Field + 0.448, !- Extended Field + 0.44, !- Extended Field + 0.432, !- Extended Field + 1.468, !- Extended Field + 1.392, !- Extended Field + 1.296, !- Extended Field + 1.215, !- Extended Field + 1.151, !- Extended Field + 1.083, !- Extended Field + 1.024, !- Extended Field + 0.973, !- Extended Field + 0.934, !- Extended Field + 0.889, !- Extended Field + 0.849, !- Extended Field + 0.814, !- Extended Field + 0.787, !- Extended Field + 0.755, !- Extended Field + 0.726, !- Extended Field + 0.7, !- Extended Field + 0.682, !- Extended Field + 0.658, !- Extended Field + 0.636, !- Extended Field + 0.616, !- Extended Field + 0.602, !- Extended Field + 0.583, !- Extended Field + 0.566, !- Extended Field + 0.55, !- Extended Field + 0.539, !- Extended Field + 0.524, !- Extended Field + 0.51, !- Extended Field + 0.497, !- Extended Field + 0.489, !- Extended Field + 0.477, !- Extended Field + 0.465, !- Extended Field + 0.454, !- Extended Field + 0.448, !- Extended Field + 0.438, !- Extended Field + 0.428, !- Extended Field + 0.418, !- Extended Field + 1.468, !- Extended Field + 1.383, !- Extended Field + 1.264, !- Extended Field + 1.168, !- Extended Field + 1.153, !- Extended Field + 1.067, !- Extended Field + 0.996, !- Extended Field + 0.935, !- Extended Field + 0.927, !- Extended Field + 0.872, !- Extended Field + 0.824, !- Extended Field + 0.782, !- Extended Field + 0.778, !- Extended Field + 0.739, !- Extended Field + 0.704, !- Extended Field + 0.673, !- Extended Field + 0.671, !- Extended Field + 0.642, !- Extended Field + 0.616, !- Extended Field + 0.592, !- Extended Field + 0.591, !- Extended Field + 0.569, !- Extended Field + 0.548, !- Extended Field + 0.529, !- Extended Field + 0.529, !- Extended Field + 0.511, !- Extended Field + 0.494, !- Extended Field + 0.479, !- Extended Field + 0.48, !- Extended Field + 0.464, !- Extended Field + 0.451, !- Extended Field + 0.438, !- Extended Field + 0.439, !- Extended Field + 0.426, !- Extended Field + 0.414, !- Extended Field + 0.403, !- Extended Field + 1.468, !- Extended Field + 1.377, !- Extended Field + 1.231, !- Extended Field + 1.118, !- Extended Field + 1.16, !- Extended Field + 1.052, !- Extended Field + 0.965, !- Extended Field + 0.895, !- Extended Field + 0.923, !- Extended Field + 0.854, !- Extended Field + 0.797, !- Extended Field + 0.748, !- Extended Field + 0.769, !- Extended Field + 0.721, !- Extended Field + 0.68, !- Extended Field + 0.644, !- Extended Field + 0.661, !- Extended Field + 0.625, !- Extended Field + 0.594, !- Extended Field + 0.567, !- Extended Field + 0.58, !- Extended Field + 0.553, !- Extended Field + 0.529, !- Extended Field + 0.507, !- Extended Field + 0.518, !- Extended Field + 0.496, !- Extended Field + 0.477, !- Extended Field + 0.459, !- Extended Field + 0.469, !- Extended Field + 0.451, !- Extended Field + 0.435, !- Extended Field + 0.42, !- Extended Field + 0.429, !- Extended Field + 0.414, !- Extended Field + 0.4, !- Extended Field + 0.387, !- Extended Field + 1.468, !- Extended Field + 1.375, !- Extended Field + 1.197, !- Extended Field + 1.068, !- Extended Field + 1.174, !- Extended Field + 1.037, !- Extended Field + 0.934, !- Extended Field + 0.854, !- Extended Field + 0.921, !- Extended Field + 0.836, !- Extended Field + 0.769, !- Extended Field + 0.714, !- Extended Field + 0.761, !- Extended Field + 0.703, !- Extended Field + 0.655, !- Extended Field + 0.615, !- Extended Field + 0.65, !- Extended Field + 0.608, !- Extended Field + 0.572, !- Extended Field + 0.541, !- Extended Field + 0.569, !- Extended Field + 0.536, !- Extended Field + 0.508, !- Extended Field + 0.484, !- Extended Field + 0.507, !- Extended Field + 0.481, !- Extended Field + 0.458, !- Extended Field + 0.438, !- Extended Field + 0.458, !- Extended Field + 0.437, !- Extended Field + 0.418, !- Extended Field + 0.401, !- Extended Field + 0.418, !- Extended Field + 0.4, !- Extended Field + 0.384, !- Extended Field + 0.37, !- Extended Field + 1.893, !- Extended Field + 1.781, !- Extended Field + 1.503, !- Extended Field + 1.315, !- Extended Field + 1.515, !- Extended Field + 1.322, !- Extended Field + 1.166, !- Extended Field + 1.05, !- Extended Field + 1.19, !- Extended Field + 1.057, !- Extended Field + 0.956, !- Extended Field + 0.877, !- Extended Field + 0.973, !- Extended Field + 0.884, !- Extended Field + 0.813, !- Extended Field + 0.755, !- Extended Field + 0.826, !- Extended Field + 0.762, !- Extended Field + 0.709, !- Extended Field + 0.665, !- Extended Field + 0.72, !- Extended Field + 0.671, !- Extended Field + 0.63, !- Extended Field + 0.595, !- Extended Field + 0.64, !- Extended Field + 0.601, !- Extended Field + 0.568, !- Extended Field + 0.539, !- Extended Field + 0.576, !- Extended Field + 0.545, !- Extended Field + 0.517, !- Extended Field + 0.493, !- Extended Field + 0.525, !- Extended Field + 0.499, !- Extended Field + 0.476, !- Extended Field + 0.455, !- Extended Field + 1.468, !- Extended Field + 1.38, !- Extended Field + 1.164, !- Extended Field + 1.017, !- Extended Field + 1.174, !- Extended Field + 1.024, !- Extended Field + 0.903, !- Extended Field + 0.813, !- Extended Field + 0.922, !- Extended Field + 0.818, !- Extended Field + 0.74, !- Extended Field + 0.679, !- Extended Field + 0.754, !- Extended Field + 0.684, !- Extended Field + 0.629, !- Extended Field + 0.584, !- Extended Field + 0.64, !- Extended Field + 0.59, !- Extended Field + 0.549, !- Extended Field + 0.514, !- Extended Field + 0.558, !- Extended Field + 0.52, !- Extended Field + 0.487, !- Extended Field + 0.46, !- Extended Field + 0.495, !- Extended Field + 0.465, !- Extended Field + 0.439, !- Extended Field + 0.417, !- Extended Field + 0.446, !- Extended Field + 0.422, !- Extended Field + 0.4, !- Extended Field + 0.382, !- Extended Field + 0.407, !- Extended Field + 0.386, !- Extended Field + 0.368, !- Extended Field + 0.352, !- Extended Field + 1.893, !- Extended Field + 1.797, !- Extended Field + 1.461, !- Extended Field + 1.25, !- Extended Field + 1.515, !- Extended Field + 1.308, !- Extended Field + 1.126, !- Extended Field + 0.997, !- Extended Field + 1.197, !- Extended Field + 1.035, !- Extended Field + 0.92, !- Extended Field + 0.833, !- Extended Field + 0.967, !- Extended Field + 0.861, !- Extended Field + 0.78, !- Extended Field + 0.717, !- Extended Field + 0.814, !- Extended Field + 0.739, !- Extended Field + 0.679, !- Extended Field + 0.631, !- Extended Field + 0.706, !- Extended Field + 0.649, !- Extended Field + 0.603, !- Extended Field + 0.564, !- Extended Field + 0.625, !- Extended Field + 0.58, !- Extended Field + 0.543, !- Extended Field + 0.511, !- Extended Field + 0.561, !- Extended Field + 0.525, !- Extended Field + 0.494, !- Extended Field + 0.468, !- Extended Field + 0.511, !- Extended Field + 0.481, !- Extended Field + 0.455, !- Extended Field + 0.432, !- Extended Field + 1.893, !- Extended Field + 1.828, !- Extended Field + 1.42, !- Extended Field + 1.187, !- Extended Field + 1.515, !- Extended Field + 1.298, !- Extended Field + 1.086, !- Extended Field + 0.946, !- Extended Field + 1.212, !- Extended Field + 1.015, !- Extended Field + 0.884, !- Extended Field + 0.789, !- Extended Field + 0.963, !- Extended Field + 0.838, !- Extended Field + 0.747, !- Extended Field + 0.679, !- Extended Field + 0.804, !- Extended Field + 0.716, !- Extended Field + 0.65, !- Extended Field + 0.597, !- Extended Field + 0.692, !- Extended Field + 0.627, !- Extended Field + 0.576, !- Extended Field + 0.534, !- Extended Field + 0.61, !- Extended Field + 0.559, !- Extended Field + 0.518, !- Extended Field + 0.484, !- Extended Field + 0.546, !- Extended Field + 0.505, !- Extended Field + 0.472, !- Extended Field + 0.443, !- Extended Field + 0.496, !- Extended Field + 0.462, !- Extended Field + 0.434, !- Extended Field + 0.409, !- Extended Field + 1.893, !- Extended Field + 1.879, !- Extended Field + 1.382, !- Extended Field + 1.125, !- Extended Field + 1.515, !- Extended Field + 1.293, !- Extended Field + 1.048, !- Extended Field + 0.896, !- Extended Field + 1.238, !- Extended Field + 0.997, !- Extended Field + 0.848, !- Extended Field + 0.747, !- Extended Field + 0.964, !- Extended Field + 0.816, !- Extended Field + 0.715, !- Extended Field + 0.642, !- Extended Field + 0.795, !- Extended Field + 0.694, !- Extended Field + 0.62, !- Extended Field + 0.564, !- Extended Field + 0.68, !- Extended Field + 0.606, !- Extended Field + 0.549, !- Extended Field + 0.505, !- Extended Field + 0.596, !- Extended Field + 0.539, !- Extended Field + 0.494, !- Extended Field + 0.457, !- Extended Field + 0.532, !- Extended Field + 0.486, !- Extended Field + 0.449, !- Extended Field + 0.419, !- Extended Field + 0.481, !- Extended Field + 0.444, !- Extended Field + 0.413, !- Extended Field + 0.387, !- Extended Field + 1.893, !- Extended Field + 1.893, !- Extended Field + 1.346, !- Extended Field + 1.067, !- Extended Field + 1.515, !- Extended Field + 1.295, !- Extended Field + 1.011, !- Extended Field + 0.848, !- Extended Field + 1.262, !- Extended Field + 0.981, !- Extended Field + 0.814, !- Extended Field + 0.706, !- Extended Field + 0.971, !- Extended Field + 0.796, !- Extended Field + 0.684, !- Extended Field + 0.607, !- Extended Field + 0.789, !- Extended Field + 0.673, !- Extended Field + 0.592, !- Extended Field + 0.533, !- Extended Field + 0.669, !- Extended Field + 0.585, !- Extended Field + 0.523, !- Extended Field + 0.477, !- Extended Field + 0.583, !- Extended Field + 0.518, !- Extended Field + 0.47, !- Extended Field + 0.432, !- Extended Field + 0.518, !- Extended Field + 0.467, !- Extended Field + 0.427, !- Extended Field + 0.396, !- Extended Field + 0.467, !- Extended Field + 0.425, !- Extended Field + 0.392, !- Extended Field + 0.365; !- Extended Field ! Freezer-1AirChiller_2 is an example of a European rating ! FrigiBohn 2010 catalog: NKH4x8DC1 diff --git a/testfiles/RetailPackagedTESCoil.idf b/testfiles/RetailPackagedTESCoil.idf index 7a63772199d..13cdbfea8c9 100644 --- a/testfiles/RetailPackagedTESCoil.idf +++ b/testfiles/RetailPackagedTESCoil.idf @@ -4197,1423 +4197,613 @@ -100, !- Minimum Value of y 100; !- Maximum Value of y - Table:TwoIndependentVariables, + Table:IndependentVariable, + ChargeOnly-Cap-fT_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -100, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -30.00000, !- Value 1 + -22.00000, !- Extended Field + -14.00000, !- Extended Field + -6.00000, !- Extended Field + 2.00000, !- Extended Field + 10.00000, !- Extended Field + 18.00000, !- Extended Field + 26.00000, !- Extended Field + 34.00000, !- Extended Field + 42.00000, !- Extended Field + 50.00000; !- Extended Field + + Table:IndependentVariable, + ChargeOnly-Cap-fT_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + .00000, !- Value 1 + .01650, !- Extended Field + .03300, !- Extended Field + .04950, !- Extended Field + .06600, !- Extended Field + .08250, !- Extended Field + .09900, !- Extended Field + .11550, !- Extended Field + .13200, !- Extended Field + .14850, !- Extended Field + .16500, !- Extended Field + .24850, !- Extended Field + .33200, !- Extended Field + .41550, !- Extended Field + .49900, !- Extended Field + .58250, !- Extended Field + .66600, !- Extended Field + .74950, !- Extended Field + .83300, !- Extended Field + .91650, !- Extended Field + 1.00000; !- Extended Field + + Table:IndependentVariableList, + ChargeOnly-Cap-fT_IndependentVariableList, !- Name + ChargeOnly-Cap-fT_IndependentVariable1, !- Independent Variable 1 Name + ChargeOnly-Cap-fT_IndependentVariable2; !- Extended Field + + Table:Lookup, ChargeOnly-Cap-fT, !- Name - BiQuadratic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - -100, !- Minimum Value of X - 100, !- Maximum Value of X - 0, !- Minimum Value of Y - 1, !- Maximum Value of Y - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X - Dimensionless, !- Input Unit Type for Y + ChargeOnly-Cap-fT_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference , !- External File Name - -30, !- X Value #1 - 0.0000, !- Y Value #1 - 1.49824556678101, !- Output Value #1 - -30, !- X Value #2 - 0.0165, !- Y Value #2 - 1.46806170364912, !- Output Value #2 - -30, !- X Value #3 - 0.0330, !- Y Value #3 - 1.44052617800393, !- Output Value #3 - -30, !- X Value #4 - 0.0495, !- Y Value #4 - 1.41563898984543, !- Output Value #4 - -30, !- - 0.0660, !- - 1.39340013917363, !- - -30, !- - 0.0825, !- - 1.37380962598852, !- - -30, !- - 0.0990, !- - 1.35686745029011, !- - -30, !- - 0.1155, !- - 1.3425736120784, !- - -30, !- - 0.1320, !- - 1.33092811135338, !- - -30, !- - 0.1485, !- - 1.32193094811506, !- - -30, !- - 0.1650, !- - 1.42668437190192, !- - -30, !- - 0.2485, !- - 1.41338906040552, !- - -30, !- - 0.3320, !- - 1.40035311136274, !- - -30, !- - 0.4155, !- - 1.3875765247736, !- - -30, !- - 0.4990, !- - 1.37505930063809, !- - -30, !- - 0.5825, !- - 1.36280143895621, !- - -30, !- - 0.6660, !- - 1.35080293972796, !- - -30, !- - 0.7495, !- - 1.33906380295334, !- - -30, !- - 0.8330, !- - 1.32758402863235, !- - -30, !- - 0.9165, !- - 1.31636361676499, !- - -30, !- - 1.0000, !- - 1.30540256735126, !- - -22, !- - 0.0000, !- - 1.50015546707142, !- - -22, !- - 0.0165, !- - 1.4705835604194, !- - -22, !- - 0.0330, !- - 1.44365999125407, !- - -22, !- - 0.0495, !- - 1.41938475957544, !- - -22, !- - 0.0660, !- - 1.3977578653835, !- - -22, !- - 0.0825, !- - 1.37877930867826, !- - -22, !- - 0.0990, !- - 1.36244908945972, !- - -22, !- - 0.1155, !- - 1.34876720772787, !- - -22, !- - 0.1320, !- - 1.33773366348272, !- - -22, !- - 0.1485, !- - 1.32934845672426, !- - -22, !- - 0.1650, !- - 1.40282715364577, !- - -22, !- - 0.2485, !- - 1.39042093324161, !- - -22, !- - 0.3320, !- - 1.37827407529108, !- - -22, !- - 0.4155, !- - 1.36638657979418, !- - -22, !- - 0.4990, !- - 1.35475844675091, !- - -22, !- - 0.5825, !- - 1.34338967616127, !- - -22, !- - 0.6660, !- - 1.33228026802526, !- - -22, !- - 0.7495, !- - 1.32143022234288, !- - -22, !- - 0.8330, !- - 1.31083953911413, !- - -22, !- - 0.9165, !- - 1.30050821833902, !- - -22, !- - 1.0000, !- - 1.29043626001753, !- - -14, !- - 0.0000, !- - 1.48443264447972, !- - -14, !- - 0.0165, !- - 1.45547269430757, !- - -14, !- - 0.0330, !- - 1.4291610816221, !- - -14, !- - 0.0495, !- - 1.40549780642334, !- - -14, !- - 0.0660, !- - 1.38448286871126, !- - -14, !- - 0.0825, !- - 1.36611626848589, !- - -14, !- - 0.0990, !- - 1.35039800574721, !- - -14, !- - 0.1155, !- - 1.33732808049523, !- - -14, !- - 0.1320, !- - 1.32690649272994, !- - -14, !- - 0.1485, !- - 1.31913324245135, !- - -14, !- - 0.1650, !- - 1.3664290373131, !- - -14, !- - 0.2485, !- - 1.35491190800118, !- - -14, !- - 0.3320, !- - 1.34365414114289, !- - -14, !- - 0.4155, !- - 1.33265573673823, !- - -14, !- - 0.4990, !- - 1.3219166947872, !- - -14, !- - 0.5825, !- - 1.31143701528981, !- - -14, !- - 0.6660, !- - 1.30121669824604, !- - -14, !- - 0.7495, !- - 1.2912557436559, !- - -14, !- - 0.8330, !- - 1.2815541515194, !- - -14, !- - 0.9165, !- - 1.27211192183652, !- - -14, !- - 1.0000, !- - 1.26292905460728, !- - -6, !- - 0.0000, !- - 1.45107709900591, !- - -6, !- - 0.0165, !- - 1.42272910531362, !- - -6, !- - 0.0330, !- - 1.39702944910802, !- - -6, !- - 0.0495, !- - 1.37397813038912, !- - -6, !- - 0.0660, !- - 1.35357514915692, !- - -6, !- - 0.0825, !- - 1.33582050541141, !- - -6, !- - 0.0990, !- - 1.32071419915259, !- - -6, !- - 0.1155, !- - 1.30825623038047, !- - -6, !- - 0.1320, !- - 1.29844659909505, !- - -6, !- - 0.1485, !- - 1.29128530529632, !- - -6, !- - 0.1650, !- - 1.31749002290391, !- - -6, !- - 0.2485, !- - 1.30686198468423, !- - -6, !- - 0.3320, !- - 1.29649330891818, !- - -6, !- - 0.4155, !- - 1.28638399560576, !- - -6, !- - 0.4990, !- - 1.27653404474698, !- - -6, !- - 0.5825, !- - 1.26694345634182, !- - -6, !- - 0.6660, !- - 1.25761223039029, !- - -6, !- - 0.7495, !- - 1.2485403668924, !- - -6, !- - 0.8330, !- - 1.23972786584814, !- - -6, !- - 0.9165, !- - 1.2311747272575, !- - -6, !- - 1.0000, !- - 1.2228809511205, !- - 2, !- - 0.0000, !- - 1.40008883064999, !- - 2, !- - 0.0165, !- - 1.37235279343756, !- - 2, !- - 0.0330, !- - 1.34726509371183, !- - 2, !- - 0.0495, !- - 1.32482573147279, !- - 2, !- - 0.0660, !- - 1.30503470672045, !- - 2, !- - 0.0825, !- - 1.28789201945481, !- - 2, !- - 0.0990, !- - 1.27339766967586, !- - 2, !- - 0.1155, !- - 1.26155165738361, !- - 2, !- - 0.1320, !- - 1.25235398257805, !- - 2, !- - 0.1485, !- - 1.24580464525919, !- - 2, !- - 0.1650, !- - 1.25601011041819, !- - 2, !- - 0.2485, !- - 1.24627116329075, !- - 2, !- - 0.3320, !- - 1.23679157861694, !- - 2, !- - 0.4155, !- - 1.22757135639677, !- - 2, !- - 0.4990, !- - 1.21861049663022, !- - 2, !- - 0.5825, !- - 1.20990899931731, !- - 2, !- - 0.6660, !- - 1.20146686445803, !- - 2, !- - 0.7495, !- - 1.19328409205237, !- - 2, !- - 0.8330, !- - 1.18536068210035, !- - 2, !- - 0.9165, !- - 1.17769663460196, !- - 2, !- - 1.0000, !- - 1.1702919495572, !- - 10, !- - 0.0000, !- - 1.33146783941196, !- - 10, !- - 0.0165, !- - 1.30434375867939, !- - 10, !- - 0.0330, !- - 1.27986801543353, !- - 10, !- - 0.0495, !- - 1.25804060967436, !- - 10, !- - 0.0660, !- - 1.23886154140188, !- - 10, !- - 0.0825, !- - 1.2223308106161, !- - 10, !- - 0.0990, !- - 1.20844841731702, !- - 10, !- - 0.1155, !- - 1.19721436150463, !- - 10, !- - 0.1320, !- - 1.18862864317894, !- - 10, !- - 0.1485, !- - 1.18269126233994, !- - 10, !- - 0.1650, !- - 1.18198929985595, !- - 10, !- - 0.2485, !- - 1.17313944382075, !- - 10, !- - 0.3320, !- - 1.16454895023919, !- - 10, !- - 0.4155, !- - 1.15621781911125, !- - 10, !- - 0.4990, !- - 1.14814605043695, !- - 10, !- - 0.5825, !- - 1.14033364421628, !- - 10, !- - 0.6660, !- - 1.13278060044923, !- - 10, !- - 0.7495, !- - 1.12548691913582, !- - 10, !- - 0.8330, !- - 1.11845260027604, !- - 10, !- - 0.9165, !- - 1.11167764386989, !- - 10, !- - 1.0000, !- - 1.10516204991738, !- - 18, !- - 0.0000, !- - 1.24521412529181, !- - 18, !- - 0.0165, !- - 1.21870200103912, !- - 18, !- - 0.0330, !- - 1.19483821427311, !- - 18, !- - 0.0495, !- - 1.17362276499381, !- - 18, !- - 0.0660, !- - 1.1550556532012, !- - 18, !- - 0.0825, !- - 1.13913687889529, !- - 18, !- - 0.0990, !- - 1.12586644207607, !- - 18, !- - 0.1155, !- - 1.11524434274355, !- - 18, !- - 0.1320, !- - 1.10727058089772, !- - 18, !- - 0.1485, !- - 1.10194515653859, !- - 18, !- - 0.1650, !- - 1.09542759121718, !- - 18, !- - 0.2485, !- - 1.08746682627423, !- - 18, !- - 0.3320, !- - 1.0797654237849, !- - 18, !- - 0.4155, !- - 1.07232338374921, !- - 18, !- - 0.4990, !- - 1.06514070616715, !- - 18, !- - 0.5825, !- - 1.05821739103872, !- - 18, !- - 0.6660, !- - 1.05155343836392, !- - 18, !- - 0.7495, !- - 1.04514884814275, !- - 18, !- - 0.8330, !- - 1.03900362037521, !- - 18, !- - 0.9165, !- - 1.0331177550613, !- - 18, !- - 1.0000, !- - 1.02749125220103, !- - 26, !- - 0.0000, !- - 1.14132768828956, !- - 26, !- - 0.0165, !- - 1.11542752051673, !- - 26, !- - 0.0330, !- - 1.09217569023059, !- - 26, !- - 0.0495, !- - 1.07157219743115, !- - 26, !- - 0.0660, !- - 1.05361704211841, !- - 26, !- - 0.0825, !- - 1.03831022429236, !- - 26, !- - 0.0990, !- - 1.025651743953, !- - 26, !- - 0.1155, !- - 1.01564160110035, !- - 26, !- - 0.1320, !- - 1.00827979573439, !- - 26, !- - 0.1485, !- - 1.00356632785512, !- - 26, !- - 0.1650, !- - 0.996324984501889, !- - 26, !- - 0.2485, !- - 0.989253310651177, !- - 26, !- - 0.3320, !- - 0.982440999254095, !- - 26, !- - 0.4155, !- - 0.975888050310645, !- - 26, !- - 0.4990, !- - 0.969594463820825, !- - 26, !- - 0.5825, !- - 0.963560239784636, !- - 26, !- - 0.6660, !- - 0.957785378202078, !- - 26, !- - 0.7495, !- - 0.952269879073151, !- - 26, !- - 0.8330, !- - 0.947013742397854, !- - 26, !- - 0.9165, !- - 0.942016968176189, !- - 26, !- - 1.0000, !- - 0.937279556408154, !- - 34, !- - 0.0000, !- - 1.01980852840519, !- - 34, !- - 0.0165, !- - 0.994520317112224, !- - 34, !- - 0.0330, !- - 0.971880443305954, !- - 34, !- - 0.0495, !- - 0.951888906986379, !- - 34, !- - 0.0660, !- - 0.9345457081535, !- - 34, !- - 0.0825, !- - 0.919850846807317, !- - 34, !- - 0.0990, !- - 0.90780432294783, !- - 34, !- - 0.1155, !- - 0.898406136575038, !- - 34, !- - 0.1320, !- - 0.891656287688942, !- - 34, !- - 0.1485, !- - 0.887554776289542, !- - 34, !- - 0.1650, !- - 0.884681479710075, !- - 34, !- - 0.2485, !- - 0.878498896951605, !- - 34, !- - 0.3320, !- - 0.872575676646765, !- - 34, !- - 0.4155, !- - 0.866911818795556, !- - 34, !- - 0.4990, !- - 0.861507323397978, !- - 34, !- - 0.5825, !- - 0.856362190454031, !- - 34, !- - 0.6660, !- - 0.851476419963715, !- - 34, !- - 0.7495, !- - 0.846850011927029, !- - 34, !- - 0.8330, !- - 0.842482966343974, !- - 34, !- - 0.9165, !- - 0.838375283214551, !- - 34, !- - 1.0000, !- - 0.834526962538758, !- - 42, !- - 0.0000, !- - 0.880656645638712, !- - 42, !- - 0.0165, !- - 0.855980390825611, !- - 42, !- - 0.0330, !- - 0.833952473499206, !- - 42, !- - 0.0495, !- - 0.814572893659497, !- - 42, !- - 0.0660, !- - 0.797841651306483, !- - 42, !- - 0.0825, !- - 0.783758746440166, !- - 42, !- - 0.0990, !- - 0.772324179060544, !- - 42, !- - 0.1155, !- - 0.763537949167617, !- - 42, !- - 0.1320, !- - 0.757400056761387, !- - 42, !- - 0.1485, !- - 0.753910501841852, !- - 42, !- - 0.1650, !- - 0.760497076841737, !- - 42, !- - 0.2485, !- - 0.755203585175508, !- - 42, !- - 0.3320, !- - 0.75016945596291, !- - 42, !- - 0.4155, !- - 0.745394689203943, !- - 42, !- - 0.4990, !- - 0.740879284898607, !- - 42, !- - 0.5825, !- - 0.736623243046902, !- - 42, !- - 0.6660, !- - 0.732626563648827, !- - 42, !- - 0.7495, !- - 0.728889246704383, !- - 42, !- - 0.8330, !- - 0.72541129221357, !- - 42, !- - 0.9165, !- - 0.722192700176388, !- - 42, !- - 1.0000, !- - 0.719233470592837, !- - 50, !- - 0.0000, !- - 0.723872039990123, !- - 50, !- - 0.0165, !- - 0.699807741656888, !- - 50, !- - 0.0330, !- - 0.678391780810348, !- - 50, !- - 0.0495, !- - 0.659624157450504, !- - 50, !- - 0.0660, !- - 0.643504871577356, !- - 50, !- - 0.0825, !- - 0.630033923190903, !- - 50, !- - 0.0990, !- - 0.619211312291147, !- - 50, !- - 0.1155, !- - 0.611037038878086, !- - 50, !- - 0.1320, !- - 0.605511102951721, !- - 50, !- - 0.1485, !- - 0.602633504512051, !- - 50, !- - 0.1650, !- - 0.623771775896875, !- - 50, !- - 0.2485, !- - 0.619367375322888, !- - 50, !- - 0.3320, !- - 0.615222337202532, !- - 50, !- - 0.4155, !- - 0.611336661535807, !- - 50, !- - 0.4990, !- - 0.607710348322712, !- - 50, !- - 0.5825, !- - 0.604343397563249, !- - 50, !- - 0.6660, !- - 0.601235809257416, !- - 50, !- - 0.7495, !- - 0.598387583405214, !- - 50, !- - 0.8330, !- - 0.595798720006643, !- - 50, !- - 0.9165, !- - 0.593469219061702, !- - 50, !- - 1.0000, !- - 0.591399080570393; !- - - Table:TwoIndependentVariables, + , !- External File Column Number + , !- External File Starting Row Number + 1.49824556678101, !- Output Value 1 + 1.46806170364912, !- Extended Field + 1.44052617800393, !- Extended Field + 1.41563898984543, !- Extended Field + 1.39340013917363, !- Extended Field + 1.37380962598852, !- Extended Field + 1.35686745029011, !- Extended Field + 1.3425736120784, !- Extended Field + 1.33092811135338, !- Extended Field + 1.32193094811506, !- Extended Field + 1.42668437190192, !- Extended Field + 1.41338906040552, !- Extended Field + 1.40035311136274, !- Extended Field + 1.3875765247736, !- Extended Field + 1.37505930063809, !- Extended Field + 1.36280143895621, !- Extended Field + 1.35080293972796, !- Extended Field + 1.33906380295334, !- Extended Field + 1.32758402863235, !- Extended Field + 1.31636361676499, !- Extended Field + 1.30540256735126, !- Extended Field + 1.50015546707142, !- Extended Field + 1.4705835604194, !- Extended Field + 1.44365999125407, !- Extended Field + 1.41938475957544, !- Extended Field + 1.3977578653835, !- Extended Field + 1.37877930867826, !- Extended Field + 1.36244908945972, !- Extended Field + 1.34876720772787, !- Extended Field + 1.33773366348272, !- Extended Field + 1.32934845672426, !- Extended Field + 1.40282715364577, !- Extended Field + 1.39042093324161, !- Extended Field + 1.37827407529108, !- Extended Field + 1.36638657979418, !- Extended Field + 1.35475844675091, !- Extended Field + 1.34338967616127, !- Extended Field + 1.33228026802526, !- Extended Field + 1.32143022234288, !- Extended Field + 1.31083953911413, !- Extended Field + 1.30050821833902, !- Extended Field + 1.29043626001753, !- Extended Field + 1.48443264447972, !- Extended Field + 1.45547269430757, !- Extended Field + 1.4291610816221, !- Extended Field + 1.40549780642334, !- Extended Field + 1.38448286871126, !- Extended Field + 1.36611626848589, !- Extended Field + 1.35039800574721, !- Extended Field + 1.33732808049523, !- Extended Field + 1.32690649272994, !- Extended Field + 1.31913324245135, !- Extended Field + 1.3664290373131, !- Extended Field + 1.35491190800118, !- Extended Field + 1.34365414114289, !- Extended Field + 1.33265573673823, !- Extended Field + 1.3219166947872, !- Extended Field + 1.31143701528981, !- Extended Field + 1.30121669824604, !- Extended Field + 1.2912557436559, !- Extended Field + 1.2815541515194, !- Extended Field + 1.27211192183652, !- Extended Field + 1.26292905460728, !- Extended Field + 1.45107709900591, !- Extended Field + 1.42272910531362, !- Extended Field + 1.39702944910802, !- Extended Field + 1.37397813038912, !- Extended Field + 1.35357514915692, !- Extended Field + 1.33582050541141, !- Extended Field + 1.32071419915259, !- Extended Field + 1.30825623038047, !- Extended Field + 1.29844659909505, !- Extended Field + 1.29128530529632, !- Extended Field + 1.31749002290391, !- Extended Field + 1.30686198468423, !- Extended Field + 1.29649330891818, !- Extended Field + 1.28638399560576, !- Extended Field + 1.27653404474698, !- Extended Field + 1.26694345634182, !- Extended Field + 1.25761223039029, !- Extended Field + 1.2485403668924, !- Extended Field + 1.23972786584814, !- Extended Field + 1.2311747272575, !- Extended Field + 1.2228809511205, !- Extended Field + 1.40008883064999, !- Extended Field + 1.37235279343756, !- Extended Field + 1.34726509371183, !- Extended Field + 1.32482573147279, !- Extended Field + 1.30503470672045, !- Extended Field + 1.28789201945481, !- Extended Field + 1.27339766967586, !- Extended Field + 1.26155165738361, !- Extended Field + 1.25235398257805, !- Extended Field + 1.24580464525919, !- Extended Field + 1.25601011041819, !- Extended Field + 1.24627116329075, !- Extended Field + 1.23679157861694, !- Extended Field + 1.22757135639677, !- Extended Field + 1.21861049663022, !- Extended Field + 1.20990899931731, !- Extended Field + 1.20146686445803, !- Extended Field + 1.19328409205237, !- Extended Field + 1.18536068210035, !- Extended Field + 1.17769663460196, !- Extended Field + 1.1702919495572, !- Extended Field + 1.33146783941196, !- Extended Field + 1.30434375867939, !- Extended Field + 1.27986801543353, !- Extended Field + 1.25804060967436, !- Extended Field + 1.23886154140188, !- Extended Field + 1.2223308106161, !- Extended Field + 1.20844841731702, !- Extended Field + 1.19721436150463, !- Extended Field + 1.18862864317894, !- Extended Field + 1.18269126233994, !- Extended Field + 1.18198929985595, !- Extended Field + 1.17313944382075, !- Extended Field + 1.16454895023919, !- Extended Field + 1.15621781911125, !- Extended Field + 1.14814605043695, !- Extended Field + 1.14033364421628, !- Extended Field + 1.13278060044923, !- Extended Field + 1.12548691913582, !- Extended Field + 1.11845260027604, !- Extended Field + 1.11167764386989, !- Extended Field + 1.10516204991738, !- Extended Field + 1.24521412529181, !- Extended Field + 1.21870200103912, !- Extended Field + 1.19483821427311, !- Extended Field + 1.17362276499381, !- Extended Field + 1.1550556532012, !- Extended Field + 1.13913687889529, !- Extended Field + 1.12586644207607, !- Extended Field + 1.11524434274355, !- Extended Field + 1.10727058089772, !- Extended Field + 1.10194515653859, !- Extended Field + 1.09542759121718, !- Extended Field + 1.08746682627423, !- Extended Field + 1.0797654237849, !- Extended Field + 1.07232338374921, !- Extended Field + 1.06514070616715, !- Extended Field + 1.05821739103872, !- Extended Field + 1.05155343836392, !- Extended Field + 1.04514884814275, !- Extended Field + 1.03900362037521, !- Extended Field + 1.0331177550613, !- Extended Field + 1.02749125220103, !- Extended Field + 1.14132768828956, !- Extended Field + 1.11542752051673, !- Extended Field + 1.09217569023059, !- Extended Field + 1.07157219743115, !- Extended Field + 1.05361704211841, !- Extended Field + 1.03831022429236, !- Extended Field + 1.025651743953, !- Extended Field + 1.01564160110035, !- Extended Field + 1.00827979573439, !- Extended Field + 1.00356632785512, !- Extended Field + 0.996324984501889, !- Extended Field + 0.989253310651177, !- Extended Field + 0.982440999254095, !- Extended Field + 0.975888050310645, !- Extended Field + 0.969594463820825, !- Extended Field + 0.963560239784636, !- Extended Field + 0.957785378202078, !- Extended Field + 0.952269879073151, !- Extended Field + 0.947013742397854, !- Extended Field + 0.942016968176189, !- Extended Field + 0.937279556408154, !- Extended Field + 1.01980852840519, !- Extended Field + 0.994520317112224, !- Extended Field + 0.971880443305954, !- Extended Field + 0.951888906986379, !- Extended Field + 0.9345457081535, !- Extended Field + 0.919850846807317, !- Extended Field + 0.90780432294783, !- Extended Field + 0.898406136575038, !- Extended Field + 0.891656287688942, !- Extended Field + 0.887554776289542, !- Extended Field + 0.884681479710075, !- Extended Field + 0.878498896951605, !- Extended Field + 0.872575676646765, !- Extended Field + 0.866911818795556, !- Extended Field + 0.861507323397978, !- Extended Field + 0.856362190454031, !- Extended Field + 0.851476419963715, !- Extended Field + 0.846850011927029, !- Extended Field + 0.842482966343974, !- Extended Field + 0.838375283214551, !- Extended Field + 0.834526962538758, !- Extended Field + 0.880656645638712, !- Extended Field + 0.855980390825611, !- Extended Field + 0.833952473499206, !- Extended Field + 0.814572893659497, !- Extended Field + 0.797841651306483, !- Extended Field + 0.783758746440166, !- Extended Field + 0.772324179060544, !- Extended Field + 0.763537949167617, !- Extended Field + 0.757400056761387, !- Extended Field + 0.753910501841852, !- Extended Field + 0.760497076841737, !- Extended Field + 0.755203585175508, !- Extended Field + 0.75016945596291, !- Extended Field + 0.745394689203943, !- Extended Field + 0.740879284898607, !- Extended Field + 0.736623243046902, !- Extended Field + 0.732626563648827, !- Extended Field + 0.728889246704383, !- Extended Field + 0.72541129221357, !- Extended Field + 0.722192700176388, !- Extended Field + 0.719233470592837, !- Extended Field + 0.723872039990123, !- Extended Field + 0.699807741656888, !- Extended Field + 0.678391780810348, !- Extended Field + 0.659624157450504, !- Extended Field + 0.643504871577356, !- Extended Field + 0.630033923190903, !- Extended Field + 0.619211312291147, !- Extended Field + 0.611037038878086, !- Extended Field + 0.605511102951721, !- Extended Field + 0.602633504512051, !- Extended Field + 0.623771775896875, !- Extended Field + 0.619367375322888, !- Extended Field + 0.615222337202532, !- Extended Field + 0.611336661535807, !- Extended Field + 0.607710348322712, !- Extended Field + 0.604343397563249, !- Extended Field + 0.601235809257416, !- Extended Field + 0.598387583405214, !- Extended Field + 0.595798720006643, !- Extended Field + 0.593469219061702, !- Extended Field + 0.591399080570393; !- Extended Field + + Table:IndependentVariable, + ChargeOnly-EIR-fT_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -100, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -30.00000, !- Value 1 + -22.00000, !- Extended Field + -14.00000, !- Extended Field + -6.00000, !- Extended Field + 2.00000, !- Extended Field + 10.00000, !- Extended Field + 18.00000, !- Extended Field + 26.00000, !- Extended Field + 34.00000, !- Extended Field + 42.00000, !- Extended Field + 50.00000; !- Extended Field + + Table:IndependentVariable, + ChargeOnly-EIR-fT_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + .00000, !- Value 1 + .01650, !- Extended Field + .03300, !- Extended Field + .04950, !- Extended Field + .06600, !- Extended Field + .08250, !- Extended Field + .09900, !- Extended Field + .11550, !- Extended Field + .13200, !- Extended Field + .14850, !- Extended Field + .16500, !- Extended Field + .24850, !- Extended Field + .33200, !- Extended Field + .41550, !- Extended Field + .49900, !- Extended Field + .58250, !- Extended Field + .66600, !- Extended Field + .74950, !- Extended Field + .83300, !- Extended Field + .91650, !- Extended Field + 1.00000; !- Extended Field + + Table:IndependentVariableList, + ChargeOnly-EIR-fT_IndependentVariableList, !- Name + ChargeOnly-EIR-fT_IndependentVariable1, !- Independent Variable 1 Name + ChargeOnly-EIR-fT_IndependentVariable2; !- Extended Field + + Table:Lookup, ChargeOnly-EIR-fT, !- Name - BiQuadratic, !- Curve Type - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - -100, !- Minimum Value of X - 100, !- Maximum Value of X - 0, !- Minimum Value of Y - 1, !- Maximum Value of Y - , !- Minimum Table Output - , !- Maximum Table Output - Temperature, !- Input Unit Type for X - Dimensionless, !- Input Unit Type for Y + ChargeOnly-EIR-fT_IndependentVariableList, !- Independent Variable List Name + , !- Normalization Method + , !- Normalization Divisor + , !- Minimum Output + , !- Maximum Output Dimensionless, !- Output Unit Type - , !- Normalization Reference , !- External File Name - -30, !- X Value #1 - 0.0000, !- Y Value #1 - 1.510765188, !- Output Value #1 - -30, !- X Value #2 - 0.0165, !- Y Value #2 - 1.51113820746276, !- Output Value #2 - -30, !- X Value #3 - 0.0330, !- Y Value #3 - 1.51071413909006, !- Output Value #3 - -30, !- X Value #4 - 0.0495, !- Y Value #4 - 1.50949298288187, !- Output Value #4 - -30, !- - 0.0660, !- - 1.50747473883822, !- - -30, !- - 0.0825, !- - 1.50465940695909, !- - -30, !- - 0.0990, !- - 1.5010469872445, !- - -30, !- - 0.1155, !- - 1.49663747969442, !- - -30, !- - 0.1320, !- - 1.49143088430888, !- - -30, !- - 0.1485, !- - 1.48542720108786, !- - -30, !- - 0.1650, !- - 1.3408428051994, !- - -30, !- - 0.2485, !- - 1.33798668570241, !- - -30, !- - 0.3320, !- - 1.33510998668922, !- - -30, !- - 0.4155, !- - 1.33221270815981, !- - -30, !- - 0.4990, !- - 1.32929485011418, !- - -30, !- - 0.5825, !- - 1.32635641255235, !- - -30, !- - 0.6660, !- - 1.3233973954743, !- - -30, !- - 0.7495, !- - 1.32041779888005, !- - -30, !- - 0.8330, !- - 1.31741762276958, !- - -30, !- - 0.9165, !- - 1.31439686714289, !- - -30, !- - 1.0000, !- - 1.311355532, !- - -22, !- - 0.0000, !- - 1.136458956, !- - -22, !- - 0.0165, !- - 1.13867291544276, !- - -22, !- - 0.0330, !- - 1.14008978705006, !- - -22, !- - 0.0495, !- - 1.14070957082187, !- - -22, !- - 0.0660, !- - 1.14053226675822, !- - -22, !- - 0.0825, !- - 1.13955787485909, !- - -22, !- - 0.0990, !- - 1.1377863951245, !- - -22, !- - 0.1155, !- - 1.13521782755442, !- - -22, !- - 0.1320, !- - 1.13185217214888, !- - -22, !- - 0.1485, !- - 1.12768942890786, !- - -22, !- - 0.1650, !- - 1.0231481569594, !- - -22, !- - 0.2485, !- - 1.02151088228641, !- - -22, !- - 0.3320, !- - 1.01985302809722, !- - -22, !- - 0.4155, !- - 1.01817459439181, !- - -22, !- - 0.4990, !- - 1.01647558117018, !- - -22, !- - 0.5825, !- - 1.01475598843235, !- - -22, !- - 0.6660, !- - 1.0130158161783, !- - -22, !- - 0.7495, !- - 1.01125506440805, !- - -22, !- - 0.8330, !- - 1.00947373312158, !- - -22, !- - 0.9165, !- - 1.00767182231889, !- - -22, !- - 1.0000, !- - 1.005849332, !- - -14, !- - 0.0000, !- - 0.860350612, !- - -14, !- - 0.0165, !- - 0.864405511422764, !- - -14, !- - 0.0330, !- - 0.867663323010055, !- - -14, !- - 0.0495, !- - 0.870124046761874, !- - -14, !- - 0.0660, !- - 0.87178768267822, !- - -14, !- - 0.0825, !- - 0.872654230759094, !- - -14, !- - 0.0990, !- - 0.872723691004495, !- - -14, !- - 0.1155, !- - 0.871996063414424, !- - -14, !- - 0.1320, !- - 0.87047134798888, !- - -14, !- - 0.1485, !- - 0.868149544727864, !- - -14, !- - 0.1650, !- - 0.7975331247194, !- - -14, !- - 0.2485, !- - 0.797114694870414, !- - -14, !- - 0.3320, !- - 0.796675685505216, !- - -14, !- - 0.4155, !- - 0.796216096623806, !- - -14, !- - 0.4990, !- - 0.795735928226184, !- - -14, !- - 0.5825, !- - 0.79523518031235, !- - -14, !- - 0.6660, !- - 0.794713852882304, !- - -14, !- - 0.7495, !- - 0.794171945936046, !- - -14, !- - 0.8330, !- - 0.793609459473576, !- - -14, !- - 0.9165, !- - 0.793026393494894, !- - -14, !- - 1.0000, !- - 0.792422748, !- - -6, !- - 0.0000, !- - 0.682440156, !- - -6, !- - 0.0165, !- - 0.688335995402764, !- - -6, !- - 0.0330, !- - 0.693434746970055, !- - -6, !- - 0.0495, !- - 0.697736410701874, !- - -6, !- - 0.0660, !- - 0.70124098659822, !- - -6, !- - 0.0825, !- - 0.703948474659094, !- - -6, !- - 0.0990, !- - 0.705858874884495, !- - -6, !- - 0.1155, !- - 0.706972187274424, !- - -6, !- - 0.1320, !- - 0.70728841182888, !- - -6, !- - 0.1485, !- - 0.706807548547864, !- - -6, !- - 0.1650, !- - 0.6639977084794, !- - -6, !- - 0.2485, !- - 0.664798123454414, !- - -6, !- - 0.3320, !- - 0.665577958913216, !- - -6, !- - 0.4155, !- - 0.666337214855806, !- - -6, !- - 0.4990, !- - 0.667075891282184, !- - -6, !- - 0.5825, !- - 0.66779398819235, !- - -6, !- - 0.6660, !- - 0.668491505586304, !- - -6, !- - 0.7495, !- - 0.669168443464046, !- - -6, !- - 0.8330, !- - 0.669824801825576, !- - -6, !- - 0.9165, !- - 0.670460580670894, !- - -6, !- - 1.0000, !- - 0.67107578, !- - 2, !- - 0.0000, !- - 0.602727588, !- - 2, !- - 0.0165, !- - 0.610464367382764, !- - 2, !- - 0.0330, !- - 0.617404058930055, !- - 2, !- - 0.0495, !- - 0.623546662641874, !- - 2, !- - 0.0660, !- - 0.62889217851822, !- - 2, !- - 0.0825, !- - 0.633440606559094, !- - 2, !- - 0.0990, !- - 0.637191946764495, !- - 2, !- - 0.1155, !- - 0.640146199134424, !- - 2, !- - 0.1320, !- - 0.64230336366888, !- - 2, !- - 0.1485, !- - 0.643663440367864, !- - 2, !- - 0.1650, !- - 0.6225419082394, !- - 2, !- - 0.2485, !- - 0.624561168038414, !- - 2, !- - 0.3320, !- - 0.626559848321216, !- - 2, !- - 0.4155, !- - 0.628537949087806, !- - 2, !- - 0.4990, !- - 0.630495470338184, !- - 2, !- - 0.5825, !- - 0.63243241207235, !- - 2, !- - 0.6660, !- - 0.634348774290304, !- - 2, !- - 0.7495, !- - 0.636244556992046, !- - 2, !- - 0.8330, !- - 0.638119760177576, !- - 2, !- - 0.9165, !- - 0.639974383846894, !- - 2, !- - 1.0000, !- - 0.641808428, !- - 10, !- - 0.0000, !- - 0.621212908, !- - 10, !- - 0.0165, !- - 0.630790627362764, !- - 10, !- - 0.0330, !- - 0.639571258890055, !- - 10, !- - 0.0495, !- - 0.647554802581874, !- - 10, !- - 0.0660, !- - 0.65474125843822, !- - 10, !- - 0.0825, !- - 0.661130626459094, !- - 10, !- - 0.0990, !- - 0.666722906644495, !- - 10, !- - 0.1155, !- - 0.671518098994424, !- - 10, !- - 0.1320, !- - 0.67551620350888, !- - 10, !- - 0.1485, !- - 0.678717220187864, !- - 10, !- - 0.1650, !- - 0.6731657239994, !- - 10, !- - 0.2485, !- - 0.676403828622414, !- - 10, !- - 0.3320, !- - 0.679621353729216, !- - 10, !- - 0.4155, !- - 0.682818299319806, !- - 10, !- - 0.4990, !- - 0.685994665394184, !- - 10, !- - 0.5825, !- - 0.68915045195235, !- - 10, !- - 0.6660, !- - 0.692285658994304, !- - 10, !- - 0.7495, !- - 0.695400286520046, !- - 10, !- - 0.8330, !- - 0.698494334529576, !- - 10, !- - 0.9165, !- - 0.701567803022894, !- - 10, !- - 1.0000, !- - 0.704620692, !- - 18, !- - 0.0000, !- - 0.737896116, !- - 18, !- - 0.0165, !- - 0.749314775342764, !- - 18, !- - 0.0330, !- - 0.759936346850055, !- - 18, !- - 0.0495, !- - 0.769760830521874, !- - 18, !- - 0.0660, !- - 0.77878822635822, !- - 18, !- - 0.0825, !- - 0.787018534359094, !- - 18, !- - 0.0990, !- - 0.794451754524495, !- - 18, !- - 0.1155, !- - 0.801087886854424, !- - 18, !- - 0.1320, !- - 0.80692693134888, !- - 18, !- - 0.1485, !- - 0.811968888007864, !- - 18, !- - 0.1650, !- - 0.8158691557594, !- - 18, !- - 0.2485, !- - 0.820326105206414, !- - 18, !- - 0.3320, !- - 0.824762475137216, !- - 18, !- - 0.4155, !- - 0.829178265551806, !- - 18, !- - 0.4990, !- - 0.833573476450184, !- - 18, !- - 0.5825, !- - 0.83794810783235, !- - 18, !- - 0.6660, !- - 0.842302159698304, !- - 18, !- - 0.7495, !- - 0.846635632048046, !- - 18, !- - 0.8330, !- - 0.850948524881576, !- - 18, !- - 0.9165, !- - 0.855240838198894, !- - 18, !- - 1.0000, !- - 0.859512572, !- - 26, !- - 0.0000, !- - 0.952777212, !- - 26, !- - 0.0165, !- - 0.966036811322764, !- - 26, !- - 0.0330, !- - 0.978499322810055, !- - 26, !- - 0.0495, !- - 0.990164746461874, !- - 26, !- - 0.0660, !- - 1.00103308227822, !- - 26, !- - 0.0825, !- - 1.01110433025909, !- - 26, !- - 0.0990, !- - 1.0203784904045, !- - 26, !- - 0.1155, !- - 1.02885556271442, !- - 26, !- - 0.1320, !- - 1.03653554718888, !- - 26, !- - 0.1485, !- - 1.04341844382786, !- - 26, !- - 0.1650, !- - 1.0506522035194, !- - 26, !- - 0.2485, !- - 1.05632799779041, !- - 26, !- - 0.3320, !- - 1.06198321254522, !- - 26, !- - 0.4155, !- - 1.06761784778381, !- - 26, !- - 0.4990, !- - 1.07323190350618, !- - 26, !- - 0.5825, !- - 1.07882537971235, !- - 26, !- - 0.6660, !- - 1.0843982764023, !- - 26, !- - 0.7495, !- - 1.08995059357605, !- - 26, !- - 0.8330, !- - 1.09548233123358, !- - 26, !- - 0.9165, !- - 1.10099348937489, !- - 26, !- - 1.0000, !- - 1.106484068, !- - 34, !- - 0.0000, !- - 1.265856196, !- - 34, !- - 0.0165, !- - 1.28095673530276, !- - 34, !- - 0.0330, !- - 1.29526018677006, !- - 34, !- - 0.0495, !- - 1.30876655040187, !- - 34, !- - 0.0660, !- - 1.32147582619822, !- - 34, !- - 0.0825, !- - 1.33338801415909, !- - 34, !- - 0.0990, !- - 1.3445031142845, !- - 34, !- - 0.1155, !- - 1.35482112657442, !- - 34, !- - 0.1320, !- - 1.36434205102888, !- - 34, !- - 0.1485, !- - 1.37306588764786, !- - 34, !- - 0.1650, !- - 1.3775148672794, !- - 34, !- - 0.2485, !- - 1.38440950637441, !- - 34, !- - 0.3320, !- - 1.39128356595322, !- - 34, !- - 0.4155, !- - 1.39813704601581, !- - 34, !- - 0.4990, !- - 1.40496994656218, !- - 34, !- - 0.5825, !- - 1.41178226759235, !- - 34, !- - 0.6660, !- - 1.4185740091063, !- - 34, !- - 0.7495, !- - 1.42534517110405, !- - 34, !- - 0.8330, !- - 1.43209575358558, !- - 34, !- - 0.9165, !- - 1.43882575655089, !- - 34, !- - 1.0000, !- - 1.44553518, !- - 42, !- - 0.0000, !- - 1.677133068, !- - 42, !- - 0.0165, !- - 1.69407454728276, !- - 42, !- - 0.0330, !- - 1.71021893873006, !- - 42, !- - 0.0495, !- - 1.72556624234187, !- - 42, !- - 0.0660, !- - 1.74011645811822, !- - 42, !- - 0.0825, !- - 1.75386958605909, !- - 42, !- - 0.0990, !- - 1.7668256261645, !- - 42, !- - 0.1155, !- - 1.77898457843442, !- - 42, !- - 0.1320, !- - 1.79034644286888, !- - 42, !- - 0.1485, !- - 1.80091121946786, !- - 42, !- - 0.1650, !- - 1.7964571470394, !- - 42, !- - 0.2485, !- - 1.80457063095841, !- - 42, !- - 0.3320, !- - 1.81266353536122, !- - 42, !- - 0.4155, !- - 1.82073586024781, !- - 42, !- - 0.4990, !- - 1.82878760561818, !- - 42, !- - 0.5825, !- - 1.83681877147235, !- - 42, !- - 0.6660, !- - 1.8448293578103, !- - 42, !- - 0.7495, !- - 1.85281936463205, !- - 42, !- - 0.8330, !- - 1.86078879193758, !- - 42, !- - 0.9165, !- - 1.86873763972689, !- - 42, !- - 1.0000, !- - 1.876665908, !- - 50, !- - 0.0000, !- - 2.186607828, !- - 50, !- - 0.0165, !- - 2.20539024726276, !- - 50, !- - 0.0330, !- - 2.22337557869005, !- - 50, !- - 0.0495, !- - 2.24056382228187, !- - 50, !- - 0.0660, !- - 2.25695497803822, !- - 50, !- - 0.0825, !- - 2.27254904595909, !- - 50, !- - 0.0990, !- - 2.28734602604449, !- - 50, !- - 0.1155, !- - 2.30134591829442, !- - 50, !- - 0.1320, !- - 2.31454872270888, !- - 50, !- - 0.1485, !- - 2.32695443928786, !- - 50, !- - 0.1650, !- - 2.3074790427994, !- - 50, !- - 0.2485, !- - 2.31681137154241, !- - 50, !- - 0.3320, !- - 2.32612312076922, !- - 50, !- - 0.4155, !- - 2.33541429047981, !- - 50, !- - 0.4990, !- - 2.34468488067418, !- - 50, !- - 0.5825, !- - 2.35393489135235, !- - 50, !- - 0.6660, !- - 2.3631643225143, !- - 50, !- - 0.7495, !- - 2.37237317416005, !- - 50, !- - 0.8330, !- - 2.38156144628958, !- - 50, !- - 0.9165, !- - 2.39072913890289, !- - 50, !- - 1.0000, !- - 2.399876252; !- + , !- External File Column Number + , !- External File Starting Row Number + 1.510765188, !- Output Value 1 + 1.51113820746276, !- Extended Field + 1.51071413909006, !- Extended Field + 1.50949298288187, !- Extended Field + 1.50747473883822, !- Extended Field + 1.50465940695909, !- Extended Field + 1.5010469872445, !- Extended Field + 1.49663747969442, !- Extended Field + 1.49143088430888, !- Extended Field + 1.48542720108786, !- Extended Field + 1.3408428051994, !- Extended Field + 1.33798668570241, !- Extended Field + 1.33510998668922, !- Extended Field + 1.33221270815981, !- Extended Field + 1.32929485011418, !- Extended Field + 1.32635641255235, !- Extended Field + 1.3233973954743, !- Extended Field + 1.32041779888005, !- Extended Field + 1.31741762276958, !- Extended Field + 1.31439686714289, !- Extended Field + 1.311355532, !- Extended Field + 1.136458956, !- Extended Field + 1.13867291544276, !- Extended Field + 1.14008978705006, !- Extended Field + 1.14070957082187, !- Extended Field + 1.14053226675822, !- Extended Field + 1.13955787485909, !- Extended Field + 1.1377863951245, !- Extended Field + 1.13521782755442, !- Extended Field + 1.13185217214888, !- Extended Field + 1.12768942890786, !- Extended Field + 1.0231481569594, !- Extended Field + 1.02151088228641, !- Extended Field + 1.01985302809722, !- Extended Field + 1.01817459439181, !- Extended Field + 1.01647558117018, !- Extended Field + 1.01475598843235, !- Extended Field + 1.0130158161783, !- Extended Field + 1.01125506440805, !- Extended Field + 1.00947373312158, !- Extended Field + 1.00767182231889, !- Extended Field + 1.005849332, !- Extended Field + 0.860350612, !- Extended Field + 0.864405511422764, !- Extended Field + 0.867663323010055, !- Extended Field + 0.870124046761874, !- Extended Field + 0.87178768267822, !- Extended Field + 0.872654230759094, !- Extended Field + 0.872723691004495, !- Extended Field + 0.871996063414424, !- Extended Field + 0.87047134798888, !- Extended Field + 0.868149544727864, !- Extended Field + 0.7975331247194, !- Extended Field + 0.797114694870414, !- Extended Field + 0.796675685505216, !- Extended Field + 0.796216096623806, !- Extended Field + 0.795735928226184, !- Extended Field + 0.79523518031235, !- Extended Field + 0.794713852882304, !- Extended Field + 0.794171945936046, !- Extended Field + 0.793609459473576, !- Extended Field + 0.793026393494894, !- Extended Field + 0.792422748, !- Extended Field + 0.682440156, !- Extended Field + 0.688335995402764, !- Extended Field + 0.693434746970055, !- Extended Field + 0.697736410701874, !- Extended Field + 0.70124098659822, !- Extended Field + 0.703948474659094, !- Extended Field + 0.705858874884495, !- Extended Field + 0.706972187274424, !- Extended Field + 0.70728841182888, !- Extended Field + 0.706807548547864, !- Extended Field + 0.6639977084794, !- Extended Field + 0.664798123454414, !- Extended Field + 0.665577958913216, !- Extended Field + 0.666337214855806, !- Extended Field + 0.667075891282184, !- Extended Field + 0.66779398819235, !- Extended Field + 0.668491505586304, !- Extended Field + 0.669168443464046, !- Extended Field + 0.669824801825576, !- Extended Field + 0.670460580670894, !- Extended Field + 0.67107578, !- Extended Field + 0.602727588, !- Extended Field + 0.610464367382764, !- Extended Field + 0.617404058930055, !- Extended Field + 0.623546662641874, !- Extended Field + 0.62889217851822, !- Extended Field + 0.633440606559094, !- Extended Field + 0.637191946764495, !- Extended Field + 0.640146199134424, !- Extended Field + 0.64230336366888, !- Extended Field + 0.643663440367864, !- Extended Field + 0.6225419082394, !- Extended Field + 0.624561168038414, !- Extended Field + 0.626559848321216, !- Extended Field + 0.628537949087806, !- Extended Field + 0.630495470338184, !- Extended Field + 0.63243241207235, !- Extended Field + 0.634348774290304, !- Extended Field + 0.636244556992046, !- Extended Field + 0.638119760177576, !- Extended Field + 0.639974383846894, !- Extended Field + 0.641808428, !- Extended Field + 0.621212908, !- Extended Field + 0.630790627362764, !- Extended Field + 0.639571258890055, !- Extended Field + 0.647554802581874, !- Extended Field + 0.65474125843822, !- Extended Field + 0.661130626459094, !- Extended Field + 0.666722906644495, !- Extended Field + 0.671518098994424, !- Extended Field + 0.67551620350888, !- Extended Field + 0.678717220187864, !- Extended Field + 0.6731657239994, !- Extended Field + 0.676403828622414, !- Extended Field + 0.679621353729216, !- Extended Field + 0.682818299319806, !- Extended Field + 0.685994665394184, !- Extended Field + 0.68915045195235, !- Extended Field + 0.692285658994304, !- Extended Field + 0.695400286520046, !- Extended Field + 0.698494334529576, !- Extended Field + 0.701567803022894, !- Extended Field + 0.704620692, !- Extended Field + 0.737896116, !- Extended Field + 0.749314775342764, !- Extended Field + 0.759936346850055, !- Extended Field + 0.769760830521874, !- Extended Field + 0.77878822635822, !- Extended Field + 0.787018534359094, !- Extended Field + 0.794451754524495, !- Extended Field + 0.801087886854424, !- Extended Field + 0.80692693134888, !- Extended Field + 0.811968888007864, !- Extended Field + 0.8158691557594, !- Extended Field + 0.820326105206414, !- Extended Field + 0.824762475137216, !- Extended Field + 0.829178265551806, !- Extended Field + 0.833573476450184, !- Extended Field + 0.83794810783235, !- Extended Field + 0.842302159698304, !- Extended Field + 0.846635632048046, !- Extended Field + 0.850948524881576, !- Extended Field + 0.855240838198894, !- Extended Field + 0.859512572, !- Extended Field + 0.952777212, !- Extended Field + 0.966036811322764, !- Extended Field + 0.978499322810055, !- Extended Field + 0.990164746461874, !- Extended Field + 1.00103308227822, !- Extended Field + 1.01110433025909, !- Extended Field + 1.0203784904045, !- Extended Field + 1.02885556271442, !- Extended Field + 1.03653554718888, !- Extended Field + 1.04341844382786, !- Extended Field + 1.0506522035194, !- Extended Field + 1.05632799779041, !- Extended Field + 1.06198321254522, !- Extended Field + 1.06761784778381, !- Extended Field + 1.07323190350618, !- Extended Field + 1.07882537971235, !- Extended Field + 1.0843982764023, !- Extended Field + 1.08995059357605, !- Extended Field + 1.09548233123358, !- Extended Field + 1.10099348937489, !- Extended Field + 1.106484068, !- Extended Field + 1.265856196, !- Extended Field + 1.28095673530276, !- Extended Field + 1.29526018677006, !- Extended Field + 1.30876655040187, !- Extended Field + 1.32147582619822, !- Extended Field + 1.33338801415909, !- Extended Field + 1.3445031142845, !- Extended Field + 1.35482112657442, !- Extended Field + 1.36434205102888, !- Extended Field + 1.37306588764786, !- Extended Field + 1.3775148672794, !- Extended Field + 1.38440950637441, !- Extended Field + 1.39128356595322, !- Extended Field + 1.39813704601581, !- Extended Field + 1.40496994656218, !- Extended Field + 1.41178226759235, !- Extended Field + 1.4185740091063, !- Extended Field + 1.42534517110405, !- Extended Field + 1.43209575358558, !- Extended Field + 1.43882575655089, !- Extended Field + 1.44553518, !- Extended Field + 1.677133068, !- Extended Field + 1.69407454728276, !- Extended Field + 1.71021893873006, !- Extended Field + 1.72556624234187, !- Extended Field + 1.74011645811822, !- Extended Field + 1.75386958605909, !- Extended Field + 1.7668256261645, !- Extended Field + 1.77898457843442, !- Extended Field + 1.79034644286888, !- Extended Field + 1.80091121946786, !- Extended Field + 1.7964571470394, !- Extended Field + 1.80457063095841, !- Extended Field + 1.81266353536122, !- Extended Field + 1.82073586024781, !- Extended Field + 1.82878760561818, !- Extended Field + 1.83681877147235, !- Extended Field + 1.8448293578103, !- Extended Field + 1.85281936463205, !- Extended Field + 1.86078879193758, !- Extended Field + 1.86873763972689, !- Extended Field + 1.876665908, !- Extended Field + 2.186607828, !- Extended Field + 2.20539024726276, !- Extended Field + 2.22337557869005, !- Extended Field + 2.24056382228187, !- Extended Field + 2.25695497803822, !- Extended Field + 2.27254904595909, !- Extended Field + 2.28734602604449, !- Extended Field + 2.30134591829442, !- Extended Field + 2.31454872270888, !- Extended Field + 2.32695443928786, !- Extended Field + 2.3074790427994, !- Extended Field + 2.31681137154241, !- Extended Field + 2.32612312076922, !- Extended Field + 2.33541429047981, !- Extended Field + 2.34468488067418, !- Extended Field + 2.35393489135235, !- Extended Field + 2.3631643225143, !- Extended Field + 2.37237317416005, !- Extended Field + 2.38156144628958, !- Extended Field + 2.39072913890289, !- Extended Field + 2.399876252; !- Extended Field Curve:Quadratic, Discharge-SHR-fFF, !- Name @@ -5878,1111 +5068,1105 @@ -100.0, !- Minimum Value of z 100.0; !- Maximum Value of z - Table:MultiVariableLookup, - CoolCharge-Charge-Cap-fT,!- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 4, !- Number of Interpolation Points - , !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + CoolCharge-Charge-Cap-fT_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -100.0, !- Minimum Value + 100.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1.0, !- Normalization Reference - -100.0, !- Minimum Value of X1 - 100.0, !- Maximum Value of X1 - -30.0, !- Minimum Value of X2 - 50.0, !- Maximum Value of X2 - 0.0, !- Minimum Value of X3 - 1.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.5, !- Minimum Table Output - 1.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + -100, !- Value 1 + 100; !- Extended Field + + Table:IndependentVariable, + CoolCharge-Charge-Cap-fT_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -30.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -30, !- Value 1 + -22, !- Extended Field + -14, !- Extended Field + -6, !- Extended Field + 2, !- Extended Field + 10, !- Extended Field + 18, !- Extended Field + 26, !- Extended Field + 34, !- Extended Field + 42, !- Extended Field + 50; !- Extended Field + + Table:IndependentVariable, + CoolCharge-Charge-Cap-fT_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0000, !- Value 1 + 0.0165, !- Extended Field + 0.0330, !- Extended Field + 0.0495, !- Extended Field + 0.0660, !- Extended Field + 0.0825, !- Extended Field + 0.0990, !- Extended Field + 0.1155, !- Extended Field + 0.1320, !- Extended Field + 0.1485, !- Extended Field + 0.1650, !- Extended Field + 0.2485, !- Extended Field + 0.3320, !- Extended Field + 0.4155, !- Extended Field + 0.4990, !- Extended Field + 0.5825, !- Extended Field + 0.6660, !- Extended Field + 0.7495, !- Extended Field + 0.8330, !- Extended Field + 0.9165, !- Extended Field + 1.0000; !- Extended Field + + Table:IndependentVariableList, + CoolCharge-Charge-Cap-fT_IndependentVariableList, !- Name + CoolCharge-Charge-Cap-fT_IndependentVariable1, !- Independent Variable 1 Name + CoolCharge-Charge-Cap-fT_IndependentVariable2, !- Extended Field + CoolCharge-Charge-Cap-fT_IndependentVariable3; !- Extended Field + + Table:Lookup, + CoolCharge-Charge-Cap-fT,!- Name + CoolCharge-Charge-Cap-fT_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1.0, !- Normalization Divisor + 0.5, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 2, !- Number of Values for Independent Variable X1 - 11, !- Field 1 Determined by the Number of Independent Variables - 21, !- Field 2 Determined by the Number of Independent Variables - -100, !- Field 3 Determined by the Number of Independent Variables - 100, !- - -30, !- - -22, !- - -14, !- - -6, !- - 2, !- - 10, !- - 18, !- - 26, !- - 34, !- - 42, !- - 50, !- - 0.0000, !- - 0.0165, !- - 0.0330, !- - 0.0495, !- - 0.0660, !- - 0.0825, !- - 0.0990, !- - 0.1155, !- - 0.1320, !- - 0.1485, !- - 0.1650, !- - 0.2485, !- - 0.3320, !- - 0.4155, !- - 0.4990, !- - 0.5825, !- - 0.6660, !- - 0.7495, !- - 0.8330, !- - 0.9165, !- - 1.0000, !- - 0.0000, !- - 1.693105221, !- - 1.693105221, !- - 1.702120005, !- - 1.702120005, !- - 1.690907589, !- - 1.690907589, !- - 1.659467973, !- - 1.659467973, !- - 1.607801157, !- - 1.607801157, !- - 1.535907141, !- - 1.535907141, !- - 1.443785925, !- - 1.443785925, !- - 1.331437509, !- - 1.331437509, !- - 1.198861893, !- - 1.198861893, !- - 1.046059077, !- - 1.046059077, !- - 0.873029061, !- - 0.873029061, !- - 0.0165, !- - 1.65848016210929, !- - 1.65848016210929, !- - 1.66819694468129, !- - 1.66819694468129, !- - 1.65768652725329, !- - 1.65768652725329, !- - 1.62694890982529, !- - 1.62694890982529, !- - 1.57598409239729, !- - 1.57598409239729, !- - 1.50479207496929, !- - 1.50479207496929, !- - 1.41337285754129, !- - 1.41337285754129, !- - 1.30172644011329, !- - 1.30172644011329, !- - 1.16985282268529, !- - 1.16985282268529, !- - 1.01775200525729, !- - 1.01775200525729, !- - 0.845423987829295, !- - 0.845423987829295, !- - 0.0330, !- - 1.62689311200718, !- - 1.62689311200718, !- - 1.63731189315118, !- - 1.63731189315118, !- - 1.62750347429518, !- - 1.62750347429518, !- - 1.59746785543918, !- - 1.59746785543918, !- - 1.54720503658318, !- - 1.54720503658318, !- - 1.47671501772718, !- - 1.47671501772718, !- - 1.38599779887118, !- - 1.38599779887118, !- - 1.27505338001518, !- - 1.27505338001518, !- - 1.14388176115918, !- - 1.14388176115918, !- - 0.992482942303179, !- - 0.992482942303179, !- - 0.820856923447179, !- - 0.820856923447179, !- - 0.0495, !- - 1.59834407069365, !- - 1.59834407069365, !- - 1.60946485040965, !- - 1.60946485040965, !- - 1.60035843012565, !- - 1.60035843012565, !- - 1.57102480984165, !- - 1.57102480984165, !- - 1.52146398955765, !- - 1.52146398955765, !- - 1.45167596927365, !- - 1.45167596927365, !- - 1.36166074898965, !- - 1.36166074898965, !- - 1.25141832870565, !- - 1.25141832870565, !- - 1.12094870842165, !- - 1.12094870842165, !- - 0.970251888137653, !- - 0.970251888137653, !- - 0.799327867853653, !- - 0.799327867853653, !- - 0.0660, !- - 1.57283303816872, !- - 1.57283303816872, !- - 1.58465581645672, !- - 1.58465581645672, !- - 1.57625139474472, !- - 1.57625139474472, !- - 1.54761977303272, !- - 1.54761977303272, !- - 1.49876095132072, !- - 1.49876095132072, !- - 1.42967492960872, !- - 1.42967492960872, !- - 1.34036170789672, !- - 1.34036170789672, !- - 1.23082128618472, !- - 1.23082128618472, !- - 1.10105366447272, !- - 1.10105366447272, !- - 0.951058842760716, !- - 0.951058842760716, !- - 0.780836821048716, !- - 0.780836821048716, !- - 0.0825, !- - 1.55036001443237, !- - 1.55036001443237, !- - 1.56288479129237, !- - 1.56288479129237, !- - 1.55518236815237, !- - 1.55518236815237, !- - 1.52725274501237, !- - 1.52725274501237, !- - 1.47909592187237, !- - 1.47909592187237, !- - 1.41071189873237, !- - 1.41071189873237, !- - 1.32210067559237, !- - 1.32210067559237, !- - 1.21326225245237, !- - 1.21326225245237, !- - 1.08419662931237, !- - 1.08419662931237, !- - 0.934903806172369, !- - 0.934903806172369, !- - 0.765383783032369, !- - 0.765383783032369, !- - 0.0990, !- - 1.53092499948461, !- - 1.53092499948461, !- - 1.54415177491661, !- - 1.54415177491661, !- - 1.53715135034861, !- - 1.53715135034861, !- - 1.50992372578061, !- - 1.50992372578061, !- - 1.46246890121261, !- - 1.46246890121261, !- - 1.39478687664461, !- - 1.39478687664461, !- - 1.30687765207661, !- - 1.30687765207661, !- - 1.19874122750861, !- - 1.19874122750861, !- - 1.07037760294061, !- - 1.07037760294061, !- - 0.921786778372611, !- - 0.921786778372611, !- - 0.752968753804611, !- - 0.752968753804611, !- - 0.1155, !- - 1.51452799332544, !- - 1.51452799332544, !- - 1.52845676732944, !- - 1.52845676732944, !- - 1.52215834133344, !- - 1.52215834133344, !- - 1.49563271533744, !- - 1.49563271533744, !- - 1.44887988934144, !- - 1.44887988934144, !- - 1.38189986334544, !- - 1.38189986334544, !- - 1.29469263734944, !- - 1.29469263734944, !- - 1.18725821135344, !- - 1.18725821135344, !- - 1.05959658535744, !- - 1.05959658535744, !- - 0.911707759361443, !- - 0.911707759361443, !- - 0.743591733365443, !- - 0.743591733365443, !- - 0.1320, !- - 1.50116899595486, !- - 1.50116899595486, !- - 1.51579976853086, !- - 1.51579976853086, !- - 1.51020334110686, !- - 1.51020334110686, !- - 1.48437971368286, !- - 1.48437971368286, !- - 1.43832888625886, !- - 1.43832888625886, !- - 1.37205085883486, !- - 1.37205085883486, !- - 1.28554563141086, !- - 1.28554563141086, !- - 1.17881320398686, !- - 1.17881320398686, !- - 1.05185357656286, !- - 1.05185357656286, !- - 0.904666749138864, !- - 0.904666749138864, !- - 0.737252721714864, !- - 0.737252721714864, !- - 0.1485, !- - 1.49084800737287, !- - 1.49084800737287, !- - 1.50618077852087, !- - 1.50618077852087, !- - 1.50128634966887, !- - 1.50128634966887, !- - 1.47616472081687, !- - 1.47616472081687, !- - 1.43081589196487, !- - 1.43081589196487, !- - 1.36523986311287, !- - 1.36523986311287, !- - 1.27943663426087, !- - 1.27943663426087, !- - 1.17340620540887, !- - 1.17340620540887, !- - 1.04714857655687, !- - 1.04714857655687, !- - 0.900663747704875, !- - 0.900663747704875, !- - 0.733951718852875, !- - 0.733951718852875, !- - 0.1650, !- - 1.61101464972482, !- - 1.61101464972482, !- - 1.59047099356482, !- - 1.59047099356482, !- - 1.55554116140482, !- - 1.55554116140482, !- - 1.50622515324482, !- - 1.50622515324482, !- - 1.44252296908482, !- - 1.44252296908482, !- - 1.36443460892483, !- - 1.36443460892483, !- - 1.27196007276482, !- - 1.27196007276482, !- - 1.16509936060482, !- - 1.16509936060482, !- - 1.04385247244483, !- - 1.04385247244483, !- - 0.908219408284825, !- - 0.908219408284825, !- - 0.758200168124825, !- - 0.758200168124825, !- - 0.2485, !- - 1.59576309127151, !- - 1.59576309127151, !- - 1.57623934552751, !- - 1.57623934552751, !- - 1.54232942378351, !- - 1.54232942378351, !- - 1.49403332603951, !- - 1.49403332603951, !- - 1.43135105229551, !- - 1.43135105229551, !- - 1.35428260255151, !- - 1.35428260255151, !- - 1.26282797680751, !- - 1.26282797680751, !- - 1.15698717506351, !- - 1.15698717506351, !- - 1.03676019731951, !- - 1.03676019731951, !- - 0.902147043575508, !- - 0.902147043575508, !- - 0.753147713831508, !- - 0.753147713831508, !- - 0.3320, !- - 1.58080905736949, !- - 1.58080905736949, !- - 1.56230522204149, !- - 1.56230522204149, !- - 1.52941521071349, !- - 1.52941521071349, !- - 1.48213902338549, !- - 1.48213902338549, !- - 1.42047666005749, !- - 1.42047666005749, !- - 1.34442812072949, !- - 1.34442812072949, !- - 1.25399340540149, !- - 1.25399340540149, !- - 1.14917251407349, !- - 1.14917251407349, !- - 1.02996544674549, !- - 1.02996544674549, !- - 0.896372203417488, !- - 0.896372203417488, !- - 0.748392784089488, !- - 0.748392784089488, !- - 0.4155, !- - 1.56615254801876, !- - 1.56615254801876, !- - 1.54866862310676, !- - 1.54866862310676, !- - 1.51679852219476, !- - 1.51679852219476, !- - 1.47054224528276, !- - 1.47054224528276, !- - 1.40989979237076, !- - 1.40989979237076, !- - 1.33487116345876, !- - 1.33487116345876, !- - 1.24545635854676, !- - 1.24545635854676, !- - 1.14165537763476, !- - 1.14165537763476, !- - 1.02346822072276, !- - 1.02346822072276, !- - 0.890894887810764, !- - 0.890894887810764, !- - 0.743935378898764, !- - 0.743935378898764, !- - 0.4990, !- - 1.55179356321934, !- - 1.55179356321934, !- - 1.53532954872334, !- - 1.53532954872334, !- - 1.50447935822734, !- - 1.50447935822734, !- - 1.45924299173134, !- - 1.45924299173134, !- - 1.39962044923534, !- - 1.39962044923534, !- - 1.32561173073934, !- - 1.32561173073934, !- - 1.23721683624334, !- - 1.23721683624334, !- - 1.13443576574734, !- - 1.13443576574734, !- - 1.01726851925134, !- - 1.01726851925134, !- - 0.885715096755337, !- - 0.885715096755337, !- - 0.739775498259337, !- - 0.739775498259337, !- - 0.5825, !- - 1.53773210297121, !- - 1.53773210297121, !- - 1.52228799889121, !- - 1.52228799889121, !- - 1.49245771881121, !- - 1.49245771881121, !- - 1.44824126273121, !- - 1.44824126273121, !- - 1.38963863065121, !- - 1.38963863065121, !- - 1.31664982257121, !- - 1.31664982257121, !- - 1.22927483849121, !- - 1.22927483849121, !- - 1.12751367841121, !- - 1.12751367841121, !- - 1.01136634233121, !- - 1.01136634233121, !- - 0.880832830251206, !- - 0.880832830251206, !- - 0.735913142171206, !- - 0.735913142171206, !- - 0.6660, !- - 1.52396816727437, !- - 1.52396816727437, !- - 1.50954397361037, !- - 1.50954397361037, !- - 1.48073360394637, !- - 1.48073360394637, !- - 1.43753705828237, !- - 1.43753705828237, !- - 1.37995433661837, !- - 1.37995433661837, !- - 1.30798543895437, !- - 1.30798543895437, !- - 1.22163036529037, !- - 1.22163036529037, !- - 1.12088911562637, !- - 1.12088911562637, !- - 1.00576168996237, !- - 1.00576168996237, !- - 0.876248088298372, !- - 0.876248088298372, !- - 0.732348310634372, !- - 0.732348310634372, !- - 0.7495, !- - 1.51050175612883, !- - 1.51050175612883, !- - 1.49709747288083, !- - 1.49709747288083, !- - 1.46930701363283, !- - 1.46930701363283, !- - 1.42713037838483, !- - 1.42713037838483, !- - 1.37056756713683, !- - 1.37056756713683, !- - 1.29961857988883, !- - 1.29961857988883, !- - 1.21428341664083, !- - 1.21428341664083, !- - 1.11456207739283, !- - 1.11456207739283, !- - 1.00045456214483, !- - 1.00045456214483, !- - 0.871960870896834, !- - 0.871960870896834, !- - 0.729081003648834, !- - 0.729081003648834, !- - 0.8330, !- - 1.49733286953459, !- - 1.49733286953459, !- - 1.48494849670259, !- - 1.48494849670259, !- - 1.45817794787059, !- - 1.45817794787059, !- - 1.41702122303859, !- - 1.41702122303859, !- - 1.36147832220659, !- - 1.36147832220659, !- - 1.29154924537459, !- - 1.29154924537459, !- - 1.20723399254259, !- - 1.20723399254259, !- - 1.10853256371059, !- - 1.10853256371059, !- - 0.995444958878593, !- - 0.995444958878593, !- - 0.867971178046593, !- - 0.867971178046593, !- - 0.726111221214593, !- - 0.726111221214593, !- - 0.9165, !- - 1.48446150749165, !- - 1.48446150749165, !- - 1.47309704507565, !- - 1.47309704507565, !- - 1.44734640665965, !- - 1.44734640665965, !- - 1.40720959224365, !- - 1.40720959224365, !- - 1.35268660182765, !- - 1.35268660182765, !- - 1.28377743541165, !- - 1.28377743541165, !- - 1.20048209299565, !- - 1.20048209299565, !- - 1.10280057457965, !- - 1.10280057457965, !- - 0.990732880163648, !- - 0.990732880163648, !- - 0.864279009747648, !- - 0.864279009747648, !- - 0.723438963331648, !- - 0.723438963331648, !- - 1.000, !- - 1.47188767, !- - 1.47188767, !- - 1.461543118, !- - 1.461543118, !- - 1.43681239, !- - 1.43681239, !- - 1.397695486, !- - 1.397695486, !- - 1.344192406, !- - 1.344192406, !- - 1.27630315, !- - 1.27630315, !- - 1.194027718, !- - 1.194027718, !- - 1.09736611, !- - 1.09736611, !- - 0.986318326, !- - 0.986318326, !- - 0.860884366, !- - 0.860884366, !- - 0.72106423, !- - 0.72106423; !- - - Table:MultiVariableLookup, - CoolCharge-Charge-EIR-fT,!- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 4, !- Number of Interpolation Points - , !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1.0, !- Normalization Reference - -100.0, !- Minimum Value of X1 - 100.0, !- Maximum Value of X1 - -30.0, !- Minimum Value of X2 - 50.0, !- Maximum Value of X2 - 0.0, !- Minimum Value of X3 - 1.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.5, !- Minimum Table Output - 2.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 1.693105221, !- Output Value 1 + 1.65848016210929, !- Extended Field + 1.62689311200718, !- Extended Field + 1.59834407069365, !- Extended Field + 1.57283303816872, !- Extended Field + 1.55036001443237, !- Extended Field + 1.53092499948461, !- Extended Field + 1.51452799332544, !- Extended Field + 1.50116899595486, !- Extended Field + 1.49084800737287, !- Extended Field + 1.61101464972482, !- Extended Field + 1.59576309127151, !- Extended Field + 1.58080905736949, !- Extended Field + 1.56615254801876, !- Extended Field + 1.55179356321934, !- Extended Field + 1.53773210297121, !- Extended Field + 1.52396816727437, !- Extended Field + 1.51050175612883, !- Extended Field + 1.49733286953459, !- Extended Field + 1.48446150749165, !- Extended Field + 1.47188767, !- Extended Field + 1.702120005, !- Extended Field + 1.66819694468129, !- Extended Field + 1.63731189315118, !- Extended Field + 1.60946485040965, !- Extended Field + 1.58465581645672, !- Extended Field + 1.56288479129237, !- Extended Field + 1.54415177491661, !- Extended Field + 1.52845676732944, !- Extended Field + 1.51579976853086, !- Extended Field + 1.50618077852087, !- Extended Field + 1.59047099356482, !- Extended Field + 1.57623934552751, !- Extended Field + 1.56230522204149, !- Extended Field + 1.54866862310676, !- Extended Field + 1.53532954872334, !- Extended Field + 1.52228799889121, !- Extended Field + 1.50954397361037, !- Extended Field + 1.49709747288083, !- Extended Field + 1.48494849670259, !- Extended Field + 1.47309704507565, !- Extended Field + 1.461543118, !- Extended Field + 1.690907589, !- Extended Field + 1.65768652725329, !- Extended Field + 1.62750347429518, !- Extended Field + 1.60035843012565, !- Extended Field + 1.57625139474472, !- Extended Field + 1.55518236815237, !- Extended Field + 1.53715135034861, !- Extended Field + 1.52215834133344, !- Extended Field + 1.51020334110686, !- Extended Field + 1.50128634966887, !- Extended Field + 1.55554116140482, !- Extended Field + 1.54232942378351, !- Extended Field + 1.52941521071349, !- Extended Field + 1.51679852219476, !- Extended Field + 1.50447935822734, !- Extended Field + 1.49245771881121, !- Extended Field + 1.48073360394637, !- Extended Field + 1.46930701363283, !- Extended Field + 1.45817794787059, !- Extended Field + 1.44734640665965, !- Extended Field + 1.43681239, !- Extended Field + 1.659467973, !- Extended Field + 1.62694890982529, !- Extended Field + 1.59746785543918, !- Extended Field + 1.57102480984165, !- Extended Field + 1.54761977303272, !- Extended Field + 1.52725274501237, !- Extended Field + 1.50992372578061, !- Extended Field + 1.49563271533744, !- Extended Field + 1.48437971368286, !- Extended Field + 1.47616472081687, !- Extended Field + 1.50622515324482, !- Extended Field + 1.49403332603951, !- Extended Field + 1.48213902338549, !- Extended Field + 1.47054224528276, !- Extended Field + 1.45924299173134, !- Extended Field + 1.44824126273121, !- Extended Field + 1.43753705828237, !- Extended Field + 1.42713037838483, !- Extended Field + 1.41702122303859, !- Extended Field + 1.40720959224365, !- Extended Field + 1.397695486, !- Extended Field + 1.607801157, !- Extended Field + 1.57598409239729, !- Extended Field + 1.54720503658318, !- Extended Field + 1.52146398955765, !- Extended Field + 1.49876095132072, !- Extended Field + 1.47909592187237, !- Extended Field + 1.46246890121261, !- Extended Field + 1.44887988934144, !- Extended Field + 1.43832888625886, !- Extended Field + 1.43081589196487, !- Extended Field + 1.44252296908482, !- Extended Field + 1.43135105229551, !- Extended Field + 1.42047666005749, !- Extended Field + 1.40989979237076, !- Extended Field + 1.39962044923534, !- Extended Field + 1.38963863065121, !- Extended Field + 1.37995433661837, !- Extended Field + 1.37056756713683, !- Extended Field + 1.36147832220659, !- Extended Field + 1.35268660182765, !- Extended Field + 1.344192406, !- Extended Field + 1.535907141, !- Extended Field + 1.50479207496929, !- Extended Field + 1.47671501772718, !- Extended Field + 1.45167596927365, !- Extended Field + 1.42967492960872, !- Extended Field + 1.41071189873237, !- Extended Field + 1.39478687664461, !- Extended Field + 1.38189986334544, !- Extended Field + 1.37205085883486, !- Extended Field + 1.36523986311287, !- Extended Field + 1.36443460892483, !- Extended Field + 1.35428260255151, !- Extended Field + 1.34442812072949, !- Extended Field + 1.33487116345876, !- Extended Field + 1.32561173073934, !- Extended Field + 1.31664982257121, !- Extended Field + 1.30798543895437, !- Extended Field + 1.29961857988883, !- Extended Field + 1.29154924537459, !- Extended Field + 1.28377743541165, !- Extended Field + 1.27630315, !- Extended Field + 1.443785925, !- Extended Field + 1.41337285754129, !- Extended Field + 1.38599779887118, !- Extended Field + 1.36166074898965, !- Extended Field + 1.34036170789672, !- Extended Field + 1.32210067559237, !- Extended Field + 1.30687765207661, !- Extended Field + 1.29469263734944, !- Extended Field + 1.28554563141086, !- Extended Field + 1.27943663426087, !- Extended Field + 1.27196007276482, !- Extended Field + 1.26282797680751, !- Extended Field + 1.25399340540149, !- Extended Field + 1.24545635854676, !- Extended Field + 1.23721683624334, !- Extended Field + 1.22927483849121, !- Extended Field + 1.22163036529037, !- Extended Field + 1.21428341664083, !- Extended Field + 1.20723399254259, !- Extended Field + 1.20048209299565, !- Extended Field + 1.194027718, !- Extended Field + 1.331437509, !- Extended Field + 1.30172644011329, !- Extended Field + 1.27505338001518, !- Extended Field + 1.25141832870565, !- Extended Field + 1.23082128618472, !- Extended Field + 1.21326225245237, !- Extended Field + 1.19874122750861, !- Extended Field + 1.18725821135344, !- Extended Field + 1.17881320398686, !- Extended Field + 1.17340620540887, !- Extended Field + 1.16509936060482, !- Extended Field + 1.15698717506351, !- Extended Field + 1.14917251407349, !- Extended Field + 1.14165537763476, !- Extended Field + 1.13443576574734, !- Extended Field + 1.12751367841121, !- Extended Field + 1.12088911562637, !- Extended Field + 1.11456207739283, !- Extended Field + 1.10853256371059, !- Extended Field + 1.10280057457965, !- Extended Field + 1.09736611, !- Extended Field + 1.198861893, !- Extended Field + 1.16985282268529, !- Extended Field + 1.14388176115918, !- Extended Field + 1.12094870842165, !- Extended Field + 1.10105366447272, !- Extended Field + 1.08419662931237, !- Extended Field + 1.07037760294061, !- Extended Field + 1.05959658535744, !- Extended Field + 1.05185357656286, !- Extended Field + 1.04714857655687, !- Extended Field + 1.04385247244483, !- Extended Field + 1.03676019731951, !- Extended Field + 1.02996544674549, !- Extended Field + 1.02346822072276, !- Extended Field + 1.01726851925134, !- Extended Field + 1.01136634233121, !- Extended Field + 1.00576168996237, !- Extended Field + 1.00045456214483, !- Extended Field + 0.995444958878593, !- Extended Field + 0.990732880163648, !- Extended Field + 0.986318326, !- Extended Field + 1.046059077, !- Extended Field + 1.01775200525729, !- Extended Field + 0.992482942303179, !- Extended Field + 0.970251888137653, !- Extended Field + 0.951058842760716, !- Extended Field + 0.934903806172369, !- Extended Field + 0.921786778372611, !- Extended Field + 0.911707759361443, !- Extended Field + 0.904666749138864, !- Extended Field + 0.900663747704875, !- Extended Field + 0.908219408284825, !- Extended Field + 0.902147043575508, !- Extended Field + 0.896372203417488, !- Extended Field + 0.890894887810764, !- Extended Field + 0.885715096755337, !- Extended Field + 0.880832830251206, !- Extended Field + 0.876248088298372, !- Extended Field + 0.871960870896834, !- Extended Field + 0.867971178046593, !- Extended Field + 0.864279009747648, !- Extended Field + 0.860884366, !- Extended Field + 0.873029061, !- Extended Field + 0.845423987829295, !- Extended Field + 0.820856923447179, !- Extended Field + 0.799327867853653, !- Extended Field + 0.780836821048716, !- Extended Field + 0.765383783032369, !- Extended Field + 0.752968753804611, !- Extended Field + 0.743591733365443, !- Extended Field + 0.737252721714864, !- Extended Field + 0.733951718852875, !- Extended Field + 0.758200168124825, !- Extended Field + 0.753147713831508, !- Extended Field + 0.748392784089488, !- Extended Field + 0.743935378898764, !- Extended Field + 0.739775498259337, !- Extended Field + 0.735913142171206, !- Extended Field + 0.732348310634372, !- Extended Field + 0.729081003648834, !- Extended Field + 0.726111221214593, !- Extended Field + 0.723438963331648, !- Extended Field + 0.72106423, !- Extended Field + 1.693105221, !- Extended Field + 1.65848016210929, !- Extended Field + 1.62689311200718, !- Extended Field + 1.59834407069365, !- Extended Field + 1.57283303816872, !- Extended Field + 1.55036001443237, !- Extended Field + 1.53092499948461, !- Extended Field + 1.51452799332544, !- Extended Field + 1.50116899595486, !- Extended Field + 1.49084800737287, !- Extended Field + 1.61101464972482, !- Extended Field + 1.59576309127151, !- Extended Field + 1.58080905736949, !- Extended Field + 1.56615254801876, !- Extended Field + 1.55179356321934, !- Extended Field + 1.53773210297121, !- Extended Field + 1.52396816727437, !- Extended Field + 1.51050175612883, !- Extended Field + 1.49733286953459, !- Extended Field + 1.48446150749165, !- Extended Field + 1.47188767, !- Extended Field + 1.702120005, !- Extended Field + 1.66819694468129, !- Extended Field + 1.63731189315118, !- Extended Field + 1.60946485040965, !- Extended Field + 1.58465581645672, !- Extended Field + 1.56288479129237, !- Extended Field + 1.54415177491661, !- Extended Field + 1.52845676732944, !- Extended Field + 1.51579976853086, !- Extended Field + 1.50618077852087, !- Extended Field + 1.59047099356482, !- Extended Field + 1.57623934552751, !- Extended Field + 1.56230522204149, !- Extended Field + 1.54866862310676, !- Extended Field + 1.53532954872334, !- Extended Field + 1.52228799889121, !- Extended Field + 1.50954397361037, !- Extended Field + 1.49709747288083, !- Extended Field + 1.48494849670259, !- Extended Field + 1.47309704507565, !- Extended Field + 1.461543118, !- Extended Field + 1.690907589, !- Extended Field + 1.65768652725329, !- Extended Field + 1.62750347429518, !- Extended Field + 1.60035843012565, !- Extended Field + 1.57625139474472, !- Extended Field + 1.55518236815237, !- Extended Field + 1.53715135034861, !- Extended Field + 1.52215834133344, !- Extended Field + 1.51020334110686, !- Extended Field + 1.50128634966887, !- Extended Field + 1.55554116140482, !- Extended Field + 1.54232942378351, !- Extended Field + 1.52941521071349, !- Extended Field + 1.51679852219476, !- Extended Field + 1.50447935822734, !- Extended Field + 1.49245771881121, !- Extended Field + 1.48073360394637, !- Extended Field + 1.46930701363283, !- Extended Field + 1.45817794787059, !- Extended Field + 1.44734640665965, !- Extended Field + 1.43681239, !- Extended Field + 1.659467973, !- Extended Field + 1.62694890982529, !- Extended Field + 1.59746785543918, !- Extended Field + 1.57102480984165, !- Extended Field + 1.54761977303272, !- Extended Field + 1.52725274501237, !- Extended Field + 1.50992372578061, !- Extended Field + 1.49563271533744, !- Extended Field + 1.48437971368286, !- Extended Field + 1.47616472081687, !- Extended Field + 1.50622515324482, !- Extended Field + 1.49403332603951, !- Extended Field + 1.48213902338549, !- Extended Field + 1.47054224528276, !- Extended Field + 1.45924299173134, !- Extended Field + 1.44824126273121, !- Extended Field + 1.43753705828237, !- Extended Field + 1.42713037838483, !- Extended Field + 1.41702122303859, !- Extended Field + 1.40720959224365, !- Extended Field + 1.397695486, !- Extended Field + 1.607801157, !- Extended Field + 1.57598409239729, !- Extended Field + 1.54720503658318, !- Extended Field + 1.52146398955765, !- Extended Field + 1.49876095132072, !- Extended Field + 1.47909592187237, !- Extended Field + 1.46246890121261, !- Extended Field + 1.44887988934144, !- Extended Field + 1.43832888625886, !- Extended Field + 1.43081589196487, !- Extended Field + 1.44252296908482, !- Extended Field + 1.43135105229551, !- Extended Field + 1.42047666005749, !- Extended Field + 1.40989979237076, !- Extended Field + 1.39962044923534, !- Extended Field + 1.38963863065121, !- Extended Field + 1.37995433661837, !- Extended Field + 1.37056756713683, !- Extended Field + 1.36147832220659, !- Extended Field + 1.35268660182765, !- Extended Field + 1.344192406, !- Extended Field + 1.535907141, !- Extended Field + 1.50479207496929, !- Extended Field + 1.47671501772718, !- Extended Field + 1.45167596927365, !- Extended Field + 1.42967492960872, !- Extended Field + 1.41071189873237, !- Extended Field + 1.39478687664461, !- Extended Field + 1.38189986334544, !- Extended Field + 1.37205085883486, !- Extended Field + 1.36523986311287, !- Extended Field + 1.36443460892483, !- Extended Field + 1.35428260255151, !- Extended Field + 1.34442812072949, !- Extended Field + 1.33487116345876, !- Extended Field + 1.32561173073934, !- Extended Field + 1.31664982257121, !- Extended Field + 1.30798543895437, !- Extended Field + 1.29961857988883, !- Extended Field + 1.29154924537459, !- Extended Field + 1.28377743541165, !- Extended Field + 1.27630315, !- Extended Field + 1.443785925, !- Extended Field + 1.41337285754129, !- Extended Field + 1.38599779887118, !- Extended Field + 1.36166074898965, !- Extended Field + 1.34036170789672, !- Extended Field + 1.32210067559237, !- Extended Field + 1.30687765207661, !- Extended Field + 1.29469263734944, !- Extended Field + 1.28554563141086, !- Extended Field + 1.27943663426087, !- Extended Field + 1.27196007276482, !- Extended Field + 1.26282797680751, !- Extended Field + 1.25399340540149, !- Extended Field + 1.24545635854676, !- Extended Field + 1.23721683624334, !- Extended Field + 1.22927483849121, !- Extended Field + 1.22163036529037, !- Extended Field + 1.21428341664083, !- Extended Field + 1.20723399254259, !- Extended Field + 1.20048209299565, !- Extended Field + 1.194027718, !- Extended Field + 1.331437509, !- Extended Field + 1.30172644011329, !- Extended Field + 1.27505338001518, !- Extended Field + 1.25141832870565, !- Extended Field + 1.23082128618472, !- Extended Field + 1.21326225245237, !- Extended Field + 1.19874122750861, !- Extended Field + 1.18725821135344, !- Extended Field + 1.17881320398686, !- Extended Field + 1.17340620540887, !- Extended Field + 1.16509936060482, !- Extended Field + 1.15698717506351, !- Extended Field + 1.14917251407349, !- Extended Field + 1.14165537763476, !- Extended Field + 1.13443576574734, !- Extended Field + 1.12751367841121, !- Extended Field + 1.12088911562637, !- Extended Field + 1.11456207739283, !- Extended Field + 1.10853256371059, !- Extended Field + 1.10280057457965, !- Extended Field + 1.09736611, !- Extended Field + 1.198861893, !- Extended Field + 1.16985282268529, !- Extended Field + 1.14388176115918, !- Extended Field + 1.12094870842165, !- Extended Field + 1.10105366447272, !- Extended Field + 1.08419662931237, !- Extended Field + 1.07037760294061, !- Extended Field + 1.05959658535744, !- Extended Field + 1.05185357656286, !- Extended Field + 1.04714857655687, !- Extended Field + 1.04385247244483, !- Extended Field + 1.03676019731951, !- Extended Field + 1.02996544674549, !- Extended Field + 1.02346822072276, !- Extended Field + 1.01726851925134, !- Extended Field + 1.01136634233121, !- Extended Field + 1.00576168996237, !- Extended Field + 1.00045456214483, !- Extended Field + 0.995444958878593, !- Extended Field + 0.990732880163648, !- Extended Field + 0.986318326, !- Extended Field + 1.046059077, !- Extended Field + 1.01775200525729, !- Extended Field + 0.992482942303179, !- Extended Field + 0.970251888137653, !- Extended Field + 0.951058842760716, !- Extended Field + 0.934903806172369, !- Extended Field + 0.921786778372611, !- Extended Field + 0.911707759361443, !- Extended Field + 0.904666749138864, !- Extended Field + 0.900663747704875, !- Extended Field + 0.908219408284825, !- Extended Field + 0.902147043575508, !- Extended Field + 0.896372203417488, !- Extended Field + 0.890894887810764, !- Extended Field + 0.885715096755337, !- Extended Field + 0.880832830251206, !- Extended Field + 0.876248088298372, !- Extended Field + 0.871960870896834, !- Extended Field + 0.867971178046593, !- Extended Field + 0.864279009747648, !- Extended Field + 0.860884366, !- Extended Field + 0.873029061, !- Extended Field + 0.845423987829295, !- Extended Field + 0.820856923447179, !- Extended Field + 0.799327867853653, !- Extended Field + 0.780836821048716, !- Extended Field + 0.765383783032369, !- Extended Field + 0.752968753804611, !- Extended Field + 0.743591733365443, !- Extended Field + 0.737252721714864, !- Extended Field + 0.733951718852875, !- Extended Field + 0.758200168124825, !- Extended Field + 0.753147713831508, !- Extended Field + 0.748392784089488, !- Extended Field + 0.743935378898764, !- Extended Field + 0.739775498259337, !- Extended Field + 0.735913142171206, !- Extended Field + 0.732348310634372, !- Extended Field + 0.729081003648834, !- Extended Field + 0.726111221214593, !- Extended Field + 0.723438963331648, !- Extended Field + 0.72106423; !- Extended Field + + Table:IndependentVariable, + CoolCharge-Charge-EIR-fT_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -100.0, !- Minimum Value + 100.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100, !- Value 1 + 100; !- Extended Field + + Table:IndependentVariable, + CoolCharge-Charge-EIR-fT_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -30.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -30, !- Value 1 + -22, !- Extended Field + -14, !- Extended Field + -6, !- Extended Field + 2, !- Extended Field + 10, !- Extended Field + 18, !- Extended Field + 26, !- Extended Field + 34, !- Extended Field + 42, !- Extended Field + 50; !- Extended Field + + Table:IndependentVariable, + CoolCharge-Charge-EIR-fT_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0.0, !- Minimum Value + 1.0, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.0000, !- Value 1 + 0.0165, !- Extended Field + 0.0330, !- Extended Field + 0.0495, !- Extended Field + 0.0660, !- Extended Field + 0.0825, !- Extended Field + 0.0990, !- Extended Field + 0.1155, !- Extended Field + 0.1320, !- Extended Field + 0.1485, !- Extended Field + 0.1650, !- Extended Field + 0.2485, !- Extended Field + 0.3320, !- Extended Field + 0.4155, !- Extended Field + 0.4990, !- Extended Field + 0.5825, !- Extended Field + 0.6660, !- Extended Field + 0.7495, !- Extended Field + 0.8330, !- Extended Field + 0.9165, !- Extended Field + 1.0000; !- Extended Field + + Table:IndependentVariableList, + CoolCharge-Charge-EIR-fT_IndependentVariableList, !- Name + CoolCharge-Charge-EIR-fT_IndependentVariable1, !- Independent Variable 1 Name + CoolCharge-Charge-EIR-fT_IndependentVariable2, !- Extended Field + CoolCharge-Charge-EIR-fT_IndependentVariable3; !- Extended Field + + Table:Lookup, + CoolCharge-Charge-EIR-fT,!- Name + CoolCharge-Charge-EIR-fT_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1.0, !- Normalization Divisor + 0.5, !- Minimum Output + 2.5, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 2, !- Number of Values for Independent Variable X1 - 11, !- Field 1 Determined by the Number of Independent Variables - 21, !- Field 2 Determined by the Number of Independent Variables - -100, !- Field 3 Determined by the Number of Independent Variables - 100, !- - -30, !- - -22, !- - -14, !- - -6, !- - 2, !- - 10, !- - 18, !- - 26, !- - 34, !- - 42, !- - 50, !- - 0.0000, !- - 0.0165, !- - 0.0330, !- - 0.0495, !- - 0.0660, !- - 0.0825, !- - 0.0990, !- - 0.1155, !- - 0.1320, !- - 0.1485, !- - 0.1650, !- - 0.2485, !- - 0.3320, !- - 0.4155, !- - 0.4990, !- - 0.5825, !- - 0.6660, !- - 0.7495, !- - 0.8330, !- - 0.9165, !- - 1.0000, !- - 0.0000, !- - 0.992306693, !- - 0.992306693, !- - 0.752399557, !- - 0.752399557, !- - 0.576753285, !- - 0.576753285, !- - 0.465367877, !- - 0.465367877, !- - 0.418243333, !- - 0.418243333, !- - 0.435379653, !- - 0.435379653, !- - 0.516776837, !- - 0.516776837, !- - 0.662434885, !- - 0.662434885, !- - 0.872353797, !- - 0.872353797, !- - 1.146533573, !- - 1.146533573, !- - 1.484974213, !- - 1.484974213, !- - 0.0165, !- - 0.993205787535399, !- - 0.993205787535399, !- - 0.754439488331399, !- - 0.754439488331399, !- - 0.579934053127399, !- - 0.579934053127399, !- - 0.469689481923399, !- - 0.469689481923399, !- - 0.423705774719399, !- - 0.423705774719399, !- - 0.4419829315154, !- - 0.4419829315154, !- - 0.5245209523114, !- - 0.5245209523114, !- - 0.6713198371074, !- - 0.6713198371074, !- - 0.882379585903399, !- - 0.882379585903399, !- - 1.1577001986994, !- - 1.1577001986994, !- - 1.4972816754954, !- - 1.4972816754954, !- - 0.0330, !- - 0.993576451780598, !- - 0.993576451780598, !- - 0.755950989372598, !- - 0.755950989372598, !- - 0.582586390964598, !- - 0.582586390964598, !- - 0.473482656556598, !- - 0.473482656556598, !- - 0.428639786148598, !- - 0.428639786148598, !- - 0.448057779740598, !- - 0.448057779740598, !- - 0.531736637332598, !- - 0.531736637332598, !- - 0.679676358924598, !- - 0.679676358924598, !- - 0.891876944516598, !- - 0.891876944516598, !- - 1.1683383941086, !- - 1.1683383941086, !- - 1.5090607077006, !- - 1.5090607077006, !- - 0.0495, !- - 0.993418685735596, !- - 0.993418685735596, !- - 0.756934060123595, !- - 0.756934060123595, !- - 0.584710298511595, !- - 0.584710298511595, !- - 0.476747400899595, !- - 0.476747400899595, !- - 0.433045367287595, !- - 0.433045367287595, !- - 0.453604197675596, !- - 0.453604197675596, !- - 0.538423892063595, !- - 0.538423892063595, !- - 0.687504450451595, !- - 0.687504450451595, !- - 0.900845872839595, !- - 0.900845872839595, !- - 1.1784481592276, !- - 1.1784481592276, !- - 1.5203113096156, !- - 1.5203113096156, !- - 0.0660, !- - 0.992732489400392, !- - 0.992732489400392, !- - 0.757388700584392, !- - 0.757388700584392, !- - 0.586305775768392, !- - 0.586305775768392, !- - 0.479483714952392, !- - 0.479483714952392, !- - 0.436922518136392, !- - 0.436922518136392, !- - 0.458622185320392, !- - 0.458622185320392, !- - 0.544582716504392, !- - 0.544582716504392, !- - 0.694804111688392, !- - 0.694804111688392, !- - 0.909286370872392, !- - 0.909286370872392, !- - 1.18802949405639, !- - 1.18802949405639, !- - 1.53103348124039, !- - 1.53103348124039, !- - 0.0825, !- - 0.991517862774987, !- - 0.991517862774987, !- - 0.757314910754987, !- - 0.757314910754987, !- - 0.587372822734987, !- - 0.587372822734987, !- - 0.481691598714988, !- - 0.481691598714988, !- - 0.440271238694988, !- - 0.440271238694988, !- - 0.463111742674988, !- - 0.463111742674988, !- - 0.550213110654987, !- - 0.550213110654987, !- - 0.701575342634988, !- - 0.701575342634988, !- - 0.917198438614988, !- - 0.917198438614988, !- - 1.19708239859499, !- - 1.19708239859499, !- - 1.54122722257499, !- - 1.54122722257499, !- - 0.0990, !- - 0.989774805859382, !- - 0.989774805859382, !- - 0.756712690635382, !- - 0.756712690635382, !- - 0.587911439411382, !- - 0.587911439411382, !- - 0.483371052187382, !- - 0.483371052187382, !- - 0.443091528963382, !- - 0.443091528963382, !- - 0.467072869739382, !- - 0.467072869739382, !- - 0.555315074515382, !- - 0.555315074515382, !- - 0.707818143291382, !- - 0.707818143291382, !- - 0.924582076067382, !- - 0.924582076067382, !- - 1.20560687284338, !- - 1.20560687284338, !- - 1.55089253361938, !- - 1.55089253361938, !- - 0.1155, !- - 0.987503318653576, !- - 0.987503318653576, !- - 0.755582040225575, !- - 0.755582040225575, !- - 0.587921625797575, !- - 0.587921625797575, !- - 0.484522075369576, !- - 0.484522075369576, !- - 0.445383388941575, !- - 0.445383388941575, !- - 0.470505566513576, !- - 0.470505566513576, !- - 0.559888608085576, !- - 0.559888608085576, !- - 0.713532513657576, !- - 0.713532513657576, !- - 0.931437283229576, !- - 0.931437283229576, !- - 1.21360291680158, !- - 1.21360291680158, !- - 1.56002941437358, !- - 1.56002941437358, !- - 0.1320, !- - 0.984703401157568, !- - 0.984703401157568, !- - 0.753922959525568, !- - 0.753922959525568, !- - 0.587403381893568, !- - 0.587403381893568, !- - 0.485144668261568, !- - 0.485144668261568, !- - 0.447146818629568, !- - 0.447146818629568, !- - 0.473409832997568, !- - 0.473409832997568, !- - 0.563933711365568, !- - 0.563933711365568, !- - 0.718718453733568, !- - 0.718718453733568, !- - 0.937764060101568, !- - 0.937764060101568, !- - 1.22107053046957, !- - 1.22107053046957, !- - 1.56863786483757, !- - 1.56863786483757, !- - 0.1485, !- - 0.981375053371359, !- - 0.981375053371359, !- - 0.75173544853536, !- - 0.75173544853536, !- - 0.586356707699359, !- - 0.586356707699359, !- - 0.48523883086336, !- - 0.48523883086336, !- - 0.448381818027359, !- - 0.448381818027359, !- - 0.47578566919136, !- - 0.47578566919136, !- - 0.567450384355359, !- - 0.567450384355359, !- - 0.72337596351936, !- - 0.72337596351936, !- - 0.94356240668336, !- - 0.94356240668336, !- - 1.22800971384736, !- - 1.22800971384736, !- - 1.57671788501136, !- - 1.57671788501136, !- - 0.1650, !- - 0.87213395701435, !- - 0.87213395701435, !- - 0.67278144081435, !- - 0.67278144081435, !- - 0.53303814061435, !- - 0.53303814061435, !- - 0.45290405641435, !- - 0.45290405641435, !- - 0.43237918821435, !- - 0.43237918821435, !- - 0.47146353601435, !- - 0.47146353601435, !- - 0.57015709981435, !- - 0.57015709981435, !- - 0.72845987961435, !- - 0.72845987961435, !- - 0.94637187541435, !- - 0.94637187541435, !- - 1.22389308721435, !- - 1.22389308721435, !- - 1.56102351501435, !- - 1.56102351501435, !- - 0.2485, !- - 0.870598684342923, !- - 0.870598684342923, !- - 0.672013042162923, !- - 0.672013042162923, !- - 0.533036615982924, !- - 0.533036615982924, !- - 0.453669405802923, !- - 0.453669405802923, !- - 0.433911411622924, !- - 0.433911411622924, !- - 0.473762633442923, !- - 0.473762633442923, !- - 0.573223071262923, !- - 0.573223071262923, !- - 0.732292725082924, !- - 0.732292725082924, !- - 0.950971594902923, !- - 0.950971594902923, !- - 1.22925968072292, !- - 1.22925968072292, !- - 1.56715698254292, !- - 1.56715698254292, !- - 0.3320, !- - 0.869046873020384, !- - 0.869046873020384, !- - 0.671228104860384, !- - 0.671228104860384, !- - 0.533018552700384, !- - 0.533018552700384, !- - 0.454418216540384, !- - 0.454418216540384, !- - 0.435427096380384, !- - 0.435427096380384, !- - 0.476045192220384, !- - 0.476045192220384, !- - 0.576272504060384, !- - 0.576272504060384, !- - 0.736109031900384, !- - 0.736109031900384, !- - 0.955554775740384, !- - 0.955554775740384, !- - 1.23460973558038, !- - 1.23460973558038, !- - 1.57327391142038, !- - 1.57327391142038, !- - 0.4155, !- - 0.867478523046732, !- - 0.867478523046732, !- - 0.670426628906732, !- - 0.670426628906732, !- - 0.532983950766732, !- - 0.532983950766732, !- - 0.455150488626731, !- - 0.455150488626731, !- - 0.436926242486732, !- - 0.436926242486732, !- - 0.478311212346732, !- - 0.478311212346732, !- - 0.579305398206732, !- - 0.579305398206732, !- - 0.739908800066732, !- - 0.739908800066732, !- - 0.960121417926732, !- - 0.960121417926732, !- - 1.23994325178673, !- - 1.23994325178673, !- - 1.57937430164673, !- - 1.57937430164673, !- - 0.4990, !- - 0.865893634421966, !- - 0.865893634421966, !- - 0.669608614301966, !- - 0.669608614301966, !- - 0.532932810181966, !- - 0.532932810181966, !- - 0.455866222061966, !- - 0.455866222061966, !- - 0.438408849941966, !- - 0.438408849941966, !- - 0.480560693821966, !- - 0.480560693821966, !- - 0.582321753701966, !- - 0.582321753701966, !- - 0.743692029581966, !- - 0.743692029581966, !- - 0.964671521461966, !- - 0.964671521461966, !- - 1.24526022934197, !- - 1.24526022934197, !- - 1.58545815322197, !- - 1.58545815322197, !- - 0.5825, !- - 0.864292207146087, !- - 0.864292207146087, !- - 0.668774061046087, !- - 0.668774061046087, !- - 0.532865130946087, !- - 0.532865130946087, !- - 0.456565416846087, !- - 0.456565416846087, !- - 0.439874918746087, !- - 0.439874918746087, !- - 0.482793636646087, !- - 0.482793636646087, !- - 0.585321570546087, !- - 0.585321570546087, !- - 0.747458720446088, !- - 0.747458720446088, !- - 0.969205086346087, !- - 0.969205086346087, !- - 1.25056066824609, !- - 1.25056066824609, !- - 1.59152546614609, !- - 1.59152546614609, !- - 0.6660, !- - 0.862674241219096, !- - 0.862674241219096, !- - 0.667922969139096, !- - 0.667922969139096, !- - 0.532780913059096, !- - 0.532780913059096, !- - 0.457248072979096, !- - 0.457248072979096, !- - 0.441324448899096, !- - 0.441324448899096, !- - 0.485010040819096, !- - 0.485010040819096, !- - 0.588304848739096, !- - 0.588304848739096, !- - 0.751208872659096, !- - 0.751208872659096, !- - 0.973722112579096, !- - 0.973722112579096, !- - 1.2558445684991, !- - 1.2558445684991, !- - 1.5975762404191, !- - 1.5975762404191, !- - 0.7495, !- - 0.861039736640991, !- - 0.861039736640991, !- - 0.667055338580991, !- - 0.667055338580991, !- - 0.532680156520991, !- - 0.532680156520991, !- - 0.457914190460991, !- - 0.457914190460991, !- - 0.442757440400992, !- - 0.442757440400992, !- - 0.487209906340991, !- - 0.487209906340991, !- - 0.591271588280991, !- - 0.591271588280991, !- - 0.754942486220991, !- - 0.754942486220991, !- - 0.978222600160991, !- - 0.978222600160991, !- - 1.26111193010099, !- - 1.26111193010099, !- - 1.60361047604099, !- - 1.60361047604099, !- - 0.8330, !- - 0.859388693411774, !- - 0.859388693411774, !- - 0.666171169371774, !- - 0.666171169371774, !- - 0.532562861331774, !- - 0.532562861331774, !- - 0.458563769291774, !- - 0.458563769291774, !- - 0.444173893251774, !- - 0.444173893251774, !- - 0.489393233211774, !- - 0.489393233211774, !- - 0.594221789171774, !- - 0.594221789171774, !- - 0.758659561131774, !- - 0.758659561131774, !- - 0.982706549091774, !- - 0.982706549091774, !- - 1.26636275305177, !- - 1.26636275305177, !- - 1.60962817301177, !- - 1.60962817301177, !- - 0.9165, !- - 0.857721111531443, !- - 0.857721111531443, !- - 0.665270461511444, !- - 0.665270461511444, !- - 0.532429027491444, !- - 0.532429027491444, !- - 0.459196809471443, !- - 0.459196809471443, !- - 0.445573807451443, !- - 0.445573807451443, !- - 0.491560021431443, !- - 0.491560021431443, !- - 0.597155451411444, !- - 0.597155451411444, !- - 0.762360097391444, !- - 0.762360097391444, !- - 0.987173959371443, !- - 0.987173959371443, !- - 1.27159703735144, !- - 1.27159703735144, !- - 1.61562933133144, !- - 1.61562933133144, !- - 1.000, !- - 0.856036991, !- - 0.856036991, !- - 0.664353215, !- - 0.664353215, !- - 0.532278655, !- - 0.532278655, !- - 0.459813311, !- - 0.459813311, !- - 0.446957183, !- - 0.446957183, !- - 0.493710271, !- - 0.493710271, !- - 0.600072575, !- - 0.600072575, !- - 0.766044095, !- - 0.766044095, !- - 0.991624831, !- - 0.991624831, !- - 1.276814783, !- - 1.276814783, !- - 1.621613951, !- - 1.621613951; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.992306693, !- Output Value 1 + 0.993205787535399, !- Extended Field + 0.993576451780598, !- Extended Field + 0.993418685735596, !- Extended Field + 0.992732489400392, !- Extended Field + 0.991517862774987, !- Extended Field + 0.989774805859382, !- Extended Field + 0.987503318653576, !- Extended Field + 0.984703401157568, !- Extended Field + 0.981375053371359, !- Extended Field + 0.87213395701435, !- Extended Field + 0.870598684342923, !- Extended Field + 0.869046873020384, !- Extended Field + 0.867478523046732, !- Extended Field + 0.865893634421966, !- Extended Field + 0.864292207146087, !- Extended Field + 0.862674241219096, !- Extended Field + 0.861039736640991, !- Extended Field + 0.859388693411774, !- Extended Field + 0.857721111531443, !- Extended Field + 0.856036991, !- Extended Field + 0.752399557, !- Extended Field + 0.754439488331399, !- Extended Field + 0.755950989372598, !- Extended Field + 0.756934060123595, !- Extended Field + 0.757388700584392, !- Extended Field + 0.757314910754987, !- Extended Field + 0.756712690635382, !- Extended Field + 0.755582040225575, !- Extended Field + 0.753922959525568, !- Extended Field + 0.75173544853536, !- Extended Field + 0.67278144081435, !- Extended Field + 0.672013042162923, !- Extended Field + 0.671228104860384, !- Extended Field + 0.670426628906732, !- Extended Field + 0.669608614301966, !- Extended Field + 0.668774061046087, !- Extended Field + 0.667922969139096, !- Extended Field + 0.667055338580991, !- Extended Field + 0.666171169371774, !- Extended Field + 0.665270461511444, !- Extended Field + 0.664353215, !- Extended Field + 0.576753285, !- Extended Field + 0.579934053127399, !- Extended Field + 0.582586390964598, !- Extended Field + 0.584710298511595, !- Extended Field + 0.586305775768392, !- Extended Field + 0.587372822734987, !- Extended Field + 0.587911439411382, !- Extended Field + 0.587921625797575, !- Extended Field + 0.587403381893568, !- Extended Field + 0.586356707699359, !- Extended Field + 0.53303814061435, !- Extended Field + 0.533036615982924, !- Extended Field + 0.533018552700384, !- Extended Field + 0.532983950766732, !- Extended Field + 0.532932810181966, !- Extended Field + 0.532865130946087, !- Extended Field + 0.532780913059096, !- Extended Field + 0.532680156520991, !- Extended Field + 0.532562861331774, !- Extended Field + 0.532429027491444, !- Extended Field + 0.532278655, !- Extended Field + 0.465367877, !- Extended Field + 0.469689481923399, !- Extended Field + 0.473482656556598, !- Extended Field + 0.476747400899595, !- Extended Field + 0.479483714952392, !- Extended Field + 0.481691598714988, !- Extended Field + 0.483371052187382, !- Extended Field + 0.484522075369576, !- Extended Field + 0.485144668261568, !- Extended Field + 0.48523883086336, !- Extended Field + 0.45290405641435, !- Extended Field + 0.453669405802923, !- Extended Field + 0.454418216540384, !- Extended Field + 0.455150488626731, !- Extended Field + 0.455866222061966, !- Extended Field + 0.456565416846087, !- Extended Field + 0.457248072979096, !- Extended Field + 0.457914190460991, !- Extended Field + 0.458563769291774, !- Extended Field + 0.459196809471443, !- Extended Field + 0.459813311, !- Extended Field + 0.418243333, !- Extended Field + 0.423705774719399, !- Extended Field + 0.428639786148598, !- Extended Field + 0.433045367287595, !- Extended Field + 0.436922518136392, !- Extended Field + 0.440271238694988, !- Extended Field + 0.443091528963382, !- Extended Field + 0.445383388941575, !- Extended Field + 0.447146818629568, !- Extended Field + 0.448381818027359, !- Extended Field + 0.43237918821435, !- Extended Field + 0.433911411622924, !- Extended Field + 0.435427096380384, !- Extended Field + 0.436926242486732, !- Extended Field + 0.438408849941966, !- Extended Field + 0.439874918746087, !- Extended Field + 0.441324448899096, !- Extended Field + 0.442757440400992, !- Extended Field + 0.444173893251774, !- Extended Field + 0.445573807451443, !- Extended Field + 0.446957183, !- Extended Field + 0.435379653, !- Extended Field + 0.4419829315154, !- Extended Field + 0.448057779740598, !- Extended Field + 0.453604197675596, !- Extended Field + 0.458622185320392, !- Extended Field + 0.463111742674988, !- Extended Field + 0.467072869739382, !- Extended Field + 0.470505566513576, !- Extended Field + 0.473409832997568, !- Extended Field + 0.47578566919136, !- Extended Field + 0.47146353601435, !- Extended Field + 0.473762633442923, !- Extended Field + 0.476045192220384, !- Extended Field + 0.478311212346732, !- Extended Field + 0.480560693821966, !- Extended Field + 0.482793636646087, !- Extended Field + 0.485010040819096, !- Extended Field + 0.487209906340991, !- Extended Field + 0.489393233211774, !- Extended Field + 0.491560021431443, !- Extended Field + 0.493710271, !- Extended Field + 0.516776837, !- Extended Field + 0.5245209523114, !- Extended Field + 0.531736637332598, !- Extended Field + 0.538423892063595, !- Extended Field + 0.544582716504392, !- Extended Field + 0.550213110654987, !- Extended Field + 0.555315074515382, !- Extended Field + 0.559888608085576, !- Extended Field + 0.563933711365568, !- Extended Field + 0.567450384355359, !- Extended Field + 0.57015709981435, !- Extended Field + 0.573223071262923, !- Extended Field + 0.576272504060384, !- Extended Field + 0.579305398206732, !- Extended Field + 0.582321753701966, !- Extended Field + 0.585321570546087, !- Extended Field + 0.588304848739096, !- Extended Field + 0.591271588280991, !- Extended Field + 0.594221789171774, !- Extended Field + 0.597155451411444, !- Extended Field + 0.600072575, !- Extended Field + 0.662434885, !- Extended Field + 0.6713198371074, !- Extended Field + 0.679676358924598, !- Extended Field + 0.687504450451595, !- Extended Field + 0.694804111688392, !- Extended Field + 0.701575342634988, !- Extended Field + 0.707818143291382, !- Extended Field + 0.713532513657576, !- Extended Field + 0.718718453733568, !- Extended Field + 0.72337596351936, !- Extended Field + 0.72845987961435, !- Extended Field + 0.732292725082924, !- Extended Field + 0.736109031900384, !- Extended Field + 0.739908800066732, !- Extended Field + 0.743692029581966, !- Extended Field + 0.747458720446088, !- Extended Field + 0.751208872659096, !- Extended Field + 0.754942486220991, !- Extended Field + 0.758659561131774, !- Extended Field + 0.762360097391444, !- Extended Field + 0.766044095, !- Extended Field + 0.872353797, !- Extended Field + 0.882379585903399, !- Extended Field + 0.891876944516598, !- Extended Field + 0.900845872839595, !- Extended Field + 0.909286370872392, !- Extended Field + 0.917198438614988, !- Extended Field + 0.924582076067382, !- Extended Field + 0.931437283229576, !- Extended Field + 0.937764060101568, !- Extended Field + 0.94356240668336, !- Extended Field + 0.94637187541435, !- Extended Field + 0.950971594902923, !- Extended Field + 0.955554775740384, !- Extended Field + 0.960121417926732, !- Extended Field + 0.964671521461966, !- Extended Field + 0.969205086346087, !- Extended Field + 0.973722112579096, !- Extended Field + 0.978222600160991, !- Extended Field + 0.982706549091774, !- Extended Field + 0.987173959371443, !- Extended Field + 0.991624831, !- Extended Field + 1.146533573, !- Extended Field + 1.1577001986994, !- Extended Field + 1.1683383941086, !- Extended Field + 1.1784481592276, !- Extended Field + 1.18802949405639, !- Extended Field + 1.19708239859499, !- Extended Field + 1.20560687284338, !- Extended Field + 1.21360291680158, !- Extended Field + 1.22107053046957, !- Extended Field + 1.22800971384736, !- Extended Field + 1.22389308721435, !- Extended Field + 1.22925968072292, !- Extended Field + 1.23460973558038, !- Extended Field + 1.23994325178673, !- Extended Field + 1.24526022934197, !- Extended Field + 1.25056066824609, !- Extended Field + 1.2558445684991, !- Extended Field + 1.26111193010099, !- Extended Field + 1.26636275305177, !- Extended Field + 1.27159703735144, !- Extended Field + 1.276814783, !- Extended Field + 1.484974213, !- Extended Field + 1.4972816754954, !- Extended Field + 1.5090607077006, !- Extended Field + 1.5203113096156, !- Extended Field + 1.53103348124039, !- Extended Field + 1.54122722257499, !- Extended Field + 1.55089253361938, !- Extended Field + 1.56002941437358, !- Extended Field + 1.56863786483757, !- Extended Field + 1.57671788501136, !- Extended Field + 1.56102351501435, !- Extended Field + 1.56715698254292, !- Extended Field + 1.57327391142038, !- Extended Field + 1.57937430164673, !- Extended Field + 1.58545815322197, !- Extended Field + 1.59152546614609, !- Extended Field + 1.5975762404191, !- Extended Field + 1.60361047604099, !- Extended Field + 1.60962817301177, !- Extended Field + 1.61562933133144, !- Extended Field + 1.621613951, !- Extended Field + 0.992306693, !- Extended Field + 0.993205787535399, !- Extended Field + 0.993576451780598, !- Extended Field + 0.993418685735596, !- Extended Field + 0.992732489400392, !- Extended Field + 0.991517862774987, !- Extended Field + 0.989774805859382, !- Extended Field + 0.987503318653576, !- Extended Field + 0.984703401157568, !- Extended Field + 0.981375053371359, !- Extended Field + 0.87213395701435, !- Extended Field + 0.870598684342923, !- Extended Field + 0.869046873020384, !- Extended Field + 0.867478523046732, !- Extended Field + 0.865893634421966, !- Extended Field + 0.864292207146087, !- Extended Field + 0.862674241219096, !- Extended Field + 0.861039736640991, !- Extended Field + 0.859388693411774, !- Extended Field + 0.857721111531443, !- Extended Field + 0.856036991, !- Extended Field + 0.752399557, !- Extended Field + 0.754439488331399, !- Extended Field + 0.755950989372598, !- Extended Field + 0.756934060123595, !- Extended Field + 0.757388700584392, !- Extended Field + 0.757314910754987, !- Extended Field + 0.756712690635382, !- Extended Field + 0.755582040225575, !- Extended Field + 0.753922959525568, !- Extended Field + 0.75173544853536, !- Extended Field + 0.67278144081435, !- Extended Field + 0.672013042162923, !- Extended Field + 0.671228104860384, !- Extended Field + 0.670426628906732, !- Extended Field + 0.669608614301966, !- Extended Field + 0.668774061046087, !- Extended Field + 0.667922969139096, !- Extended Field + 0.667055338580991, !- Extended Field + 0.666171169371774, !- Extended Field + 0.665270461511444, !- Extended Field + 0.664353215, !- Extended Field + 0.576753285, !- Extended Field + 0.579934053127399, !- Extended Field + 0.582586390964598, !- Extended Field + 0.584710298511595, !- Extended Field + 0.586305775768392, !- Extended Field + 0.587372822734987, !- Extended Field + 0.587911439411382, !- Extended Field + 0.587921625797575, !- Extended Field + 0.587403381893568, !- Extended Field + 0.586356707699359, !- Extended Field + 0.53303814061435, !- Extended Field + 0.533036615982924, !- Extended Field + 0.533018552700384, !- Extended Field + 0.532983950766732, !- Extended Field + 0.532932810181966, !- Extended Field + 0.532865130946087, !- Extended Field + 0.532780913059096, !- Extended Field + 0.532680156520991, !- Extended Field + 0.532562861331774, !- Extended Field + 0.532429027491444, !- Extended Field + 0.532278655, !- Extended Field + 0.465367877, !- Extended Field + 0.469689481923399, !- Extended Field + 0.473482656556598, !- Extended Field + 0.476747400899595, !- Extended Field + 0.479483714952392, !- Extended Field + 0.481691598714988, !- Extended Field + 0.483371052187382, !- Extended Field + 0.484522075369576, !- Extended Field + 0.485144668261568, !- Extended Field + 0.48523883086336, !- Extended Field + 0.45290405641435, !- Extended Field + 0.453669405802923, !- Extended Field + 0.454418216540384, !- Extended Field + 0.455150488626731, !- Extended Field + 0.455866222061966, !- Extended Field + 0.456565416846087, !- Extended Field + 0.457248072979096, !- Extended Field + 0.457914190460991, !- Extended Field + 0.458563769291774, !- Extended Field + 0.459196809471443, !- Extended Field + 0.459813311, !- Extended Field + 0.418243333, !- Extended Field + 0.423705774719399, !- Extended Field + 0.428639786148598, !- Extended Field + 0.433045367287595, !- Extended Field + 0.436922518136392, !- Extended Field + 0.440271238694988, !- Extended Field + 0.443091528963382, !- Extended Field + 0.445383388941575, !- Extended Field + 0.447146818629568, !- Extended Field + 0.448381818027359, !- Extended Field + 0.43237918821435, !- Extended Field + 0.433911411622924, !- Extended Field + 0.435427096380384, !- Extended Field + 0.436926242486732, !- Extended Field + 0.438408849941966, !- Extended Field + 0.439874918746087, !- Extended Field + 0.441324448899096, !- Extended Field + 0.442757440400992, !- Extended Field + 0.444173893251774, !- Extended Field + 0.445573807451443, !- Extended Field + 0.446957183, !- Extended Field + 0.435379653, !- Extended Field + 0.4419829315154, !- Extended Field + 0.448057779740598, !- Extended Field + 0.453604197675596, !- Extended Field + 0.458622185320392, !- Extended Field + 0.463111742674988, !- Extended Field + 0.467072869739382, !- Extended Field + 0.470505566513576, !- Extended Field + 0.473409832997568, !- Extended Field + 0.47578566919136, !- Extended Field + 0.47146353601435, !- Extended Field + 0.473762633442923, !- Extended Field + 0.476045192220384, !- Extended Field + 0.478311212346732, !- Extended Field + 0.480560693821966, !- Extended Field + 0.482793636646087, !- Extended Field + 0.485010040819096, !- Extended Field + 0.487209906340991, !- Extended Field + 0.489393233211774, !- Extended Field + 0.491560021431443, !- Extended Field + 0.493710271, !- Extended Field + 0.516776837, !- Extended Field + 0.5245209523114, !- Extended Field + 0.531736637332598, !- Extended Field + 0.538423892063595, !- Extended Field + 0.544582716504392, !- Extended Field + 0.550213110654987, !- Extended Field + 0.555315074515382, !- Extended Field + 0.559888608085576, !- Extended Field + 0.563933711365568, !- Extended Field + 0.567450384355359, !- Extended Field + 0.57015709981435, !- Extended Field + 0.573223071262923, !- Extended Field + 0.576272504060384, !- Extended Field + 0.579305398206732, !- Extended Field + 0.582321753701966, !- Extended Field + 0.585321570546087, !- Extended Field + 0.588304848739096, !- Extended Field + 0.591271588280991, !- Extended Field + 0.594221789171774, !- Extended Field + 0.597155451411444, !- Extended Field + 0.600072575, !- Extended Field + 0.662434885, !- Extended Field + 0.6713198371074, !- Extended Field + 0.679676358924598, !- Extended Field + 0.687504450451595, !- Extended Field + 0.694804111688392, !- Extended Field + 0.701575342634988, !- Extended Field + 0.707818143291382, !- Extended Field + 0.713532513657576, !- Extended Field + 0.718718453733568, !- Extended Field + 0.72337596351936, !- Extended Field + 0.72845987961435, !- Extended Field + 0.732292725082924, !- Extended Field + 0.736109031900384, !- Extended Field + 0.739908800066732, !- Extended Field + 0.743692029581966, !- Extended Field + 0.747458720446088, !- Extended Field + 0.751208872659096, !- Extended Field + 0.754942486220991, !- Extended Field + 0.758659561131774, !- Extended Field + 0.762360097391444, !- Extended Field + 0.766044095, !- Extended Field + 0.872353797, !- Extended Field + 0.882379585903399, !- Extended Field + 0.891876944516598, !- Extended Field + 0.900845872839595, !- Extended Field + 0.909286370872392, !- Extended Field + 0.917198438614988, !- Extended Field + 0.924582076067382, !- Extended Field + 0.931437283229576, !- Extended Field + 0.937764060101568, !- Extended Field + 0.94356240668336, !- Extended Field + 0.94637187541435, !- Extended Field + 0.950971594902923, !- Extended Field + 0.955554775740384, !- Extended Field + 0.960121417926732, !- Extended Field + 0.964671521461966, !- Extended Field + 0.969205086346087, !- Extended Field + 0.973722112579096, !- Extended Field + 0.978222600160991, !- Extended Field + 0.982706549091774, !- Extended Field + 0.987173959371443, !- Extended Field + 0.991624831, !- Extended Field + 1.146533573, !- Extended Field + 1.1577001986994, !- Extended Field + 1.1683383941086, !- Extended Field + 1.1784481592276, !- Extended Field + 1.18802949405639, !- Extended Field + 1.19708239859499, !- Extended Field + 1.20560687284338, !- Extended Field + 1.21360291680158, !- Extended Field + 1.22107053046957, !- Extended Field + 1.22800971384736, !- Extended Field + 1.22389308721435, !- Extended Field + 1.22925968072292, !- Extended Field + 1.23460973558038, !- Extended Field + 1.23994325178673, !- Extended Field + 1.24526022934197, !- Extended Field + 1.25056066824609, !- Extended Field + 1.2558445684991, !- Extended Field + 1.26111193010099, !- Extended Field + 1.26636275305177, !- Extended Field + 1.27159703735144, !- Extended Field + 1.276814783, !- Extended Field + 1.484974213, !- Extended Field + 1.4972816754954, !- Extended Field + 1.5090607077006, !- Extended Field + 1.5203113096156, !- Extended Field + 1.53103348124039, !- Extended Field + 1.54122722257499, !- Extended Field + 1.55089253361938, !- Extended Field + 1.56002941437358, !- Extended Field + 1.56863786483757, !- Extended Field + 1.57671788501136, !- Extended Field + 1.56102351501435, !- Extended Field + 1.56715698254292, !- Extended Field + 1.57327391142038, !- Extended Field + 1.57937430164673, !- Extended Field + 1.58545815322197, !- Extended Field + 1.59152546614609, !- Extended Field + 1.5975762404191, !- Extended Field + 1.60361047604099, !- Extended Field + 1.60962817301177, !- Extended Field + 1.61562933133144, !- Extended Field + 1.621613951; !- Extended Field Coil:Cooling:DX:SingleSpeed:ThermalStorage, PSZ-AC:2_CoolC DXCoil, !- Name @@ -7458,80 +6642,95 @@ Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type - Table:MultiVariableLookup, - TESCapTempModFac_CoolAndDischarge_SCU, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 2, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + TESCapTempModFac_CoolAndDischarge_SCU_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 16.67, !- Minimum Value + 22.22, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 16.67, !- Value 1 + 19.44, !- Extended Field + 22.22; !- Extended Field + + Table:IndependentVariable, + TESCapTempModFac_CoolAndDischarge_SCU_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 23.89, !- Minimum Value + 46.11, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1., !- Normalization Reference - 16.67, !- Minimum Value of X1 - 22.22, !- Maximum Value of X1 - 23.89, !- Minimum Value of X2 - 46.11, !- Maximum Value of X2 - -10.0, !- Minimum Value of X3 - 50.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.0, !- Minimum Table Output - 3.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Temperature, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 23.89, !- Value 1 + 35.0, !- Extended Field + 46.11; !- Extended Field + + Table:IndependentVariable, + TESCapTempModFac_CoolAndDischarge_SCU_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -10.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -10.0, !- Value 1 + 26.7, !- Extended Field + 50.0; !- Extended Field + + Table:IndependentVariableList, + TESCapTempModFac_CoolAndDischarge_SCU_IndependentVariableList, !- Name + TESCapTempModFac_CoolAndDischarge_SCU_IndependentVariable1, !- Independent Variable 1 Name + TESCapTempModFac_CoolAndDischarge_SCU_IndependentVariable2, !- Extended Field + TESCapTempModFac_CoolAndDischarge_SCU_IndependentVariable3; !- Extended Field + + Table:Lookup, + TESCapTempModFac_CoolAndDischarge_SCU, !- Name + TESCapTempModFac_CoolAndDischarge_SCU_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1., !- Normalization Divisor + 0.0, !- Minimum Output + 3.5, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 3, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 16.67, !- Field 3 Determined by the Number of Independent Variables - 19.44, !- - 22.22, !- - 23.89, !- - 35.0, !- - 46.11, !- - -10.0, !- - 26.7, !- - 50.0, !- - -10.0, !- - 6.80433, !- - 8.73513, !- - 9.51584, !- - 8.90216, !- - 10.6500081, !- - 11.3162, !- - 10.28818, !- - 11.46908, !- - 14.03382, !- - 26.7, !- - -1.2312451, !- - -0.784886699999999, !- - -0.299575000000001, !- - 0.3639417, !- - 1.0000, !- - 1.4997574, !- - 2.1641212, !- - 2.6597955, !- - 3.5001126, !- - 50.0, !- - -6.33285, !- - -6.82893, !- - -6.53116, !- - -5.05678, !- - -5.1265719, !- - -4.73248, !- - -2.99366, !- - -2.93302, !- - -3.1875; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 6.80433, !- Output Value 1 + -1.2312451, !- Extended Field + -6.33285, !- Extended Field + 8.90216, !- Extended Field + 0.3639417, !- Extended Field + -5.05678, !- Extended Field + 10.28818, !- Extended Field + 2.1641212, !- Extended Field + -2.99366, !- Extended Field + 8.73513, !- Extended Field + -0.784886699999999, !- Extended Field + -6.82893, !- Extended Field + 10.6500081, !- Extended Field + 1.0000, !- Extended Field + -5.1265719, !- Extended Field + 11.46908, !- Extended Field + 2.6597955, !- Extended Field + -2.93302, !- Extended Field + 9.51584, !- Extended Field + -0.299575000000001, !- Extended Field + -6.53116, !- Extended Field + 11.3162, !- Extended Field + 1.4997574, !- Extended Field + -4.73248, !- Extended Field + 14.03382, !- Extended Field + 3.5001126, !- Extended Field + -3.1875; !- Extended Field Curve:Cubic, EvapPartLoadFac_coolAndDischarge_SCU, !- Name @@ -7558,155 +6757,185 @@ Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type - Table:MultiVariableLookup, - EIRTempModFac_CoolandDischarge_SCU, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 2, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + EIRTempModFac_CoolandDischarge_SCU_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 16.67, !- Minimum Value + 22.22, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 16.67, !- Value 1 + 19.44, !- Extended Field + 22.22; !- Extended Field + + Table:IndependentVariable, + EIRTempModFac_CoolandDischarge_SCU_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 23.89, !- Minimum Value + 46.11, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1., !- Normalization Reference - 16.67, !- Minimum Value of X1 - 22.22, !- Maximum Value of X1 - 23.89, !- Minimum Value of X2 - 46.11, !- Maximum Value of X2 - -10.0, !- Minimum Value of X3 - 50.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.5, !- Minimum Table Output - 1.7, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Temperature, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 23.89, !- Value 1 + 35.0, !- Extended Field + 46.11; !- Extended Field + + Table:IndependentVariable, + EIRTempModFac_CoolandDischarge_SCU_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -10.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -10.0, !- Value 1 + 26.7, !- Extended Field + 50.0; !- Extended Field + + Table:IndependentVariableList, + EIRTempModFac_CoolandDischarge_SCU_IndependentVariableList, !- Name + EIRTempModFac_CoolandDischarge_SCU_IndependentVariable1, !- Independent Variable 1 Name + EIRTempModFac_CoolandDischarge_SCU_IndependentVariable2, !- Extended Field + EIRTempModFac_CoolandDischarge_SCU_IndependentVariable3; !- Extended Field + + Table:Lookup, + EIRTempModFac_CoolandDischarge_SCU, !- Name + EIRTempModFac_CoolandDischarge_SCU_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1., !- Normalization Divisor + 0.5, !- Minimum Output + 1.7, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 3, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 16.67, !- Field 3 Determined by the Number of Independent Variables - 19.44, !- - 22.22, !- - 23.89, !- - 35.0, !- - 46.11, !- - -10.0, !- - 26.7, !- - 50.0, !- - -10.0, !- - 0.6618, !- - 0.5145, !- - 0.5399, !- - 0.8094, !- - 0.6914, !- - 0.6269, !- - 0.8315, !- - 0.8951, !- - 0.7182, !- - 26.7, !- - 0.8177, !- - 0.7905, !- - 0.7092, !- - 1.0684, !- - 1.0000, !- - 0.9252, !- - 1.3579, !- - 1.3023, !- - 1.1850, !- - 50.0, !- - 0.9166, !- - 0.9657, !- - 0.8167, !- - 1.2329, !- - 1.1960, !- - 1.1146, !- - 1.6921, !- - 1.5607, !- - 1.4813; !- - - Table:MultiVariableLookup, - EvapCapTempModFac_CoolandDischarge_SCU, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 2, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1., !- Normalization Reference - 16.67, !- Minimum Value of X1 - 22.22, !- Maximum Value of X1 - 23.89, !- Minimum Value of X2 - 46.11, !- Maximum Value of X2 - -10.0, !- Minimum Value of X3 - 50.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.7, !- Minimum Table Output - 1.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Temperature, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.6618, !- Output Value 1 + 0.8177, !- Extended Field + 0.9166, !- Extended Field + 0.8094, !- Extended Field + 1.0684, !- Extended Field + 1.2329, !- Extended Field + 0.8315, !- Extended Field + 1.3579, !- Extended Field + 1.6921, !- Extended Field + 0.5145, !- Extended Field + 0.7905, !- Extended Field + 0.9657, !- Extended Field + 0.6914, !- Extended Field + 1.0000, !- Extended Field + 1.1960, !- Extended Field + 0.8951, !- Extended Field + 1.3023, !- Extended Field + 1.5607, !- Extended Field + 0.5399, !- Extended Field + 0.7092, !- Extended Field + 0.8167, !- Extended Field + 0.6269, !- Extended Field + 0.9252, !- Extended Field + 1.1146, !- Extended Field + 0.7182, !- Extended Field + 1.1850, !- Extended Field + 1.4813; !- Extended Field + + Table:IndependentVariable, + EvapCapTempModFac_CoolandDischarge_SCU_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 16.67, !- Minimum Value + 22.22, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 16.67, !- Value 1 + 19.44, !- Extended Field + 22.22; !- Extended Field + + Table:IndependentVariable, + EvapCapTempModFac_CoolandDischarge_SCU_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 23.89, !- Minimum Value + 46.11, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 23.89, !- Value 1 + 35.0, !- Extended Field + 46.11; !- Extended Field + + Table:IndependentVariable, + EvapCapTempModFac_CoolandDischarge_SCU_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -10.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -10.0, !- Value 1 + 26.7, !- Extended Field + 50.0; !- Extended Field + + Table:IndependentVariableList, + EvapCapTempModFac_CoolandDischarge_SCU_IndependentVariableList, !- Name + EvapCapTempModFac_CoolandDischarge_SCU_IndependentVariable1, !- Independent Variable 1 Name + EvapCapTempModFac_CoolandDischarge_SCU_IndependentVariable2, !- Extended Field + EvapCapTempModFac_CoolandDischarge_SCU_IndependentVariable3; !- Extended Field + + Table:Lookup, + EvapCapTempModFac_CoolandDischarge_SCU, !- Name + EvapCapTempModFac_CoolandDischarge_SCU_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1., !- Normalization Divisor + 0.7, !- Minimum Output + 1.5, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 3, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 16.67, !- Field 3 Determined by the Number of Independent Variables - 19.44, !- - 22.22, !- - 23.89, !- - 35.0, !- - 46.11, !- - -10.0, !- - 26.7, !- - 50.0, !- - -10.0, !- - 1.1049, !- - 1.3684, !- - 1.4026, !- - 1.1054, !- - 1.2742, !- - 1.3944, !- - 1.1685, !- - 1.2067, !- - 1.3695, !- - 26.7, !- - 0.9477, !- - 1.0182, !- - 1.1530, !- - 0.9163, !- - 1.0000, !- - 1.0928, !- - 0.8994, !- - 0.9571, !- - 1.0522, !- - 50.0, !- - 0.8479, !- - 0.7958, !- - 0.9946, !- - 0.7962, !- - 0.8259, !- - 0.9013, !- - 0.7285, !- - 0.7987, !- - 0.8509; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.1049, !- Output Value 1 + 0.9477, !- Extended Field + 0.8479, !- Extended Field + 1.1054, !- Extended Field + 0.9163, !- Extended Field + 0.7962, !- Extended Field + 1.1685, !- Extended Field + 0.8994, !- Extended Field + 0.7285, !- Extended Field + 1.3684, !- Extended Field + 1.0182, !- Extended Field + 0.7958, !- Extended Field + 1.2742, !- Extended Field + 1.0000, !- Extended Field + 0.8259, !- Extended Field + 1.2067, !- Extended Field + 0.9571, !- Extended Field + 0.7987, !- Extended Field + 1.4026, !- Extended Field + 1.1530, !- Extended Field + 0.9946, !- Extended Field + 1.3944, !- Extended Field + 1.0928, !- Extended Field + 0.9013, !- Extended Field + 1.3695, !- Extended Field + 1.0522, !- Extended Field + 0.8509; !- Extended Field Curve:Quadratic, EvapCapFlowModFac_coolAndDischarge_SCU, !- Name @@ -7720,80 +6949,95 @@ Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type - Table:MultiVariableLookup, - EvapCapTempModFac_CoolAndCharge_SCU, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 2, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + EvapCapTempModFac_CoolAndCharge_SCU_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 16.67, !- Minimum Value + 22.22, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1., !- Normalization Reference - 16.67, !- Minimum Value of X1 - 22.22, !- Maximum Value of X1 - 23.89, !- Minimum Value of X2 - 46.11, !- Maximum Value of X2 - -10.0, !- Minimum Value of X3 - 50.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.8, !- Minimum Table Output - 1.27, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Temperature, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 16.67, !- Value 1 + 19.44, !- Extended Field + 22.22; !- Extended Field + + Table:IndependentVariable, + EvapCapTempModFac_CoolAndCharge_SCU_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 23.89, !- Minimum Value + 46.11, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 23.89, !- Value 1 + 35.0, !- Extended Field + 46.11; !- Extended Field + + Table:IndependentVariable, + EvapCapTempModFac_CoolAndCharge_SCU_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -10.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -10.0, !- Value 1 + 26.7, !- Extended Field + 50.0; !- Extended Field + + Table:IndependentVariableList, + EvapCapTempModFac_CoolAndCharge_SCU_IndependentVariableList, !- Name + EvapCapTempModFac_CoolAndCharge_SCU_IndependentVariable1, !- Independent Variable 1 Name + EvapCapTempModFac_CoolAndCharge_SCU_IndependentVariable2, !- Extended Field + EvapCapTempModFac_CoolAndCharge_SCU_IndependentVariable3; !- Extended Field + + Table:Lookup, + EvapCapTempModFac_CoolAndCharge_SCU, !- Name + EvapCapTempModFac_CoolAndCharge_SCU_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1., !- Normalization Divisor + 0.8, !- Minimum Output + 1.27, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 3, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 16.67, !- Field 3 Determined by the Number of Independent Variables - 19.44, !- - 22.22, !- - 23.89, !- - 35.0, !- - 46.11, !- - -10.0, !- - 26.7, !- - 50.0, !- - -10.0, !- - 1.0806, !- - 1.1520, !- - 1.2697, !- - 1.0063, !- - 1.0856, !- - 1.1591, !- - 0.8530, !- - 0.8894, !- - 0.9741, !- - 26.7, !- - 1.0017, !- - 1.0680, !- - 1.2040, !- - 0.9295, !- - 1.0000, !- - 1.0883, !- - 0.8530, !- - 0.8894, !- - 0.9741, !- - 50.0, !- - 0.9516, !- - 1.0148, !- - 1.1622, !- - 0.8807, !- - 0.9457, !- - 1.0433, !- - 0.8126, !- - 0.8370, !- - 0.9193; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.0806, !- Output Value 1 + 1.0017, !- Extended Field + 0.9516, !- Extended Field + 1.0063, !- Extended Field + 0.9295, !- Extended Field + 0.8807, !- Extended Field + 0.8530, !- Extended Field + 0.8530, !- Extended Field + 0.8126, !- Extended Field + 1.1520, !- Extended Field + 1.0680, !- Extended Field + 1.0148, !- Extended Field + 1.0856, !- Extended Field + 1.0000, !- Extended Field + 0.9457, !- Extended Field + 0.8894, !- Extended Field + 0.8894, !- Extended Field + 0.8370, !- Extended Field + 1.2697, !- Extended Field + 1.2040, !- Extended Field + 1.1622, !- Extended Field + 1.1591, !- Extended Field + 1.0883, !- Extended Field + 1.0433, !- Extended Field + 0.9741, !- Extended Field + 0.9741, !- Extended Field + 0.9193; !- Extended Field Curve:Quadratic, EvapCapFlowModFac_coolAndCharge_SCU, !- Name @@ -7807,80 +7051,95 @@ Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type - Table:MultiVariableLookup, - EIRTempModFac_CoolAndCharge_SCU, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 2, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + EIRTempModFac_CoolAndCharge_SCU_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 16.67, !- Minimum Value + 22.22, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 16.67, !- Value 1 + 19.44, !- Extended Field + 22.22; !- Extended Field + + Table:IndependentVariable, + EIRTempModFac_CoolAndCharge_SCU_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 23.89, !- Minimum Value + 46.11, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 23.89, !- Value 1 + 35.0, !- Extended Field + 46.11; !- Extended Field + + Table:IndependentVariable, + EIRTempModFac_CoolAndCharge_SCU_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -10.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1., !- Normalization Reference - 16.67, !- Minimum Value of X1 - 22.22, !- Maximum Value of X1 - 23.89, !- Minimum Value of X2 - 46.11, !- Maximum Value of X2 - -10.0, !- Minimum Value of X3 - 50.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.6, !- Minimum Table Output - 1.6, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Temperature, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + -10.0, !- Value 1 + 26.7, !- Extended Field + 50.0; !- Extended Field + + Table:IndependentVariableList, + EIRTempModFac_CoolAndCharge_SCU_IndependentVariableList, !- Name + EIRTempModFac_CoolAndCharge_SCU_IndependentVariable1, !- Independent Variable 1 Name + EIRTempModFac_CoolAndCharge_SCU_IndependentVariable2, !- Extended Field + EIRTempModFac_CoolAndCharge_SCU_IndependentVariable3; !- Extended Field + + Table:Lookup, + EIRTempModFac_CoolAndCharge_SCU, !- Name + EIRTempModFac_CoolAndCharge_SCU_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1., !- Normalization Divisor + 0.6, !- Minimum Output + 1.6, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 3, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 16.67, !- Field 3 Determined by the Number of Independent Variables - 19.44, !- - 22.22, !- - 23.89, !- - 35.0, !- - 46.11, !- - -10.0, !- - 26.7, !- - 50.0, !- - -10.0, !- - 0.786227, !- - 0.776808, !- - 0.724162, !- - 1.081255, !- - 1.03936809, !- - 0.989304, !- - 1.510532, !- - 1.463723, !- - 1.369654, !- - 26.7, !- - 0.75674956, !- - 0.7468608, !- - 0.67998254, !- - 1.04350905, !- - 1.0000, !- - 0.93921584, !- - 1.43906976, !- - 1.41255219, !- - 1.31653442, !- - 50.0, !- - 0.738035, !- - 0.727848, !- - 0.651934, !- - 1.019545, !- - 0.97500609, !- - 0.907416, !- - 1.3937, !- - 1.380065, !- - 1.28281; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.786227, !- Output Value 1 + 0.75674956, !- Extended Field + 0.738035, !- Extended Field + 1.081255, !- Extended Field + 1.04350905, !- Extended Field + 1.019545, !- Extended Field + 1.510532, !- Extended Field + 1.43906976, !- Extended Field + 1.3937, !- Extended Field + 0.776808, !- Extended Field + 0.7468608, !- Extended Field + 0.727848, !- Extended Field + 1.03936809, !- Extended Field + 1.0000, !- Extended Field + 0.97500609, !- Extended Field + 1.463723, !- Extended Field + 1.41255219, !- Extended Field + 1.380065, !- Extended Field + 0.724162, !- Extended Field + 0.67998254, !- Extended Field + 0.651934, !- Extended Field + 0.989304, !- Extended Field + 0.93921584, !- Extended Field + 0.907416, !- Extended Field + 1.369654, !- Extended Field + 1.31653442, !- Extended Field + 1.28281; !- Extended Field Curve:Quadratic, EIRFlowModFac_coolAndCharge_SCU, !- Name @@ -7907,80 +7166,95 @@ Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type - Table:MultiVariableLookup, - TESCapTempModFac_CoolAndCharge_SCU, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 2, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + TESCapTempModFac_CoolAndCharge_SCU_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 16.67, !- Minimum Value + 22.22, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1., !- Normalization Reference - 16.67, !- Minimum Value of X1 - 22.22, !- Maximum Value of X1 - 23.89, !- Minimum Value of X2 - 46.11, !- Maximum Value of X2 - -10.0, !- Minimum Value of X3 - 50.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.0, !- Minimum Table Output - 3.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Temperature, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 16.67, !- Value 1 + 19.44, !- Extended Field + 22.22; !- Extended Field + + Table:IndependentVariable, + TESCapTempModFac_CoolAndCharge_SCU_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 23.89, !- Minimum Value + 46.11, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 23.89, !- Value 1 + 35.0, !- Extended Field + 46.11; !- Extended Field + + Table:IndependentVariable, + TESCapTempModFac_CoolAndCharge_SCU_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -10.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -10.0, !- Value 1 + 26.7, !- Extended Field + 50.0; !- Extended Field + + Table:IndependentVariableList, + TESCapTempModFac_CoolAndCharge_SCU_IndependentVariableList, !- Name + TESCapTempModFac_CoolAndCharge_SCU_IndependentVariable1, !- Independent Variable 1 Name + TESCapTempModFac_CoolAndCharge_SCU_IndependentVariable2, !- Extended Field + TESCapTempModFac_CoolAndCharge_SCU_IndependentVariable3; !- Extended Field + + Table:Lookup, + TESCapTempModFac_CoolAndCharge_SCU, !- Name + TESCapTempModFac_CoolAndCharge_SCU_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1., !- Normalization Divisor + 0.0, !- Minimum Output + 3.5, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 3, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 16.67, !- Field 3 Determined by the Number of Independent Variables - 19.44, !- - 22.22, !- - 23.89, !- - 35.0, !- - 46.11, !- - -10.0, !- - 26.7, !- - 50.0, !- - -10.0, !- - -1.701897, !- - -2.268539, !- - -2.86357, !- - -1.844856, !- - -2.47572121, !- - -2.86398, !- - -2.254584, !- - -2.394966, !- - -2.919994, !- - 26.7, !- - 1.30972335, !- - 1.10840783, !- - 0.9169337, !- - 1.22842402, !- - 1.0000, !- - 0.8517115, !- - 1.09349828, !- - 0.92919522, !- - 0.74290088, !- - 50.0, !- - 3.221733, !- - 3.252355, !- - 3.31709, !- - 3.17958, !- - 3.20665679, !- - 3.21072, !- - 3.21912, !- - 3.03963, !- - 3.06839; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -1.701897, !- Output Value 1 + 1.30972335, !- Extended Field + 3.221733, !- Extended Field + -1.844856, !- Extended Field + 1.22842402, !- Extended Field + 3.17958, !- Extended Field + -2.254584, !- Extended Field + 1.09349828, !- Extended Field + 3.21912, !- Extended Field + -2.268539, !- Extended Field + 1.10840783, !- Extended Field + 3.252355, !- Extended Field + -2.47572121, !- Extended Field + 1.0000, !- Extended Field + 3.20665679, !- Extended Field + -2.394966, !- Extended Field + 0.92919522, !- Extended Field + 3.03963, !- Extended Field + -2.86357, !- Extended Field + 0.9169337, !- Extended Field + 3.31709, !- Extended Field + -2.86398, !- Extended Field + 0.8517115, !- Extended Field + 3.21072, !- Extended Field + -2.919994, !- Extended Field + 0.74290088, !- Extended Field + 3.06839; !- Extended Field Curve:Cubic, TESPartLoadFac_coolAndCharge_SCU, !- Name @@ -8095,155 +7369,185 @@ Dimensionless, !- Input Unit Type for X Dimensionless; !- Output Unit Type - Table:MultiVariableLookup, - SHRTempModFac_coolAndCharge_SCU, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 2, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + SHRTempModFac_coolAndCharge_SCU_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 16.67, !- Minimum Value + 22.22, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 16.67, !- Value 1 + 19.44, !- Extended Field + 22.22; !- Extended Field + + Table:IndependentVariable, + SHRTempModFac_coolAndCharge_SCU_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 23.8889, !- Minimum Value + 29.4444, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 23.8889, !- Value 1 + 26.6666666666667, !- Extended Field + 29.4444; !- Extended Field + + Table:IndependentVariable, + SHRTempModFac_coolAndCharge_SCU_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -10.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1., !- Normalization Reference - 16.67, !- Minimum Value of X1 - 22.22, !- Maximum Value of X1 - 23.8889, !- Minimum Value of X2 - 29.4444, !- Maximum Value of X2 - -10.0, !- Minimum Value of X3 - 50.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.0, !- Minimum Table Output - 3.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Temperature, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + -10.0, !- Value 1 + 26.7, !- Extended Field + 50.0; !- Extended Field + + Table:IndependentVariableList, + SHRTempModFac_coolAndCharge_SCU_IndependentVariableList, !- Name + SHRTempModFac_coolAndCharge_SCU_IndependentVariable1, !- Independent Variable 1 Name + SHRTempModFac_coolAndCharge_SCU_IndependentVariable2, !- Extended Field + SHRTempModFac_coolAndCharge_SCU_IndependentVariable3; !- Extended Field + + Table:Lookup, + SHRTempModFac_coolAndCharge_SCU, !- Name + SHRTempModFac_coolAndCharge_SCU_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1., !- Normalization Divisor + 0.0, !- Minimum Output + 3.5, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 3, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 16.67, !- Field 3 Determined by the Number of Independent Variables - 19.44, !- - 22.22, !- - 23.8889, !- - 26.6666666666667, !- - 29.4444, !- - -10.0, !- - 26.7, !- - 50.0, !- - -10.0, !- - 1.06986520817413, !- - 1.26479571889299, !- - 1.45972622961185, !- - 0.760289485493558, !- - 0.941162559999999, !- - 1.12203563450644, !- - 0.515671164895312, !- - 0.682486803189337, !- - 0.849302441483363, !- - 26.7, !- - 1.1367485848291, !- - 1.34386531365314, !- - 1.55098204247718, !- - 0.80781951790938, !- - 1.0000, !- - 1.19218048209062, !- - 0.547908710792014, !- - 0.725152946149215, !- - 0.902397181506416, !- - 50.0, !- - 1.17921132804601, !- - 1.39406481114391, !- - 1.60891829424181, !- - 0.837995260560297, !- - 1.03735456, !- - 1.2367138594397, !- - 0.568375599603817, !- - 0.752240715385323, !- - 0.936105831166829; !- - - Table:MultiVariableLookup, - SHRTempModFac_coolAndDischarge_SCU, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 2, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 1., !- Normalization Reference - 16.67, !- Minimum Value of X1 - 22.22, !- Maximum Value of X1 - 23.8889, !- Minimum Value of X2 - 29.4444, !- Maximum Value of X2 - -10.0, !- Minimum Value of X3 - 50.0, !- Maximum Value of X3 - , !- Minimum Value of X4 - , !- Maximum Value of X4 - , !- Minimum Value of X5 - , !- Maximum Value of X5 - , !- Minimum Value of X6 - , !- Maximum Value of X6 - 0.0, !- Minimum Table Output - 3.5, !- Maximum Table Output - Temperature, !- Input Unit Type for X1 - Temperature, !- Input Unit Type for X2 - Temperature, !- Input Unit Type for X3 - , !- Input Unit Type for X4 - , !- Input Unit Type for X5 - , !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 1.06986520817413, !- Output Value 1 + 1.1367485848291, !- Extended Field + 1.17921132804601, !- Extended Field + 0.760289485493558, !- Extended Field + 0.80781951790938, !- Extended Field + 0.837995260560297, !- Extended Field + 0.515671164895312, !- Extended Field + 0.547908710792014, !- Extended Field + 0.568375599603817, !- Extended Field + 1.26479571889299, !- Extended Field + 1.34386531365314, !- Extended Field + 1.39406481114391, !- Extended Field + 0.941162559999999, !- Extended Field + 1.0000, !- Extended Field + 1.03735456, !- Extended Field + 0.682486803189337, !- Extended Field + 0.725152946149215, !- Extended Field + 0.752240715385323, !- Extended Field + 1.45972622961185, !- Extended Field + 1.55098204247718, !- Extended Field + 1.60891829424181, !- Extended Field + 1.12203563450644, !- Extended Field + 1.19218048209062, !- Extended Field + 1.2367138594397, !- Extended Field + 0.849302441483363, !- Extended Field + 0.902397181506416, !- Extended Field + 0.936105831166829; !- Extended Field + + Table:IndependentVariable, + SHRTempModFac_coolAndDischarge_SCU_IndependentVariable1, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 16.67, !- Minimum Value + 22.22, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 16.67, !- Value 1 + 19.44, !- Extended Field + 22.22; !- Extended Field + + Table:IndependentVariable, + SHRTempModFac_coolAndDischarge_SCU_IndependentVariable2, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 23.8889, !- Minimum Value + 29.4444, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 23.8889, !- Value 1 + 26.6666666666667, !- Extended Field + 29.4444; !- Extended Field + + Table:IndependentVariable, + SHRTempModFac_coolAndDischarge_SCU_IndependentVariable3, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -10.0, !- Minimum Value + 50.0, !- Maximum Value + , !- Normalization Reference Value + Temperature, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -10.0, !- Value 1 + 26.7, !- Extended Field + 50.0; !- Extended Field + + Table:IndependentVariableList, + SHRTempModFac_coolAndDischarge_SCU_IndependentVariableList, !- Name + SHRTempModFac_coolAndDischarge_SCU_IndependentVariable1, !- Independent Variable 1 Name + SHRTempModFac_coolAndDischarge_SCU_IndependentVariable2, !- Extended Field + SHRTempModFac_coolAndDischarge_SCU_IndependentVariable3; !- Extended Field + + Table:Lookup, + SHRTempModFac_coolAndDischarge_SCU, !- Name + SHRTempModFac_coolAndDischarge_SCU_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1., !- Normalization Divisor + 0.0, !- Minimum Output + 3.5, !- Maximum Output Dimensionless, !- Output Unit Type - 3, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 3, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 16.67, !- Field 3 Determined by the Number of Independent Variables - 19.44, !- - 22.22, !- - 23.8889, !- - 26.6666666666667, !- - 29.4444, !- - -10.0, !- - 26.7, !- - 50.0, !- - -10.0, !- - 1.00447536001483, !- - 1.18749177501384, !- - 1.37050819001285, !- - 0.713820814829536, !- - 0.88363898, !- - 1.05345714517046, !- - 0.484153494337371, !- - 0.640773409679287, !- - 0.797393325021205, !- - 26.7, !- - 1.1367485848291, !- - 1.34386531365314, !- - 1.55098204247718, !- - 0.80781951790938, !- - 1.0000, !- - 1.19218048209062, !- - 0.547908710792014, !- - 0.725152946149215, !- - 0.902397181506416, !- - 50.0, !- - 1.22072586379838, !- - 1.44314333682196, !- - 1.66556080984554, !- - 0.867497168638545, !- - 1.07387498, !- - 1.28025279136145, !- - 0.5883854558436, !- - 0.77872360554293, !- - 0.969061755242259; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 1.00447536001483, !- Output Value 1 + 1.1367485848291, !- Extended Field + 1.22072586379838, !- Extended Field + 0.713820814829536, !- Extended Field + 0.80781951790938, !- Extended Field + 0.867497168638545, !- Extended Field + 0.484153494337371, !- Extended Field + 0.547908710792014, !- Extended Field + 0.5883854558436, !- Extended Field + 1.18749177501384, !- Extended Field + 1.34386531365314, !- Extended Field + 1.44314333682196, !- Extended Field + 0.88363898, !- Extended Field + 1.0000, !- Extended Field + 1.07387498, !- Extended Field + 0.640773409679287, !- Extended Field + 0.725152946149215, !- Extended Field + 0.77872360554293, !- Extended Field + 1.37050819001285, !- Extended Field + 1.55098204247718, !- Extended Field + 1.66556080984554, !- Extended Field + 1.05345714517046, !- Extended Field + 1.19218048209062, !- Extended Field + 1.28025279136145, !- Extended Field + 0.797393325021205, !- Extended Field + 0.902397181506416, !- Extended Field + 0.969061755242259; !- Extended Field OutdoorAir:Node, PSZ-AC:4 Ambient Node; !- Name diff --git a/testfiles/SmallOffice_CentralDOAS.idf b/testfiles/SmallOffice_CentralDOAS.idf new file mode 100644 index 00000000000..14cb118f261 --- /dev/null +++ b/testfiles/SmallOffice_CentralDOAS.idf @@ -0,0 +1,5433 @@ +! SmallOffice_CentralDOAS RefBldgSmallOfficeNew2004_Chicago.idf +! +! This example file is revised based on RefBldgSmallOfficeNew2004_Chicago.idf +! +! Description: Single story, five zone office building. +! Form: Area = 511 m2 (5,500 ft2); Number of Stories = 1; Shape = rectangle, Aspect ratio = 1.5 +! Envelope: Envelope thermal properties vary with climate according to ASHRAE Standard 90.1-2004. +! Opaque constructions: mass walls; attic roof; slab-on-grade floor +! Windows: window-to-wall ratio = 21.2%, equal distribution of punched windows +! Infiltration = 0.4 cfm/ft2 above grade wall area at 0.3 in wc (75 Pa) adjusted to 0.016 in wc (4 Pa). +! 25% of full value when ventilation system on. +! HVAC: PSZ-AC, gas furnace +! No economizers, per ASHRAE 90.1-2004 +! A central DOAS to provide outdoor air for 5 AirLoopHVACs. It has two water coils to pretreat outdoor air. +! +! Int. gains: lights = 10.76 W/m2 (1.0 W/ft2) (building area method); +! elec. plug loads = 10.76 W/m2 (1.0 W/ft2) +! gas plug load = 0 W/m2 (0 W/ft2) +! people = 28 total; 5.38/100 m2 (5.0/1000 ft2) +! +! Detached Shading: None +! Daylight: None +! Natural Ventilation: None +! Zonal Equipment: None +! Air Primary Loops: PSZ +! Plant Loops: SHWSys1 +! System Equipment Autosize: Yes +! Purchased Cooling: None +! Purchased Heating: None +! Coils: Coil:Cooling:DX:SingleSpeed; Coil:Heating:Fuel; +! Coil:Heating:Water; Coil:Cooling:Water +! Pumps: Yes +! Boilers: Yes +! Chillers: Yes +! +! ***GENERAL SIMULATION PARAMETERS*** +! Number of Zones: 6 + + Version,9.2; + + SimulationControl, + YES, !- Do Zone Sizing Calculation + YES, !- Do System Sizing Calculation + YES, !- Do Plant Sizing Calculation + YES, !- Run Simulation for Sizing Periods + NO; !- Run Simulation for Weather File Run Periods + + Building, + Ref Bldg Small Office New2004_v1.3_5.0, !- Name + 0.0000, !- North Axis {deg} + City, !- Terrain + 0.0400, !- Loads Convergence Tolerance Value + 0.2000, !- Temperature Convergence Tolerance Value {deltaC} + FullInteriorAndExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + + RunPeriod, + Annual, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 12, !- End Month + 31, !- End Day of Month + , !- End Year + Sunday, !- Day of Week for Start Day + No, !- Use Weather File Holidays and Special Days + No, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + +! ***HOLIDAYS & DAYLIGHT SAVINGS*** + + RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + + RunPeriodControl:SpecialDays, + New Years Day, !- Name + January 1, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Veterans Day, !- Name + November 11, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Christmas, !- Name + December 25, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Independence Day, !- Name + July 4, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + MLK Day, !- Name + 3rd Monday in January, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Presidents Day, !- Name + 3rd Monday in February, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Memorial Day, !- Name + Last Monday in May, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Labor Day, !- Name + 1st Monday in September, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Columbus Day, !- Name + 2nd Monday in October, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Thanksgiving, !- Name + 4th Thursday in November,!- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + +! ***SCHEDULE TYPES*** + + ScheduleTypeLimits, + Any Number; !- Name + + ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + Control Type, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + Humidity, !- Name + 10, !- Lower Limit Value + 90, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Number; !- Name + +! ***ALWAYS ON SCHEDULE*** + + Schedule:Compact, + ALWAYS_ON, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + +! ***MISC SIMULATION PARAMETERS*** + + SurfaceConvectionAlgorithm:Inside,TARP; + + SurfaceConvectionAlgorithm:Outside,DOE-2; + + HeatBalanceAlgorithm,ConductionTransferFunction,200.0000; + + ZoneAirHeatBalanceAlgorithm, + AnalyticalSolution; !- Algorithm + + Sizing:Parameters, + 1.2, !- Heating Sizing Factor + 1.2, !- Cooling Sizing Factor + 6; !- Timesteps in Averaging Window + + ConvergenceLimits, + 2, !- Minimum System Timestep {minutes} + 25; !- Maximum HVAC Iterations + + ShadowCalculation, + AverageOverDaysInFrequency, !- Calculation Method + 7, !- Calculation Frequency + 15000; !- Maximum Figures in Shadow Overlap Calculations + + Timestep,6; + +! WeatherFileName=USA_IL_Chicago-OHare_TMY2.epw + + Site:Location, + USA IL-CHICAGO-OHARE, !- Name + 41.77, !- Latitude {deg} + -87.75, !- Longitude {deg} + -6.00, !- Time Zone {hr} + 190; !- Elevation {m} + + ! CHICAGO_IL_USA Annual Heating 99.6%, MaxDB=-20.6°C + + SizingPeriod:DesignDay, + CHICAGO Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -20.6, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -20.6, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 0.00; !- Sky Clearness + + ! CHICAGO_IL_USA Annual Cooling (WB=>MDB) .4%, MDB=31.2°C WB=25.5°C + + SizingPeriod:DesignDay, + CHICAGO Ann Clg .4% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 31.2, !- Maximum Dry-Bulb Temperature {C} + 10.7, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 25.5, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.00; !- Sky Clearness + + Site:WaterMainsTemperature, + CORRELATION, !- Calculation Method + , !- Temperature Schedule Name + 9.69, !- Annual Average Outdoor Air Temperature {C} + 28.10; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + + Site:GroundTemperature:BuildingSurface,19.527,19.502,19.536,19.598,20.002,21.640,22.225,22.375,21.449,20.121,19.802,19.633; + +! ***OPAQUE CONSTRUCTIONS AND MATERIALS*** +! Exterior Walls + + Construction, + Mass Non-res Ext Wall, !- Name + 1IN Stucco, !- Outside Layer + 8IN Concrete HW, !- Layer 2 + Mass NonRes Wall Insulation, !- Layer 3 + 1/2IN Gypsum; !- Layer 4 + + Material, + Mass NonRes Wall Insulation, !- Name + MediumRough, !- Roughness + 0.0495494599433393, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + +! Roof + + Construction, + Attic Non-res Floor, !- Name + 1/2IN Gypsum, !- Outside Layer + AtticFloor NonRes Insulation, !- Layer 2 + 1/2IN Gypsum; !- Layer 3 + + Construction, + Attic Non-res Roof, !- Name + Roof Membrane, !- Outside Layer + Metal Decking; !- Layer 2 + + Material, + AtticFloor NonRes Insulation, !- Name + MediumRough, !- Roughness + 0.236804989096202, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + +! Slab on grade, unheated + + Construction, + ext-slab, !- Name + HW CONCRETE, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + +! Interior Walls + + Construction, + int-walls, !- Name + 1/2IN Gypsum, !- Outside Layer + 1/2IN Gypsum; !- Layer 2 + +! ***WINDOW/DOOR CONSTRUCTIONS AND MATERIALS*** + + Construction, + Window Non-res Fixed, !- Name + NonRes Fixed Assembly Window; !- Outside Layer + + WindowMaterial:SimpleGlazingSystem, + NonRes Fixed Assembly Window, !- Name + 3.23646, !- U-Factor {W/m2-K} + 0.39, !- Solar Heat Gain Coefficient + ; !- Visible Transmittance + +! ***COMMON CONSTRUCTIONS AND MATERIALS*** + + Construction, + InteriorFurnishings, !- Name + Std Wood 6inch; !- Outside Layer + + Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness {m} + 0.12, !- Conductivity {W/m-K} + 540.0000, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.7000000; !- Visible Absorptance + + Material, + Wood Siding, !- Name + MediumSmooth, !- Roughness + 0.0100, !- Thickness {m} + 0.1100, !- Conductivity {W/m-K} + 544.6200, !- Density {kg/m3} + 1210.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7800, !- Solar Absorptance + 0.7800; !- Visible Absorptance + + Material, + 1/2IN Gypsum, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.1600, !- Conductivity {W/m-K} + 784.9000, !- Density {kg/m3} + 830.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.9200, !- Solar Absorptance + 0.9200; !- Visible Absorptance + + Material, + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.6918, !- Conductivity {W/m-K} + 1858.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.9200, !- Solar Absorptance + 0.9200; !- Visible Absorptance + + Material, + 8IN CONCRETE HW, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.3110, !- Conductivity {W/m-K} + 2240.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + + Material, + Metal Siding, !- Name + Smooth, !- Roughness + 0.0015, !- Thickness {m} + 44.9600, !- Conductivity {W/m-K} + 7688.8600, !- Density {kg/m3} + 410.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.2000, !- Solar Absorptance + 0.2000; !- Visible Absorptance + + Material, + HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness {m} + 1.3110, !- Conductivity {W/m-K} + 2240.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + + Material:NoMass, + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.2165, !- Thermal Resistance {m2-K/W} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.8000; !- Visible Absorptance + + Material, + Roof Membrane, !- Name + VeryRough, !- Roughness + 0.0095, !- Thickness {m} + 0.1600, !- Conductivity {W/m-K} + 1121.2900, !- Density {kg/m3} + 1460.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + + Material, + Metal Decking, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.0060, !- Conductivity {W/m-K} + 7680.0000, !- Density {kg/m3} + 418.4000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.3000; !- Visible Absorptance + + Material, + Metal Roofing, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.0060, !- Conductivity {W/m-K} + 7680.0000, !- Density {kg/m3} + 418.4000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.3000; !- Visible Absorptance + + Material, + MAT-CC05 4 HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness {m} + 1.3110, !- Conductivity {W/m-K} + 2240.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + +! Acoustic tile for drop ceiling + + Material, + Std AC02, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 5.7000000E-02, !- Conductivity {W/m-K} + 288.0000, !- Density {kg/m3} + 1339.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.2000000; !- Visible Absorptance + + Material:NoMass, + MAT-AIR-WALL, !- Name + Rough, !- Roughness + 0.2079491, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +! ZONE LIST: +! Attic +! Core_ZN +! Perimeter_ZN_1 +! Perimeter_ZN_2 +! Perimeter_ZN_3 +! Perimeter_ZN_4 +! ***ZONES*** + + Zone, + Attic, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + + Zone, + Core_ZN, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_ZN_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_ZN_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_ZN_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_ZN_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +! ***WALLS*** + + BuildingSurface:Detailed, + Attic_floor_core, !- Name + Floor, !- Surface Type + Attic Non-res Floor, !- Construction Name + Attic, !- Zone Name + Surface, !- Outside Boundary Condition + Core_ZN_ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_floor_perimeter_east, !- Name + Floor, !- Surface Type + Attic Non-res Floor, !- Construction Name + Attic, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_floor_perimeter_north, !- Name + Floor, !- Surface Type + Attic Non-res Floor, !- Construction Name + Attic, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_floor_perimeter_south, !- Name + Floor, !- Surface Type + Attic Non-res Floor, !- Construction Name + Attic, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_floor_perimeter_west, !- Name + Floor, !- Surface Type + Attic Non-res Floor, !- Construction Name + Attic, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_roof_east, !- Name + Roof, !- Surface Type + Attic Non-res Roof, !- Construction Name + Attic, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 3, !- Number of Vertices + 28.2900,-0.6000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 28.2900,19.0600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 18.4600,9.2300,6.3300; !- X,Y,Z ==> Vertex 3 {m} + + BuildingSurface:Detailed, + Attic_roof_north, !- Name + Roof, !- Surface Type + Attic Non-res Roof, !- Construction Name + Attic, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.2900,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + -0.6000,19.0600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 9.2300,9.2300,6.3300, !- X,Y,Z ==> Vertex 3 {m} + 18.4600,9.2300,6.3300; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_roof_south, !- Name + Roof, !- Surface Type + Attic Non-res Roof, !- Construction Name + Attic, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + -0.6000,-0.6000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 28.2900,-0.6000,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 18.4600,9.2300,6.3300, !- X,Y,Z ==> Vertex 3 {m} + 9.2300,9.2300,6.3300; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_roof_west, !- Name + Roof, !- Surface Type + Attic Non-res Roof, !- Construction Name + Attic, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 3, !- Number of Vertices + -0.6000,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + -0.6000,-0.6000,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 9.2300,9.2300,6.3300; !- X,Y,Z ==> Vertex 3 {m} + + BuildingSurface:Detailed, + Attic_soffit_east, !- Name + Floor, !- Surface Type + Attic Non-res Floor, !- Construction Name + Attic, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.2900,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 28.2900,-0.6000,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_soffit_north, !- Name + Floor, !- Surface Type + Attic Non-res Floor, !- Construction Name + Attic, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + -0.6000,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 28.2900,19.0600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_soffit_south, !- Name + Floor, !- Surface Type + Attic Non-res Floor, !- Construction Name + Attic, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 28.2900,-0.6000,3.0500, !- X,Y,Z ==> Vertex 3 {m} + -0.6000,-0.6000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Attic_soffit_west, !- Name + Floor, !- Surface Type + Attic Non-res Floor, !- Construction Name + Attic, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + -0.6000,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m} + -0.6000,-0.6000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_ZN_ceiling, !- Name + Ceiling, !- Surface Type + Attic Non-res Floor, !- Construction Name + Core_ZN, !- Zone Name + Surface, !- Outside Boundary Condition + Attic_floor_core, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_ZN_floor, !- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Core_ZN, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,5.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_ZN_wall_east, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_ZN, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_ZN_wall_north, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_ZN, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_ZN_wall_south, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_ZN, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_ZN_wall_west, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_ZN, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_1_ceiling, !- Name + Ceiling, !- Surface Type + Attic Non-res Floor, !- Construction Name + Perimeter_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Attic_floor_perimeter_south, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_1_floor, !- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Perimeter_ZN_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,5.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_1_wall_east,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_1_wall_north, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_ZN_wall_south, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_1_wall_south, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_ZN_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_1_wall_west,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_2_ceiling, !- Name + Ceiling, !- Surface Type + Attic Non-res Floor, !- Construction Name + Perimeter_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Attic_floor_perimeter_east, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_2_floor, !- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Perimeter_ZN_2, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,5.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_2_wall_east,!- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_ZN_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_2_wall_north, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_2_wall_south, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_2_wall_west,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_ZN_wall_east, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_3_ceiling, !- Name + Ceiling, !- Surface Type + Attic Non-res Floor, !- Construction Name + Perimeter_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Attic_floor_perimeter_north, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_3_floor, !- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Perimeter_ZN_3, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,13.4600,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_3_wall_east,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_3_wall_north, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_ZN_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_3_wall_south, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_ZN_wall_north, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 22.6900,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_3_wall_west,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_4_ceiling, !- Name + Ceiling, !- Surface Type + Attic Non-res Floor, !- Construction Name + Perimeter_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Attic_floor_perimeter_west, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m} + 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_4_floor, !- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Perimeter_ZN_4, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,13.4600,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_4_wall_east,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_ZN_wall_west, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_4_wall_north, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_4_wall_south, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_ZN_4_wall_west,!- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_ZN_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m} + +! ***WINDOWS*** + + FenestrationSurface:Detailed, + Perimeter_ZN_1_wall_south_Window_1, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_1_wall_south, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 1.3900,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 1.3900,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 3.2200,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 3.2200,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_1_wall_south_Window_2, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_1_wall_south, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 6.0100,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 6.0100,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 7.8400,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 7.8400,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_1_wall_south_Window_3, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_1_wall_south, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 10.6200,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 10.6200,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 12.4500,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 12.4500,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_1_wall_south_Window_4, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_1_wall_south, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 15.2400,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 17.0700,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 17.0700,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_1_wall_south_Window_5, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_1_wall_south, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 19.8500,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 19.8500,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 21.6800,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 21.6800,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_1_wall_south_Window_6, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_1_wall_south, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 24.4700,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 24.4700,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 26.3000,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 26.3000,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_1_wall_south_door, !- Name + GlassDoor, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_1_wall_south, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 12.930,0.0000,2.1340, !- X,Y,Z ==> Vertex 1 {m} + 12.930,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 14.760,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.760,0.0000,2.1340; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_2_wall_east_Window_1, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_2_wall_east,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 27.6900,1.3900,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,1.3900,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,3.2200,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,3.2200,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_2_wall_east_Window_2, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_2_wall_east,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 27.6900,6.0100,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,6.0100,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,7.8400,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,7.8400,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_2_wall_east_Window_3, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_2_wall_east,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 27.6900,10.6200,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,10.6200,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,12.4500,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,12.4500,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_2_wall_east_Window_4, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_2_wall_east,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 27.6900,15.2400,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 27.6900,15.2400,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 27.6900,17.0700,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 27.6900,17.0700,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_3_wall_north_Window_1, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_3_wall_north, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 26.3000,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 26.3000,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 24.4700,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 24.4700,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_3_wall_north_Window_2, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_3_wall_north, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 21.6800,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 21.6800,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 19.8500,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 19.8500,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_3_wall_north_Window_3, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_3_wall_north, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 17.0700,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 17.0700,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_3_wall_north_Window_4, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_3_wall_north, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 12.4500,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 12.4500,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 10.6200,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 10.6200,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_3_wall_north_Window_5, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_3_wall_north, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 7.8400,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 7.8400,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 6.0100,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 6.0100,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_3_wall_north_Window_6, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_3_wall_north, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 3.2200,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 3.2200,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 1.3900,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 1.3900,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_4_wall_west_Window_1, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_4_wall_west,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,17.0700,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,17.0700,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,15.2400,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,15.2400,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_4_wall_west_Window_2, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_4_wall_west,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,12.4500,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,12.4500,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,10.6200,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,10.6200,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_4_wall_west_Window_3, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_4_wall_west,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,7.8400,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,7.8400,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,6.0100,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,6.0100,2.4240; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_ZN_4_wall_west_Window_4, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_ZN_4_wall_west,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,3.2200,2.4240, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,3.2200,0.9000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,1.3900,0.9000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,1.3900,2.4240; !- X,Y,Z ==> Vertex 4 {m} + +! ***GEOMETRY RULES*** + + GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative, !- Coordinate System + Relative; !- Daylighting Reference Point Coordinate System + +! ***PEOPLE*** + + People, + Core_ZN People, !- Name + Core_ZN, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_ZN_1 People, !- Name + Perimeter_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_ZN_2 People, !- Name + Perimeter_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_ZN_3 People, !- Name + Perimeter_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_ZN_4 People, !- Name + Perimeter_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + +! ***LIGHTS*** + + Lights, + Core_ZN_Lights, !- Name + Core_ZN, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_ZN_1_Lights, !- Name + Perimeter_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_ZN_2_Lights, !- Name + Perimeter_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_ZN_3_Lights, !- Name + Perimeter_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_ZN_4_Lights, !- Name + Perimeter_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +! ***EQUIPMENT GAINS*** + + ElectricEquipment, + Core_ZN_MiscPlug_Equip, !- Name + Core_ZN, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_ZN_1_MiscPlug_Equip, !- Name + Perimeter_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_ZN_2_MiscPlug_Equip, !- Name + Perimeter_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_ZN_3_MiscPlug_Equip, !- Name + Perimeter_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_ZN_4_MiscPlug_Equip, !- Name + Perimeter_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + +! ***EXTERIOR LOADS*** + + Exterior:Lights, + Exterior Facade Lighting,!- Name + ALWAYS_ON, !- Schedule Name + 2303, !- Design Level {W} + AstronomicalClock, !- Control Option + Exterior Facade Lighting;!- End-Use Subcategory + +! ***INFILTRATION*** +! Infiltration through ceiling/roof + + ZoneInfiltration:DesignFlowRate, + Core_ZN_Infiltration, !- Name + Core_ZN, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + AirChanges/Hour, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + 0.36, !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_ZN_1_Infiltration, !- Name + Perimeter_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_ZN_2_Infiltration, !- Name + Perimeter_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_ZN_3_Infiltration, !- Name + Perimeter_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_ZN_4_Infiltration, !- Name + Perimeter_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + +! ***INTERNAL MASS*** + + InternalMass, + Core_ZN Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_ZN, !- Zone Name + 299.3148; !- Surface Area {m2} + + InternalMass, + Perimeter_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_ZN_1, !- Zone Name + 226.9000; !- Surface Area {m2} + + InternalMass, + Perimeter_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_ZN_2, !- Zone Name + 134.6000; !- Surface Area {m2} + + InternalMass, + Perimeter_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_ZN_3, !- Zone Name + 226.9000; !- Surface Area {m2} + + InternalMass, + Perimeter_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_ZN_4, !- Zone Name + 134.6000; !- Surface Area {m2} + +! ***INTERNAL GAINS SCHEDULES*** + + Schedule:Compact, + INFIL_QUARTER_ON_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00,1.0, !- Field 3 + Until: 22:00,0.25, !- Field 5 + Until: 24:00,1.0, !- Field 7 + For: Saturday WinterDesignDay, !- Field 9 + Until: 06:00,1.0, !- Field 10 + Until: 18:00,0.25, !- Field 12 + Until: 24:00,1.0, !- Field 14 + For: Sunday Holidays AllOtherDays, !- Field 16 + Until: 24:00,1.0; !- Field 17 + + Schedule:Compact, + BLDG_OCC_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 06:00,0.0, !- Field 3 + Until: 22:00,1.0, !- Field 5 + Until: 24:00,0.05, !- Field 7 + For: Weekdays, !- Field 9 + Until: 06:00,0.0, !- Field 10 + Until: 07:00,0.1, !- Field 12 + Until: 08:00,0.2, !- Field 14 + Until: 12:00,0.95, !- Field 16 + Until: 13:00,0.5, !- Field 18 + Until: 17:00,0.95, !- Field 20 + Until: 18:00,0.3, !- Field 22 + Until: 20:00,0.1, !- Field 24 + Until: 24:00,0.05, !- Field 26 + For: Saturday, !- Field 28 + Until: 06:00,0.0, !- Field 29 + Until: 08:00,0.1, !- Field 31 + Until: 12:00,0.3, !- Field 33 + Until: 17:00,0.1, !- Field 35 + Until: 24:00,0.0, !- Field 37 + For: AllOtherDays, !- Field 39 + Until: 24:00,0.0; !- Field 40 + + Schedule:Compact, + BLDG_LIGHT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 05:00,0.05, !- Field 3 + Until: 07:00,0.1, !- Field 5 + Until: 08:00,0.3, !- Field 7 + Until: 17:00,0.9, !- Field 9 + Until: 18:00,0.5, !- Field 11 + Until: 20:00,0.3, !- Field 13 + Until: 22:00,0.2, !- Field 15 + Until: 23:00,0.1, !- Field 17 + Until: 24:00,0.05, !- Field 19 + For: Saturday, !- Field 21 + Until: 06:00,0.05, !- Field 22 + Until: 08:00,0.1, !- Field 24 + Until: 12:00,0.3, !- Field 26 + Until: 17:00,0.15, !- Field 28 + Until: 24:00,0.05, !- Field 30 + For: SummerDesignDay, !- Field 32 + Until: 24:00,1.0, !- Field 33 + For: WinterDesignDay, !- Field 35 + Until: 24:00,0.0, !- Field 36 + For: AllOtherDays, !- Field 38 + Until: 24:00,0.05; !- Field 39 + + Schedule:Compact, + BLDG_EQUIP_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 08:00,0.40, !- Field 3 + Until: 12:00,0.90, !- Field 5 + Until: 13:00,0.80, !- Field 7 + Until: 17:00,0.90, !- Field 9 + Until: 18:00,0.50, !- Field 11 + Until: 24:00,0.40, !- Field 13 + For: Saturday, !- Field 15 + Until: 06:00,0.30, !- Field 16 + Until: 08:00,0.4, !- Field 18 + Until: 12:00,0.5, !- Field 20 + Until: 17:00,0.35, !- Field 22 + Until: 24:00,0.30, !- Field 24 + For: SummerDesignDay, !- Field 26 + Until: 24:00,1.0, !- Field 27 + For: WinterDesignDay, !- Field 29 + Until: 24:00,0.0, !- Field 30 + For: AllOtherDays, !- Field 32 + Until: 24:00,0.30; !- Field 33 + + Schedule:Compact, + ACTIVITY_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,120; !- Field 3 + + Schedule:Compact, + WORK_EFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 + + Schedule:Compact, + AIR_VELO_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + CLOTHING_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 04/30, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 09/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,0.5, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,1.0; !- Field 11 + + ZoneInfiltration:DesignFlowRate, + Attic_Infiltration, !- Name + Attic, !- Zone or ZoneList Name + ALWAYS_ON, !- Schedule Name + AirChanges/Hour, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + 1.0, !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + +! ***HVAC EQUIPMENT*** + + Fan:SystemModel, + PSZ-AC:1_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Air Inlet Node Name + PSZ-AC:1 Supply Equipment Outlet Node, !- Air Outlet Node Name + AUTOSIZE, !- Design Maximum Air Flow Rate {m3/s} + Discrete, !- Speed Control Method + 0.0, !- Electric Power Minimum Flow Rate Fraction + 622.0, !- Design Pressure Rise {Pa} + 0.825, !- Motor Efficiency + 1.0, !- Motor In Air Stream Fraction + AUTOSIZE, !- Design Electric Power Consumption {W} + TotalEfficiencyAndPressure, !- Design Power Sizing Method + , !- Electric Power Per Unit Flow Rate {W/(m3/s)} + , !- Electric Power Per Unit Flow Rate Per Unit Pressure {W/((m3/s)-Pa)} + 0.53625, !- Fan Total Efficiency + , !- Electric Power Function of Flow Fraction Curve Name + , !- Night Ventilation Mode Pressure Rise {Pa} + , !- Night Ventilation Mode Flow Fraction + , !- Motor Loss Zone Name + , !- Motor Loss Radiative Fraction + Fan Energy; !- End-Use Subcategory + + Fan:ConstantVolume, + PSZ-AC:2_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.53625, !- Fan Total Efficiency + 622.0, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + 0.825, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Air Inlet Node Name + PSZ-AC:2 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:ConstantVolume, + PSZ-AC:3_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.53625, !- Fan Total Efficiency + 622.0, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + 0.825, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Air Inlet Node Name + PSZ-AC:3 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:ConstantVolume, + PSZ-AC:4_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.53625, !- Fan Total Efficiency + 622.0, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + 0.825, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Air Inlet Node Name + PSZ-AC:4 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:ConstantVolume, + PSZ-AC:5_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.53625, !- Fan Total Efficiency + 622.0, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + 0.825, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Air Inlet Node Name + PSZ-AC:5 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Coil:Heating:Fuel, + PSZ-AC:1_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- Air Inlet Node Name + PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Air Outlet Node Name + PSZ-AC:1_HeatC-PSZ-AC:1_FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + PSZ-AC:2_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- Air Inlet Node Name + PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Air Outlet Node Name + PSZ-AC:2_HeatC-PSZ-AC:2_FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + PSZ-AC:3_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- Air Inlet Node Name + PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Air Outlet Node Name + PSZ-AC:3_HeatC-PSZ-AC:3_FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + PSZ-AC:4_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- Air Inlet Node Name + PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Air Outlet Node Name + PSZ-AC:4_HeatC-PSZ-AC:4_FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + PSZ-AC:5_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- Air Inlet Node Name + PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Air Outlet Node Name + PSZ-AC:5_HeatC-PSZ-AC:5_FanNode; !- Temperature Setpoint Node Name + + Coil:Cooling:DX:SingleSpeed, + PSZ-AC:1_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- Gross Rated Sensible Heat Ratio + 3.66668442928701, !- Gross Rated Cooling COP {W/W} + AUTOSIZE, !- Rated Air Flow Rate {m3/s} + , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Air Inlet Node Name + PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- Air Outlet Node Name + Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name + ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name + ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name + Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name + + Coil:Cooling:DX:SingleSpeed, + PSZ-AC:2_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- Gross Rated Sensible Heat Ratio + 3.66668442928701, !- Gross Rated Cooling COP {W/W} + AUTOSIZE, !- Rated Air Flow Rate {m3/s} + , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Air Inlet Node Name + PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- Air Outlet Node Name + Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name + ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name + ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name + Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name + + Coil:Cooling:DX:SingleSpeed, + PSZ-AC:3_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- Gross Rated Sensible Heat Ratio + 3.66668442928701, !- Gross Rated Cooling COP {W/W} + AUTOSIZE, !- Rated Air Flow Rate {m3/s} + , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Air Inlet Node Name + PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- Air Outlet Node Name + Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name + ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name + ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name + Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name + + Coil:Cooling:DX:SingleSpeed, + PSZ-AC:4_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- Gross Rated Sensible Heat Ratio + 3.66668442928701, !- Gross Rated Cooling COP {W/W} + AUTOSIZE, !- Rated Air Flow Rate {m3/s} + , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Air Inlet Node Name + PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- Air Outlet Node Name + Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name + ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name + ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name + Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name + + Coil:Cooling:DX:SingleSpeed, + PSZ-AC:5_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- Gross Rated Sensible Heat Ratio + 3.66668442928701, !- Gross Rated Cooling COP {W/W} + AUTOSIZE, !- Rated Air Flow Rate {m3/s} + , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Air Inlet Node Name + PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- Air Outlet Node Name + Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name + ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name + ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name + Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name + + ZoneHVAC:EquipmentList, + Core_ZN Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Core_ZN Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_ZN_1 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Perimeter_ZN_1 Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_ZN_2 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Perimeter_ZN_2 Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_ZN_3 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Perimeter_ZN_3 Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_ZN_4 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + Perimeter_ZN_4 Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + +! ***SIZING & CONTROLS*** + + Sizing:Zone, + Core_ZN, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14.0000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Core_ZN, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Core_ZN, !- Name + Flow/Person, !- Outdoor Air Method + 0.01, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 13.9000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.01, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14.0000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.01, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 13.9000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.01, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14.0000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.01, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + ZoneControl:Thermostat, + Core_ZN Thermostat, !- Name + Core_ZN, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_ZN DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_ZN_1 Thermostat, !- Name + Perimeter_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_ZN_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_ZN_2 Thermostat, !- Name + Perimeter_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_ZN_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_ZN_3 Thermostat, !- Name + Perimeter_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_ZN_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_ZN_4 Thermostat, !- Name + Perimeter_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_ZN_4 DualSPSched; !- Control 1 Name + + ThermostatSetpoint:DualSetpoint, + Core_ZN DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrCore_ZN, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Core_ZN, !- Control Zone Name + Core_ZN Air Node, !- Zone Node Name + Core_ZN Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC:1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrPerimeter_ZN_1, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Perimeter_ZN_1, !- Control Zone Name + Perimeter_ZN_1 Air Node, !- Zone Node Name + Perimeter_ZN_1 Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC:2 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrPerimeter_ZN_2, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Perimeter_ZN_2, !- Control Zone Name + Perimeter_ZN_2 Air Node, !- Zone Node Name + Perimeter_ZN_2 Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC:3 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrPerimeter_ZN_3, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Perimeter_ZN_3, !- Control Zone Name + Perimeter_ZN_3 Air Node, !- Zone Node Name + Perimeter_ZN_3 Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC:4 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrPerimeter_ZN_4, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Perimeter_ZN_4, !- Control Zone Name + Perimeter_ZN_4 Air Node, !- Zone Node Name + Perimeter_ZN_4 Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC:5 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + Sizing:System, + PSZ-AC:1, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40.0, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Sizing:System, + PSZ-AC:2, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40.0, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Sizing:System, + PSZ-AC:3, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40.0, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Sizing:System, + PSZ-AC:4, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40.0, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Sizing:System, + PSZ-AC:5, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40.0, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Sizing:Plant, + Hot Water Loop, !- Plant or Condenser Loop Name + heating, !- Loop Type + 82., !- Design Loop Exit Temperature {C} + 11; !- Loop Design Temperature Difference {deltaC} + + Sizing:Plant, + Chilled Water Loop, !- Plant or Condenser Loop Name + cooling, !- Loop Type + 7.00, !- Design Loop Exit Temperature {C} + 4.00; !- Loop Design Temperature Difference {deltaC} + + Controller:OutdoorAir, + PSZ-AC:1_OA_Controller, !- Name + PSZ-AC:1_OARelief Node, !- Relief Air Outlet Node Name + PSZ-AC:1 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Mixed Air Node Name + PSZ-AC:1_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + ; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + PSZ-AC:2_OA_Controller, !- Name + PSZ-AC:2_OARelief Node, !- Relief Air Outlet Node Name + PSZ-AC:2 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Mixed Air Node Name + PSZ-AC:2_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + ; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + PSZ-AC:3_OA_Controller, !- Name + PSZ-AC:3_OARelief Node, !- Relief Air Outlet Node Name + PSZ-AC:3 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Mixed Air Node Name + PSZ-AC:3_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + ; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + PSZ-AC:4_OA_Controller, !- Name + PSZ-AC:4_OARelief Node, !- Relief Air Outlet Node Name + PSZ-AC:4 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Mixed Air Node Name + PSZ-AC:4_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + ; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + PSZ-AC:5_OA_Controller, !- Name + PSZ-AC:5_OARelief Node, !- Relief Air Outlet Node Name + PSZ-AC:5 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Mixed Air Node Name + PSZ-AC:5_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + ; !- Mechanical Ventilation Controller Name + + Curve:Quadratic, + Cool-PLF-fPLR, !- Name + 0.90949556, !- Coefficient1 Constant + 0.09864773, !- Coefficient2 x + -0.00819488, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1, !- Maximum Value of x + 0.7, !- Minimum Curve Output + 1; !- Maximum Curve Output + + Curve:Cubic, + ConstantCubic, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + -100, !- Minimum Value of x + 100; !- Maximum Value of x + + Curve:Biquadratic, + Cool-Cap-fT, !- Name + 0.9712123, !- Coefficient1 Constant + -0.015275502, !- Coefficient2 x + 0.0014434524, !- Coefficient3 x**2 + -0.00039321, !- Coefficient4 y + -0.0000068364, !- Coefficient5 y**2 + -0.0002905956, !- Coefficient6 x*y + -100, !- Minimum Value of x + 100, !- Maximum Value of x + -100, !- Minimum Value of y + 100; !- Maximum Value of y + + Curve:Biquadratic, + Cool-EIR-fT, !- Name + 0.28687133, !- Coefficient1 Constant + 0.023902164, !- Coefficient2 x + -0.000810648, !- Coefficient3 x**2 + 0.013458546, !- Coefficient4 y + 0.0003389364, !- Coefficient5 y**2 + -0.0004870044, !- Coefficient6 x*y + -100, !- Minimum Value of x + 100, !- Maximum Value of x + -100, !- Minimum Value of y + 100; !- Maximum Value of y + +! ***AIR LOOPS*** + + AirLoopHVAC, + PSZ-AC:1, !- Name + , !- Controller List Name + PSZ-AC:1 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC:1 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC:1 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC:1 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC:1 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC:1 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + PSZ-AC:2, !- Name + , !- Controller List Name + PSZ-AC:2 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC:2 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC:2 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC:2 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC:2 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC:2 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + PSZ-AC:3, !- Name + , !- Controller List Name + PSZ-AC:3 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC:3 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC:3 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC:3 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC:3 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC:3 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + PSZ-AC:4, !- Name + , !- Controller List Name + PSZ-AC:4 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC:4 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC:4 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC:4 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC:4 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC:4 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + PSZ-AC:5, !- Name + , !- Controller List Name + PSZ-AC:5 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC:5 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC:5 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC:5 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC:5 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC:5 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + CoilSystem:Cooling:DX, + PSZ-AC:1_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type + PSZ-AC:1_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + PSZ-AC:2_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type + PSZ-AC:2_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + PSZ-AC:3_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type + PSZ-AC:3_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + PSZ-AC:4_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type + PSZ-AC:4_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + PSZ-AC:5_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type + PSZ-AC:5_CoolC DXCoil; !- Cooling Coil Name + +! ***CONNECTIONS*** + + ZoneHVAC:EquipmentConnections, + Core_ZN, !- Zone Name + Core_ZN Equipment, !- Zone Conditioning Equipment List Name + Core_ZN Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_ZN Air Node, !- Zone Air Node Name + Core_ZN Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_ZN_1, !- Zone Name + Perimeter_ZN_1 Equipment,!- Zone Conditioning Equipment List Name + Perimeter_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_ZN_2, !- Zone Name + Perimeter_ZN_2 Equipment,!- Zone Conditioning Equipment List Name + Perimeter_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_ZN_3, !- Zone Name + Perimeter_ZN_3 Equipment,!- Zone Conditioning Equipment List Name + Perimeter_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_ZN_4, !- Zone Name + Perimeter_ZN_4 Equipment,!- Zone Conditioning Equipment List Name + Perimeter_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + NodeList, + Core_ZN Inlet Nodes, !- Name + Core_ZN Direct Air Inlet Node Name; !- Node 1 Name + + NodeList, + PSZ-AC:1_OANode List, !- Name + PSZ-AC:1_OAInlet Node; !- Node 1 Name + + NodeList, + PSZ-AC:2_OANode List, !- Name + PSZ-AC:2_OAInlet Node; !- Node 1 Name + + NodeList, + PSZ-AC:3_OANode List, !- Name + PSZ-AC:3_OAInlet Node; !- Node 1 Name + + NodeList, + PSZ-AC:4_OANode List, !- Name + PSZ-AC:4_OAInlet Node; !- Node 1 Name + + NodeList, + PSZ-AC:5_OANode List, !- Name + PSZ-AC:5_OAInlet Node; !- Node 1 Name + + NodeList, + Perimeter_ZN_1 Inlet Nodes, !- Name + Perimeter_ZN_1 Direct Air Inlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_ZN_2 Inlet Nodes, !- Name + Perimeter_ZN_2 Direct Air Inlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_ZN_3 Inlet Nodes, !- Name + Perimeter_ZN_3 Direct Air Inlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_ZN_4 Inlet Nodes, !- Name + Perimeter_ZN_4 Direct Air Inlet Node Name; !- Node 1 Name + + AirTerminal:SingleDuct:Uncontrolled, + Core_ZN Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_ZN Direct Air Inlet Node Name, !- Zone Supply Air Node Name + AUTOSIZE; !- Maximum Air Flow Rate {m3/s} + + AirTerminal:SingleDuct:Uncontrolled, + Perimeter_ZN_1 Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_ZN_1 Direct Air Inlet Node Name, !- Zone Supply Air Node Name + AUTOSIZE; !- Maximum Air Flow Rate {m3/s} + + AirTerminal:SingleDuct:Uncontrolled, + Perimeter_ZN_2 Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_ZN_2 Direct Air Inlet Node Name, !- Zone Supply Air Node Name + AUTOSIZE; !- Maximum Air Flow Rate {m3/s} + + AirTerminal:SingleDuct:Uncontrolled, + Perimeter_ZN_3 Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_ZN_3 Direct Air Inlet Node Name, !- Zone Supply Air Node Name + AUTOSIZE; !- Maximum Air Flow Rate {m3/s} + + AirTerminal:SingleDuct:Uncontrolled, + Perimeter_ZN_4 Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_ZN_4 Direct Air Inlet Node Name, !- Zone Supply Air Node Name + AUTOSIZE; !- Maximum Air Flow Rate {m3/s} + + AvailabilityManagerAssignmentList, + PSZ-AC:1 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC:1 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + PSZ-AC:2 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC:2 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + PSZ-AC:3 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC:3 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + PSZ-AC:4 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC:4 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + PSZ-AC:5 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC:5 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManager:NightCycle, + PSZ-AC:1 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + PSZ-AC:2 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + PSZ-AC:3 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + PSZ-AC:4 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + PSZ-AC:5 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + BranchList, + PSZ-AC:1 Air Loop Branches, !- Name + PSZ-AC:1 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + PSZ-AC:2 Air Loop Branches, !- Name + PSZ-AC:2 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + PSZ-AC:3 Air Loop Branches, !- Name + PSZ-AC:3 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + PSZ-AC:4 Air Loop Branches, !- Name + PSZ-AC:4 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + PSZ-AC:5 Air Loop Branches, !- Name + PSZ-AC:5 Air Loop Main Branch; !- Branch 1 Name + + Branch, + PSZ-AC:1 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC:1_OA, !- Component 1 Name + PSZ-AC:1 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC:1_CoolC, !- Component 2 Name + PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC:1_HeatC, !- Component 3 Name + PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Component 3 Outlet Node Name + Fan:SystemModel, !- Component 4 Object Type + PSZ-AC:1_Fan, !- Component 4 Name + PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Component 4 Inlet Node Name + PSZ-AC:1 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + PSZ-AC:2 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC:2_OA, !- Component 1 Name + PSZ-AC:2 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC:2_CoolC, !- Component 2 Name + PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC:2_HeatC, !- Component 3 Name + PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + PSZ-AC:2_Fan, !- Component 4 Name + PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Component 4 Inlet Node Name + PSZ-AC:2 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + PSZ-AC:3 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC:3_OA, !- Component 1 Name + PSZ-AC:3 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC:3_CoolC, !- Component 2 Name + PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC:3_HeatC, !- Component 3 Name + PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + PSZ-AC:3_Fan, !- Component 4 Name + PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Component 4 Inlet Node Name + PSZ-AC:3 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + PSZ-AC:4 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC:4_OA, !- Component 1 Name + PSZ-AC:4 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC:4_CoolC, !- Component 2 Name + PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC:4_HeatC, !- Component 3 Name + PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + PSZ-AC:4_Fan, !- Component 4 Name + PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Component 4 Inlet Node Name + PSZ-AC:4 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + PSZ-AC:5 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC:5_OA, !- Component 1 Name + PSZ-AC:5 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC:5_CoolC, !- Component 2 Name + PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC:5_HeatC, !- Component 3 Name + PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + PSZ-AC:5_Fan, !- Component 4 Name + PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Component 4 Inlet Node Name + PSZ-AC:5 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + AirLoopHVAC:ControllerList, + PSZ-AC:1_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC:1_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + PSZ-AC:2_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC:2_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + PSZ-AC:3_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC:3_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + PSZ-AC:4_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC:4_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + PSZ-AC:5_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC:5_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC:1_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC:1_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC:2_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC:2_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC:3_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC:3_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC:4_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC:4_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC:5_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC:5_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC:1_OA, !- Name + PSZ-AC:1_OA_Controllers, !- Controller List Name + PSZ-AC:1_OA_Equipment, !- Outdoor Air Equipment List Name + PSZ-AC:1 Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC:2_OA, !- Name + PSZ-AC:2_OA_Controllers, !- Controller List Name + PSZ-AC:2_OA_Equipment, !- Outdoor Air Equipment List Name + PSZ-AC:2 Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC:3_OA, !- Name + PSZ-AC:3_OA_Controllers, !- Controller List Name + PSZ-AC:3_OA_Equipment, !- Outdoor Air Equipment List Name + PSZ-AC:3 Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC:4_OA, !- Name + PSZ-AC:4_OA_Controllers, !- Controller List Name + PSZ-AC:4_OA_Equipment, !- Outdoor Air Equipment List Name + PSZ-AC:4 Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC:5_OA, !- Name + PSZ-AC:5_OA_Controllers, !- Controller List Name + PSZ-AC:5_OA_Equipment, !- Outdoor Air Equipment List Name + PSZ-AC:5 Availability Manager List; !- Availability Manager List Name + + OutdoorAir:NodeList, + PSZ-AC:1_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + PSZ-AC:2_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + PSZ-AC:3_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + PSZ-AC:4_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + PSZ-AC:5_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:Node, + PSZ-AC:1_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + PSZ-AC:2_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + PSZ-AC:3_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + PSZ-AC:4_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + PSZ-AC:5_CoolCOA Ref node; !- Name + + OutdoorAir:Mixer, + PSZ-AC:1_OAMixing Box, !- Name + PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Mixed Air Node Name + PSZ-AC:1_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC:1_OARelief Node, !- Relief Air Stream Node Name + PSZ-AC:1 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + PSZ-AC:2_OAMixing Box, !- Name + PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Mixed Air Node Name + PSZ-AC:2_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC:2_OARelief Node, !- Relief Air Stream Node Name + PSZ-AC:2 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + PSZ-AC:3_OAMixing Box, !- Name + PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Mixed Air Node Name + PSZ-AC:3_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC:3_OARelief Node, !- Relief Air Stream Node Name + PSZ-AC:3 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + PSZ-AC:4_OAMixing Box, !- Name + PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Mixed Air Node Name + PSZ-AC:4_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC:4_OARelief Node, !- Relief Air Stream Node Name + PSZ-AC:4 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + PSZ-AC:5_OAMixing Box, !- Name + PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Mixed Air Node Name + PSZ-AC:5_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC:5_OARelief Node, !- Relief Air Stream Node Name + PSZ-AC:5 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + SetpointManager:MixedAir, + PSZ-AC:1_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Fan Inlet Node Name + PSZ-AC:1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:1_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Fan Inlet Node Name + PSZ-AC:1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:1_HeatC-PSZ-AC:1_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:1_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Fan Inlet Node Name + PSZ-AC:1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:1_OA-PSZ-AC:1_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:2_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Fan Inlet Node Name + PSZ-AC:2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:2_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Fan Inlet Node Name + PSZ-AC:2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:2_HeatC-PSZ-AC:2_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:2_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Fan Inlet Node Name + PSZ-AC:2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:2_OA-PSZ-AC:2_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:3_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Fan Inlet Node Name + PSZ-AC:3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:3_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Fan Inlet Node Name + PSZ-AC:3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:3_HeatC-PSZ-AC:3_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:3_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Fan Inlet Node Name + PSZ-AC:3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:3_OA-PSZ-AC:3_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:4_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:4 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Fan Inlet Node Name + PSZ-AC:4 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:4_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:4 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Fan Inlet Node Name + PSZ-AC:4 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:4_HeatC-PSZ-AC:4_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:4_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:4 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Fan Inlet Node Name + PSZ-AC:4 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:4_OA-PSZ-AC:4_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:5_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Fan Inlet Node Name + PSZ-AC:5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:5_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Fan Inlet Node Name + PSZ-AC:5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:5_HeatC-PSZ-AC:5_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC:5_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC:5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Fan Inlet Node Name + PSZ-AC:5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC:5_OA-PSZ-AC:5_CoolCNode; !- Setpoint Node or NodeList Name + + AirLoopHVAC:SupplyPath, + PSZ-AC:1, !- Name + PSZ-AC:1 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC:1 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + PSZ-AC:2, !- Name + PSZ-AC:2 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC:2 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + PSZ-AC:3, !- Name + PSZ-AC:3 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC:3 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + PSZ-AC:4, !- Name + PSZ-AC:4 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC:4 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + PSZ-AC:5, !- Name + PSZ-AC:5 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC:5 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC:1 Supply Air Splitter, !- Name + PSZ-AC:1 Zone Equipment Inlet Node, !- Inlet Node Name + Core_ZN Direct Air Inlet Node Name; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC:2 Supply Air Splitter, !- Name + PSZ-AC:2 Zone Equipment Inlet Node, !- Inlet Node Name + Perimeter_ZN_1 Direct Air Inlet Node Name; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC:3 Supply Air Splitter, !- Name + PSZ-AC:3 Zone Equipment Inlet Node, !- Inlet Node Name + Perimeter_ZN_2 Direct Air Inlet Node Name; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC:4 Supply Air Splitter, !- Name + PSZ-AC:4 Zone Equipment Inlet Node, !- Inlet Node Name + Perimeter_ZN_3 Direct Air Inlet Node Name; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC:5 Supply Air Splitter, !- Name + PSZ-AC:5 Zone Equipment Inlet Node, !- Inlet Node Name + Perimeter_ZN_4 Direct Air Inlet Node Name; !- Outlet 1 Node Name + + AirLoopHVAC:ReturnPath, + PSZ-AC:1 Return Air Path,!- Name + PSZ-AC:1 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC:1 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + PSZ-AC:2 Return Air Path,!- Name + PSZ-AC:2 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC:2 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + PSZ-AC:3 Return Air Path,!- Name + PSZ-AC:3 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC:3 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + PSZ-AC:4 Return Air Path,!- Name + PSZ-AC:4 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC:4 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + PSZ-AC:5 Return Air Path,!- Name + PSZ-AC:5 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC:5 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC:1 Return Air Mixer, !- Name + PSZ-AC:1 Zone Equipment Outlet Node, !- Outlet Node Name + Core_ZN Return Air Node Name; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC:2 Return Air Mixer, !- Name + PSZ-AC:2 Zone Equipment Outlet Node, !- Outlet Node Name + Perimeter_ZN_1 Return Air Node Name; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC:3 Return Air Mixer, !- Name + PSZ-AC:3 Zone Equipment Outlet Node, !- Outlet Node Name + Perimeter_ZN_2 Return Air Node Name; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC:4 Return Air Mixer, !- Name + PSZ-AC:4 Zone Equipment Outlet Node, !- Outlet Node Name + Perimeter_ZN_3 Return Air Node Name; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC:5 Return Air Mixer, !- Name + PSZ-AC:5 Zone Equipment Outlet Node, !- Outlet Node Name + Perimeter_ZN_4 Return Air Node Name; !- Inlet 1 Node Name + +! ***SCHEDULES*** + + Schedule:Compact, + CLGSETP_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00,26.7, !- Field 3 + Until: 22:00,24.0, !- Field 5 + Until: 24:00,26.7, !- Field 7 + For: Saturday, !- Field 9 + Until: 06:00,26.7, !- Field 10 + Until: 18:00,24.0, !- Field 12 + Until: 24:00,26.7, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,26.7; !- Field 17 + + Schedule:Compact, + HTGSETP_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 06:00,15.6, !- Field 3 + Until: 22:00,21.0, !- Field 5 + Until: 24:00,15.6, !- Field 7 + For: Saturday, !- Field 9 + Until: 06:00,15.6, !- Field 10 + Until: 18:00,21.0, !- Field 12 + Until: 24:00,15.6, !- Field 14 + For: WinterDesignDay, !- Field 16 + Until: 24:00,21.0, !- Field 17 + For: AllOtherDays, !- Field 19 + Until: 24:00,15.6; !- Field 20 + + Schedule:Compact, + MinOA_Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 07:00,0.0, !- Field 3 + Until: 22:00,1.0, !- Field 5 + Until: 24:00,0.0, !- Field 7 + For: Saturday WinterDesignDay, !- Field 9 + Until: 07:00,0.0, !- Field 10 + Until: 18:00,1.0, !- Field 12 + Until: 24:00,0.0, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,0.0; !- Field 17 + + Schedule:Compact, + Dual Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + HVACOperationSchd, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00,0.0, !- Field 3 + Until: 22:00,1.0, !- Field 5 + Until: 24:00,0.0, !- Field 7 + For: Saturday WinterDesignDay, !- Field 9 + Until: 06:00,0.0, !- Field 10 + Until: 18:00,0.5, !- Field 12 + Until: 24:00,0.0, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,0.0; !- Field 17 + +! ***SWH EQUIPMENT*** + + WaterHeater:Mixed, + SWHSys1 Water Heater, !- Name + 0.1514, !- Tank Volume {m3} + SWHSys1 Water Heater Setpoint Temperature Schedule Name, !- Setpoint Temperature Schedule Name + 2.0, !- Deadband Temperature Difference {deltaC} + 82.2222, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 845000, !- Heater Maximum Capacity {W} + , !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + NATURALGAS, !- Heater Fuel Type + 0.8, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 20, !- Off Cycle Parasitic Fuel Consumption Rate {W} + NATURALGAS, !- Off Cycle Parasitic Fuel Type + 0.8, !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate {W} + NATURALGAS, !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + SCHEDULE, !- Ambient Temperature Indicator + SWHSys1 Water Heater Ambient Temperature Schedule Name, !- Ambient Temperature Schedule Name + , !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 6.0, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Loss Fraction to Zone + 6.0, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate {m3/s} + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + SWHSys1 Pump-SWHSys1 Water HeaterNode, !- Use Side Inlet Node Name + SWHSys1 Supply Equipment Outlet Node, !- Use Side Outlet Node Name + 1.0, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1.0, !- Source Side Effectiveness + AUTOSIZE, !- Use Side Design Flow Rate {m3/s} + AUTOSIZE, !- Source Side Design Flow Rate {m3/s} + 1.5; !- Indirect Water Heating Recovery Time {hr} + + Pump:ConstantSpeed, + SWHSys1 Pump, !- Name + SWHSys1 Supply Inlet Node, !- Inlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Flow Rate {m3/s} + 100000, !- Design Pump Head {Pa} + AUTOSIZE, !- Design Power Consumption {W} + 1, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + ; !- Pump Flow Rate Schedule Name + + WaterUse:Equipment, + Core_ZN Water Equipment, !- Name + , !- End-Use Subcategory + 3.15e-006, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_ZN, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + + PlantEquipmentList, + SWHSys1 Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + SWHSys1 Water Heater; !- Equipment 1 Name + +! ***SWH SIZING & CONTROLS*** + + Sizing:Plant, + SWHSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature {C} + 5.0; !- Loop Design Temperature Difference {deltaC} + + SetpointManager:Scheduled, + SWHSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + SWHSys1-Loop-Temp-Schedule, !- Schedule Name + SWHSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + + PlantEquipmentOperationSchemes, + SWHSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + SWHSys1 Operation Scheme,!- Control Scheme 1 Name + ALWAYS_ON; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:HeatingLoad, + SWHSys1 Operation Scheme,!- Name + 0.0, !- Load Range 1 Lower Limit {W} + 1000000000000000, !- Load Range 1 Upper Limit {W} + SWHSys1 Equipment List; !- Range 1 Equipment List Name + +! ***SWH LOOP*** + + PlantLoop, + SWHSys1, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + SWHSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + SWHSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 60.0, !- Maximum Loop Temperature {C} + 10.0, !- Minimum Loop Temperature {C} + AUTOSIZE, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + AUTOSIZE, !- Plant Loop Volume {m3} + SWHSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + SWHSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + SWHSys1 Supply Branches, !- Plant Side Branch List Name + SWHSys1 Supply Connectors, !- Plant Side Connector List Name + SWHSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + SWHSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + SWHSys1 Demand Branches, !- Demand Side Branch List Name + SWHSys1 Demand Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + +! ***SWH CONNECTIONS*** + + BranchList, + SWHSys1 Demand Branches, !- Name + SWHSys1 Demand Inlet Branch, !- Branch 1 Name + SWHSys1 Demand Load Branch 1, !- Branch 2 Name + SWHSys1 Demand Bypass Branch, !- Branch 3 Name + SWHSys1 Demand Outlet Branch; !- Branch 4 Name + + BranchList, + SWHSys1 Supply Branches, !- Name + SWHSys1 Supply Inlet Branch, !- Branch 1 Name + SWHSys1 Supply Equipment Branch, !- Branch 2 Name + SWHSys1 Supply Equipment Bypass Branch, !- Branch 3 Name + SWHSys1 Supply Outlet Branch; !- Branch 4 Name + + Branch, + SWHSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Demand Bypass Pipe, !- Component 1 Name + SWHSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + SWHSys1 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Demand Inlet Pipe, !- Component 1 Name + SWHSys1 Demand Inlet Node, !- Component 1 Inlet Node Name + SWHSys1 Demand Inlet Pipe-SWHSys1 Demand Mixer; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Core_ZN Water Equipment, !- Component 1 Name + Core_ZN Water Equipment Water Inlet Node, !- Component 1 Inlet Node Name + Core_ZN Water Equipment Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Demand Outlet Pipe, !- Component 1 Name + SWHSys1 Demand Mixer-SWHSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Demand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + WaterHeater:Mixed, !- Component 1 Object Type + SWHSys1 Water Heater, !- Component 1 Name + SWHSys1 Pump-SWHSys1 Water HeaterNode, !- Component 1 Inlet Node Name + SWHSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Supply Equipment Bypass Pipe, !- Component 1 Name + SWHSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name + SWHSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:ConstantSpeed, !- Component 1 Object Type + SWHSys1 Pump, !- Component 1 Name + SWHSys1 Supply Inlet Node, !- Component 1 Inlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNodeviaConnector; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Supply Outlet Pipe, !- Component 1 Name + SWHSys1 Supply Mixer-SWHSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Supply Outlet Node; !- Component 1 Outlet Node Name + + ConnectorList, + SWHSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SWHSys1 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SWHSys1 Demand Mixer; !- Connector 2 Name + + ConnectorList, + SWHSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SWHSys1 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SWHSys1 Supply Mixer; !- Connector 2 Name + + WaterUse:Connections, + Core_ZN Water Equipment, !- Name + Core_ZN Water Equipment Water Inlet Node, !- Inlet Node Name + Core_ZN Water Equipment Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Core_ZN Water Equipment; !- Water Use Equipment 1 Name + + Connector:Splitter, + SWHSys1 Demand Splitter, !- Name + SWHSys1 Demand Inlet Branch, !- Inlet Branch Name + SWHSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + SWHSys1 Demand Bypass Branch; !- Outlet Branch 2 Name + + Connector:Splitter, + SWHSys1 Supply Splitter, !- Name + SWHSys1 Supply Inlet Branch, !- Inlet Branch Name + SWHSys1 Supply Equipment Branch, !- Outlet Branch 1 Name + SWHSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + SWHSys1 Demand Mixer, !- Name + SWHSys1 Demand Outlet Branch, !- Outlet Branch Name + SWHSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + SWHSys1 Demand Bypass Branch; !- Inlet Branch 2 Name + + Connector:Mixer, + SWHSys1 Supply Mixer, !- Name + SWHSys1 Supply Outlet Branch, !- Outlet Branch Name + SWHSys1 Supply Equipment Branch, !- Inlet Branch 1 Name + SWHSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + + Pipe:Adiabatic, + SWHSys1 Demand Bypass Pipe, !- Name + SWHSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + SWHSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SWHSys1 Demand Inlet Pipe, !- Name + SWHSys1 Demand Inlet Node, !- Inlet Node Name + SWHSys1 Demand Inlet Pipe-SWHSys1 Demand Mixer; !- Outlet Node Name + + Pipe:Adiabatic, + SWHSys1 Demand Outlet Pipe, !- Name + SWHSys1 Demand Mixer-SWHSys1 Demand Outlet Pipe, !- Inlet Node Name + SWHSys1 Demand Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SWHSys1 Supply Equipment Bypass Pipe, !- Name + SWHSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + SWHSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SWHSys1 Supply Outlet Pipe, !- Name + SWHSys1 Supply Mixer-SWHSys1 Supply Outlet Pipe, !- Inlet Node Name + SWHSys1 Supply Outlet Node; !- Outlet Node Name + +! ***SWH SCHEDULES*** + + Schedule:Compact, + BLDG_SWH_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 05:00,0.05, !- Field 3 + Until: 06:00,0.08, !- Field 5 + Until: 07:00,0.07, !- Field 7 + Until: 08:00,0.19, !- Field 9 + Until: 09:00,0.35, !- Field 11 + Until: 10:00,0.38, !- Field 13 + Until: 11:00,0.39, !- Field 15 + Until: 12:00,0.47, !- Field 17 + Until: 13:00,0.57, !- Field 19 + Until: 14:00,0.54, !- Field 21 + Until: 15:00,0.34, !- Field 23 + Until: 16:00,0.33, !- Field 25 + Until: 17:00,0.44, !- Field 27 + Until: 18:00,0.26, !- Field 29 + Until: 19:00,0.21, !- Field 31 + Until: 20:00,0.15, !- Field 33 + Until: 21:00,0.17, !- Field 35 + Until: 22:00,0.08, !- Field 37 + Until: 24:00,0.05, !- Field 39 + For: Saturday WinterDesignDay, !- Field 41 + Until: 05:00,0.05, !- Field 42 + Until: 06:00,0.08, !- Field 44 + Until: 07:00,0.07, !- Field 46 + Until: 08:00,0.11, !- Field 48 + Until: 09:00,0.15, !- Field 50 + Until: 10:00,0.21, !- Field 52 + Until: 11:00,0.19, !- Field 54 + Until: 12:00,0.23, !- Field 56 + Until: 13:00,0.20, !- Field 58 + Until: 14:00,0.19, !- Field 60 + Until: 15:00,0.15, !- Field 62 + Until: 16:00,0.13, !- Field 64 + Until: 17:00,0.14, !- Field 66 + Until: 21:00,0.07, !- Field 68 + Until: 22:00,0.09, !- Field 70 + Until: 24:00,0.05, !- Field 72 + For: AllOtherDays, !- Field 74 + Until: 05:00,0.04, !- Field 75 + Until: 06:00,0.07, !- Field 77 + Until: 11:00,0.04, !- Field 79 + Until: 13:00,0.06, !- Field 81 + Until: 14:00,0.09, !- Field 83 + Until: 15:00,0.06, !- Field 85 + Until: 21:00,0.04, !- Field 87 + Until: 22:00,0.07, !- Field 89 + Until: 24:00,0.04; !- Field 91 + + Schedule:Compact, + Water Equipment Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + Water Equipment Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + SWHSys1 Water Heater Ambient Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,22.0; !- Field 3 + + Schedule:Compact, + Water Equipment Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,43.3; !- Field 3 + + Schedule:Compact, + Water Equipment Hot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,43.3; !- Field 3 + + Schedule:Compact, + SWHSys1 Water Heater Setpoint Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + SWHSys1-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + +! ***ECONOMICS*** +! IN_EIAMonthlyRateGas, Source EIA historical Nov2003 thru Oct2004 +! Indiana 1999 state average electricity emissions factors based on eGRID, 1065, AirData +! PSI_CS_CommercialElectricService, source http://www.cinergypsi.com/pdfs/RateCS.pdf, effective 2004-05-24 +! PSI_LLF_LowLoadFactorService,source http://www.cinergypsi.com/pdfs/RATELLF.pdf, effective 2004-05-24 + + UtilityCost:Tariff, + PSI_LLF_LowLoadFactorService, !- Name + Electricity:Facility, !- Output Meter Name + kWh, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + HalfHour, !- Demand Window Length + 15.00, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Elect; !- Group Name + + UtilityCost:Charge:Block, + AnnualEnergyCharge, !- Utility Cost Charge Block Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + , !- Block Size Multiplier Value or Variable Name + 300, !- Block Size 1 Value or Variable Name + 0.108222, !- Block 1 Cost per Unit Value or Variable Name + 700, !- Block Size 2 Value or Variable Name + 0.087021, !- Block 2 Cost per Unit Value or Variable Name + 1500, !- Block Size 3 Value or Variable Name + 0.078420, !- Block 3 Cost per Unit Value or Variable Name + remaining, !- Block Size 4 Value or Variable Name + 0.058320; !- Block 4 Cost per Unit Value or Variable Name + + UtilityCost:Charge:Block, + AnnualDemandBaseCharge, !- Utility Cost Charge Block Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + TotalDemand, !- Block Size Multiplier Value or Variable Name + 190, !- Block Size 1 Value or Variable Name + 0.0, !- Block 1 Cost per Unit Value or Variable Name + 110, !- Block Size 2 Value or Variable Name + 0.051773, !- Block 2 Cost per Unit Value or Variable Name + remaining, !- Block Size 3 Value or Variable Name + 0.046965; !- Block 3 Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + FuelCostAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.002028; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + QualPollutionControlAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000536; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + SoxNoxRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.001127; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + DSMRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000370; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + PurchPowerTrackerAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000031; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + MidwestISOAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000216; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + CleanCoalRiderEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000833; !- Cost per Unit Value or Variable Name + + UtilityCost:Qualify, + MinDemand75kw, !- Utility Cost Qualify Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + TotalDemand, !- Variable Name + Minimum, !- Qualify Type + 75, !- Threshold Value or Variable Name + Annual, !- Season + Count, !- Threshold Test + 12; !- Number of Months + + UtilityCost:Charge:Simple, + TaxofeightPercent, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + +!end PSI_LLF_LowLoadFactorService + + UtilityCost:Tariff, + PSI_CS_CommercialElectricService, !- Name + Electricity:Facility, !- Output Meter Name + kWh, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + , !- Demand Window Length + 9.40, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Elect; !- Group Name + + UtilityCost:Charge:Block, + AnnualEnergyCharge, !- Utility Cost Charge Block Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + , !- Block Size Multiplier Value or Variable Name + 300, !- Block Size 1 Value or Variable Name + 0.082409, !- Block 1 Cost per Unit Value or Variable Name + 700, !- Block Size 2 Value or Variable Name + 0.072873, !- Block 2 Cost per Unit Value or Variable Name + 1500, !- Block Size 3 Value or Variable Name + 0.061696, !- Block 3 Cost per Unit Value or Variable Name + remaining, !- Block Size 4 Value or Variable Name + 0.041179; !- Block 4 Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + FuelCostAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.002028; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + QualPollutionControlAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000536; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + SoxNoxRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.001127; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + DSMRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000021; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + PurchPowerTrackerAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000034; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + MidwestISOAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000203; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + CleanCoalRiderEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000807; !- Cost per Unit Value or Variable Name + + UtilityCost:Qualify, + MaxDemand75kw, !- Utility Cost Qualify Name + PSI_CS_CommercialElectricService, !- Tariff Name + TotalDemand, !- Variable Name + Maximum, !- Qualify Type + 75, !- Threshold Value or Variable Name + Annual, !- Season + Count, !- Threshold Test + 1; !- Number of Months + + UtilityCost:Charge:Simple, + TaxofeightPercent, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + + UtilityCost:Tariff, + IN_EIAMonthlyRateGas, !- Name + Gas:Facility, !- Output Meter Name + MCF, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + , !- Demand Window Length + 0.0, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Gas; !- Group Name + + UtilityCost:Charge:Simple, + MonthlyRateGasCharge, !- Utility Cost Charge Simple Name + IN_EIAMonthlyRateGas, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + IN_MonthlyGasRates; !- Cost per Unit Value or Variable Name + + UtilityCost:Variable, + IN_MonthlyGasRates, !- Name + IN_EIAMonthlyRateGas, !- Tariff Name + Currency, !- Variable Type + 8.22, !- January Value + 7.51, !- February Value + 8.97, !- March Value + 9.01, !- April Value + 9.16, !- May Value + 10.44, !- June Value + 10.32, !- July Value + 10.13, !- August Value + 9.20, !- September Value + 8.18, !- October Value + 7.83, !- November Value + 7.63; !- December Value + + UtilityCost:Charge:Simple, + TaxofEightPercent, !- Utility Cost Charge Simple Name + IN_EIAMonthlyRateGas, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + + AirLoopHVAC:DedicatedOutdoorAirSystem, + AirLoopHVAC DOAS, !- Name + AirLoopDOAS OA system, !- AirLoopHVAC:OutdoorAirSystem Name + ALWAYS_ON, !- Availability Schedule Name + AirLoopDOASMixer, !- AirLoopHVAC:Mixer Name + AirLoopDOASSplitter, !- AirLoopHVAC:Splitter Name + 4.5, !- Preheat Design Temperature {C} + 0.004, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 17.5, !- Precool Design Temperature {C} + 0.012, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 5, !- Number of AirLoopHVAC + PSZ-AC:1, !- AirLoopHVAC 1 Name + PSZ-AC:2, !- AirLoopHVAC 2 Name + PSZ-AC:3, !- AirLoopHVAC 3 Name + PSZ-AC:4, !- AirLoopHVAC 4 Name + PSZ-AC:5; !- AirLoopHVAC 5 Name + + AirLoopHVAC:Mixer, + AirLoopDOASMixer, !- Name + AirLoopDOASMixerOutlet, !- Outlet Node Name + PSZ-AC:1_OARelief Node, !- Inlet 1 Node Name + PSZ-AC:2_OARelief Node, !- Inlet 2 Node Name + PSZ-AC:3_OARelief Node, !- Inlet 3 Node Name + PSZ-AC:4_OARelief Node, !- Inlet 4 Node Name + PSZ-AC:5_OARelief Node; !- Inlet 5 Node Name + + AirLoopHVAC:Splitter, + AirLoopDOASSplitter, !- Name + AirLoopDOASSplitterInlet, !- Inlet Node Name + PSZ-AC:1_OAInlet Node, !- Outlet 1 Node Name + PSZ-AC:2_OAInlet Node, !- Outlet 2 Node Name + PSZ-AC:3_OAInlet Node, !- Outlet 3 Node Name + PSZ-AC:4_OAInlet Node, !- Outlet 4 Node Name + PSZ-AC:5_OAInlet Node; !- Outlet 5 Node Name + + Schedule:Compact, + OA Cooling Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,17.5; !- Field 3 + + Schedule:Compact, + OA Heating Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4.5; !- Field 3 + + SetpointManager:Scheduled, + OA Air Temp Manager 1, !- Name + Temperature, !- Control Variable + OA Cooling Supply Air Temp Sch, !- Schedule Name + AirLoopDOASSplitterInlet; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + OA Air Temp Manager 2, !- Name + Temperature, !- Control Variable + OA Heating Supply Air Temp Sch, !- Schedule Name + OA Heating Coil 1 Air Outlet Node; !- Setpoint Node or NodeList Name + + AirLoopHVAC:OutdoorAirSystem, + AirLoopDOAS OA system, !- Name + OA Sys 1 Controllers, !- Controller List Name + OA Sys 1 Equipment, !- Outdoor Air Equipment List Name + OA Sys 1 Avail List; !- Availability Manager List Name + + AvailabilityManagerAssignmentList, + OA Sys 1 Avail List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + OA Sys 1 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + OA Sys 1 Avail, !- Name + Always_ON; !- Schedule Name + + AirLoopHVAC:ControllerList, + OA Sys 1 Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + OA CC Controller 1, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + OA HC Controller 1; !- Controller 2 Name + + Schedule:Compact, + Min OA Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 6:00,0.0, !- Field 3 + Until: 20:00,1.0, !- Field 5 + Until: 24:00,0.02, !- Field 7 + For: AllOtherDays, !- Field 9 + Until: 24:00,0.02; !- Field 10 + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA Sys 1 Equipment, !- Name + Fan:SystemModel, !- Component 1 Object Type + OA Supply Fan, !- Component 1 Name + Coil:Heating:Water, !- Component 2 Object Type + OA Heating Coil 1, !- Component 2 Name + Coil:Cooling:Water, !- Component 3 Object Type + OA Cooling Coil 1; !- Component 3 Name + + Fan:SystemModel, + OA Supply Fan, !- Name + ALWAYS_ON, !- Availability Schedule Name + Outside Air Inlet Node 1, !- Air Inlet Node Name + OA Supply Fan Outlet Node, !- Air Outlet Node Name + Autosize, !- Design Maximum Air Flow Rate {m3/s} + Discrete, !- Speed Control Method + 0.25, !- Electric Power Minimum Flow Rate Fraction + 600.0, !- Design Pressure Rise {Pa} + 0.9, !- Motor Efficiency + 1.0, !- Motor In Air Stream Fraction + Autosize, !- Design Electric Power Consumption {W} + TotalEfficiencyAndPressure, !- Design Power Sizing Method + , !- Electric Power Per Unit Flow Rate {W/(m3/s)} + , !- Electric Power Per Unit Flow Rate Per Unit Pressure {W/((m3/s)-Pa)} + 0.7, !- Fan Total Efficiency + , !- Electric Power Function of Flow Fraction Curve Name + , !- Night Ventilation Mode Pressure Rise {Pa} + , !- Night Ventilation Mode Flow Fraction + , !- Motor Loss Zone Name + , !- Motor Loss Radiative Fraction + General; !- End-Use Subcategory + + Coil:Heating:Water, + OA Heating Coil 1, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + OA Heating Coil 1 Water Inlet Node, !- Water Inlet Node Name + OA Heating Coil 1 Water Outlet Node, !- Water Outlet Node Name + OA Supply Fan Outlet Node,!- Air Inlet Node Name + OA Heating Coil 1 Air Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Cooling:Water, + OA Cooling Coil 1, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + autosize, !- Design Inlet Water Temperature {C} + autosize, !- Design Inlet Air Temperature {C} + autosize, !- Design Outlet Air Temperature {C} + autosize, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + autosize, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + OA Cooling Coil 1 Water Inlet Node, !- Water Inlet Node Name + OA Cooling Coil 1 Water Outlet Node, !- Water Outlet Node Name + OA Heating Coil 1 Air Outlet Node, !- Air Inlet Node Name + AirLoopDOASSplitterInlet, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow, !- Heat Exchanger Configuration + , !- Condensate Collection Water Storage Tank Name + 4.0; !- Design Water Temperature Difference {deltaC} + + Controller:WaterCoil, + OA HC Controller 1, !- Name + Temperature, !- Control Variable + Normal, !- Action + FLOW, !- Actuator Variable + OA Heating Coil 1 Air Outlet Node, !- Sensor Node Name + OA Heating Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + OA CC Controller 1, !- Name + Temperature, !- Control Variable + Reverse, !- Action + FLOW, !- Actuator Variable + AirLoopDOASSplitterInlet, !- Sensor Node Name + OA Cooling Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + OutdoorAir:NodeList, + OutsideAirInletNodes; !- Node or NodeList Name 1 + + NodeList, + OutsideAirInletNodes, !- Name + Outside Air Inlet Node 1;!- Node 1 Name + + PlantLoop, + Hot Water Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Hot Loop Operation, !- Plant Equipment Operation Scheme Name + HW Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + , !- Plant Loop Volume {m3} + HW Supply Inlet Node, !- Plant Side Inlet Node Name + HW Supply Outlet Node, !- Plant Side Outlet Node Name + Heating Supply Side Branches, !- Plant Side Branch List Name + Heating Supply Side Connectors, !- Plant Side Connector List Name + HW Demand Inlet Node, !- Demand Side Inlet Node Name + HW Demand Outlet Node, !- Demand Side Outlet Node Name + Heating Demand Side Branches, !- Demand Side Branch List Name + Heating Demand Side Connectors, !- Demand Side Connector List Name + SequentialLoad; !- Load Distribution Scheme + + SetpointManager:Scheduled, + Hot Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + HW Loop Temp Schedule, !- Schedule Name + HW Supply Outlet Node; !- Setpoint Node or NodeList Name + + BranchList, + Heating Supply Side Branches, !- Name + Heating Supply Inlet Branch, !- Branch 1 Name + Central Boiler Branch, !- Branch 2 Name + Heating Supply Bypass Branch, !- Branch 3 Name + Heating Supply Outlet Branch; !- Branch 4 Name + + ConnectorList, + Heating Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heating Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heating Supply Mixer; !- Connector 2 Name + + Branch, + Heating Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + HW Circ Pump, !- Component 1 Name + HW Supply Inlet Node, !- Component 1 Inlet Node Name + HW Pump Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Central Boiler Branch, !- Name + , !- Pressure Drop Curve Name + Boiler:HotWater, !- Component 1 Object Type + Central Boiler, !- Component 1 Name + Central Boiler Inlet Node, !- Component 1 Inlet Node Name + Central Boiler Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heating Supply Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Supply Side Bypass, !- Component 1 Name + Heating Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + Heating Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Supply Side Bypass, !- Name + Heating Supply Bypass Inlet Node, !- Inlet Node Name + Heating Supply Bypass Outlet Node; !- Outlet Node Name + + Branch, + Heating Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Supply Outlet, !- Component 1 Name + Heating Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + HW Supply Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Supply Outlet, !- Name + Heating Supply Exit Pipe Inlet Node, !- Inlet Node Name + HW Supply Outlet Node; !- Outlet Node Name + + BranchList, + Heating Demand Side Branches, !- Name + Heating Demand Inlet Branch, !- Branch 1 Name + OA Heating Coil Branch, !- Branch 2 Name + Heating Demand Bypass Branch, !- Branch 3 Name + Heating Demand Outlet Branch; !- Branch 4 Name + + ConnectorList, + Heating Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heating Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heating Demand Mixer; !- Connector 2 Name + + Branch, + Heating Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Inlet Pipe, !- Component 1 Name + HW Demand Inlet Node, !- Component 1 Inlet Node Name + HW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Demand Inlet Pipe, !- Name + HW Demand Inlet Node, !- Inlet Node Name + HW Demand Entrance Pipe Outlet Node; !- Outlet Node Name + + Branch, + Heating Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Outlet Pipe, !- Component 1 Name + HW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + HW Demand Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Demand Outlet Pipe, !- Name + HW Demand Exit Pipe Inlet Node, !- Inlet Node Name + HW Demand Outlet Node; !- Outlet Node Name + + Branch, + OA Heating Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + OA Heating Coil 1, !- Component 1 Name + OA Heating Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + OA Heating Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heating Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Bypass, !- Component 1 Name + Heating Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + Heating Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Demand Bypass, !- Name + Heating Demand Bypass Inlet Node, !- Inlet Node Name + Heating Demand Bypass Outlet Node; !- Outlet Node Name + + Connector:Splitter, + Heating Demand Splitter, !- Name + Heating Demand Inlet Branch, !- Inlet Branch Name + OA Heating Coil Branch, !- Outlet Branch 1 Name + Heating Demand Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + Heating Demand Mixer, !- Name + Heating Demand Outlet Branch, !- Outlet Branch Name + OA Heating Coil Branch, !- Inlet Branch 1 Name + Heating Demand Bypass Branch; !- Inlet Branch 2 Name + + Connector:Splitter, + Heating Supply Splitter, !- Name + Heating Supply Inlet Branch, !- Inlet Branch Name + Central Boiler Branch, !- Outlet Branch 1 Name + Heating Supply Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + Heating Supply Mixer, !- Name + Heating Supply Outlet Branch, !- Outlet Branch Name + Central Boiler Branch, !- Inlet Branch 1 Name + Heating Supply Bypass Branch; !- Inlet Branch 2 Name + + PlantEquipmentOperationSchemes, + Hot Loop Operation, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + Central Boiler Only, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:HeatingLoad, + Central Boiler Only, !- Name + 0, !- Load Range 1 Lower Limit {W} + 1000000, !- Load Range 1 Upper Limit {W} + heating plant; !- Range 1 Equipment List Name + + PlantEquipmentList, + heating plant, !- Name + Boiler:HotWater, !- Equipment 1 Object Type + Central Boiler; !- Equipment 1 Name + + Boiler:HotWater, + Central Boiler, !- Name + NaturalGas, !- Fuel Type + autosize, !- Nominal Capacity {W} + 0.8, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + BoilerEfficiency, !- Normalized Boiler Efficiency Curve Name + autosize, !- Design Water Flow Rate {m3/s} + 0.0, !- Minimum Part Load Ratio + 1.2, !- Maximum Part Load Ratio + 1.0, !- Optimum Part Load Ratio + Central Boiler Inlet Node, !- Boiler Water Inlet Node Name + Central Boiler Outlet Node, !- Boiler Water Outlet Node Name + 100., !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated;!- Boiler Flow Mode + + SetpointManager:Scheduled, + Central Boiler Setpoint Manager, !- Name + Temperature, !- Control Variable + HW Loop Temp Schedule, !- Schedule Name + Central Boiler Outlet Node; !- Setpoint Node or NodeList Name + + Curve:Quadratic, + BoilerEfficiency, !- Name + 1.0, !- Coefficient1 Constant + 0.0, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + + Pump:VariableSpeed, + HW Circ Pump, !- Name + HW Supply Inlet Node, !- Inlet Node Name + HW Pump Outlet Node, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 179352, !- Design Pump Head {Pa} + autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + INTERMITTENT; !- Pump Control Type + + PlantLoop, + Chilled Water Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + CW Loop Operation, !- Plant Equipment Operation Scheme Name + CW Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 98, !- Maximum Loop Temperature {C} + 1, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + , !- Plant Loop Volume {m3} + CW Supply Inlet Node, !- Plant Side Inlet Node Name + CW Supply Outlet Node, !- Plant Side Outlet Node Name + Cooling Supply Side Branches, !- Plant Side Branch List Name + Cooling Supply Side Connectors, !- Plant Side Connector List Name + CW Demand Inlet Node, !- Demand Side Inlet Node Name + CW Demand Outlet Node, !- Demand Side Outlet Node Name + Cooling Demand Side Branches, !- Demand Side Branch List Name + Cooling Demand Side Connectors, !- Demand Side Connector List Name + SequentialLoad, !- Load Distribution Scheme + CW Avail List; !- Availability Manager List Name + + AvailabilityManagerAssignmentList, + CW Avail List, !- Name + AvailabilityManager:LowTemperatureTurnOff, !- Availability Manager 1 Object Type + CW Low Temp Limit; !- Availability Manager 1 Name + + AvailabilityManager:LowTemperatureTurnOff, + CW Low Temp Limit, !- Name + Outside Air Inlet Node 1,!- Sensor Node Name + 2.0, !- Temperature {C} + CoolingPumpAvailSched; !- Applicability Schedule Name + + SetpointManager:Scheduled, + Chilled Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + CW Loop Temp Schedule, !- Schedule Name + CW Supply Outlet Node; !- Setpoint Node or NodeList Name + + BranchList, + Cooling Supply Side Branches, !- Name + CW Pump Branch, !- Branch 1 Name + Central Chiller Branch, !- Branch 2 Name + Cooling Supply Bypass Branch, !- Branch 3 Name + Cooling Supply Outlet; !- Branch 4 Name + + BranchList, + Cooling Demand Side Branches, !- Name + Cooling Demand Inlet, !- Branch 1 Name + OA Cooling Coil Branch, !- Branch 3 Name + Cooling Demand Bypass Branch, !- Branch 4 Name + Cooling Demand Outlet; !- Branch 5 Name + + ConnectorList, + Cooling Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CW Loop Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CW Loop Mixer; !- Connector 2 Name + + ConnectorList, + Cooling Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CW Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CW Demand Mixer; !- Connector 2 Name + + Branch, + Cooling Demand Inlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Cooling Demand Side Inlet Pipe, !- Component 1 Name + CW Demand Inlet Node, !- Component 1 Inlet Node Name + CW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Cooling Demand Side Inlet Pipe, !- Name + CW Demand Inlet Node, !- Inlet Node Name + CW Demand Entrance Pipe Outlet Node; !- Outlet Node Name + + Branch, + OA Cooling Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + OA Cooling Coil 1, !- Component 1 Name + OA Cooling Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + OA Cooling Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Cooling Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Cooling Demand Side Bypass, !- Component 1 Name + CW Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + CW Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Cooling Demand Side Bypass, !- Name + CW Demand Bypass Inlet Node, !- Inlet Node Name + CW Demand Bypass Outlet Node; !- Outlet Node Name + + Branch, + Cooling Demand Outlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CW Demand Side Outlet Pipe, !- Component 1 Name + CW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + CW Demand Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + CW Demand Side Outlet Pipe, !- Name + CW Demand Exit Pipe Inlet Node, !- Inlet Node Name + CW Demand Outlet Node; !- Outlet Node Name + + Branch, + Cooling Supply Outlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Supply Side Outlet Pipe, !- Component 1 Name + Supply Side Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + CW Supply Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Supply Side Outlet Pipe, !- Name + Supply Side Exit Pipe Inlet Node, !- Inlet Node Name + CW Supply Outlet Node; !- Outlet Node Name + + Branch, + CW Pump Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + CW Circ Pump, !- Component 1 Name + CW Supply Inlet Node, !- Component 1 Inlet Node Name + CW Pump Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Central Chiller Branch, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric, !- Component 1 Object Type + Central Chiller, !- Component 1 Name + Central Chiller Inlet Node, !- Component 1 Inlet Node Name + Central Chiller Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Cooling Supply Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Supply Side Bypass, !- Component 1 Name + CW Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + CW Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Supply Side Bypass, !- Name + CW Supply Bypass Inlet Node, !- Inlet Node Name + CW Supply Bypass Outlet Node; !- Outlet Node Name + + Connector:Splitter, + CW Loop Splitter, !- Name + CW Pump Branch, !- Inlet Branch Name + Central Chiller Branch, !- Outlet Branch 1 Name + Cooling Supply Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + CW Loop Mixer, !- Name + Cooling Supply Outlet, !- Outlet Branch Name + Central Chiller Branch, !- Inlet Branch 1 Name + Cooling Supply Bypass Branch; !- Inlet Branch 2 Name + + Connector:Splitter, + CW Demand Splitter, !- Name + Cooling Demand Inlet, !- Inlet Branch Name + OA Cooling Coil Branch, !- Outlet Branch 1 Name + Cooling Demand Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + CW Demand Mixer, !- Name + Cooling Demand Outlet, !- Outlet Branch Name + OA Cooling Coil Branch, !- Inlet Branch 2 Name + Cooling Demand Bypass Branch; !- Inlet Branch 3 Name + + PlantEquipmentOperationSchemes, + CW Loop Operation, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + Central Chiller Only, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:CoolingLoad, + Central Chiller Only, !- Name + 0, !- Load Range 1 Lower Limit {W} + 900000, !- Load Range 1 Upper Limit {W} + Cooling Plant; !- Range 1 Equipment List Name + + PlantEquipmentList, + Cooling Plant, !- Name + Chiller:Electric, !- Equipment 1 Object Type + Central Chiller; !- Equipment 1 Name + + Chiller:Electric, + Central Chiller, !- Name + AirCooled, !- Condenser Type + autosize, !- Nominal Capacity {W} + 3.2, !- Nominal COP {W/W} + Central Chiller Inlet Node, !- Chilled Water Inlet Node Name + Central Chiller Outlet Node, !- Chilled Water Outlet Node Name + Central Chiller Condenser Inlet Node, !- Condenser Inlet Node Name + Central Chiller Condenser Outlet Node, !- Condenser Outlet Node Name + 0.0, !- Minimum Part Load Ratio + 1.0, !- Maximum Part Load Ratio + 0.65, !- Optimum Part Load Ratio + 35.0, !- Design Condenser Inlet Temperature {C} + 2.778, !- Temperature Rise Coefficient + 6.67, !- Design Chilled Water Outlet Temperature {C} + autosize, !- Design Chilled Water Flow Rate {m3/s} + autosize, !- Design Condenser Fluid Flow Rate {m3/s} + 0.9949, !- Coefficient 1 of Capacity Ratio Curve + -0.045954, !- Coefficient 2 of Capacity Ratio Curve + -0.0013543, !- Coefficient 3 of Capacity Ratio Curve + 2.333, !- Coefficient 1 of Power Ratio Curve + -1.975, !- Coefficient 2 of Power Ratio Curve + 0.6121, !- Coefficient 3 of Power Ratio Curve + 0.03303, !- Coefficient 1 of Full Load Ratio Curve + 0.6852, !- Coefficient 2 of Full Load Ratio Curve + 0.2818, !- Coefficient 3 of Full Load Ratio Curve + 5, !- Chilled Water Outlet Temperature Lower Limit {C} + LeavingSetpointModulated;!- Chiller Flow Mode + + SetpointManager:Scheduled, + Central Chiller Setpoint Manager, !- Name + Temperature, !- Control Variable + CW Loop Temp Schedule, !- Schedule Name + Central Chiller Outlet Node; !- Setpoint Node or NodeList Name + + OutdoorAir:Node, + Central Chiller Condenser Inlet Node, !- Name + -1.0; !- Height Above Ground {m} + + Pump:VariableSpeed, + CW Circ Pump, !- Name + CW Supply Inlet Node, !- Inlet Node Name + CW Pump Outlet Node, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 179352, !- Design Pump Head {Pa} + autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + INTERMITTENT, !- Pump Control Type + CoolingPumpAvailSched; !- Pump Flow Rate Schedule Name + + Schedule:Compact, + CW Loop Temp Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,7.22; !- Field 3 + + Schedule:Compact, + HW Loop Temp Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,82; !- Field 3 + + Schedule:Compact, + CoolingPumpAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + CoolingCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays, !- Field 2 + Until: 6:00,0.0, !- Field 3 + Until: 20:00,1.0, !- Field 5 + Until: 24:00,0.0, !- Field 7 + For: SummerDesignDay WinterDesignDay, !- Field 9 + Until: 24:00,1.0, !- Field 10 + For: AllOtherDays, !- Field 12 + Until: 24:00,0.0; !- Field 13 + + Schedule:Compact, + PlantOnSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + +! ***GENERAL REPORTING*** + + OutputControl:ReportingTolerances, + 0.556, !- Tolerance for Time Heating Setpoint Not Met {deltaC} + 0.556; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} + + Output:SQLite, + Simple; !- Option Type + + Output:VariableDictionary,IDF,Unsorted; + + Output:Surfaces:List,Details; + + Output:Surfaces:Drawing,DXF; + + Output:Constructions,Constructions; + +! ***REPORT METERS/VARIABLES*** + + Output:Meter,Electricity:Facility,Timestep; + + Output:Meter,Fans:Electricity,Timestep; + + Output:Meter,Cooling:Electricity,Timestep; + + Output:Meter,Heating:Electricity,Timestep; + + Output:Meter,InteriorLights:Electricity,Timestep; + + Output:Meter,InteriorEquipment:Electricity,Timestep; + + Output:Meter,Gas:Facility,Timestep; + + Output:Meter,Heating:Gas,Timestep; + + Output:Meter,Water Heater:WaterSystems:Gas,Timestep; + + Output:Variable,*,Site Outdoor Air Drybulb Temperature,Timestep; + + Output:Variable,*,Site Outdoor Air Humidity Ratio,Timestep; + + Output:Variable,*,Site Outdoor Air Relative Humidity,Timestep; + + Output:Variable,*,Air System Outdoor Air Flow Fraction,Timestep; + + Output:Variable,*,Air System Simulation Cycle On Off Status,Timestep; + + Output:Variable,*,Air System Outdoor Air Economizer Status,Timestep; + + Output:Variable,*,Air System Total Heating Energy,Timestep; + + Output:Variable,*,Air System Total Cooling Energy,Timestep; + + Output:Variable,*,Air System Fan Electric Energy,Timestep; + + Output:Variable,*,Zone Mean Air Temperature,Timestep; + + Output:Variable,*,System Node Temperature,Timestep; !- HVAC Average [C] + + Output:Variable,*,System Node Mass Flow Rate,Timestep; !- HVAC Average [kg/s] + +! ***REPORT TABLES*** + + OutputControl:Table:Style, + HTML; !- Column Separator + + Output:Table:SummaryReports, + AnnualBuildingUtilityPerformanceSummary, !- Report 1 Name + InputVerificationandResultsSummary, !- Report 2 Name + ClimaticDataSummary, !- Report 3 Name + EnvelopeSummary, !- Report 4 Name + EquipmentSummary, !- Report 5 Name + ComponentSizingSummary, !- Report 6 Name + HVACSizingSummary, !- Report 7 Name + SystemSummary; !- Report 8 Name + +! ***ENVIRONMENTAL FACTORS REPORTING*** + + Output:EnvironmentalImpactFactors, + Monthly; !- Reporting Frequency + + EnvironmentalImpactFactors, + 0.663, !- District Heating Efficiency + 4.18, !- District Cooling COP {W/W} + 0.585, !- Steam Conversion Efficiency + 80.7272, !- Total Carbon Equivalent Emission Factor From N2O {kg/kg} + 6.2727, !- Total Carbon Equivalent Emission Factor From CH4 {kg/kg} + 0.2727; !- Total Carbon Equivalent Emission Factor From CO2 {kg/kg} + +! Indiana electricity source and emission factors based on Deru and Torcellini 2007 + + FuelFactors, + Electricity, !- Existing Fuel Resource Name + kg, !- Units of Measure + , !- Energy per Unit Factor + 3.546, !- Source Energy Factor {J/J} + , !- Source Energy Schedule Name + 3.417E+02, !- CO2 Emission Factor {g/MJ} + , !- CO2 Emission Factor Schedule Name + 1.186E-01, !- CO Emission Factor {g/MJ} + , !- CO Emission Factor Schedule Name + 7.472E-01, !- CH4 Emission Factor {g/MJ} + , !- CH4 Emission Factor Schedule Name + 6.222E-01, !- NOx Emission Factor {g/MJ} + , !- NOx Emission Factor Schedule Name + 8.028E-03, !- N2O Emission Factor {g/MJ} + , !- N2O Emission Factor Schedule Name + 1.872E+00, !- SO2 Emission Factor {g/MJ} + , !- SO2 Emission Factor Schedule Name + 0.0, !- PM Emission Factor {g/MJ} + , !- PM Emission Factor Schedule Name + 1.739E-02, !- PM10 Emission Factor {g/MJ} + , !- PM10 Emission Factor Schedule Name + 0.0, !- PM2.5 Emission Factor {g/MJ} + , !- PM2.5 Emission Factor Schedule Name + 0.0, !- NH3 Emission Factor {g/MJ} + , !- NH3 Emission Factor Schedule Name + 1.019E-02, !- NMVOC Emission Factor {g/MJ} + , !- NMVOC Emission Factor Schedule Name + 5.639E-06, !- Hg Emission Factor {g/MJ} + , !- Hg Emission Factor Schedule Name + 2.778E-05, !- Pb Emission Factor {g/MJ} + , !- Pb Emission Factor Schedule Name + 0.4309556, !- Water Emission Factor {L/MJ} + , !- Water Emission Factor Schedule Name + 0, !- Nuclear High Level Emission Factor {g/MJ} + , !- Nuclear High Level Emission Factor Schedule Name + 0; !- Nuclear Low Level Emission Factor {m3/MJ} + +! Deru and Torcellini 2007 +! Source Energy and Emission Factors for Energy Use in Buildings +! NREL/TP-550-38617 +! source factor and Higher Heating Values from Table 5 +! post-combustion emission factors for boiler from Table 9 (with factor of 1000 correction for natural gas) + + FuelFactors, + NaturalGas, !- Existing Fuel Resource Name + m3, !- Units of Measure + 37631000, !- Energy per Unit Factor + 1.092, !- Source Energy Factor {J/J} + , !- Source Energy Schedule Name + 5.21E+01, !- CO2 Emission Factor {g/MJ} + , !- CO2 Emission Factor Schedule Name + 3.99E-02, !- CO Emission Factor {g/MJ} + , !- CO Emission Factor Schedule Name + 1.06E-03, !- CH4 Emission Factor {g/MJ} + , !- CH4 Emission Factor Schedule Name + 4.73E-02, !- NOx Emission Factor {g/MJ} + , !- NOx Emission Factor Schedule Name + 1.06E-03, !- N2O Emission Factor {g/MJ} + , !- N2O Emission Factor Schedule Name + 2.68E-04, !- SO2 Emission Factor {g/MJ} + , !- SO2 Emission Factor Schedule Name + 0.0, !- PM Emission Factor {g/MJ} + , !- PM Emission Factor Schedule Name + 3.59E-03, !- PM10 Emission Factor {g/MJ} + , !- PM10 Emission Factor Schedule Name + 0.0, !- PM2.5 Emission Factor {g/MJ} + , !- PM2.5 Emission Factor Schedule Name + 0, !- NH3 Emission Factor {g/MJ} + , !- NH3 Emission Factor Schedule Name + 2.61E-03, !- NMVOC Emission Factor {g/MJ} + , !- NMVOC Emission Factor Schedule Name + 1.11E-07, !- Hg Emission Factor {g/MJ} + , !- Hg Emission Factor Schedule Name + 2.13E-07, !- Pb Emission Factor {g/MJ} + , !- Pb Emission Factor Schedule Name + 0, !- Water Emission Factor {L/MJ} + , !- Water Emission Factor Schedule Name + 0, !- Nuclear High Level Emission Factor {g/MJ} + , !- Nuclear High Level Emission Factor Schedule Name + 0; !- Nuclear Low Level Emission Factor {m3/MJ} + diff --git a/testfiles/SpectralAngularOpticalProperties_TableData.idf b/testfiles/SpectralAngularOpticalProperties_TableData.idf index e466923804a..804c4de6db3 100644 --- a/testfiles/SpectralAngularOpticalProperties_TableData.idf +++ b/testfiles/SpectralAngularOpticalProperties_TableData.idf @@ -407,1727 +407,723 @@ FrontReflectanceData, !- Window Glass Spectral and Incident Angle Front Reflectance Data Set Table Name BackRefelectanceData; !- Window Glass Spectral and Incident Angle Back Reflectance Data Set Table Name - Table:TwoIndependentVariables, + Table:IndependentVariable, + Incident Angles, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 0.0, !- Minimum Value + 90.0, !- Maximum Value + , !- Normalization Reference Value + , !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + .00000, !- Value 1 + 90.00000; !- Extended Field + + Table:IndependentVariable, + Wavelengths, !- Name + Linear, !- Interpolation Method + Constant, !- Extrapolation Method + 0.30, !- Minimum Value + 2.50, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + .30000, !- Value 1 + .31000, !- Extended Field + .32000, !- Extended Field + .33000, !- Extended Field + .34000, !- Extended Field + .35000, !- Extended Field + .36000, !- Extended Field + .37000, !- Extended Field + .38000, !- Extended Field + .39000, !- Extended Field + .40000, !- Extended Field + .41000, !- Extended Field + .42000, !- Extended Field + .43000, !- Extended Field + .44000, !- Extended Field + .45000, !- Extended Field + .46000, !- Extended Field + .47000, !- Extended Field + .48000, !- Extended Field + .49000, !- Extended Field + .50000, !- Extended Field + .51000, !- Extended Field + .52000, !- Extended Field + .53000, !- Extended Field + .54000, !- Extended Field + .55000, !- Extended Field + .56000, !- Extended Field + .57000, !- Extended Field + .58000, !- Extended Field + .59000, !- Extended Field + .60000, !- Extended Field + .61000, !- Extended Field + .62000, !- Extended Field + .63000, !- Extended Field + .64000, !- Extended Field + .65000, !- Extended Field + .66000, !- Extended Field + .67000, !- Extended Field + .68000, !- Extended Field + .69000, !- Extended Field + .70000, !- Extended Field + .71000, !- Extended Field + .72000, !- Extended Field + .73000, !- Extended Field + .74000, !- Extended Field + .75000, !- Extended Field + .76000, !- Extended Field + .77000, !- Extended Field + .78000, !- Extended Field + .79000, !- Extended Field + .80000, !- Extended Field + .81000, !- Extended Field + .82000, !- Extended Field + .83000, !- Extended Field + .84000, !- Extended Field + .85000, !- Extended Field + .86000, !- Extended Field + .87000, !- Extended Field + .88000, !- Extended Field + .89000, !- Extended Field + .90000, !- Extended Field + .95000, !- Extended Field + 1.00000, !- Extended Field + 1.05000, !- Extended Field + 1.10000, !- Extended Field + 1.15000, !- Extended Field + 1.20000, !- Extended Field + 1.25000, !- Extended Field + 1.30000, !- Extended Field + 1.35000, !- Extended Field + 1.40000, !- Extended Field + 1.45000, !- Extended Field + 1.50000, !- Extended Field + 1.55000, !- Extended Field + 1.60000, !- Extended Field + 1.65000, !- Extended Field + 1.70000, !- Extended Field + 1.75000, !- Extended Field + 1.80000, !- Extended Field + 1.85000, !- Extended Field + 1.90000, !- Extended Field + 1.95000, !- Extended Field + 2.00000, !- Extended Field + 2.05000, !- Extended Field + 2.10000, !- Extended Field + 2.15000, !- Extended Field + 2.20000, !- Extended Field + 2.25000, !- Extended Field + 2.30000, !- Extended Field + 2.35000, !- Extended Field + 2.40000, !- Extended Field + 2.45000, !- Extended Field + 2.50000; !- Extended Field + + Table:IndependentVariableList, + Spectral and Angular Data, !- Name + Incident Angles, !- Independent Variable 1 Name + Wavelengths; !- Extended Field + + Table:Lookup, TransmittanceData, !- Name - BiQuadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 0.0, !- Minimum Value of X - 90.0, !- Maximum Value of X - 0.30, !- Minimum Value of Y - 2.50, !- Maximum Value of Y - 0.0, !- Minimum Table Output - 1.0, !- Maximum Table Output - Angle, !- Input Unit Type for X - Wavelength, !- Input Unit Type for Y + Spectral and Angular Data, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1.0, !- Normalization Divisor + 0.0, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - 1.0, !- Normalization Reference , !- External File Name - 0.0, !- X Value #1 - 0.300, !- Y Value #1 - 0.00100, !- Output Value #1 - 0.0, !- X Value #2 - 0.310, !- Y Value #2 - 0.00100, !- Output Value #2 - 0.0, !- X Value #3 - 0.320, !- Y Value #3 - 0.00100, !- Output Value #3 - 0.0, !- X Value #4 - 0.330, !- Y Value #4 - 0.00100, !- Output Value #4 - 0.0, !- - 0.340, !- - 0.00100, !- - 0.0, !- - 0.350, !- - 0.00100, !- - 0.0, !- - 0.360, !- - 0.00900, !- - 0.0, !- - 0.370, !- - 0.12000, !- - 0.0, !- - 0.380, !- - 0.49200, !- - 0.0, !- - 0.390, !- - 0.78200, !- - 0.0, !- - 0.400, !- - 0.85600, !- - 0.0, !- - 0.410, !- - 0.85800, !- - 0.0, !- - 0.420, !- - 0.85800, !- - 0.0, !- - 0.430, !- - 0.86000, !- - 0.0, !- - 0.440, !- - 0.86100, !- - 0.0, !- - 0.450, !- - 0.87100, !- - 0.0, !- - 0.460, !- - 0.88000, !- - 0.0, !- - 0.470, !- - 0.88300, !- - 0.0, !- - 0.480, !- - 0.88700, !- - 0.0, !- - 0.490, !- - 0.89000, !- - 0.0, !- - 0.500, !- - 0.89000, !- - 0.0, !- - 0.510, !- - 0.89100, !- - 0.0, !- - 0.520, !- - 0.88700, !- - 0.0, !- - 0.530, !- - 0.89000, !- - 0.0, !- - 0.540, !- - 0.88300, !- - 0.0, !- - 0.550, !- - 0.88800, !- - 0.0, !- - 0.560, !- - 0.88200, !- - 0.0, !- - 0.570, !- - 0.88100, !- - 0.0, !- - 0.580, !- - 0.86500, !- - 0.0, !- - 0.590, !- - 0.85800, !- - 0.0, !- - 0.600, !- - 0.86500, !- - 0.0, !- - 0.610, !- - 0.85600, !- - 0.0, !- - 0.620, !- - 0.84500, !- - 0.0, !- - 0.630, !- - 0.83700, !- - 0.0, !- - 0.640, !- - 0.82700, !- - 0.0, !- - 0.650, !- - 0.82000, !- - 0.0, !- - 0.660, !- - 0.80700, !- - 0.0, !- - 0.670, !- - 0.79800, !- - 0.0, !- - 0.680, !- - 0.79100, !- - 0.0, !- - 0.690, !- - 0.78100, !- - 0.0, !- - 0.700, !- - 0.76800, !- - 0.0, !- - 0.710, !- - 0.76100, !- - 0.0, !- - 0.720, !- - 0.74400, !- - 0.0, !- - 0.730, !- - 0.71300, !- - 0.0, !- - 0.740, !- - 0.70300, !- - 0.0, !- - 0.750, !- - 0.69400, !- - 0.0, !- - 0.760, !- - 0.68500, !- - 0.0, !- - 0.770, !- - 0.67500, !- - 0.0, !- - 0.780, !- - 0.66700, !- - 0.0, !- - 0.790, !- - 0.65500, !- - 0.0, !- - 0.800, !- - 0.64600, !- - 0.0, !- - 0.810, !- - 0.63800, !- - 0.0, !- - 0.820, !- - 0.62900, !- - 0.0, !- - 0.830, !- - 0.62300, !- - 0.0, !- - 0.840, !- - 0.61400, !- - 0.0, !- - 0.850, !- - 0.60800, !- - 0.0, !- - 0.860, !- - 0.60100, !- - 0.0, !- - 0.870, !- - 0.59700, !- - 0.0, !- - 0.880, !- - 0.59200, !- - 0.0, !- - 0.890, !- - 0.58700, !- - 0.0, !- - 0.900, !- - 0.58200, !- - 0.0, !- - 0.950, !- - 0.56800, !- - 0.0, !- - 1.000, !- - 0.56200, !- - 0.0, !- - 1.050, !- - 0.55600, !- - 0.0, !- - 1.100, !- - 0.56300, !- - 0.0, !- - 1.150, !- - 0.55600, !- - 0.0, !- - 1.200, !- - 0.54700, !- - 0.0, !- - 1.250, !- - 0.57700, !- - 0.0, !- - 1.300, !- - 0.59800, !- - 0.0, !- - 1.350, !- - 0.60800, !- - 0.0, !- - 1.400, !- - 0.60300, !- - 0.0, !- - 1.450, !- - 0.61400, !- - 0.0, !- - 1.500, !- - 0.64800, !- - 0.0, !- - 1.550, !- - 0.68000, !- - 0.0, !- - 1.600, !- - 0.69900, !- - 0.0, !- - 1.650, !- - 0.70600, !- - 0.0, !- - 1.700, !- - 0.57000, !- - 0.0, !- - 1.750, !- - 0.58500, !- - 0.0, !- - 1.800, !- - 0.63700, !- - 0.0, !- - 1.850, !- - 0.65500, !- - 0.0, !- - 1.900, !- - 0.63700, !- - 0.0, !- - 1.950, !- - 0.63400, !- - 0.0, !- - 2.000, !- - 0.63400, !- - 0.0, !- - 2.050, !- - 0.58600, !- - 0.0, !- - 2.100, !- - 0.58800, !- - 0.0, !- - 2.150, !- - 0.59700, !- - 0.0, !- - 2.200, !- - 0.57600, !- - 0.0, !- - 2.250, !- - 0.40400, !- - 0.0, !- - 2.300, !- - 0.17900, !- - 0.0, !- - 2.350, !- - 0.21900, !- - 0.0, !- - 2.400, !- - 0.24000, !- - 0.0, !- - 2.450, !- - 0.20000, !- - 0.0, !- - 2.500, !- - 0.21400, !- - 90.0, !- - 0.300, !- - 0.00000, !- - 90.0, !- - 0.310, !- - 0.00000, !- - 90.0, !- - 0.320, !- - 0.00000, !- - 90.0, !- - 0.330, !- - 0.00000, !- - 90.0, !- - 0.340, !- - 0.00000, !- - 90.0, !- - 0.350, !- - 0.00000, !- - 90.0, !- - 0.360, !- - 0.00000, !- - 90.0, !- - 0.370, !- - 0.00000, !- - 90.0, !- - 0.380, !- - 0.00000, !- - 90.0, !- - 0.390, !- - 0.00000, !- - 90.0, !- - 0.400, !- - 0.00000, !- - 90.0, !- - 0.410, !- - 0.00000, !- - 90.0, !- - 0.420, !- - 0.00000, !- - 90.0, !- - 0.430, !- - 0.00000, !- - 90.0, !- - 0.440, !- - 0.00000, !- - 90.0, !- - 0.450, !- - 0.00000, !- - 90.0, !- - 0.460, !- - 0.00000, !- - 90.0, !- - 0.470, !- - 0.00000, !- - 90.0, !- - 0.480, !- - 0.00000, !- - 90.0, !- - 0.490, !- - 0.00000, !- - 90.0, !- - 0.500, !- - 0.00000, !- - 90.0, !- - 0.510, !- - 0.00000, !- - 90.0, !- - 0.520, !- - 0.00000, !- - 90.0, !- - 0.530, !- - 0.00000, !- - 90.0, !- - 0.540, !- - 0.00000, !- - 90.0, !- - 0.550, !- - 0.00000, !- - 90.0, !- - 0.560, !- - 0.00000, !- - 90.0, !- - 0.570, !- - 0.00000, !- - 90.0, !- - 0.580, !- - 0.00000, !- - 90.0, !- - 0.590, !- - 0.00000, !- - 90.0, !- - 0.600, !- - 0.00000, !- - 90.0, !- - 0.610, !- - 0.00000, !- - 90.0, !- - 0.620, !- - 0.00000, !- - 90.0, !- - 0.630, !- - 0.00000, !- - 90.0, !- - 0.640, !- - 0.00000, !- - 90.0, !- - 0.650, !- - 0.00000, !- - 90.0, !- - 0.660, !- - 0.00000, !- - 90.0, !- - 0.670, !- - 0.00000, !- - 90.0, !- - 0.680, !- - 0.00000, !- - 90.0, !- - 0.690, !- - 0.00000, !- - 90.0, !- - 0.700, !- - 0.00000, !- - 90.0, !- - 0.710, !- - 0.00000, !- - 90.0, !- - 0.720, !- - 0.00000, !- - 90.0, !- - 0.730, !- - 0.00000, !- - 90.0, !- - 0.740, !- - 0.00000, !- - 90.0, !- - 0.750, !- - 0.00000, !- - 90.0, !- - 0.760, !- - 0.00000, !- - 90.0, !- - 0.770, !- - 0.00000, !- - 90.0, !- - 0.780, !- - 0.00000, !- - 90.0, !- - 0.790, !- - 0.00000, !- - 90.0, !- - 0.800, !- - 0.00000, !- - 90.0, !- - 0.810, !- - 0.00000, !- - 90.0, !- - 0.820, !- - 0.00000, !- - 90.0, !- - 0.830, !- - 0.00000, !- - 90.0, !- - 0.840, !- - 0.00000, !- - 90.0, !- - 0.850, !- - 0.00000, !- - 90.0, !- - 0.860, !- - 0.00000, !- - 90.0, !- - 0.870, !- - 0.00000, !- - 90.0, !- - 0.880, !- - 0.00000, !- - 90.0, !- - 0.890, !- - 0.00000, !- - 90.0, !- - 0.900, !- - 0.00000, !- - 90.0, !- - 0.950, !- - 0.00000, !- - 90.0, !- - 1.000, !- - 0.00000, !- - 90.0, !- - 1.050, !- - 0.00000, !- - 90.0, !- - 1.100, !- - 0.00000, !- - 90.0, !- - 1.150, !- - 0.00000, !- - 90.0, !- - 1.200, !- - 0.00000, !- - 90.0, !- - 1.250, !- - 0.00000, !- - 90.0, !- - 1.300, !- - 0.00000, !- - 90.0, !- - 1.350, !- - 0.00000, !- - 90.0, !- - 1.400, !- - 0.00000, !- - 90.0, !- - 1.450, !- - 0.00000, !- - 90.0, !- - 1.500, !- - 0.00000, !- - 90.0, !- - 1.550, !- - 0.00000, !- - 90.0, !- - 1.600, !- - 0.00000, !- - 90.0, !- - 1.650, !- - 0.00000, !- - 90.0, !- - 1.700, !- - 0.00000, !- - 90.0, !- - 1.750, !- - 0.00000, !- - 90.0, !- - 1.800, !- - 0.00000, !- - 90.0, !- - 1.850, !- - 0.00000, !- - 90.0, !- - 1.900, !- - 0.00000, !- - 90.0, !- - 1.950, !- - 0.00000, !- - 90.0, !- - 2.000, !- - 0.00000, !- - 90.0, !- - 2.050, !- - 0.00000, !- - 90.0, !- - 2.100, !- - 0.00000, !- - 90.0, !- - 2.150, !- - 0.00000, !- - 90.0, !- - 2.200, !- - 0.00000, !- - 90.0, !- - 2.250, !- - 0.00000, !- - 90.0, !- - 2.300, !- - 0.00000, !- - 90.0, !- - 2.350, !- - 0.00000, !- - 90.0, !- - 2.400, !- - 0.00000, !- - 90.0, !- - 2.450, !- - 0.00000, !- - 90.0, !- - 2.500, !- - 0.00000; !- - - Table:TwoIndependentVariables, + , !- External File Column Number + , !- External File Starting Row Number + 0.00100, !- Output Value 1 + 0.00100, !- Extended Field + 0.00100, !- Extended Field + 0.00100, !- Extended Field + 0.00100, !- Extended Field + 0.00100, !- Extended Field + 0.00900, !- Extended Field + 0.12000, !- Extended Field + 0.49200, !- Extended Field + 0.78200, !- Extended Field + 0.85600, !- Extended Field + 0.85800, !- Extended Field + 0.85800, !- Extended Field + 0.86000, !- Extended Field + 0.86100, !- Extended Field + 0.87100, !- Extended Field + 0.88000, !- Extended Field + 0.88300, !- Extended Field + 0.88700, !- Extended Field + 0.89000, !- Extended Field + 0.89000, !- Extended Field + 0.89100, !- Extended Field + 0.88700, !- Extended Field + 0.89000, !- Extended Field + 0.88300, !- Extended Field + 0.88800, !- Extended Field + 0.88200, !- Extended Field + 0.88100, !- Extended Field + 0.86500, !- Extended Field + 0.85800, !- Extended Field + 0.86500, !- Extended Field + 0.85600, !- Extended Field + 0.84500, !- Extended Field + 0.83700, !- Extended Field + 0.82700, !- Extended Field + 0.82000, !- Extended Field + 0.80700, !- Extended Field + 0.79800, !- Extended Field + 0.79100, !- Extended Field + 0.78100, !- Extended Field + 0.76800, !- Extended Field + 0.76100, !- Extended Field + 0.74400, !- Extended Field + 0.71300, !- Extended Field + 0.70300, !- Extended Field + 0.69400, !- Extended Field + 0.68500, !- Extended Field + 0.67500, !- Extended Field + 0.66700, !- Extended Field + 0.65500, !- Extended Field + 0.64600, !- Extended Field + 0.63800, !- Extended Field + 0.62900, !- Extended Field + 0.62300, !- Extended Field + 0.61400, !- Extended Field + 0.60800, !- Extended Field + 0.60100, !- Extended Field + 0.59700, !- Extended Field + 0.59200, !- Extended Field + 0.58700, !- Extended Field + 0.58200, !- Extended Field + 0.56800, !- Extended Field + 0.56200, !- Extended Field + 0.55600, !- Extended Field + 0.56300, !- Extended Field + 0.55600, !- Extended Field + 0.54700, !- Extended Field + 0.57700, !- Extended Field + 0.59800, !- Extended Field + 0.60800, !- Extended Field + 0.60300, !- Extended Field + 0.61400, !- Extended Field + 0.64800, !- Extended Field + 0.68000, !- Extended Field + 0.69900, !- Extended Field + 0.70600, !- Extended Field + 0.57000, !- Extended Field + 0.58500, !- Extended Field + 0.63700, !- Extended Field + 0.65500, !- Extended Field + 0.63700, !- Extended Field + 0.63400, !- Extended Field + 0.63400, !- Extended Field + 0.58600, !- Extended Field + 0.58800, !- Extended Field + 0.59700, !- Extended Field + 0.57600, !- Extended Field + 0.40400, !- Extended Field + 0.17900, !- Extended Field + 0.21900, !- Extended Field + 0.24000, !- Extended Field + 0.20000, !- Extended Field + 0.21400, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000, !- Extended Field + 0.00000; !- Extended Field + + Table:Lookup, FrontReflectanceData, !- Name - BiQuadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 0.0, !- Minimum Value of X - 90.0, !- Maximum Value of X - 0.30, !- Minimum Value of Y - 2.50, !- Maximum Value of Y - 0.0, !- Minimum Table Output - 1.0, !- Maximum Table Output - Angle, !- Input Unit Type for X - Wavelength, !- Input Unit Type for Y + Spectral and Angular Data, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1.0, !- Normalization Divisor + 0.0, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - 1.0, !- Normalization Reference , !- External File Name - 0.0, !- X Value #1 - 0.300, !- Y Value #1 - 0.04500, !- Output Value #1 - 0.0, !- X Value #2 - 0.310, !- Y Value #2 - 0.04400, !- Output Value #2 - 0.0, !- X Value #3 - 0.320, !- Y Value #3 - 0.04400, !- Output Value #3 - 0.0, !- X Value #4 - 0.330, !- Y Value #4 - 0.04200, !- Output Value #4 - 0.0, !- - 0.340, !- - 0.04100, !- - 0.0, !- - 0.350, !- - 0.04000, !- - 0.0, !- - 0.360, !- - 0.04000, !- - 0.0, !- - 0.370, !- - 0.04000, !- - 0.0, !- - 0.380, !- - 0.05100, !- - 0.0, !- - 0.390, !- - 0.07000, !- - 0.0, !- - 0.400, !- - 0.07500, !- - 0.0, !- - 0.410, !- - 0.07500, !- - 0.0, !- - 0.420, !- - 0.07500, !- - 0.0, !- - 0.430, !- - 0.07500, !- - 0.0, !- - 0.440, !- - 0.07500, !- - 0.0, !- - 0.450, !- - 0.07500, !- - 0.0, !- - 0.460, !- - 0.07600, !- - 0.0, !- - 0.470, !- - 0.07500, !- - 0.0, !- - 0.480, !- - 0.07600, !- - 0.0, !- - 0.490, !- - 0.07500, !- - 0.0, !- - 0.500, !- - 0.07500, !- - 0.0, !- - 0.510, !- - 0.07500, !- - 0.0, !- - 0.520, !- - 0.07500, !- - 0.0, !- - 0.530, !- - 0.07500, !- - 0.0, !- - 0.540, !- - 0.07400, !- - 0.0, !- - 0.550, !- - 0.07400, !- - 0.0, !- - 0.560, !- - 0.07400, !- - 0.0, !- - 0.570, !- - 0.07400, !- - 0.0, !- - 0.580, !- - 0.07100, !- - 0.0, !- - 0.590, !- - 0.07000, !- - 0.0, !- - 0.600, !- - 0.07000, !- - 0.0, !- - 0.610, !- - 0.07000, !- - 0.0, !- - 0.620, !- - 0.07000, !- - 0.0, !- - 0.630, !- - 0.07000, !- - 0.0, !- - 0.640, !- - 0.06900, !- - 0.0, !- - 0.650, !- - 0.06700, !- - 0.0, !- - 0.660, !- - 0.06700, !- - 0.0, !- - 0.670, !- - 0.06500, !- - 0.0, !- - 0.680, !- - 0.06500, !- - 0.0, !- - 0.690, !- - 0.06500, !- - 0.0, !- - 0.700, !- - 0.06400, !- - 0.0, !- - 0.710, !- - 0.06400, !- - 0.0, !- - 0.720, !- - 0.06200, !- - 0.0, !- - 0.730, !- - 0.06400, !- - 0.0, !- - 0.740, !- - 0.06200, !- - 0.0, !- - 0.750, !- - 0.06100, !- - 0.0, !- - 0.760, !- - 0.06100, !- - 0.0, !- - 0.770, !- - 0.06000, !- - 0.0, !- - 0.780, !- - 0.06000, !- - 0.0, !- - 0.790, !- - 0.06000, !- - 0.0, !- - 0.800, !- - 0.05900, !- - 0.0, !- - 0.810, !- - 0.05900, !- - 0.0, !- - 0.820, !- - 0.05700, !- - 0.0, !- - 0.830, !- - 0.05700, !- - 0.0, !- - 0.840, !- - 0.05600, !- - 0.0, !- - 0.850, !- - 0.05600, !- - 0.0, !- - 0.860, !- - 0.05500, !- - 0.0, !- - 0.870, !- - 0.05400, !- - 0.0, !- - 0.880, !- - 0.05400, !- - 0.0, !- - 0.890, !- - 0.05400, !- - 0.0, !- - 0.900, !- - 0.05500, !- - 0.0, !- - 0.950, !- - 0.05100, !- - 0.0, !- - 1.000, !- - 0.05100, !- - 0.0, !- - 1.050, !- - 0.05000, !- - 0.0, !- - 1.100, !- - 0.05100, !- - 0.0, !- - 1.150, !- - 0.05000, !- - 0.0, !- - 1.200, !- - 0.05000, !- - 0.0, !- - 1.250, !- - 0.05100, !- - 0.0, !- - 1.300, !- - 0.05400, !- - 0.0, !- - 1.350, !- - 0.05500, !- - 0.0, !- - 1.400, !- - 0.05200, !- - 0.0, !- - 1.450, !- - 0.05500, !- - 0.0, !- - 1.500, !- - 0.05700, !- - 0.0, !- - 1.550, !- - 0.05900, !- - 0.0, !- - 1.600, !- - 0.06000, !- - 0.0, !- - 1.650, !- - 0.06000, !- - 0.0, !- - 1.700, !- - 0.05100, !- - 0.0, !- - 1.750, !- - 0.05100, !- - 0.0, !- - 1.800, !- - 0.05500, !- - 0.0, !- - 1.850, !- - 0.05700, !- - 0.0, !- - 1.900, !- - 0.05700, !- - 0.0, !- - 1.950, !- - 0.05700, !- - 0.0, !- - 2.000, !- - 0.05700, !- - 0.0, !- - 2.050, !- - 0.05200, !- - 0.0, !- - 2.100, !- - 0.05400, !- - 0.0, !- - 2.150, !- - 0.05400, !- - 0.0, !- - 2.200, !- - 0.05100, !- - 0.0, !- - 2.250, !- - 0.04500, !- - 0.0, !- - 2.300, !- - 0.03700, !- - 0.0, !- - 2.350, !- - 0.03700, !- - 0.0, !- - 2.400, !- - 0.03900, !- - 0.0, !- - 2.450, !- - 0.04000, !- - 0.0, !- - 2.500, !- - 0.03900, !- - 90.0, !- - 0.300, !- - 1.00000, !- - 90.0, !- - 0.310, !- - 1.00000, !- - 90.0, !- - 0.320, !- - 1.00000, !- - 90.0, !- - 0.330, !- - 1.00000, !- - 90.0, !- - 0.340, !- - 1.00000, !- - 90.0, !- - 0.350, !- - 1.00000, !- - 90.0, !- - 0.360, !- - 1.00000, !- - 90.0, !- - 0.370, !- - 1.00000, !- - 90.0, !- - 0.380, !- - 1.00000, !- - 90.0, !- - 0.390, !- - 1.00000, !- - 90.0, !- - 0.400, !- - 1.00000, !- - 90.0, !- - 0.410, !- - 1.00000, !- - 90.0, !- - 0.420, !- - 1.00000, !- - 90.0, !- - 0.430, !- - 1.00000, !- - 90.0, !- - 0.440, !- - 1.00000, !- - 90.0, !- - 0.450, !- - 1.00000, !- - 90.0, !- - 0.460, !- - 1.00000, !- - 90.0, !- - 0.470, !- - 1.00000, !- - 90.0, !- - 0.480, !- - 1.00000, !- - 90.0, !- - 0.490, !- - 1.00000, !- - 90.0, !- - 0.500, !- - 1.00000, !- - 90.0, !- - 0.510, !- - 1.00000, !- - 90.0, !- - 0.520, !- - 1.00000, !- - 90.0, !- - 0.530, !- - 1.00000, !- - 90.0, !- - 0.540, !- - 1.00000, !- - 90.0, !- - 0.550, !- - 1.00000, !- - 90.0, !- - 0.560, !- - 1.00000, !- - 90.0, !- - 0.570, !- - 1.00000, !- - 90.0, !- - 0.580, !- - 1.00000, !- - 90.0, !- - 0.590, !- - 1.00000, !- - 90.0, !- - 0.600, !- - 1.00000, !- - 90.0, !- - 0.610, !- - 1.00000, !- - 90.0, !- - 0.620, !- - 1.00000, !- - 90.0, !- - 0.630, !- - 1.00000, !- - 90.0, !- - 0.640, !- - 1.00000, !- - 90.0, !- - 0.650, !- - 1.00000, !- - 90.0, !- - 0.660, !- - 1.00000, !- - 90.0, !- - 0.670, !- - 1.00000, !- - 90.0, !- - 0.680, !- - 1.00000, !- - 90.0, !- - 0.690, !- - 1.00000, !- - 90.0, !- - 0.700, !- - 1.00000, !- - 90.0, !- - 0.710, !- - 1.00000, !- - 90.0, !- - 0.720, !- - 1.00000, !- - 90.0, !- - 0.730, !- - 1.00000, !- - 90.0, !- - 0.740, !- - 1.00000, !- - 90.0, !- - 0.750, !- - 1.00000, !- - 90.0, !- - 0.760, !- - 1.00000, !- - 90.0, !- - 0.770, !- - 1.00000, !- - 90.0, !- - 0.780, !- - 1.00000, !- - 90.0, !- - 0.790, !- - 1.00000, !- - 90.0, !- - 0.800, !- - 1.00000, !- - 90.0, !- - 0.810, !- - 1.00000, !- - 90.0, !- - 0.820, !- - 1.00000, !- - 90.0, !- - 0.830, !- - 1.00000, !- - 90.0, !- - 0.840, !- - 1.00000, !- - 90.0, !- - 0.850, !- - 1.00000, !- - 90.0, !- - 0.860, !- - 1.00000, !- - 90.0, !- - 0.870, !- - 1.00000, !- - 90.0, !- - 0.880, !- - 1.00000, !- - 90.0, !- - 0.890, !- - 1.00000, !- - 90.0, !- - 0.900, !- - 1.00000, !- - 90.0, !- - 0.950, !- - 1.00000, !- - 90.0, !- - 1.000, !- - 1.00000, !- - 90.0, !- - 1.050, !- - 1.00000, !- - 90.0, !- - 1.100, !- - 1.00000, !- - 90.0, !- - 1.150, !- - 1.00000, !- - 90.0, !- - 1.200, !- - 1.00000, !- - 90.0, !- - 1.250, !- - 1.00000, !- - 90.0, !- - 1.300, !- - 1.00000, !- - 90.0, !- - 1.350, !- - 1.00000, !- - 90.0, !- - 1.400, !- - 1.00000, !- - 90.0, !- - 1.450, !- - 1.00000, !- - 90.0, !- - 1.500, !- - 1.00000, !- - 90.0, !- - 1.550, !- - 1.00000, !- - 90.0, !- - 1.600, !- - 1.00000, !- - 90.0, !- - 1.650, !- - 1.00000, !- - 90.0, !- - 1.700, !- - 1.00000, !- - 90.0, !- - 1.750, !- - 1.00000, !- - 90.0, !- - 1.800, !- - 1.00000, !- - 90.0, !- - 1.850, !- - 1.00000, !- - 90.0, !- - 1.900, !- - 1.00000, !- - 90.0, !- - 1.950, !- - 1.00000, !- - 90.0, !- - 2.000, !- - 1.00000, !- - 90.0, !- - 2.050, !- - 1.00000, !- - 90.0, !- - 2.100, !- - 1.00000, !- - 90.0, !- - 2.150, !- - 1.00000, !- - 90.0, !- - 2.200, !- - 1.00000, !- - 90.0, !- - 2.250, !- - 1.00000, !- - 90.0, !- - 2.300, !- - 1.00000, !- - 90.0, !- - 2.350, !- - 1.00000, !- - 90.0, !- - 2.400, !- - 1.00000, !- - 90.0, !- - 2.450, !- - 1.00000, !- - 90.0, !- - 2.500, !- - 1.00000; !- - - Table:TwoIndependentVariables, + , !- External File Column Number + , !- External File Starting Row Number + 0.04500, !- Output Value 1 + 0.04400, !- Extended Field + 0.04400, !- Extended Field + 0.04200, !- Extended Field + 0.04100, !- Extended Field + 0.04000, !- Extended Field + 0.04000, !- Extended Field + 0.04000, !- Extended Field + 0.05100, !- Extended Field + 0.07000, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07600, !- Extended Field + 0.07500, !- Extended Field + 0.07600, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07400, !- Extended Field + 0.07400, !- Extended Field + 0.07400, !- Extended Field + 0.07400, !- Extended Field + 0.07100, !- Extended Field + 0.07000, !- Extended Field + 0.07000, !- Extended Field + 0.07000, !- Extended Field + 0.07000, !- Extended Field + 0.07000, !- Extended Field + 0.06900, !- Extended Field + 0.06700, !- Extended Field + 0.06700, !- Extended Field + 0.06500, !- Extended Field + 0.06500, !- Extended Field + 0.06500, !- Extended Field + 0.06400, !- Extended Field + 0.06400, !- Extended Field + 0.06200, !- Extended Field + 0.06400, !- Extended Field + 0.06200, !- Extended Field + 0.06100, !- Extended Field + 0.06100, !- Extended Field + 0.06000, !- Extended Field + 0.06000, !- Extended Field + 0.06000, !- Extended Field + 0.05900, !- Extended Field + 0.05900, !- Extended Field + 0.05700, !- Extended Field + 0.05700, !- Extended Field + 0.05600, !- Extended Field + 0.05600, !- Extended Field + 0.05500, !- Extended Field + 0.05400, !- Extended Field + 0.05400, !- Extended Field + 0.05400, !- Extended Field + 0.05500, !- Extended Field + 0.05100, !- Extended Field + 0.05100, !- Extended Field + 0.05000, !- Extended Field + 0.05100, !- Extended Field + 0.05000, !- Extended Field + 0.05000, !- Extended Field + 0.05100, !- Extended Field + 0.05400, !- Extended Field + 0.05500, !- Extended Field + 0.05200, !- Extended Field + 0.05500, !- Extended Field + 0.05700, !- Extended Field + 0.05900, !- Extended Field + 0.06000, !- Extended Field + 0.06000, !- Extended Field + 0.05100, !- Extended Field + 0.05100, !- Extended Field + 0.05500, !- Extended Field + 0.05700, !- Extended Field + 0.05700, !- Extended Field + 0.05700, !- Extended Field + 0.05700, !- Extended Field + 0.05200, !- Extended Field + 0.05400, !- Extended Field + 0.05400, !- Extended Field + 0.05100, !- Extended Field + 0.04500, !- Extended Field + 0.03700, !- Extended Field + 0.03700, !- Extended Field + 0.03900, !- Extended Field + 0.04000, !- Extended Field + 0.03900, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000; !- Extended Field + + Table:Lookup, BackRefelectanceData, !- Name - BiQuadratic, !- Curve Type - LinearInterpolationOfTable, !- Interpolation Method - 0.0, !- Minimum Value of X - 90.0, !- Maximum Value of X - 0.30, !- Minimum Value of Y - 2.50, !- Maximum Value of Y - 0.0, !- Minimum Table Output - 1.0, !- Maximum Table Output - Angle, !- Input Unit Type for X - Wavelength, !- Input Unit Type for Y + Spectral and Angular Data, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 1.0, !- Normalization Divisor + 0.0, !- Minimum Output + 1.0, !- Maximum Output Dimensionless, !- Output Unit Type - 1.0, !- Normalization Reference , !- External File Name - 0.0, !- X Value #1 - 0.300, !- Y Value #1 - 0.04500, !- Output Value #1 - 0.0, !- X Value #2 - 0.310, !- Y Value #2 - 0.04400, !- Output Value #2 - 0.0, !- X Value #3 - 0.320, !- Y Value #3 - 0.04400, !- Output Value #3 - 0.0, !- X Value #4 - 0.330, !- Y Value #4 - 0.04200, !- Output Value #4 - 0.0, !- - 0.340, !- - 0.04100, !- - 0.0, !- - 0.350, !- - 0.04000, !- - 0.0, !- - 0.360, !- - 0.04000, !- - 0.0, !- - 0.370, !- - 0.04000, !- - 0.0, !- - 0.380, !- - 0.05100, !- - 0.0, !- - 0.390, !- - 0.07000, !- - 0.0, !- - 0.400, !- - 0.07500, !- - 0.0, !- - 0.410, !- - 0.07500, !- - 0.0, !- - 0.420, !- - 0.07500, !- - 0.0, !- - 0.430, !- - 0.07500, !- - 0.0, !- - 0.440, !- - 0.07500, !- - 0.0, !- - 0.450, !- - 0.07500, !- - 0.0, !- - 0.460, !- - 0.07600, !- - 0.0, !- - 0.470, !- - 0.07500, !- - 0.0, !- - 0.480, !- - 0.07600, !- - 0.0, !- - 0.490, !- - 0.07500, !- - 0.0, !- - 0.500, !- - 0.07500, !- - 0.0, !- - 0.510, !- - 0.07500, !- - 0.0, !- - 0.520, !- - 0.07500, !- - 0.0, !- - 0.530, !- - 0.07500, !- - 0.0, !- - 0.540, !- - 0.07400, !- - 0.0, !- - 0.550, !- - 0.07400, !- - 0.0, !- - 0.560, !- - 0.07400, !- - 0.0, !- - 0.570, !- - 0.07400, !- - 0.0, !- - 0.580, !- - 0.07100, !- - 0.0, !- - 0.590, !- - 0.07000, !- - 0.0, !- - 0.600, !- - 0.07000, !- - 0.0, !- - 0.610, !- - 0.07000, !- - 0.0, !- - 0.620, !- - 0.07000, !- - 0.0, !- - 0.630, !- - 0.07000, !- - 0.0, !- - 0.640, !- - 0.06900, !- - 0.0, !- - 0.650, !- - 0.06700, !- - 0.0, !- - 0.660, !- - 0.06700, !- - 0.0, !- - 0.670, !- - 0.06500, !- - 0.0, !- - 0.680, !- - 0.06500, !- - 0.0, !- - 0.690, !- - 0.06500, !- - 0.0, !- - 0.700, !- - 0.06400, !- - 0.0, !- - 0.710, !- - 0.06400, !- - 0.0, !- - 0.720, !- - 0.06200, !- - 0.0, !- - 0.730, !- - 0.06400, !- - 0.0, !- - 0.740, !- - 0.06200, !- - 0.0, !- - 0.750, !- - 0.06100, !- - 0.0, !- - 0.760, !- - 0.06100, !- - 0.0, !- - 0.770, !- - 0.06000, !- - 0.0, !- - 0.780, !- - 0.06000, !- - 0.0, !- - 0.790, !- - 0.06000, !- - 0.0, !- - 0.800, !- - 0.05900, !- - 0.0, !- - 0.810, !- - 0.05900, !- - 0.0, !- - 0.820, !- - 0.05700, !- - 0.0, !- - 0.830, !- - 0.05700, !- - 0.0, !- - 0.840, !- - 0.05600, !- - 0.0, !- - 0.850, !- - 0.05600, !- - 0.0, !- - 0.860, !- - 0.05500, !- - 0.0, !- - 0.870, !- - 0.05400, !- - 0.0, !- - 0.880, !- - 0.05400, !- - 0.0, !- - 0.890, !- - 0.05400, !- - 0.0, !- - 0.900, !- - 0.05500, !- - 0.0, !- - 0.950, !- - 0.05100, !- - 0.0, !- - 1.000, !- - 0.05100, !- - 0.0, !- - 1.050, !- - 0.05000, !- - 0.0, !- - 1.100, !- - 0.05100, !- - 0.0, !- - 1.150, !- - 0.05000, !- - 0.0, !- - 1.200, !- - 0.05000, !- - 0.0, !- - 1.250, !- - 0.05100, !- - 0.0, !- - 1.300, !- - 0.05400, !- - 0.0, !- - 1.350, !- - 0.05500, !- - 0.0, !- - 1.400, !- - 0.05200, !- - 0.0, !- - 1.450, !- - 0.05500, !- - 0.0, !- - 1.500, !- - 0.05700, !- - 0.0, !- - 1.550, !- - 0.05900, !- - 0.0, !- - 1.600, !- - 0.06000, !- - 0.0, !- - 1.650, !- - 0.06000, !- - 0.0, !- - 1.700, !- - 0.05100, !- - 0.0, !- - 1.750, !- - 0.05100, !- - 0.0, !- - 1.800, !- - 0.05500, !- - 0.0, !- - 1.850, !- - 0.05700, !- - 0.0, !- - 1.900, !- - 0.05700, !- - 0.0, !- - 1.950, !- - 0.05700, !- - 0.0, !- - 2.000, !- - 0.05700, !- - 0.0, !- - 2.050, !- - 0.05200, !- - 0.0, !- - 2.100, !- - 0.05400, !- - 0.0, !- - 2.150, !- - 0.05400, !- - 0.0, !- - 2.200, !- - 0.05100, !- - 0.0, !- - 2.250, !- - 0.04500, !- - 0.0, !- - 2.300, !- - 0.03700, !- - 0.0, !- - 2.350, !- - 0.03700, !- - 0.0, !- - 2.400, !- - 0.03900, !- - 0.0, !- - 2.450, !- - 0.04000, !- - 0.0, !- - 2.500, !- - 0.03900, !- - 90.0, !- - 0.300, !- - 1.00000, !- - 90.0, !- - 0.310, !- - 1.00000, !- - 90.0, !- - 0.320, !- - 1.00000, !- - 90.0, !- - 0.330, !- - 1.00000, !- - 90.0, !- - 0.340, !- - 1.00000, !- - 90.0, !- - 0.350, !- - 1.00000, !- - 90.0, !- - 0.360, !- - 1.00000, !- - 90.0, !- - 0.370, !- - 1.00000, !- - 90.0, !- - 0.380, !- - 1.00000, !- - 90.0, !- - 0.390, !- - 1.00000, !- - 90.0, !- - 0.400, !- - 1.00000, !- - 90.0, !- - 0.410, !- - 1.00000, !- - 90.0, !- - 0.420, !- - 1.00000, !- - 90.0, !- - 0.430, !- - 1.00000, !- - 90.0, !- - 0.440, !- - 1.00000, !- - 90.0, !- - 0.450, !- - 1.00000, !- - 90.0, !- - 0.460, !- - 1.00000, !- - 90.0, !- - 0.470, !- - 1.00000, !- - 90.0, !- - 0.480, !- - 1.00000, !- - 90.0, !- - 0.490, !- - 1.00000, !- - 90.0, !- - 0.500, !- - 1.00000, !- - 90.0, !- - 0.510, !- - 1.00000, !- - 90.0, !- - 0.520, !- - 1.00000, !- - 90.0, !- - 0.530, !- - 1.00000, !- - 90.0, !- - 0.540, !- - 1.00000, !- - 90.0, !- - 0.550, !- - 1.00000, !- - 90.0, !- - 0.560, !- - 1.00000, !- - 90.0, !- - 0.570, !- - 1.00000, !- - 90.0, !- - 0.580, !- - 1.00000, !- - 90.0, !- - 0.590, !- - 1.00000, !- - 90.0, !- - 0.600, !- - 1.00000, !- - 90.0, !- - 0.610, !- - 1.00000, !- - 90.0, !- - 0.620, !- - 1.00000, !- - 90.0, !- - 0.630, !- - 1.00000, !- - 90.0, !- - 0.640, !- - 1.00000, !- - 90.0, !- - 0.650, !- - 1.00000, !- - 90.0, !- - 0.660, !- - 1.00000, !- - 90.0, !- - 0.670, !- - 1.00000, !- - 90.0, !- - 0.680, !- - 1.00000, !- - 90.0, !- - 0.690, !- - 1.00000, !- - 90.0, !- - 0.700, !- - 1.00000, !- - 90.0, !- - 0.710, !- - 1.00000, !- - 90.0, !- - 0.720, !- - 1.00000, !- - 90.0, !- - 0.730, !- - 1.00000, !- - 90.0, !- - 0.740, !- - 1.00000, !- - 90.0, !- - 0.750, !- - 1.00000, !- - 90.0, !- - 0.760, !- - 1.00000, !- - 90.0, !- - 0.770, !- - 1.00000, !- - 90.0, !- - 0.780, !- - 1.00000, !- - 90.0, !- - 0.790, !- - 1.00000, !- - 90.0, !- - 0.800, !- - 1.00000, !- - 90.0, !- - 0.810, !- - 1.00000, !- - 90.0, !- - 0.820, !- - 1.00000, !- - 90.0, !- - 0.830, !- - 1.00000, !- - 90.0, !- - 0.840, !- - 1.00000, !- - 90.0, !- - 0.850, !- - 1.00000, !- - 90.0, !- - 0.860, !- - 1.00000, !- - 90.0, !- - 0.870, !- - 1.00000, !- - 90.0, !- - 0.880, !- - 1.00000, !- - 90.0, !- - 0.890, !- - 1.00000, !- - 90.0, !- - 0.900, !- - 1.00000, !- - 90.0, !- - 0.950, !- - 1.00000, !- - 90.0, !- - 1.000, !- - 1.00000, !- - 90.0, !- - 1.050, !- - 1.00000, !- - 90.0, !- - 1.100, !- - 1.00000, !- - 90.0, !- - 1.150, !- - 1.00000, !- - 90.0, !- - 1.200, !- - 1.00000, !- - 90.0, !- - 1.250, !- - 1.00000, !- - 90.0, !- - 1.300, !- - 1.00000, !- - 90.0, !- - 1.350, !- - 1.00000, !- - 90.0, !- - 1.400, !- - 1.00000, !- - 90.0, !- - 1.450, !- - 1.00000, !- - 90.0, !- - 1.500, !- - 1.00000, !- - 90.0, !- - 1.550, !- - 1.00000, !- - 90.0, !- - 1.600, !- - 1.00000, !- - 90.0, !- - 1.650, !- - 1.00000, !- - 90.0, !- - 1.700, !- - 1.00000, !- - 90.0, !- - 1.750, !- - 1.00000, !- - 90.0, !- - 1.800, !- - 1.00000, !- - 90.0, !- - 1.850, !- - 1.00000, !- - 90.0, !- - 1.900, !- - 1.00000, !- - 90.0, !- - 1.950, !- - 1.00000, !- - 90.0, !- - 2.000, !- - 1.00000, !- - 90.0, !- - 2.050, !- - 1.00000, !- - 90.0, !- - 2.100, !- - 1.00000, !- - 90.0, !- - 2.150, !- - 1.00000, !- - 90.0, !- - 2.200, !- - 1.00000, !- - 90.0, !- - 2.250, !- - 1.00000, !- - 90.0, !- - 2.300, !- - 1.00000, !- - 90.0, !- - 2.350, !- - 1.00000, !- - 90.0, !- - 2.400, !- - 1.00000, !- - 90.0, !- - 2.450, !- - 1.00000, !- - 90.0, !- - 2.500, !- - 1.00000; !- + , !- External File Column Number + , !- External File Starting Row Number + 0.04500, !- Output Value 1 + 0.04400, !- Extended Field + 0.04400, !- Extended Field + 0.04200, !- Extended Field + 0.04100, !- Extended Field + 0.04000, !- Extended Field + 0.04000, !- Extended Field + 0.04000, !- Extended Field + 0.05100, !- Extended Field + 0.07000, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07600, !- Extended Field + 0.07500, !- Extended Field + 0.07600, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07500, !- Extended Field + 0.07400, !- Extended Field + 0.07400, !- Extended Field + 0.07400, !- Extended Field + 0.07400, !- Extended Field + 0.07100, !- Extended Field + 0.07000, !- Extended Field + 0.07000, !- Extended Field + 0.07000, !- Extended Field + 0.07000, !- Extended Field + 0.07000, !- Extended Field + 0.06900, !- Extended Field + 0.06700, !- Extended Field + 0.06700, !- Extended Field + 0.06500, !- Extended Field + 0.06500, !- Extended Field + 0.06500, !- Extended Field + 0.06400, !- Extended Field + 0.06400, !- Extended Field + 0.06200, !- Extended Field + 0.06400, !- Extended Field + 0.06200, !- Extended Field + 0.06100, !- Extended Field + 0.06100, !- Extended Field + 0.06000, !- Extended Field + 0.06000, !- Extended Field + 0.06000, !- Extended Field + 0.05900, !- Extended Field + 0.05900, !- Extended Field + 0.05700, !- Extended Field + 0.05700, !- Extended Field + 0.05600, !- Extended Field + 0.05600, !- Extended Field + 0.05500, !- Extended Field + 0.05400, !- Extended Field + 0.05400, !- Extended Field + 0.05400, !- Extended Field + 0.05500, !- Extended Field + 0.05100, !- Extended Field + 0.05100, !- Extended Field + 0.05000, !- Extended Field + 0.05100, !- Extended Field + 0.05000, !- Extended Field + 0.05000, !- Extended Field + 0.05100, !- Extended Field + 0.05400, !- Extended Field + 0.05500, !- Extended Field + 0.05200, !- Extended Field + 0.05500, !- Extended Field + 0.05700, !- Extended Field + 0.05900, !- Extended Field + 0.06000, !- Extended Field + 0.06000, !- Extended Field + 0.05100, !- Extended Field + 0.05100, !- Extended Field + 0.05500, !- Extended Field + 0.05700, !- Extended Field + 0.05700, !- Extended Field + 0.05700, !- Extended Field + 0.05700, !- Extended Field + 0.05200, !- Extended Field + 0.05400, !- Extended Field + 0.05400, !- Extended Field + 0.05100, !- Extended Field + 0.04500, !- Extended Field + 0.03700, !- Extended Field + 0.03700, !- Extended Field + 0.03900, !- Extended Field + 0.04000, !- Extended Field + 0.03900, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000, !- Extended Field + 1.00000; !- Extended Field WindowMaterial:Glazing, ELECTRO GLASS DARK STATE,!- Name diff --git a/testfiles/UnitaryHybridAC_DedicatedOutsideAir.idf b/testfiles/UnitaryHybridAC_DedicatedOutsideAir.idf index 1ae28e2336c..a2f9308079a 100644 --- a/testfiles/UnitaryHybridAC_DedicatedOutsideAir.idf +++ b/testfiles/UnitaryHybridAC_DedicatedOutsideAir.idf @@ -1258,48679 +1258,38177 @@ OutdoorAir:Node, Outside Air Inlet Node; !- Name -!- =========== ALL OBJECTS IN CLASS: TABLE:MULTIVARIABLELOOKUP =========== +!- =========== ALL OBJECTS IN CLASS: TABLE:* =========== - Table:MultiVariableLookup, - Mode0_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + + Table:IndependentVariable, + Mode0_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.000, !- Value 1 + 0.000, !- Value 2 + 100.000; !- Extended Field + + Table:IndependentVariable, + Mode0_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode0_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.000, !- Value 1 + 0.000, !- Value 2 + 100.000; !- Extended Field + + Table:IndependentVariable, + Mode0_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode0_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.000, !- Value 1 + 0.000, !- Value 2 + 100.000; !- Extended Field + + Table:IndependentVariable, + Mode0_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00, !- Value 1 + 0.00, !- Value 2 + 100.00; !- Extended Field + + Table:IndependentVariableList, + Mode0_IndependentVariableList, !- Name + Mode0_Toa, !- Independent Variable 1 Name + Mode0_Woa, !- Independent Variable 2 Name + Mode0_Tra, !- Extended Field + Mode0_Wra, !- Extended Field + Mode0_Ma, !- Extended Field + Mode0_OAF; !- Extended Field + + Table:Lookup, + Mode0_Power_lookup, !- Name + Mode0_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 3, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400; !- - - Table:MultiVariableLookup, - Mode1_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.24400, !- Output Value 1 + 0.24400, !- Output Value 2 + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400; !- Extended Field + + + Table:IndependentVariable, + Mode1_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 18.330, !- Value 1 + 25.275, !- Value 2 + 32.220; !- Extended Field + + Table:IndependentVariable, + Mode1_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00520, !- Value 1 + 0.00597, !- Value 2 + 0.00885, !- Extended Field + 0.00919, !- Extended Field + 0.01250; !- Extended Field + + Table:IndependentVariable, + Mode1_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.000, !- Value 1 + 0.000, !- Value 2 + 100.000; !- Extended Field + + Table:IndependentVariable, + Mode1_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode1_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.158, !- Value 1 + 2.534, !- Value 2 + 2.910; !- Extended Field + + Table:IndependentVariable, + Mode1_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00, !- Value 1 + 0.00, !- Value 2 + 100.00; !- Extended Field + + Table:IndependentVariableList, + Mode1_IndependentVariableList, !- Name + Mode1_Toa, !- Independent Variable 1 Name + Mode1_Woa, !- Independent Variable 2 Name + Mode1_Tra, !- Extended Field + Mode1_Wra, !- Extended Field + Mode1_Ma, !- Extended Field + Mode1_OAF; !- Extended Field + + Table:Lookup, + Mode1_ESP_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode1_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 153.95350, !- Output Value 1 + 153.95350, !- Output Value 2 + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + Table:Lookup, + Mode1_TSA_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285; !- - - Table:MultiVariableLookup, - Mode1_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 15.88148, !- Output Value 1 + 15.88148, !- Output Value 2 + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285; !- Extended Field + + + Table:Lookup, + Mode1_wSA_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229; !- - - Table:MultiVariableLookup, - Mode1_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.00526, !- Output Value 1 + 0.00526, !- Output Value 2 + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229; !- Extended Field + + + Table:Lookup, + Mode1_Power_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022; !- - - Table:MultiVariableLookup, - Mode1_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 4.69020, !- Output Value 1 + 4.69020, !- Output Value 2 + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022; !- Extended Field + + + Table:Lookup, + Mode1_FanPower_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode1_water_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:Lookup, + Mode1_water_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836; !- - - Table:MultiVariableLookup, - Mode2_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 20.90173, !- Output Value 1 + 20.90173, !- Output Value 2 + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836; !- Extended Field + + + Table:IndependentVariable, + Mode2_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 23.33300, !- Value 1 + 26.94450, !- Value 2 + 30.55600; !- Extended Field + + Table:IndependentVariable, + Mode2_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00787, !- Value 1 + 0.00818, !- Value 2 + 0.00893, !- Extended Field + 0.00922, !- Extended Field + 0.01057; !- Extended Field + + Table:IndependentVariable, + Mode2_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode2_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode2_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.24150, !- Value 1 + 2.47525, !- Value 2 + 2.70900; !- Extended Field + + Table:IndependentVariable, + Mode2_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariableList, + Mode2_IndependentVariableList, !- Name + Mode2_Toa, !- Independent Variable 1 Name + Mode2_Woa, !- Independent Variable 2 Name + Mode2_Tra, !- Extended Field + Mode2_Wra, !- Extended Field + Mode2_Ma, !- Extended Field + Mode2_OAF; !- Extended Field + + Table:Lookup, + Mode2_ESP_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode2_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 191.66030, !- Output Value 1 + 191.66030, !- Output Value 2 + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + + Table:Lookup, + Mode2_TSA_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775; !- - - Table:MultiVariableLookup, - Mode2_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 9.87769, !- Output Value 1 + 9.87769, !- Output Value 2 + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775; !- Extended Field + + + Table:Lookup, + Mode2_wSA_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026; !- - - Table:MultiVariableLookup, - Mode2_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.00622, !- Output Value 1 + 0.00622, !- Output Value 2 + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026; !- Extended Field + + Table:Lookup, + Mode2_Power_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156; !- - - Table:MultiVariableLookup, - Mode2_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 12.15843, !- Output Value 1 + 12.15843, !- Output Value 2 + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156; !- Extended Field + + + Table:Lookup, + Mode2_FanPower_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode2_water_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:Lookup, + Mode2_water_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 5, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575; !- - - Table:MultiVariableLookup, - Mode3_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 39.82115, !- Output Value 1 + 39.82115, !- Output Value 2 + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575; !- Extended Field + + + Table:IndependentVariable, + Mode3_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 26.10000, !- Value 1 + 30.50000, !- Value 2 + 34.90000; !- Extended Field + + Table:IndependentVariable, + Mode3_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00619, !- Value 1 + 0.00921, !- Value 2 + 0.01038, !- Extended Field + 0.01222; !- Extended Field + + Table:IndependentVariable, + Mode3_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode3_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode3_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.14570, !- Value 1 + 2.41788, !- Value 2 + 2.69005; !- Extended Field + + Table:IndependentVariable, + Mode3_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariableList, + Mode3_IndependentVariableList, !- Name + Mode3_Toa, !- Independent Variable 1 Name + Mode3_Woa, !- Independent Variable 2 Name + Mode3_Tra, !- Extended Field + Mode3_Wra, !- Extended Field + Mode3_Ma, !- Extended Field + Mode3_OAF; !- Extended Field + + Table:Lookup, + Mode3_ESP_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 4, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode3_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 178.11070, !- Output Value 1 + 178.11070, !- Output Value 2 + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + + Table:Lookup, + Mode3_TSA_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 4, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812; !- - - Table:MultiVariableLookup, - Mode3_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 9.70676, !- Output Value 1 + 9.70676, !- Output Value 2 + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812; !- Extended Field + + Table:Lookup, + Mode3_wSA_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 4, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025; !- - - Table:MultiVariableLookup, - Mode3_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.00568, !- Output Value 1 + 0.00568, !- Output Value 2 + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025; !- Extended Field + + Table:Lookup, + Mode3_Power_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 4, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908; !- - - Table:MultiVariableLookup, - Mode3_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 10.96099, !- Output Value 1 + 10.96099, !- Output Value 2 + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908; !- Extended Field + + + Table:Lookup, + Mode3_FanPower_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 4, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode3_water_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:Lookup, + Mode3_water_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 4, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308; !- - - Table:MultiVariableLookup, - Mode4_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 50.28488, !- Output Value 1 + 50.28488, !- Output Value 2 + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308; !- Extended Field + + + Table:IndependentVariable, + Mode4_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 14.08800, !- Value 1 + 18.87900, !- Value 2 + 23.67000; !- Extended Field + + Table:IndependentVariable, + Mode4_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00482, !- Value 1 + 0.00516, !- Value 2 + 0.00857, !- Extended Field + 0.00901, !- Extended Field + 0.01229, !- Extended Field + 0.01232; !- Extended Field + + Table:IndependentVariable, + Mode4_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode4_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode4_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.12400, !- Value 1 + 2.50590, !- Value 2 + 2.88780; !- Extended Field + + Table:IndependentVariable, + Mode4_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariableList, + Mode4_IndependentVariableList, !- Name + Mode4_Toa, !- Independent Variable 1 Name + Mode4_Woa, !- Independent Variable 2 Name + Mode4_Tra, !- Extended Field + Mode4_Wra, !- Extended Field + Mode4_Ma, !- Extended Field + Mode4_OAF; !- Extended Field + + Table:Lookup, + Mode4_ESP_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode4_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 151.44241, !- Output Value 1 + 151.44241, !- Output Value 2 + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + + Table:Lookup, + Mode4_TSA_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079; !- - - Table:MultiVariableLookup, - Mode4_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 15.49920, !- Output Value 1 + 15.49920, !- Output Value 2 + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079; !- Extended Field + + + Table:Lookup, + Mode4_wSA_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232; !- - - Table:MultiVariableLookup, - Mode4_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.00482, !- Output Value 1 + 0.00482, !- Output Value 2 + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232; !- Extended Field + + + Table:Lookup, + Mode4_Power_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533; !- - - Table:MultiVariableLookup, - Mode4_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 3.33755, !- Output Value 1 + 3.33755, !- Output Value 2 + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533; !- Extended Field + + + Table:Lookup, + Mode4_FanPower_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode5_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:IndependentVariable, + Mode5_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 12.11110, !- Value 1 + 17.33055, !- Value 2 + 22.55000; !- Extended Field + + Table:IndependentVariable, + Mode5_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00757, !- Value 1 + 0.00835, !- Value 2 + 0.00851, !- Extended Field + 0.00978, !- Extended Field + 0.01176, !- Extended Field + 0.01200; !- Extended Field + + Table:IndependentVariable, + Mode5_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode5_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode5_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.19992, !- Value 1 + 2.60876, !- Value 2 + 3.01760; !- Extended Field + + Table:IndependentVariable, + Mode5_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariableList, + Mode5_IndependentVariableList, !- Name + Mode5_Toa, !- Independent Variable 1 Name + Mode5_Woa, !- Independent Variable 2 Name + Mode5_Tra, !- Extended Field + Mode5_Wra, !- Extended Field + Mode5_Ma, !- Extended Field + Mode5_OAF; !- Extended Field + + Table:Lookup, + Mode5_ESP_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode5_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 148.78678, !- Output Value 1 + 148.78678, !- Output Value 2 + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + + Table:Lookup, + Mode5_TSA_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497; !- - - Table:MultiVariableLookup, - Mode5_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 32.25793, !- Output Value 1 + 32.25793, !- Output Value 2 + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497; !- Extended Field + + + Table:Lookup, + Mode5_wSA_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203; !- - - Table:MultiVariableLookup, - Mode5_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 0.00775, !- Output Value 1 + 0.00775, !- Output Value 2 + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203; !- Extended Field + + + Table:Lookup, + Mode5_Power_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381; !- - - Table:MultiVariableLookup, - Mode5_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 3.49762, !- Output Value 1 + 3.49762, !- Output Value 2 + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381; !- Extended Field + + + Table:Lookup, + Mode5_FanPower_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode5_2ndFuel_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Value of X6 - 1, !- Maximum Value of X6 - -9999, !- Minimum Table Output - 9999, !- Maximum Table Output - Dimensionless, !- Input Unit Type for X1 - Dimensionless, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 - Dimensionless, !- Input Unit Type for X6 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:Lookup, + Mode5_2ndFuel_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - 6, !- Number of Independent Variables - 3, !- Number of Values for Independent Variable X1 - 6, !- Field 1 Determined by the Number of Independent Variables - 3, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 52.40363, !- Output Value 1 + 52.40363, !- Output Value 2 + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107; !- Extended Field !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== diff --git a/testfiles/ZoneCoupledKivaBasement.idf b/testfiles/ZoneCoupledKivaBasement.idf index f83cb8d2b01..6f37de1d266 100644 --- a/testfiles/ZoneCoupledKivaBasement.idf +++ b/testfiles/ZoneCoupledKivaBasement.idf @@ -538,6 +538,7 @@ Foundation:Kiva, Basement Foundation, !- Name + , !- Initial Indoor Air Temperature Basement Insulation, !- Interior Horizontal Insulation Material Name , !- Interior Horizontal Insulation Depth {m} 1, !- Interior Horizontal Insulation Width {m} diff --git a/testfiles/ZoneCoupledKivaBasementAdaptiveConvection.idf b/testfiles/ZoneCoupledKivaBasementAdaptiveConvection.idf index 5a22227d996..674677cfa48 100644 --- a/testfiles/ZoneCoupledKivaBasementAdaptiveConvection.idf +++ b/testfiles/ZoneCoupledKivaBasementAdaptiveConvection.idf @@ -650,6 +650,7 @@ Foundation:Kiva, Basement Foundation, !- Name + , !- Initial Indoor Air Temperature Basement Insulation, !- Interior Horizontal Insulation Material Name , !- Interior Horizontal Insulation Depth {m} 1, !- Interior Horizontal Insulation Width {m} diff --git a/testfiles/ZoneCoupledKivaRefBldgMediumOffice.idf b/testfiles/ZoneCoupledKivaRefBldgMediumOffice.idf index 979010c9f82..84433e644c8 100644 --- a/testfiles/ZoneCoupledKivaRefBldgMediumOffice.idf +++ b/testfiles/ZoneCoupledKivaRefBldgMediumOffice.idf @@ -366,6 +366,7 @@ Foundation:Kiva, Slab Foundation, !- Name + , !- Initial Indoor Air Temperature , !- Interior Horizontal Insulation Material Name , !- Interior Horizontal Insulation Depth {m} , !- Interior Horizontal Insulation Width {m} diff --git a/testfiles/ZoneCoupledKivaRefBldgMediumOfficeNoClg.idf b/testfiles/ZoneCoupledKivaRefBldgMediumOfficeNoClg.idf new file mode 100644 index 00000000000..f3573801e18 --- /dev/null +++ b/testfiles/ZoneCoupledKivaRefBldgMediumOfficeNoClg.idf @@ -0,0 +1,7971 @@ +! ZoneCoupledKivaRefBldgMediumOffice.idf +! +! This example file is based on Version 1.3_5.0 and was transitioned to Version 6.0 using the transition utility +! +! DOE Commercial Reference Building +! Medium office, new construction 90.1-2004 +! Version 1.3_5.0 +! EnergyPlus Version 6.0 +! ASHRAE Standards 90.1-2004 and 62-1999 +! +! Description: Three story, 15 zone office building. +! Form: Area = 4,982 m2 (53,628 ft2); Number of Stories = 3; Shape = rectangle, Aspect ratio = 1.5 +! Envelope: Envelope thermal properties vary with climate according to ASHRAE Standard 90.1-2004. +! Opaque constructions: steel frame walls; built-up flat roof (insulation above deck); slab-on-grade floor +! Windows: window-to-wall ratio = 33.0%, equal distribution of windows +! Infiltration in perimeter zones only +! = 0.4 cfm/ft2 above grade wall area at 0.3 in wc (75 Pa) adjusted to 0.016 in wc (4 Pa). +! 25% of full value when ventilation system on. +! +! HVAC: Packaged MZVAV with plenum zones, gas furnace, electric reheat +! Economizer per 90.1-2004 +! +! Int. gains: lights = 10.76 W/m2 (1.0 W/ft2) (building area method); +! elec. plug loads = 10.76 W/m2 (1.0 W/ft2) +! gas plug load = 0 W/m2 (0 W/ft2) +! people = 268 total; 5.38/100 m2 (5.0/1000 ft2) +! elevators = 2 @ 20 HP each, 91% motor efficiency +! +! Detached Shading: None +! Daylight: None +! Natural Ventilation: None +! Zonal Equipment: None +! Air Primary Loops: VAV with electric reheat +! Plant Loops: SHWSys1 +! System Equipment Autosize: Yes +! Purchased Cooling: None +! Purchased Heating: None +! Coils: Coil:Cooling:DX:TwoSpeed; Coil:Heating:Fuel; Coil:Heating:Electric +! Pumps: Yes +! Boilers: None +! Chillers: None +!***** NOTICE ***** +!***** The Reference Buildings were prepared as an account of work sponsored by an ***** +!***** agency of the United States government. Neither the United States ***** +!***** government nor any agency thereof, nor any of their employees, makes ***** +!***** any warranty, express or implied, or assumes any legal liability or ***** +!***** responsibility for the accuracy, completeness, or usefulness of any ***** +!***** information, apparatus, product, or process disclosed, or represents ***** +!***** that its use would not infringe privately owned rights. Reference ***** +!***** herein to any specific commercial product, process, or service by ***** +!***** trade name, trademark, manufacturer, or otherwise does not necessarily ***** +!***** constitute or imply its endorsement, recommendation, or favoring by ***** +!***** the United States government or any agency thereof. The views and ***** +!***** opinions of authors expressed herein do not necessarily state or ***** +!***** reflect those of the United States government or any agency thereof. ***** +!***** Access to and use of the Reference Buildings imposes the following obligations ***** +!***** on the user. The user agrees to credit DOE, NREL, PNNL, and LBNL in ***** +!***** any publication(s) that that result from the use of Reference Buildings. ***** +!***** However, the names of DOE/NREL/PNNL/LBNL may not be used in any ***** +!***** advertising or publicity that implies endorsement or promotion of any ***** +!***** products, services or commercial entities. ***** +! Reference citation for the Commercial Reference Buildings: +! Deru, M.; Field, K.; Studer, D.; Benne, K.; Griffith, B.; Torcellini, P; +! Halverson, M.; Winiarski, D.; Liu, B.; Rosenberg, M.; Huang, J.; +! Yazdanian, M.; Crawley, D. (2010). +! U.S. Department of Energy Commercial Reference Building Models of the National Building Stock. +! Washington, DC: U.S. Department of Energy, Energy Efficiency and +! Renewable Energy, Office of Building Technologies. +! ***GENERAL SIMULATION PARAMETERS*** +! Number of Zones: 18 + + Version,9.2; + + SimulationControl, + YES, !- Do Zone Sizing Calculation + YES, !- Do System Sizing Calculation + YES, !- Do Plant Sizing Calculation + YES, !- Run Simulation for Sizing Periods + YES; !- Run Simulation for Weather File Run Periods + + Building, + Ref Bldg Medium Office New2004_v1.3_5.0, !- Name + 0.0000, !- North Axis {deg} + City, !- Terrain + 0.0400, !- Loads Convergence Tolerance Value + 0.2000, !- Temperature Convergence Tolerance Value {deltaC} + FullInteriorAndExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + + RunPeriod, + RunPeriod, !- Name + 7, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 7, !- End Month + 31, !- End Day of Month + , !- End Year + Sunday, !- Day of Week for Start Day + No, !- Use Weather File Holidays and Special Days + No, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + +! ***HOLIDAYS & DAYLIGHT SAVINGS*** + + RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + + RunPeriodControl:SpecialDays, + New Years Day, !- Name + January 1, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Veterans Day, !- Name + November 11, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Christmas, !- Name + December 25, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Independence Day, !- Name + July 4, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + MLK Day, !- Name + 3rd Monday in January, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Presidents Day, !- Name + 3rd Monday in February, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Memorial Day, !- Name + Last Monday in May, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Labor Day, !- Name + 1st Monday in September, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Columbus Day, !- Name + 2nd Monday in October, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Thanksgiving, !- Name + 4th Thursday in November,!- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + +! ***SCHEDULE TYPES*** + + ScheduleTypeLimits, + Any Number; !- Name + + ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + Control Type, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + Humidity, !- Name + 10, !- Lower Limit Value + 90, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Number; !- Name + +! ***ALWAYS ON SCHEDULE*** + + Schedule:Compact, + ALWAYS_ON, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + +! ***MISC SIMULATION PARAMETERS*** + + SurfaceConvectionAlgorithm:Inside,TARP; + + SurfaceConvectionAlgorithm:Outside,DOE-2; + + HeatBalanceAlgorithm,ConductionTransferFunction,200.0000; + + ZoneAirHeatBalanceAlgorithm, + AnalyticalSolution; !- Algorithm + + Sizing:Parameters, + 1.33, !- Heating Sizing Factor + 1.33, !- Cooling Sizing Factor + 6; !- Timesteps in Averaging Window + + ConvergenceLimits, + 2, !- Minimum System Timestep {minutes} + 25; !- Maximum HVAC Iterations + + ShadowCalculation, + AverageOverDaysInFrequency, !- Calculation Method + 7, !- Calculation Frequency + 15000; !- Maximum Figures in Shadow Overlap Calculations + + Timestep,6; + +! WeatherFileName=USA_IL_Chicago-OHare_TMY2.epw + + Site:Location, + USA IL-CHICAGO-OHARE, !- Name + 41.77, !- Latitude {deg} + -87.75, !- Longitude {deg} + -6.00, !- Time Zone {hr} + 190; !- Elevation {m} + + ! CHICAGO_IL_USA Annual Heating 99.6%, MaxDB=-20.6°C + + SizingPeriod:DesignDay, + CHICAGO Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -20.6, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -20.6, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 0.00; !- Sky Clearness + + ! CHICAGO_IL_USA Annual Cooling (WB=>MDB) .4%, MDB=31.2°C WB=25.5°C + + SizingPeriod:DesignDay, + CHICAGO Ann Clg .4% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 31.2, !- Maximum Dry-Bulb Temperature {C} + 10.7, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 25.5, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.00; !- Sky Clearness + + Site:WaterMainsTemperature, + CORRELATION, !- Calculation Method + , !- Temperature Schedule Name + 9.69, !- Annual Average Outdoor Air Temperature {C} + 28.10; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +! ***OPAQUE CONSTRUCTIONS AND MATERIALS*** +! Exterior Walls + + Construction, + Steel Frame Non-res Ext Wall, !- Name + Wood Siding, !- Outside Layer + Steel Frame NonRes Wall Insulation, !- Layer 2 + 1/2IN Gypsum; !- Layer 3 + + Material, + Steel Frame NonRes Wall Insulation, !- Name + MediumRough, !- Roughness + 0.0870564552646045, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + +! Roof + + Construction, + IEAD Non-res Roof, !- Name + Roof Membrane, !- Outside Layer + IEAD NonRes Roof Insulation, !- Layer 2 + Metal Decking; !- Layer 3 + + Material, + IEAD NonRes Roof Insulation, !- Name + MediumRough, !- Roughness + 0.127338688569477, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + +! Slab on grade, unheated + + Construction, + ext-slab, !- Name + HW CONCRETE, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + + Foundation:Kiva, + Slab Foundation, !- Name + 15, !- Initial Indoor Air Temperature + , !- Interior Horizontal Insulation Material Name + , !- Interior Horizontal Insulation Depth {m} + , !- Interior Horizontal Insulation Width {m} + , !- Interior Vertical Insulation Material Name + , !- Interior Vertical Insulation Depth {m} + , !- Exterior Horizontal Insulation Material Name + , !- Exterior Horizontal Insulation Depth {m} + , !- Exterior Horizontal Insulation Width {m} + , !- Exterior Vertical Insulation Material Name + , !- Exterior Vertical Insulation Depth {m} + 0.127, !- Wall Height Above Grade {m} + 0.127; !- Wall Depth Below Slab {m} + +! Interior Walls + + Construction, + int-walls, !- Name + 1/2IN Gypsum, !- Outside Layer + 1/2IN Gypsum; !- Layer 2 + +! Interior Floors + + Construction, + INT-FLOOR-TOPSIDE, !- Name + MAT-CC05 4 HW CONCRETE, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + + Construction, + INT-FLOOR-UNDERSIDE, !- Name + CP02 CARPET PAD, !- Outside Layer + MAT-CC05 4 HW CONCRETE; !- Layer 2 + +! ***WINDOW/DOOR CONSTRUCTIONS AND MATERIALS*** + + Construction, + Window Non-res Fixed, !- Name + NonRes Fixed Assembly Window; !- Outside Layer + + WindowMaterial:SimpleGlazingSystem, + NonRes Fixed Assembly Window, !- Name + 3.23646, !- U-Factor {W/m2-K} + 0.39, !- Solar Heat Gain Coefficient + ; !- Visible Transmittance + +! ***COMMON CONSTRUCTIONS AND MATERIALS*** + + Construction, + DropCeiling, !- Name + Std AC02; !- Outside Layer + + Construction, + InteriorFurnishings, !- Name + Std Wood 6inch; !- Outside Layer + + Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness {m} + 0.12, !- Conductivity {W/m-K} + 540.0000, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.7000000; !- Visible Absorptance + + Material, + Wood Siding, !- Name + MediumSmooth, !- Roughness + 0.0100, !- Thickness {m} + 0.1100, !- Conductivity {W/m-K} + 544.6200, !- Density {kg/m3} + 1210.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7800, !- Solar Absorptance + 0.7800; !- Visible Absorptance + + Material, + 1/2IN Gypsum, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.1600, !- Conductivity {W/m-K} + 784.9000, !- Density {kg/m3} + 830.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.9200, !- Solar Absorptance + 0.9200; !- Visible Absorptance + + Material, + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.6918, !- Conductivity {W/m-K} + 1858.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.9200, !- Solar Absorptance + 0.9200; !- Visible Absorptance + + Material, + 8IN CONCRETE HW, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.3110, !- Conductivity {W/m-K} + 2240.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + + Material, + Metal Siding, !- Name + Smooth, !- Roughness + 0.0015, !- Thickness {m} + 44.9600, !- Conductivity {W/m-K} + 7688.8600, !- Density {kg/m3} + 410.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.2000, !- Solar Absorptance + 0.2000; !- Visible Absorptance + + Material, + HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness {m} + 1.3110, !- Conductivity {W/m-K} + 2240.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + + Material, + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.0254, !- Thickness {m} + 0.1173, !- Conductivity {W/m-K} + 48.0000, !- Density {kg/m3} + 1375.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.8000; !- Visible Absorptance + + Material, + Roof Membrane, !- Name + VeryRough, !- Roughness + 0.0095, !- Thickness {m} + 0.1600, !- Conductivity {W/m-K} + 1121.2900, !- Density {kg/m3} + 1460.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + + Material, + Metal Decking, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.0060, !- Conductivity {W/m-K} + 7680.0000, !- Density {kg/m3} + 418.4000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.3000; !- Visible Absorptance + + Material, + Metal Roofing, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.0060, !- Conductivity {W/m-K} + 7680.0000, !- Density {kg/m3} + 418.4000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.3000; !- Visible Absorptance + + Material, + MAT-CC05 4 HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness {m} + 1.3110, !- Conductivity {W/m-K} + 2240.0000, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.7000; !- Visible Absorptance + +! Acoustic tile for drop ceiling + + Material, + Std AC02, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 5.7000000E-02, !- Conductivity {W/m-K} + 288.0000, !- Density {kg/m3} + 1339.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.2000000; !- Visible Absorptance + + Material:NoMass, + MAT-AIR-WALL, !- Name + Rough, !- Roughness + 0.2079491, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +! ZONE LIST: +! Core_bottom +! Core_mid +! Core_top +! FirstFloor_Plenum +! MidFloor_Plenum +! Perimeter_bot_ZN_1 +! Perimeter_bot_ZN_2 +! Perimeter_bot_ZN_3 +! Perimeter_bot_ZN_4 +! Perimeter_mid_ZN_1 +! Perimeter_mid_ZN_2 +! Perimeter_mid_ZN_3 +! Perimeter_mid_ZN_4 +! Perimeter_top_ZN_1 +! Perimeter_top_ZN_2 +! Perimeter_top_ZN_3 +! Perimeter_top_ZN_4 +! TopFloor_Plenum +! ***ZONES*** + + Zone, + Core_bottom, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Core_mid, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Core_top, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + FirstFloor_Plenum, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + + Zone, + MidFloor_Plenum, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + + Zone, + Perimeter_bot_ZN_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_bot_ZN_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_bot_ZN_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_bot_ZN_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_mid_ZN_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_mid_ZN_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_mid_ZN_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_mid_ZN_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_top_ZN_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_top_ZN_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_top_ZN_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Perimeter_top_ZN_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + TopFloor_Plenum, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + +! ***WALLS*** + + BuildingSurface:Detailed, + Building_Roof, !- Name + Roof, !- Surface Type + IEAD Non-res Roof, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,11.8872, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,11.8872, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,11.8872, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,11.8872; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_bot_ZN_5_Floor, !- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Core_bottom, !- Zone Name + Foundation, !- Outside Boundary Condition + Slab Foundation, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ExposedFoundationPerimeter, + Core_bot_ZN_5_Floor, !- Surface Name + BySegment, !- Exposed Perimeter Calculation Method + , !- Total Exposed Perimeter {m} + , !- Exposed Perimeter Fraction {dimensionless} + No, !- Surface Segment 1 Exposed + No, !- Surface Segment 2 Exposed + No, !- Surface Segment 3 Exposed + No; !- Surface Segment 4 Exposed + + BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_North,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_South,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_bottom_ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Floor_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_mid_ZN_5_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_North,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_South,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_mid_ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_top_ZN_5_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_top_ZN_5_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Ceiling_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_top_ZN_5_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_top_ZN_5_Wall_North,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_top_ZN_5_Wall_South,!- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Core_top_ZN_5_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Ceiling_1, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Floor,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Ceiling_2, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Floor,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Ceiling_3, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Floor,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Ceiling_4, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Floor,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Ceiling_5, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Floor_1, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Floor_2, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Floor_3, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Ceililng, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Floor_4, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + FirstFloor_Plenum_Floor_5, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bottom_ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Ceiling_1, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Floor,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Ceiling_2, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Floor,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Ceiling_3, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Floor,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Ceiling_4, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Floor,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Ceiling_5, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Floor_1, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Floor_2, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Floor_3, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Floor_4, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + MidFloor_Plenum_Floor_5, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_Plenum_Wall_East, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2738,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_Plenum_Wall_North, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_Plenum_Wall_South, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_Plenum_Wall_West, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + FirstFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Floor_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Floor,!- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Foundation, !- Outside Boundary Condition + Slab Foundation, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ExposedFoundationPerimeter, + Perimeter_bot_ZN_1_Floor,!- Surface Name + BySegment, !- Exposed Perimeter Calculation Method + , !- Total Exposed Perimeter {m} + , !- Exposed Perimeter Fraction {dimensionless} + No, !- Surface Segment 1 Exposed + No, !- Surface Segment 2 Exposed + No, !- Surface Segment 3 Exposed + Yes; !- Surface Segment 4 Exposed + + BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_South,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_South, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Floor_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Floor,!- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Foundation, !- Outside Boundary Condition + Slab Foundation, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ExposedFoundationPerimeter, + Perimeter_bot_ZN_2_Floor,!- Surface Name + BySegment, !- Exposed Perimeter Calculation Method + , !- Total Exposed Perimeter {m} + , !- Exposed Perimeter Fraction {dimensionless} + No, !- Surface Segment 1 Exposed + No, !- Surface Segment 2 Exposed + No, !- Surface Segment 3 Exposed + Yes; !- Surface Segment 4 Exposed + + BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_East, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2738,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Ceililng, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Floor_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Floor,!- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Foundation, !- Outside Boundary Condition + Slab Foundation, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ExposedFoundationPerimeter, + Perimeter_bot_ZN_3_Floor,!- Surface Name + BySegment, !- Exposed Perimeter Calculation Method + , !- Total Exposed Perimeter {m} + , !- Exposed Perimeter Fraction {dimensionless} + No, !- Surface Segment 1 Exposed + No, !- Surface Segment 2 Exposed + No, !- Surface Segment 3 Exposed + Yes; !- Surface Segment 4 Exposed + + BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2738,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_North, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_North,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Floor_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Floor,!- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Foundation, !- Outside Boundary Condition + Slab Foundation, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + SurfaceProperty:ExposedFoundationPerimeter, + Perimeter_bot_ZN_4_Floor,!- Surface Name + BySegment, !- Exposed Perimeter Calculation Method + , !- Total Exposed Perimeter {m} + , !- Exposed Perimeter Fraction {dimensionless} + No, !- Surface Segment 1 Exposed + No, !- Surface Segment 2 Exposed + No, !- Surface Segment 3 Exposed + Yes; !- Surface Segment 4 Exposed + + BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_West, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_Plenum_Wall_East, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2738,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_Plenum_Wall_North, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_Plenum_Wall_South, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_Plenum_Wall_West, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Floor,!- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_South,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_South, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Floor,!- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_East, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2738,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Floor,!- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2738,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_North, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_North,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,6.7056, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,6.7056, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Floor,!- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + FirstFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,3.9624, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,3.9624; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_West, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,6.7056, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,3.9624, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,3.9624, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,6.7056; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_Plenum_Wall_East, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,11.8872, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2738,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,11.8872; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_Plenum_Wall_North, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,11.8872, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,11.8872; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_Plenum_Wall_South, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,11.8872, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,11.8872; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_Plenum_Wall_West, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,11.8872, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,11.8872; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_1_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_1_Floor,!- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Ceiling_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_South,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_South, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_2_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_2_Floor,!- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Ceiling_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_East, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2738,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,4.5732,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,0.0000,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_3_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_3_Floor,!- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Ceiling_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.3375,28.7006,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2738,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_North, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,33.2738,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_North,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 45.3375,28.7006,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_4_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_4_Floor,!- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Ceiling_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,7.9248, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,7.9248; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,4.5732,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,28.7006,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,4.5732,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_West, !- Name + Wall, !- Surface Type + Steel Frame Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,7.9248, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,7.9248, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + TopFloor_Plenum_Floor_1, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 4.5732,4.5732,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + TopFloor_Plenum_Floor_2, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 49.9110,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,4.5732,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2738,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + TopFloor_Plenum_Floor_3, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,33.2738,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,33.2738,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,28.7006,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,28.7006,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + TopFloor_Plenum_Floor_4, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2738,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 4.5732,28.7006,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + TopFloor_Plenum_Floor_5, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732,28.7006,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 45.3375,28.7006,10.6680, !- X,Y,Z ==> Vertex 2 {m} + 45.3375,4.5732,10.6680, !- X,Y,Z ==> Vertex 3 {m} + 4.5732,4.5732,10.6680; !- X,Y,Z ==> Vertex 4 {m} + +! ***WINDOWS & DOORS*** + + FenestrationSurface:Detailed, + Perimeter_bot_ZN_1_Wall_South_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_bot_ZN_1_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,0.0000,2.3293, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,1.0213, !- X,Y,Z ==> Vertex 2 {m} + 49.9100,0.0000,1.0213, !- X,Y,Z ==> Vertex 3 {m} + 49.9100,0.0000,2.3293; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_bot_ZN_2_Wall_East_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_bot_ZN_2_Wall_East, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 49.9110,0.0000,2.3293, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,1.0213, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2737,1.0213, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2737,2.3293; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_bot_ZN_3_Wall_North_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_bot_ZN_3_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 49.9100,33.2738,2.3293, !- X,Y,Z ==> Vertex 1 {m} + 49.9100,33.2738,1.0213, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,1.0213, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,2.3293; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_bot_ZN_4_Wall_West_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_bot_ZN_4_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,33.2737,2.3293, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2737,1.0213, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,1.0213, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,2.3293; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_mid_ZN_1_Wall_South_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_mid_ZN_1_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,0.0000,6.2917, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,4.9837, !- X,Y,Z ==> Vertex 2 {m} + 49.9100,0.0000,4.9837, !- X,Y,Z ==> Vertex 3 {m} + 49.9100,0.0000,6.2917; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_mid_ZN_2_Wall_East_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_mid_ZN_2_Wall_East, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 49.9110,0.0000,6.2917, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,4.9837, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2737,4.9837, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2737,6.2917; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_mid_ZN_3_Wall_North_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_mid_ZN_3_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 49.9100,33.2738,6.2917, !- X,Y,Z ==> Vertex 1 {m} + 49.9100,33.2738,4.9837, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,4.9837, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,6.2917; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_mid_ZN_4_Wall_West_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_mid_ZN_4_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,33.2737,6.2917, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2737,4.9837, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,4.9837, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,6.2917; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_top_ZN_1_Wall_South_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_top_ZN_1_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,0.0000,10.2541, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,8.9461, !- X,Y,Z ==> Vertex 2 {m} + 49.9100,0.0000,8.9461, !- X,Y,Z ==> Vertex 3 {m} + 49.9100,0.0000,10.2541; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_top_ZN_2_Wall_East_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_top_ZN_2_Wall_East, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 49.9110,0.0000,10.2541, !- X,Y,Z ==> Vertex 1 {m} + 49.9110,0.0000,8.9461, !- X,Y,Z ==> Vertex 2 {m} + 49.9110,33.2737,8.9461, !- X,Y,Z ==> Vertex 3 {m} + 49.9110,33.2737,10.2541; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_top_ZN_3_Wall_North_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_top_ZN_3_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 49.9100,33.2738,10.2541, !- X,Y,Z ==> Vertex 1 {m} + 49.9100,33.2738,8.9461, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,33.2738,8.9461, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,33.2738,10.2541; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Perimeter_top_ZN_4_Wall_West_Window, !- Name + Window, !- Surface Type + Window Non-res Fixed, !- Construction Name + Perimeter_top_ZN_4_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.0000,33.2737,10.2541, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,33.2737,8.9461, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,8.9461, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,10.2541; !- X,Y,Z ==> Vertex 4 {m} + +! ***GEOMETRY RULES*** + + GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative, !- Coordinate System + Relative; !- Daylighting Reference Point Coordinate System + +! ***PEOPLE*** + + People, + Core_bottom People, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Core_mid People, !- Name + Core_mid, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Core_top People, !- Name + Core_top, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_bot_ZN_1 People, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_bot_ZN_2 People, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_bot_ZN_3 People, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_bot_ZN_4 People, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_mid_ZN_1 People, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_mid_ZN_2 People, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_mid_ZN_3 People, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_mid_ZN_4 People, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_top_ZN_1 People, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_top_ZN_2 People, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_top_ZN_3 People, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Perimeter_top_ZN_4 People, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.58, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + +! ***LIGHTS*** + + Lights, + Core_bottom_Lights, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Core_mid_Lights, !- Name + Core_mid, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Core_top_Lights, !- Name + Core_top, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_bot_ZN_1_Lights, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_bot_ZN_2_Lights, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_bot_ZN_3_Lights, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_bot_ZN_4_Lights, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_mid_ZN_1_Lights, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_mid_ZN_2_Lights, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_mid_ZN_3_Lights, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_mid_ZN_4_Lights, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_top_ZN_1_Lights, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_top_ZN_2_Lights, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_top_ZN_3_Lights, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Perimeter_top_ZN_4_Lights, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.4000, !- Return Air Fraction + 0.4000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +! ***EQUIPMENT GAINS*** + + ElectricEquipment, + Core_bottom_PlugMisc_Equip, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Core_mid_PlugMisc_Equip, !- Name + Core_mid, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Core_top_PlugMisc_Equip, !- Name + Core_top, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_bot_ZN_1_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_bot_ZN_2_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_bot_ZN_3_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_bot_ZN_4_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_mid_ZN_1_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_mid_ZN_2_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_mid_ZN_3_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_mid_ZN_4_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_top_ZN_1_PlugMisc_Equip, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_top_ZN_2_PlugMisc_Equip, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_top_ZN_3_PlugMisc_Equip, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Perimeter_top_ZN_4_PlugMisc_Equip, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.76, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Core_bottom_Elevators_Equip, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_ELEVATORS, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 32109.8901098901, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + Elevators; !- End-Use Subcategory + +! ***EXTERIOR LOADS*** + + Exterior:Lights, + Exterior Facade Lighting,!- Name + ALWAYS_ON, !- Schedule Name + 14804, !- Design Level {W} + AstronomicalClock, !- Control Option + Exterior Facade Lighting;!- End-Use Subcategory + +! ***INFILTRATION*** + + ZoneInfiltration:DesignFlowRate, + FirstFloor_Plenum_Infiltration, !- Name + FirstFloor_Plenum, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + MidFloor_Plenum_Infiltration, !- Name + MidFloor_Plenum, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_1_Infiltration, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_2_Infiltration, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_3_Infiltration, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_4_Infiltration, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_1_Infiltration, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_2_Infiltration, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_3_Infiltration, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_4_Infiltration, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_1_Infiltration, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_2_Infiltration, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_3_Infiltration, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_4_Infiltration, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + TopFloor_Plenum_Infiltration, !- Name + TopFloor_Plenum, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000302, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.0000, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + +! ***INTERNAL MASS*** + + InternalMass, + Core_bottom Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_bottom, !- Zone Name + 1967.0731; !- Surface Area {m2} + + InternalMass, + Core_mid Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_mid, !- Zone Name + 1967.0731; !- Surface Area {m2} + + InternalMass, + Core_top Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_top, !- Zone Name + 1967.0731; !- Surface Area {m2} + + InternalMass, + Perimeter_bot_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + 414.6763; !- Surface Area {m2} + + InternalMass, + Perimeter_bot_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + 262.5244; !- Surface Area {m2} + + InternalMass, + Perimeter_bot_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + 414.6763; !- Surface Area {m2} + + InternalMass, + Perimeter_bot_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + 262.5072; !- Surface Area {m2} + + InternalMass, + Perimeter_mid_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + 414.6763; !- Surface Area {m2} + + InternalMass, + Perimeter_mid_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + 262.5244; !- Surface Area {m2} + + InternalMass, + Perimeter_mid_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + 414.6763; !- Surface Area {m2} + + InternalMass, + Perimeter_mid_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + 262.5072; !- Surface Area {m2} + + InternalMass, + Perimeter_top_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + 414.6763; !- Surface Area {m2} + + InternalMass, + Perimeter_top_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + 262.5244; !- Surface Area {m2} + + InternalMass, + Perimeter_top_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + 414.6763; !- Surface Area {m2} + + InternalMass, + Perimeter_top_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + 262.5072; !- Surface Area {m2} + +! ***INTERNAL GAINS SCHEDULES*** + + Schedule:Compact, + ACTIVITY_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,120.; !- Field 3 + + Schedule:Compact, + AIR_VELO_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + BLDG_ELEVATORS, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 07:00,0.0, !- Field 3 + Until: 08:00,0.35, !- Field 5 + Until: 09:00,0.69, !- Field 7 + Until: 10:00,0.43, !- Field 9 + Until: 11:00,0.37, !- Field 11 + Until: 12:00,0.43, !- Field 13 + Until: 13:00,0.58, !- Field 15 + Until: 14:00,0.48, !- Field 17 + Until: 15:00,0.37, !- Field 19 + Until: 16:00,0.37, !- Field 21 + Until: 17:00,0.46, !- Field 23 + Until: 18:00,0.62, !- Field 25 + Until: 19:00,0.12, !- Field 27 + Until: 20:00,0.04, !- Field 29 + Until: 21:00,0.04, !- Field 31 + Until: 24:00,0.00, !- Field 33 + For: Saturday WinterDesignDay, !- Field 35 + Until: 07:00,0.0, !- Field 36 + Until: 08:00,0.16, !- Field 38 + Until: 09:00,0.14, !- Field 40 + Until: 10:00,0.21, !- Field 42 + Until: 11:00,0.18, !- Field 44 + Until: 12:00,0.25, !- Field 46 + Until: 13:00,0.21, !- Field 48 + Until: 14:00,0.13, !- Field 50 + Until: 15:00,0.08, !- Field 52 + Until: 16:00,0.04, !- Field 54 + Until: 17:00,0.05, !- Field 56 + Until: 18:00,0.06, !- Field 58 + Until: 24:00,0.00, !- Field 60 + For: Sunday Holidays AllOtherDays, !- Field 62 + Until: 24:00,0.0; !- Field 63 + + Schedule:Compact, + BLDG_OCC_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 06:00,0.0, !- Field 3 + Until: 22:00,1.0, !- Field 5 + Until: 24:00,0.05, !- Field 7 + For: Weekdays, !- Field 9 + Until: 06:00,0.0, !- Field 10 + Until: 07:00,0.1, !- Field 12 + Until: 08:00,0.2, !- Field 14 + Until: 12:00,0.95, !- Field 16 + Until: 13:00,0.5, !- Field 18 + Until: 17:00,0.95, !- Field 20 + Until: 18:00,0.7, !- Field 22 + Until: 20:00,0.4, !- Field 24 + Until: 22:00,0.1, !- Field 26 + Until: 24:00,0.05, !- Field 28 + For: Saturday, !- Field 30 + Until: 06:00,0.0, !- Field 31 + Until: 08:00,0.1, !- Field 33 + Until: 14:00,0.5, !- Field 35 + Until: 17:00,0.1, !- Field 37 + Until: 24:00,0.0, !- Field 39 + For: AllOtherDays, !- Field 41 + Until: 24:00,0.0; !- Field 42 + + Schedule:Compact, + BLDG_LIGHT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 05:00,0.05, !- Field 3 + Until: 07:00,0.1, !- Field 5 + Until: 08:00,0.3, !- Field 7 + Until: 17:00,0.9, !- Field 9 + Until: 18:00,0.7, !- Field 11 + Until: 20:00,0.5, !- Field 13 + Until: 22:00,0.3, !- Field 15 + Until: 23:00,0.1, !- Field 17 + Until: 24:00,0.05, !- Field 19 + For: Saturday, !- Field 21 + Until: 06:00,0.05, !- Field 22 + Until: 08:00,0.1, !- Field 24 + Until: 14:00,0.5, !- Field 26 + Until: 17:00,0.15, !- Field 28 + Until: 24:00,0.05, !- Field 30 + For: SummerDesignDay, !- Field 32 + Until: 24:00,1.0, !- Field 33 + For: WinterDesignDay, !- Field 35 + Until: 24:00,0.0, !- Field 36 + For: AllOtherDays, !- Field 38 + Until: 24:00,0.05; !- Field 39 + + Schedule:Compact, + BLDG_EQUIP_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 08:00,0.40, !- Field 3 + Until: 12:00,0.90, !- Field 5 + Until: 13:00,0.80, !- Field 7 + Until: 17:00,0.90, !- Field 9 + Until: 18:00,0.80, !- Field 11 + Until: 20:00,0.60, !- Field 13 + Until: 22:00,0.50, !- Field 15 + Until: 24:00,0.40, !- Field 17 + For: Saturday, !- Field 19 + Until: 06:00,0.30, !- Field 20 + Until: 08:00,0.4, !- Field 22 + Until: 14:00,0.5, !- Field 24 + Until: 17:00,0.35, !- Field 26 + Until: 24:00,0.30, !- Field 28 + For: SummerDesignDay, !- Field 30 + Until: 24:00,1.0, !- Field 31 + For: WinterDesignDay, !- Field 33 + Until: 24:00,0.0, !- Field 34 + For: AllOtherDays, !- Field 36 + Until: 24:00,0.30; !- Field 37 + + Schedule:Compact, + CLOTHING_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 04/30, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 09/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,0.5, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,1.0; !- Field 11 + + Schedule:Compact, + INFIL_QUARTER_ON_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00,1.0, !- Field 3 + Until: 22:00,0.25, !- Field 5 + Until: 24:00,1.0, !- Field 7 + For: Saturday WinterDesignDay, !- Field 9 + Until: 06:00,1.0, !- Field 10 + Until: 18:00,0.25, !- Field 12 + Until: 24:00,1.0, !- Field 14 + For: Sunday Holidays AllOtherDays, !- Field 16 + Until: 24:00,1.0; !- Field 17 + + Schedule:Compact, + WORK_EFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 + +! ***HVAC EQUIPMENT*** + + Fan:VariableVolume, + VAV_1_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.5915, !- Fan Total Efficiency + 1109.648, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0.0000, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.91, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.0407598940, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.072926120, !- Fan Power Coefficient 3 + 0.9437398230, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + VAV_1_HeatC-VAV_1_FanNode, !- Air Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_2_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.5915, !- Fan Total Efficiency + 1109.648, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0.0000, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.91, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.0407598940, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.072926120, !- Fan Power Coefficient 3 + 0.9437398230, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + VAV_2_HeatC-VAV_2_FanNode, !- Air Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_3_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.5915, !- Fan Total Efficiency + 1109.648, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0.0000, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.91, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.0407598940, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.072926120, !- Fan Power Coefficient 3 + 0.9437398230, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + VAV_3_HeatC-VAV_3_FanNode, !- Air Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Coil:Heating:Fuel, + VAV_1_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + VAV_1_CoolC-VAV_1_HeatCNode, !- Air Inlet Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Air Outlet Node Name + VAV_1_HeatC-VAV_1_FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + VAV_2_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + VAV_2_CoolC-VAV_2_HeatCNode, !- Air Inlet Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Air Outlet Node Name + VAV_2_HeatC-VAV_2_FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + VAV_3_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + VAV_3_CoolC-VAV_3_HeatCNode, !- Air Inlet Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Air Outlet Node Name + VAV_3_HeatC-VAV_3_FanNode; !- Temperature Setpoint Node Name + + Coil:Cooling:DX:TwoSpeed, + VAV_1_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- High Speed Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- High Speed Rated Sensible Heat Ratio + 3.23372055845678, !- High Speed Gross Rated Cooling COP {W/W} + AUTOSIZE, !- High Speed Rated Air Flow Rate {m3/s} + 450, !- Unit Internal Static Air Pressure {Pa} + VAV_1_OA-VAV_1_CoolCNode,!- Air Inlet Node Name + VAV_1_CoolC-VAV_1_HeatCNode, !- Air Outlet Node Name + Measured_CoolCStandard10Ton_CapFT, !- Total Cooling Capacity Function of Temperature Curve Name + Measured_CoolCStandard10Ton_CapFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Measured_CoolCStandard10Ton_EIRFT, !- Energy Input Ratio Function of Temperature Curve Name + Measured_CoolCStandard10Ton_EIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name + No_PLR_Degredation, !- Part Load Fraction Correlation Curve Name + AUTOSIZE, !- Low Speed Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- Low Speed Gross Rated Sensible Heat Ratio + 3.28186528141147, !- Low Speed Gross Rated Cooling COP {W/W} + AUTOSIZE, !- Low Speed Rated Air Flow Rate {m3/s} + Measured_LowSpeedCoolCapLSFT, !- Low Speed Total Cooling Capacity Function of Temperature Curve Name + Measured_LowSpeedCoolEIRLSFT, !- Low Speed Energy Input Ratio Function of Temperature Curve Name + ; !- Condenser Air Inlet Node Name + + Coil:Cooling:DX:TwoSpeed, + VAV_2_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- High Speed Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- High Speed Rated Sensible Heat Ratio + 3.23372055845678, !- High Speed Gross Rated Cooling COP {W/W} + AUTOSIZE, !- High Speed Rated Air Flow Rate {m3/s} + 450, !- Unit Internal Static Air Pressure {Pa} + VAV_2_OA-VAV_2_CoolCNode,!- Air Inlet Node Name + VAV_2_CoolC-VAV_2_HeatCNode, !- Air Outlet Node Name + Measured_CoolCStandard10Ton_CapFT, !- Total Cooling Capacity Function of Temperature Curve Name + Measured_CoolCStandard10Ton_CapFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Measured_CoolCStandard10Ton_EIRFT, !- Energy Input Ratio Function of Temperature Curve Name + Measured_CoolCStandard10Ton_EIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name + No_PLR_Degredation, !- Part Load Fraction Correlation Curve Name + AUTOSIZE, !- Low Speed Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- Low Speed Gross Rated Sensible Heat Ratio + 3.28186528141147, !- Low Speed Gross Rated Cooling COP {W/W} + AUTOSIZE, !- Low Speed Rated Air Flow Rate {m3/s} + Measured_LowSpeedCoolCapLSFT, !- Low Speed Total Cooling Capacity Function of Temperature Curve Name + Measured_LowSpeedCoolEIRLSFT, !- Low Speed Energy Input Ratio Function of Temperature Curve Name + ; !- Condenser Air Inlet Node Name + + Coil:Cooling:DX:TwoSpeed, + VAV_3_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- High Speed Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- High Speed Rated Sensible Heat Ratio + 3.23372055845678, !- High Speed Gross Rated Cooling COP {W/W} + AUTOSIZE, !- High Speed Rated Air Flow Rate {m3/s} + 450, !- Unit Internal Static Air Pressure {Pa} + VAV_3_OA-VAV_3_CoolCNode,!- Air Inlet Node Name + VAV_3_CoolC-VAV_3_HeatCNode, !- Air Outlet Node Name + Measured_CoolCStandard10Ton_CapFT, !- Total Cooling Capacity Function of Temperature Curve Name + Measured_CoolCStandard10Ton_CapFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Measured_CoolCStandard10Ton_EIRFT, !- Energy Input Ratio Function of Temperature Curve Name + Measured_CoolCStandard10Ton_EIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name + No_PLR_Degredation, !- Part Load Fraction Correlation Curve Name + AUTOSIZE, !- Low Speed Gross Rated Total Cooling Capacity {W} + AUTOSIZE, !- Low Speed Gross Rated Sensible Heat Ratio + 3.28186528141147, !- Low Speed Gross Rated Cooling COP {W/W} + AUTOSIZE, !- Low Speed Rated Air Flow Rate {m3/s} + Measured_LowSpeedCoolCapLSFT, !- Low Speed Total Cooling Capacity Function of Temperature Curve Name + Measured_LowSpeedCoolEIRLSFT, !- Low Speed Energy Input Ratio Function of Temperature Curve Name + ; !- Condenser Air Inlet Node Name + + Coil:Heating:Electric, + Core_bottom VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Core_bottom VAV Box Damper Node, !- Air Inlet Node Name + Core_bottom VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Core_mid VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Core_mid VAV Box Damper Node, !- Air Inlet Node Name + Core_mid VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Core_top VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Core_top VAV Box Damper Node, !- Air Inlet Node Name + Core_top VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_bot_ZN_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_bot_ZN_1 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_bot_ZN_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_bot_ZN_2 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_bot_ZN_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_bot_ZN_3 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_bot_ZN_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_bot_ZN_4 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_mid_ZN_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_mid_ZN_1 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_mid_ZN_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_mid_ZN_2 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_mid_ZN_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_mid_ZN_3 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_mid_ZN_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_mid_ZN_4 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_top_ZN_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_top_ZN_1 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_top_ZN_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_top_ZN_2 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_top_ZN_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_top_ZN_3 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + Perimeter_top_ZN_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 1, !- Efficiency + AUTOSIZE, !- Nominal Capacity {W} + Perimeter_top_ZN_4 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + ; !- Temperature Setpoint Node Name + + AirTerminal:SingleDuct:VAV:Reheat, + Core_bottom VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_bottom VAV Box Damper Node, !- Damper Air Outlet Node Name + Core_bottom VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Core_bottom VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Core_bottom VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Core_mid VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_mid VAV Box Damper Node, !- Damper Air Outlet Node Name + Core_mid VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Core_mid VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Core_mid VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Core_top VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_top VAV Box Damper Node, !- Damper Air Outlet Node Name + Core_top VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Core_top VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Core_top VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_bot_ZN_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_bot_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_bot_ZN_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_bot_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_3 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_bot_ZN_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_bot_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_4 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_bot_ZN_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_bot_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_mid_ZN_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_mid_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_mid_ZN_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_mid_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_3 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_mid_ZN_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_mid_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_4 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_mid_ZN_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_mid_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_top_ZN_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_top_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_top_ZN_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_top_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_3 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_top_ZN_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_top_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_4 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Electric, !- Reheat Coil Object Type + Perimeter_top_ZN_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Perimeter_top_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + ZoneHVAC:EquipmentList, + Core_bottom Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Core_bottom VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Core_mid Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Core_mid VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Core_top Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Core_top VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_bot_ZN_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_bot_ZN_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_bot_ZN_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_bot_ZN_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_bot_ZN_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_bot_ZN_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_bot_ZN_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_bot_ZN_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_mid_ZN_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_mid_ZN_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_mid_ZN_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_mid_ZN_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_mid_ZN_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_mid_ZN_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_mid_ZN_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_mid_ZN_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_top_ZN_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_top_ZN_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_top_ZN_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_top_ZN_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_top_ZN_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_top_ZN_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + + ZoneHVAC:EquipmentList, + Perimeter_top_ZN_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Perimeter_top_ZN_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction + ; !- Zone Equipment 1 Sequential Heating Load Fraction + +! ***SIZING & CONTROLS*** + + Sizing:Zone, + Core_bottom, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Core_bottom, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Core_bottom, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Core_mid, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Core_mid, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Core_mid, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Core_top, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Core_top, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Core_top, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_bot_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_bot_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_bot_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_bot_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_mid_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_mid_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_mid_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_mid_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_top_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_top_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_top_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_top_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_top_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_top_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Perimeter_top_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8000, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50.0000, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Perimeter_top_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + SetpointManager:Scheduled, + VAV_1 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + VAV_2 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_2 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + VAV_3 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_3 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + ZoneControl:Thermostat, + Core_bottom Thermostat, !- Name + Core_bottom, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_bottom DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Core_mid Thermostat, !- Name + Core_mid, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_mid DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Core_top Thermostat, !- Name + Core_top, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_top DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_bot_ZN_1 Thermostat, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_bot_ZN_2 Thermostat, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_bot_ZN_3 Thermostat, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_bot_ZN_4 Thermostat, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_mid_ZN_1 Thermostat, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_mid_ZN_2 Thermostat, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_mid_ZN_3 Thermostat, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_mid_ZN_4 Thermostat, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_top_ZN_1 Thermostat, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_top_ZN_2 Thermostat, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_top_ZN_3 Thermostat, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Perimeter_top_ZN_4 Thermostat, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_4 DualSPSched; !- Control 1 Name + + ThermostatSetpoint:DualSetpoint, + Core_bottom DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Core_mid DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Core_top DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + + Sizing:System, + VAV_1, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 16.7000, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Sizing:System, + VAV_2, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 16.7000, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Sizing:System, + VAV_3, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 16.7000, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Controller:OutdoorAir, + VAV_1_OA_Controller, !- Name + VAV_1_OARelief Node, !- Relief Air Outlet Node Name + VAV_1 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_1_OA-VAV_1_CoolCNode,!- Mixed Air Node Name + VAV_1_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + ; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + VAV_2_OA_Controller, !- Name + VAV_2_OARelief Node, !- Relief Air Outlet Node Name + VAV_2 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_2_OA-VAV_2_CoolCNode,!- Mixed Air Node Name + VAV_2_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + ; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + VAV_3_OA_Controller, !- Name + VAV_3_OARelief Node, !- Relief Air Outlet Node Name + VAV_3 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_3_OA-VAV_3_CoolCNode,!- Mixed Air Node Name + VAV_3_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + ; !- Mechanical Ventilation Controller Name + +!- Stage 1 : Lennox LGE Measured Total Cooling Capacity Function of Temperature Curve +!- bi-quadratic curve = a + b*wb + c*wb**2 + d*edb + e*edb**2 + f*wb*edb +!- wb = entering wet-bulb temperature (C) +!- edb = dry-bulb temperature seen by the condenser (C) + + Curve:Biquadratic, + Measured_LowSpeedCoolCapLSFT, !- Name + 0.4136, !- Coefficient1 Constant + 0.03105, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.006952, !- Coefficient4 y + -0.00021280, !- Coefficient5 y**2 + 0, !- Coefficient6 x*y + 11.1, !- Minimum Value of x + 29.4, !- Maximum Value of x + 10.0, !- Minimum Value of y + 50.3; !- Maximum Value of y + +!- Stage 2 : Lennox LGE Measured Total Cooling Capacity Function of Temperature Curve +!- bi-quadratic curve = a + b*wb + c*wb**2 + d*edb + e*edb**2 + f*wb*edb +!- wb = entering wet-bulb temperature (C) +!- edb = dry-bulb temperature seen by the condenser (C) + + Curve:Biquadratic, + Measured_CoolCStandard10Ton_CapFT, !- Name + 0.52357, !- Coefficient1 Constant + 0.03478, !- Coefficient2 x + 0, !- Coefficient3 x**2 + -0.001915, !- Coefficient4 y + -0.00010838, !- Coefficient5 y**2 + 0, !- Coefficient6 x*y + 11.1, !- Minimum Value of x + 29.4, !- Maximum Value of x + 10.0, !- Minimum Value of y + 50.3; !- Maximum Value of y + +!- Stage 2 : Lennox LGE Measured Total Cooling Capacity Function of Flow Fraction Curve +!- quadratic curve = a + b*ff + c*ff**2 +!- ff = fraction of the full load flow + + Curve:Quadratic, + Measured_CoolCStandard10Ton_CapFF, !- Name + 0.7685, !- Coefficient1 Constant + 0.2315, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.776, !- Minimum Value of x + 1.197; !- Maximum Value of x + +!- Stage 1 : Lennox LGE Measured Energy Input Ratio Function of Temperature Curve +!- bi-quadratic curve = a + b*wb + c*wb**2 + d*edb + e*edb**2 + f*wb*edb +!- wb = entering wet-bulb temperature (C) +!- edb = dry-bulb temperature seen by the condenser (C) + + Curve:Biquadratic, + Measured_LowSpeedCoolEIRLSFT, !- Name + 1.1389, !- Coefficient1 Constant + -0.04518, !- Coefficient2 x + 0.0014298, !- Coefficient3 x**2 + 0.006044, !- Coefficient4 y + 0.0006745, !- Coefficient5 y**2 + -0.0012325, !- Coefficient6 x*y + 11.1, !- Minimum Value of x + 29.4, !- Maximum Value of x + 10.0, !- Minimum Value of y + 50.3; !- Maximum Value of y + +!- Stage 2 : Lennox LGE Measured Energy Input Ratio Function of Temperature Curve +!- bi-quadratic curve = a + b*wb + c*wb**2 + d*edb + e*edb**2 + f*wb*edb +!- wb = entering wet-bulb temperature (C) +!- edb = dry-bulb temperature seen by the condenser (C) + + Curve:Biquadratic, + Measured_CoolCStandard10Ton_EIRFT, !- Name + 0.9847, !- Coefficient1 Constant + -0.04285, !- Coefficient2 x + 0.0013562, !- Coefficient3 x**2 + 0.009934, !- Coefficient4 y + 0.0006398, !- Coefficient5 y**2 + -0.0011690, !- Coefficient6 x*y + 11.1, !- Minimum Value of x + 29.4, !- Maximum Value of x + 10.0, !- Minimum Value of y + 50.3; !- Maximum Value of y + +!- Stage 2 : Lennox LGE Measured Energy Input Ratio Function of Flow Fraction Curve +!- quadratic curve = a + b*ff + c*ff**2 +!- ff = fraction of the full load flow + + Curve:Quadratic, + Measured_CoolCStandard10Ton_EIRFFF, !- Name + 1.192, !- Coefficient1 Constant + -0.1917, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.776, !- Minimum Value of x + 1.197; !- Maximum Value of x + +!- Part Load Fraction Correlation Curve [Assuming no compressor cycling degredation at part loads] +!- quadratic curve = a + b*PLR + c*PLR**2 +!- PLR = part load ratio (sensible cooling load/steady-state sensible cooling capacity) + + Curve:Quadratic, + No_PLR_Degredation, !- Name + 1.0, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + +! ***AIR LOOPS*** + + AirLoopHVAC, + VAV_1, !- Name + , !- Controller List Name + VAV_1 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_1 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_1 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_1 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_1 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_1 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + VAV_2, !- Name + , !- Controller List Name + VAV_2 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_2 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_2 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_2 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_2 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_2 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + VAV_3, !- Name + , !- Controller List Name + VAV_3 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_3 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_3 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_3 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_3 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_3 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + CoilSystem:Cooling:DX, + VAV_1_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + VAV_1_OA-VAV_1_CoolCNode,!- DX Cooling Coil System Inlet Node Name + VAV_1_CoolC-VAV_1_HeatCNode, !- DX Cooling Coil System Outlet Node Name + VAV_1_CoolC-VAV_1_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:TwoSpeed,!- Cooling Coil Object Type + VAV_1_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + VAV_2_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + VAV_2_OA-VAV_2_CoolCNode,!- DX Cooling Coil System Inlet Node Name + VAV_2_CoolC-VAV_2_HeatCNode, !- DX Cooling Coil System Outlet Node Name + VAV_2_CoolC-VAV_2_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:TwoSpeed,!- Cooling Coil Object Type + VAV_2_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + VAV_3_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + VAV_3_OA-VAV_3_CoolCNode,!- DX Cooling Coil System Inlet Node Name + VAV_3_CoolC-VAV_3_HeatCNode, !- DX Cooling Coil System Outlet Node Name + VAV_3_CoolC-VAV_3_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:TwoSpeed,!- Cooling Coil Object Type + VAV_3_CoolC DXCoil; !- Cooling Coil Name + + AirLoopHVAC:ReturnPlenum, + VAV_2 Return Plenum, !- Name + MidFloor_Plenum, !- Zone Name + MIDFLOOR_PLENUMPlenumNode, !- Zone Node Name + MIDFLOOR_PLENUMPlenumOutletNode, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Core_mid Return Air Node Name, !- Inlet 1 Node Name + Perimeter_mid_ZN_1 Return Air Node Name, !- Inlet 2 Node Name + Perimeter_mid_ZN_2 Return Air Node Name, !- Inlet 3 Node Name + Perimeter_mid_ZN_3 Return Air Node Name, !- Inlet 4 Node Name + Perimeter_mid_ZN_4 Return Air Node Name; !- Inlet 5 Node Name + + AirLoopHVAC:ReturnPlenum, + VAV_1 Return Plenum, !- Name + FirstFloor_Plenum, !- Zone Name + FIRSTFLOOR_PLENUMPlenumNode, !- Zone Node Name + FIRSTFLOOR_PLENUMPlenumOutletNode, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Core_bottom Return Air Node Name, !- Inlet 1 Node Name + Perimeter_bot_ZN_1 Return Air Node Name, !- Inlet 2 Node Name + Perimeter_bot_ZN_2 Return Air Node Name, !- Inlet 3 Node Name + Perimeter_bot_ZN_3 Return Air Node Name, !- Inlet 4 Node Name + Perimeter_bot_ZN_4 Return Air Node Name; !- Inlet 5 Node Name + + AirLoopHVAC:ReturnPlenum, + VAV_3 Return Plenum, !- Name + TopFloor_Plenum, !- Zone Name + TOPFLOOR_PLENUMPlenumNode, !- Zone Node Name + TOPFLOOR_PLENUMPlenumOutletNode, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Core_top Return Air Node Name, !- Inlet 1 Node Name + Perimeter_top_ZN_1 Return Air Node Name, !- Inlet 2 Node Name + Perimeter_top_ZN_2 Return Air Node Name, !- Inlet 3 Node Name + Perimeter_top_ZN_3 Return Air Node Name, !- Inlet 4 Node Name + Perimeter_top_ZN_4 Return Air Node Name; !- Inlet 5 Node Name + +! ***CONNECTIONS*** + + ZoneHVAC:EquipmentConnections, + Core_bottom, !- Zone Name + Core_bottom Equipment, !- Zone Conditioning Equipment List Name + Core_bottom Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_bottom Air Node, !- Zone Air Node Name + Core_bottom Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Core_mid, !- Zone Name + Core_mid Equipment, !- Zone Conditioning Equipment List Name + Core_mid Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_mid Air Node, !- Zone Air Node Name + Core_mid Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Core_top, !- Zone Name + Core_top Equipment, !- Zone Conditioning Equipment List Name + Core_top Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_top Air Node, !- Zone Air Node Name + Core_top Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_1, !- Zone Name + Perimeter_bot_ZN_1 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_2, !- Zone Name + Perimeter_bot_ZN_2 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_3, !- Zone Name + Perimeter_bot_ZN_3 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_4, !- Zone Name + Perimeter_bot_ZN_4 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_1, !- Zone Name + Perimeter_mid_ZN_1 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_2, !- Zone Name + Perimeter_mid_ZN_2 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_3, !- Zone Name + Perimeter_mid_ZN_3 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_4, !- Zone Name + Perimeter_mid_ZN_4 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_1, !- Zone Name + Perimeter_top_ZN_1 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_2, !- Zone Name + Perimeter_top_ZN_2 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_3, !- Zone Name + Perimeter_top_ZN_3 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_4, !- Zone Name + Perimeter_top_ZN_4 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:AirDistributionUnit, + Core_bottom VAV Box, !- Name + Core_bottom VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Core_bottom VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Core_mid VAV Box, !- Name + Core_mid VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Core_mid VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Core_top VAV Box, !- Name + Core_top VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Core_top VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_1 VAV Box, !- Name + Perimeter_bot_ZN_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_2 VAV Box, !- Name + Perimeter_bot_ZN_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_3 VAV Box, !- Name + Perimeter_bot_ZN_3 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_4 VAV Box, !- Name + Perimeter_bot_ZN_4 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_1 VAV Box, !- Name + Perimeter_mid_ZN_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_2 VAV Box, !- Name + Perimeter_mid_ZN_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_3 VAV Box, !- Name + Perimeter_mid_ZN_3 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_4 VAV Box, !- Name + Perimeter_mid_ZN_4 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_1 VAV Box, !- Name + Perimeter_top_ZN_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_2 VAV Box, !- Name + Perimeter_top_ZN_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_3 VAV Box, !- Name + Perimeter_top_ZN_3 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_4 VAV Box, !- Name + Perimeter_top_ZN_4 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_4 VAV Box Component; !- Air Terminal Name + + NodeList, + Core_bottom Inlet Nodes, !- Name + Core_bottom VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Core_mid Inlet Nodes, !- Name + Core_mid VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Core_top Inlet Nodes, !- Name + Core_top VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_bot_ZN_1 Inlet Nodes, !- Name + Perimeter_bot_ZN_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_bot_ZN_2 Inlet Nodes, !- Name + Perimeter_bot_ZN_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_bot_ZN_3 Inlet Nodes, !- Name + Perimeter_bot_ZN_3 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_bot_ZN_4 Inlet Nodes, !- Name + Perimeter_bot_ZN_4 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_mid_ZN_1 Inlet Nodes, !- Name + Perimeter_mid_ZN_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_mid_ZN_2 Inlet Nodes, !- Name + Perimeter_mid_ZN_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_mid_ZN_3 Inlet Nodes, !- Name + Perimeter_mid_ZN_3 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_mid_ZN_4 Inlet Nodes, !- Name + Perimeter_mid_ZN_4 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_top_ZN_1 Inlet Nodes, !- Name + Perimeter_top_ZN_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_top_ZN_2 Inlet Nodes, !- Name + Perimeter_top_ZN_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_top_ZN_3 Inlet Nodes, !- Name + Perimeter_top_ZN_3 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Perimeter_top_ZN_4 Inlet Nodes, !- Name + Perimeter_top_ZN_4 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + VAV_1_OANode List, !- Name + VAV_1_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_2_OANode List, !- Name + VAV_2_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_3_OANode List, !- Name + VAV_3_OAInlet Node; !- Node 1 Name + + AvailabilityManagerAssignmentList, + VAV_1 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_1 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_2 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_2 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_3 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_3 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManager:NightCycle, + VAV_1 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_2 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_3 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + BranchList, + VAV_1 Air Loop Branches, !- Name + VAV_1 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_2 Air Loop Branches, !- Name + VAV_2 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_3 Air Loop Branches, !- Name + VAV_3 Air Loop Main Branch; !- Branch 1 Name + + Branch, + VAV_1 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_1_OA, !- Component 1 Name + VAV_1 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_1_OA-VAV_1_CoolCNode,!- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + VAV_1_CoolC, !- Component 2 Name + VAV_1_OA-VAV_1_CoolCNode,!- Component 2 Inlet Node Name + VAV_1_CoolC-VAV_1_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + VAV_1_HeatC, !- Component 3 Name + VAV_1_CoolC-VAV_1_HeatCNode, !- Component 3 Inlet Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + VAV_1_Fan, !- Component 4 Name + VAV_1_HeatC-VAV_1_FanNode, !- Component 4 Inlet Node Name + VAV_1 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + VAV_2 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_2_OA, !- Component 1 Name + VAV_2 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_2_OA-VAV_2_CoolCNode,!- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + VAV_2_CoolC, !- Component 2 Name + VAV_2_OA-VAV_2_CoolCNode,!- Component 2 Inlet Node Name + VAV_2_CoolC-VAV_2_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + VAV_2_HeatC, !- Component 3 Name + VAV_2_CoolC-VAV_2_HeatCNode, !- Component 3 Inlet Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + VAV_2_Fan, !- Component 4 Name + VAV_2_HeatC-VAV_2_FanNode, !- Component 4 Inlet Node Name + VAV_2 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + VAV_3 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_3_OA, !- Component 1 Name + VAV_3 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_3_OA-VAV_3_CoolCNode,!- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + VAV_3_CoolC, !- Component 2 Name + VAV_3_OA-VAV_3_CoolCNode,!- Component 2 Inlet Node Name + VAV_3_CoolC-VAV_3_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + VAV_3_HeatC, !- Component 3 Name + VAV_3_CoolC-VAV_3_HeatCNode, !- Component 3 Inlet Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + VAV_3_Fan, !- Component 4 Name + VAV_3_HeatC-VAV_3_FanNode, !- Component 4 Inlet Node Name + VAV_3 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + AirLoopHVAC:ControllerList, + VAV_1_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_1_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_2_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_2_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_3_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_3_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_1_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_1_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_2_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_2_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_3_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_3_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_1_OA, !- Name + VAV_1_OA_Controllers, !- Controller List Name + VAV_1_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_1 Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_2_OA, !- Name + VAV_2_OA_Controllers, !- Controller List Name + VAV_2_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_2 Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_3_OA, !- Name + VAV_3_OA_Controllers, !- Controller List Name + VAV_3_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_3 Availability Manager List; !- Availability Manager List Name + + OutdoorAir:NodeList, + VAV_1_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_2_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_3_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:Node, + VAV_1_CoolC Cond OA node;!- Name + + OutdoorAir:Node, + VAV_1_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + VAV_2_CoolC Cond OA node;!- Name + + OutdoorAir:Node, + VAV_2_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + VAV_3_CoolC Cond OA node;!- Name + + OutdoorAir:Node, + VAV_3_CoolCOA Ref node; !- Name + + OutdoorAir:Mixer, + VAV_1_OAMixing Box, !- Name + VAV_1_OA-VAV_1_CoolCNode,!- Mixed Air Node Name + VAV_1_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_1_OARelief Node, !- Relief Air Stream Node Name + VAV_1 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + VAV_2_OAMixing Box, !- Name + VAV_2_OA-VAV_2_CoolCNode,!- Mixed Air Node Name + VAV_2_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_2_OARelief Node, !- Relief Air Stream Node Name + VAV_2 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + VAV_3_OAMixing Box, !- Name + VAV_3_OA-VAV_3_CoolCNode,!- Mixed Air Node Name + VAV_3_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_3_OARelief Node, !- Relief Air Stream Node Name + VAV_3 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + SetpointManager:MixedAir, + VAV_1_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_1_CoolC-VAV_1_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_1_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + VAV_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_1_HeatC-VAV_1_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_1_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_1_OA-VAV_1_CoolCNode;!- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_2_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_2_CoolC-VAV_2_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_2_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + VAV_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_2_HeatC-VAV_2_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_2_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_2_OA-VAV_2_CoolCNode;!- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_3_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_3_CoolC-VAV_3_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_3_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + VAV_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_3_HeatC-VAV_3_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_3_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_3_OA-VAV_3_CoolCNode;!- Setpoint Node or NodeList Name + + AirLoopHVAC:SupplyPath, + VAV_1, !- Name + VAV_1 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_1 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_2, !- Name + VAV_2 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_2 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_3, !- Name + VAV_3 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_3 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + VAV_1 Supply Air Splitter, !- Name + VAV_1 Zone Equipment Inlet Node, !- Inlet Node Name + Core_bottom VAV Box Inlet Node Name, !- Outlet 1 Node Name + Perimeter_bot_ZN_1 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Perimeter_bot_ZN_2 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Perimeter_bot_ZN_3 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Perimeter_bot_ZN_4 VAV Box Inlet Node Name; !- Outlet 5 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_2 Supply Air Splitter, !- Name + VAV_2 Zone Equipment Inlet Node, !- Inlet Node Name + Core_mid VAV Box Inlet Node Name, !- Outlet 1 Node Name + Perimeter_mid_ZN_1 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Perimeter_mid_ZN_2 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Perimeter_mid_ZN_3 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Perimeter_mid_ZN_4 VAV Box Inlet Node Name; !- Outlet 5 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_3 Supply Air Splitter, !- Name + VAV_3 Zone Equipment Inlet Node, !- Inlet Node Name + Core_top VAV Box Inlet Node Name, !- Outlet 1 Node Name + Perimeter_top_ZN_1 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Perimeter_top_ZN_2 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Perimeter_top_ZN_3 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Perimeter_top_ZN_4 VAV Box Inlet Node Name; !- Outlet 5 Node Name + + AirLoopHVAC:ReturnPath, + VAV_1 Return Air Path, !- Name + VAV_1 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum,!- Component 1 Object Type + VAV_1 Return Plenum, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + VAV_1 Return Air Mixer; !- Component 2 Name + + AirLoopHVAC:ReturnPath, + VAV_2 Return Air Path, !- Name + VAV_2 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum,!- Component 1 Object Type + VAV_2 Return Plenum, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + VAV_2 Return Air Mixer; !- Component 2 Name + + AirLoopHVAC:ReturnPath, + VAV_3 Return Air Path, !- Name + VAV_3 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum,!- Component 1 Object Type + VAV_3 Return Plenum, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + VAV_3 Return Air Mixer; !- Component 2 Name + + AirLoopHVAC:ZoneMixer, + VAV_1 Return Air Mixer, !- Name + VAV_1 Zone Equipment Outlet Node, !- Outlet Node Name + FIRSTFLOOR_PLENUMPlenumOutletNode; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_2 Return Air Mixer, !- Name + VAV_2 Zone Equipment Outlet Node, !- Outlet Node Name + MIDFLOOR_PLENUMPlenumOutletNode; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_3 Return Air Mixer, !- Name + VAV_3 Zone Equipment Outlet Node, !- Outlet Node Name + TOPFLOOR_PLENUMPlenumOutletNode; !- Inlet 1 Node Name + +! ***SCHEDULES*** + + Schedule:Compact, + Dual Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + CLGSETP_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 19 + Until: 24:00,1000; !- Field 20 + + Schedule:Compact, + HTGSETP_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 06:00,15.6, !- Field 3 + Until: 22:00,21.0, !- Field 5 + Until: 24:00,15.6, !- Field 7 + For SummerDesignDay, !- Field 9 + Until: 24:00,15.6, !- Field 10 + For: Saturday, !- Field 12 + Until: 06:00,15.6, !- Field 13 + Until: 18:00,21.0, !- Field 15 + Until: 24:00,15.6, !- Field 17 + For: WinterDesignDay, !- Field 19 + Until: 24:00,21.0, !- Field 20 + For: AllOtherDays, !- Field 22 + Until: 24:00,15.6; !- Field 23 + + Schedule:Compact, + HVACOperationSchd, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00,0.0, !- Field 3 + Until: 22:00,1.0, !- Field 5 + Until: 24:00,0.0, !- Field 7 + For: Saturday WinterDesignDay, !- Field 9 + Until: 06:00,0.0, !- Field 10 + Until: 18:00,1.0, !- Field 12 + Until: 24:00,0.0, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,0.0; !- Field 17 + + Schedule:Compact, + MinOA_MotorizedDamper_Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 07:00,0.0, !- Field 3 + Until: 22:00,1.0, !- Field 5 + Until: 24:00,0.0, !- Field 7 + For: Saturday WinterDesignDay, !- Field 9 + Until: 07:00,0.0, !- Field 10 + Until: 18:00,1.0, !- Field 12 + Until: 24:00,0.0, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,0.0; !- Field 17 + + Schedule:Compact, + Seasonal-Reset-Supply-Air-Temp-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,12.8; !- Field 3 + +! ***SWH EQUIPMENT*** + + WaterHeater:Mixed, + SWHSys1 Water Heater, !- Name + 0.3785, !- Tank Volume {m3} + SWHSys1 Water Heater Setpoint Temperature Schedule Name, !- Setpoint Temperature Schedule Name + 2.0, !- Deadband Temperature Difference {deltaC} + 82.2222, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 845000, !- Heater Maximum Capacity {W} + , !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + NATURALGAS, !- Heater Fuel Type + 0.8, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 20, !- Off Cycle Parasitic Fuel Consumption Rate {W} + NATURALGAS, !- Off Cycle Parasitic Fuel Type + 0.8, !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate {W} + NATURALGAS, !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + SCHEDULE, !- Ambient Temperature Indicator + SWHSys1 Water Heater Ambient Temperature Schedule Name, !- Ambient Temperature Schedule Name + , !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 6.0, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Loss Fraction to Zone + 6.0, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate {m3/s} + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + SWHSys1 Pump-SWHSys1 Water HeaterNode, !- Use Side Inlet Node Name + SWHSys1 Supply Equipment Outlet Node, !- Use Side Outlet Node Name + 1.0, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1.0, !- Source Side Effectiveness + AUTOSIZE, !- Use Side Design Flow Rate {m3/s} + AUTOSIZE, !- Source Side Design Flow Rate {m3/s} + 1.5; !- Indirect Water Heating Recovery Time {hr} + + WaterUse:Equipment, + Core_bottom Water Equipment, !- Name + , !- End-Use Subcategory + 1.04e-005, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_bottom, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + + WaterUse:Equipment, + Core_mid Water Equipment,!- Name + , !- End-Use Subcategory + 1.04e-005, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_mid, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + + WaterUse:Equipment, + Core_top Water Equipment,!- Name + , !- End-Use Subcategory + 1.04e-005, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_top, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + + Pump:ConstantSpeed, + SWHSys1 Pump, !- Name + SWHSys1 Supply Inlet Node, !- Inlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Flow Rate {m3/s} + 179352, !- Design Pump Head {Pa} + AUTOSIZE, !- Design Power Consumption {W} + 0.85, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + ; !- Pump Flow Rate Schedule Name + + PlantEquipmentList, + SWHSys1 Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + SWHSys1 Water Heater; !- Equipment 1 Name + +! ***SWH SIZING & CONTROLS*** + + Sizing:Plant, + SWHSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature {C} + 5.0; !- Loop Design Temperature Difference {deltaC} + + SetpointManager:Scheduled, + SWHSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + SWHSys1-Loop-Temp-Schedule, !- Schedule Name + SWHSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + + PlantEquipmentOperationSchemes, + SWHSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + SWHSys1 Operation Scheme,!- Control Scheme 1 Name + ALWAYS_ON; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:HeatingLoad, + SWHSys1 Operation Scheme,!- Name + 0.0, !- Load Range 1 Lower Limit {W} + 1000000000000000, !- Load Range 1 Upper Limit {W} + SWHSys1 Equipment List; !- Range 1 Equipment List Name + +! ***SWH LOOP*** + + PlantLoop, + SWHSys1, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + SWHSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + SWHSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 60.0, !- Maximum Loop Temperature {C} + 10.0, !- Minimum Loop Temperature {C} + AUTOSIZE, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + AUTOSIZE, !- Plant Loop Volume {m3} + SWHSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + SWHSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + SWHSys1 Supply Branches, !- Plant Side Branch List Name + SWHSys1 Supply Connectors, !- Plant Side Connector List Name + SWHSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + SWHSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + SWHSys1 Demand Branches, !- Demand Side Branch List Name + SWHSys1 Demand Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + +! ***SWH CONNECTIONS*** + + BranchList, + SWHSys1 Demand Branches, !- Name + SWHSys1 Demand Inlet Branch, !- Branch 1 Name + SWHSys1 Demand Load Branch 1, !- Branch 2 Name + SWHSys1 Demand Load Branch 2, !- Branch 3 Name + SWHSys1 Demand Load Branch 3, !- Branch 4 Name + SWHSys1 Demand Bypass Branch, !- Branch 5 Name + SWHSys1 Demand Outlet Branch; !- Branch 6 Name + + BranchList, + SWHSys1 Supply Branches, !- Name + SWHSys1 Supply Inlet Branch, !- Branch 1 Name + SWHSys1 Supply Equipment Branch, !- Branch 2 Name + SWHSys1 Supply Equipment Bypass Branch, !- Branch 3 Name + SWHSys1 Supply Outlet Branch; !- Branch 4 Name + + Branch, + SWHSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Demand Bypass Pipe, !- Component 1 Name + SWHSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + SWHSys1 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Demand Inlet Pipe, !- Component 1 Name + SWHSys1 Demand Inlet Node, !- Component 1 Inlet Node Name + SWHSys1 Demand Inlet Pipe-SWHSys1 Demand Mixer; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Core_bottom Water Equipment, !- Component 1 Name + Core_bottom Water Equipment Water Inlet Node, !- Component 1 Inlet Node Name + Core_bottom Water Equipment Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Core_mid Water Equipment,!- Component 1 Name + Core_mid Water Equipment Water Inlet Node, !- Component 1 Inlet Node Name + Core_mid Water Equipment Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Core_top Water Equipment,!- Component 1 Name + Core_top Water Equipment Water Inlet Node, !- Component 1 Inlet Node Name + Core_top Water Equipment Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Demand Outlet Pipe, !- Component 1 Name + SWHSys1 Demand Mixer-SWHSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Demand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + WaterHeater:Mixed, !- Component 1 Object Type + SWHSys1 Water Heater, !- Component 1 Name + SWHSys1 Pump-SWHSys1 Water HeaterNode, !- Component 1 Inlet Node Name + SWHSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Supply Equipment Bypass Pipe, !- Component 1 Name + SWHSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name + SWHSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:ConstantSpeed, !- Component 1 Object Type + SWHSys1 Pump, !- Component 1 Name + SWHSys1 Supply Inlet Node, !- Component 1 Inlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNodeviaConnector; !- Component 1 Outlet Node Name + + Branch, + SWHSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SWHSys1 Supply Outlet Pipe, !- Component 1 Name + SWHSys1 Supply Mixer-SWHSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Supply Outlet Node; !- Component 1 Outlet Node Name + + ConnectorList, + SWHSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SWHSys1 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SWHSys1 Demand Mixer; !- Connector 2 Name + + ConnectorList, + SWHSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SWHSys1 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SWHSys1 Supply Mixer; !- Connector 2 Name + + WaterUse:Connections, + Core_bottom Water Equipment, !- Name + Core_bottom Water Equipment Water Inlet Node, !- Inlet Node Name + Core_bottom Water Equipment Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Core_bottom Water Equipment; !- Water Use Equipment 1 Name + + WaterUse:Connections, + Core_mid Water Equipment,!- Name + Core_mid Water Equipment Water Inlet Node, !- Inlet Node Name + Core_mid Water Equipment Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Core_mid Water Equipment;!- Water Use Equipment 1 Name + + WaterUse:Connections, + Core_top Water Equipment,!- Name + Core_top Water Equipment Water Inlet Node, !- Inlet Node Name + Core_top Water Equipment Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Core_top Water Equipment;!- Water Use Equipment 1 Name + + Connector:Splitter, + SWHSys1 Demand Splitter, !- Name + SWHSys1 Demand Inlet Branch, !- Inlet Branch Name + SWHSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + SWHSys1 Demand Load Branch 2, !- Outlet Branch 2 Name + SWHSys1 Demand Load Branch 3, !- Outlet Branch 3 Name + SWHSys1 Demand Bypass Branch; !- Outlet Branch 4 Name + + Connector:Splitter, + SWHSys1 Supply Splitter, !- Name + SWHSys1 Supply Inlet Branch, !- Inlet Branch Name + SWHSys1 Supply Equipment Branch, !- Outlet Branch 1 Name + SWHSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + SWHSys1 Demand Mixer, !- Name + SWHSys1 Demand Outlet Branch, !- Outlet Branch Name + SWHSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + SWHSys1 Demand Load Branch 2, !- Inlet Branch 2 Name + SWHSys1 Demand Load Branch 3, !- Inlet Branch 3 Name + SWHSys1 Demand Bypass Branch; !- Inlet Branch 4 Name + + Connector:Mixer, + SWHSys1 Supply Mixer, !- Name + SWHSys1 Supply Outlet Branch, !- Outlet Branch Name + SWHSys1 Supply Equipment Branch, !- Inlet Branch 1 Name + SWHSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + + Pipe:Adiabatic, + SWHSys1 Demand Bypass Pipe, !- Name + SWHSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + SWHSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SWHSys1 Demand Inlet Pipe, !- Name + SWHSys1 Demand Inlet Node, !- Inlet Node Name + SWHSys1 Demand Inlet Pipe-SWHSys1 Demand Mixer; !- Outlet Node Name + + Pipe:Adiabatic, + SWHSys1 Demand Outlet Pipe, !- Name + SWHSys1 Demand Mixer-SWHSys1 Demand Outlet Pipe, !- Inlet Node Name + SWHSys1 Demand Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SWHSys1 Supply Equipment Bypass Pipe, !- Name + SWHSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + SWHSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SWHSys1 Supply Outlet Pipe, !- Name + SWHSys1 Supply Mixer-SWHSys1 Supply Outlet Pipe, !- Inlet Node Name + SWHSys1 Supply Outlet Node; !- Outlet Node Name + +! ***SWH SCHEDULES*** + + Schedule:Compact, + BLDG_SWH_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 05:00,0.05, !- Field 3 + Until: 06:00,0.08, !- Field 5 + Until: 07:00,0.07, !- Field 7 + Until: 08:00,0.19, !- Field 9 + Until: 09:00,0.35, !- Field 11 + Until: 10:00,0.38, !- Field 13 + Until: 11:00,0.39, !- Field 15 + Until: 12:00,0.47, !- Field 17 + Until: 13:00,0.57, !- Field 19 + Until: 14:00,0.54, !- Field 21 + Until: 15:00,0.34, !- Field 23 + Until: 16:00,0.33, !- Field 25 + Until: 17:00,0.44, !- Field 27 + Until: 18:00,0.26, !- Field 29 + Until: 19:00,0.21, !- Field 31 + Until: 20:00,0.15, !- Field 33 + Until: 21:00,0.17, !- Field 35 + Until: 22:00,0.08, !- Field 37 + Until: 24:00,0.05, !- Field 39 + For: Saturday WinterDesignDay, !- Field 41 + Until: 05:00,0.05, !- Field 42 + Until: 06:00,0.08, !- Field 44 + Until: 07:00,0.07, !- Field 46 + Until: 08:00,0.11, !- Field 48 + Until: 09:00,0.15, !- Field 50 + Until: 10:00,0.21, !- Field 52 + Until: 11:00,0.19, !- Field 54 + Until: 12:00,0.23, !- Field 56 + Until: 13:00,0.20, !- Field 58 + Until: 14:00,0.19, !- Field 60 + Until: 15:00,0.15, !- Field 62 + Until: 16:00,0.13, !- Field 64 + Until: 17:00,0.14, !- Field 66 + Until: 21:00,0.07, !- Field 68 + Until: 22:00,0.09, !- Field 70 + Until: 24:00,0.05, !- Field 72 + For: Sunday Holidays AllOtherDays, !- Field 74 + Until: 05:00,0.04, !- Field 75 + Until: 06:00,0.07, !- Field 77 + Until: 11:00,0.04, !- Field 79 + Until: 13:00,0.06, !- Field 81 + Until: 14:00,0.09, !- Field 83 + Until: 15:00,0.06, !- Field 85 + Until: 21:00,0.04, !- Field 87 + Until: 22:00,0.07, !- Field 89 + Until: 24:00,0.04; !- Field 91 + + Schedule:Compact, + Water Equipment Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + Water Equipment Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + Water Equipment Hot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,43.3; !- Field 3 + + Schedule:Compact, + Water Equipment Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,43.3; !- Field 3 + + Schedule:Compact, + SWHSys1 Water Heater Ambient Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,22.0; !- Field 3 + + Schedule:Compact, + SWHSys1 Water Heater Setpoint Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + SWHSys1-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + +! ***ECONOMICS*** +! IN_EIAMonthlyRateGas, Source EIA historical Nov2003 thru Oct2004 +! Indiana 1999 state average electricity emissions factors based on eGRID, 1065, AirData +! PSI_CS_CommercialElectricService, source http://www.cinergypsi.com/pdfs/RateCS.pdf, effective 2004-05-24 +! PSI_LLF_LowLoadFactorService,source http://www.cinergypsi.com/pdfs/RATELLF.pdf, effective 2004-05-24 + + UtilityCost:Tariff, + PSI_LLF_LowLoadFactorService, !- Name + Electricity:Facility, !- Output Meter Name + kWh, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + HalfHour, !- Demand Window Length + 15.00, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Elect; !- Group Name + + UtilityCost:Charge:Block, + AnnualEnergyCharge, !- Utility Cost Charge Block Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + , !- Block Size Multiplier Value or Variable Name + 300, !- Block Size 1 Value or Variable Name + 0.108222, !- Block 1 Cost per Unit Value or Variable Name + 700, !- Block Size 2 Value or Variable Name + 0.087021, !- Block 2 Cost per Unit Value or Variable Name + 1500, !- Block Size 3 Value or Variable Name + 0.078420, !- Block 3 Cost per Unit Value or Variable Name + remaining, !- Block Size 4 Value or Variable Name + 0.058320; !- Block 4 Cost per Unit Value or Variable Name + + UtilityCost:Charge:Block, + AnnualDemandBaseCharge, !- Utility Cost Charge Block Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + TotalDemand, !- Block Size Multiplier Value or Variable Name + 190, !- Block Size 1 Value or Variable Name + 0.0, !- Block 1 Cost per Unit Value or Variable Name + 110, !- Block Size 2 Value or Variable Name + 0.051773, !- Block 2 Cost per Unit Value or Variable Name + remaining, !- Block Size 3 Value or Variable Name + 0.046965; !- Block 3 Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + FuelCostAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.002028; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + QualPollutionControlAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000536; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + SoxNoxRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.001127; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + DSMRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000370; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + PurchPowerTrackerAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000031; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + MidwestISOAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000216; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + CleanCoalRiderEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000833; !- Cost per Unit Value or Variable Name + + UtilityCost:Qualify, + MinDemand75kw, !- Utility Cost Qualify Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + TotalDemand, !- Variable Name + Minimum, !- Qualify Type + 75, !- Threshold Value or Variable Name + Annual, !- Season + Count, !- Threshold Test + 12; !- Number of Months + + UtilityCost:Charge:Simple, + TaxofeightPercent, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + +!end PSI_LLF_LowLoadFactorService + + UtilityCost:Tariff, + PSI_CS_CommercialElectricService, !- Name + Electricity:Facility, !- Output Meter Name + kWh, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + , !- Demand Window Length + 9.40, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Elect; !- Group Name + + UtilityCost:Charge:Block, + AnnualEnergyCharge, !- Utility Cost Charge Block Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + , !- Block Size Multiplier Value or Variable Name + 300, !- Block Size 1 Value or Variable Name + 0.082409, !- Block 1 Cost per Unit Value or Variable Name + 700, !- Block Size 2 Value or Variable Name + 0.072873, !- Block 2 Cost per Unit Value or Variable Name + 1500, !- Block Size 3 Value or Variable Name + 0.061696, !- Block 3 Cost per Unit Value or Variable Name + remaining, !- Block Size 4 Value or Variable Name + 0.041179; !- Block 4 Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + FuelCostAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.002028; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + QualPollutionControlAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000536; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + SoxNoxRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.001127; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + DSMRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000021; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + PurchPowerTrackerAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000034; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + MidwestISOAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000203; !- Cost per Unit Value or Variable Name + + UtilityCost:Charge:Simple, + CleanCoalRiderEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000807; !- Cost per Unit Value or Variable Name + + UtilityCost:Qualify, + MaxDemand75kw, !- Utility Cost Qualify Name + PSI_CS_CommercialElectricService, !- Tariff Name + TotalDemand, !- Variable Name + Maximum, !- Qualify Type + 75, !- Threshold Value or Variable Name + Annual, !- Season + Count, !- Threshold Test + 1; !- Number of Months + + UtilityCost:Charge:Simple, + TaxofeightPercent, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + + UtilityCost:Tariff, + IN_EIAMonthlyRateGas, !- Name + Gas:Facility, !- Output Meter Name + MCF, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + , !- Demand Window Length + 0.0, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Gas; !- Group Name + + UtilityCost:Charge:Simple, + MonthlyRateGasCharge, !- Utility Cost Charge Simple Name + IN_EIAMonthlyRateGas, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + IN_MonthlyGasRates; !- Cost per Unit Value or Variable Name + + UtilityCost:Variable, + IN_MonthlyGasRates, !- Name + IN_EIAMonthlyRateGas, !- Tariff Name + Currency, !- Variable Type + 8.22, !- January Value + 7.51, !- February Value + 8.97, !- March Value + 9.01, !- April Value + 9.16, !- May Value + 10.44, !- June Value + 10.32, !- July Value + 10.13, !- August Value + 9.20, !- September Value + 8.18, !- October Value + 7.83, !- November Value + 7.63; !- December Value + + UtilityCost:Charge:Simple, + TaxofEightPercent, !- Utility Cost Charge Simple Name + IN_EIAMonthlyRateGas, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + +! ***GENERAL REPORTING*** + + OutputControl:ReportingTolerances, + 0.556, !- Tolerance for Time Heating Setpoint Not Met {deltaC} + 0.556; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} + + Output:SQLite, + SimpleAndTabular; !- Option Type + + Output:VariableDictionary,IDF,Unsorted; + + Output:Surfaces:List,Details; + + Output:Surfaces:Drawing,DXF; + + Output:Constructions,Constructions; + +! ***REPORT METERS/VARIABLES*** + + Output:Meter,Electricity:Facility,HOURLY; + + Output:Meter,Fans:Electricity,HOURLY; + + Output:Meter,Cooling:Electricity,HOURLY; + + Output:Meter,Heating:Electricity,HOURLY; + + Output:Meter,InteriorLights:Electricity,HOURLY; + + Output:Meter,InteriorEquipment:Electricity,HOURLY; + + Output:Meter,Gas:Facility,HOURLY; + + Output:Meter,Heating:Gas,HOURLY; + + Output:Meter,Water Heater:WaterSystems:Gas,HOURLY; + + Output:Variable,*,Site Outdoor Air Drybulb Temperature,HOURLY; + + Output:Variable,*,Site Outdoor Air Humidity Ratio,HOURLY; + + Output:Variable,*,Site Outdoor Air Relative Humidity,HOURLY; + + Output:Variable,*,Boiler Gas Energy,HOURLY; + + Output:Variable,*,Boiler Inlet Temperature,HOURLY; + + Output:Variable,*,Boiler Outlet Temperature,HOURLY; + + Output:Variable,*,Boiler Part Load Ratio,HOURLY; + + Output:Variable,*,Plant System Cycle On Off Status,HOURLY; + + Output:Variable,*,Plant Supply Side Heating Demand Rate,HOURLY; + + Output:Variable,*,Plant Supply Side Inlet Mass Flow Rate,HOURLY; + + Output:Variable,*,Plant Supply Side Inlet Temperature,HOURLY; + + Output:Variable,*,Plant Supply Side Outlet Temperature,HOURLY; + + Output:Variable,*,Plant Supply Side Unmet Demand Rate,HOURLY; + + Output:Variable,*,Air System Heating Coil Hot Water Energy,HOURLY; + + Output:Variable,*,Air System Outdoor Air Flow Fraction,HOURLY; + + Output:Variable,*,Air System Simulation Cycle On Off Status,HOURLY; + + Output:Variable,*,Air System Outdoor Air Economizer Status,HOURLY; + + Output:Variable,*,Air System Total Heating Energy,HOURLY; + + Output:Variable,*,Air System Total Cooling Energy,HOURLY; + + Output:Variable,*,Air System Fan Electric Energy,HOURLY; + + Output:Variable,*,Zone Mean Air Temperature,hourly; + +! ***REPORT TABLES*** + + OutputControl:Table:Style, + HTML; !- Column Separator + + Output:Table:SummaryReports, + AnnualBuildingUtilityPerformanceSummary, !- Report 1 Name + InputVerificationandResultsSummary, !- Report 2 Name + ClimaticDataSummary, !- Report 3 Name + EnvelopeSummary, !- Report 4 Name + EquipmentSummary, !- Report 5 Name + ComponentSizingSummary, !- Report 6 Name + HVACSizingSummary, !- Report 7 Name + SystemSummary, + InitializationSummary; !- Report 8 Name + + Output:Table:Monthly, + Emissions Data Summary, !- Name + 4, !- Digits After Decimal + CO2:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + NOx:Facility, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + SO2:Facility, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + PM:Facility, !- Variable or Meter 4 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 4 + Hg:Facility, !- Variable or Meter 5 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 5 + WaterEnvironmentalFactors:Facility, !- Variable or Meter 6 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 6 + Carbon Equivalent:Facility, !- Variable or Meter 7 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 7 + + Output:Table:Monthly, + Components of Peak Electrical Demand, !- Name + 3, !- Digits After Decimal + Electricity:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Electricity:Facility, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + InteriorLights:Electricity, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + InteriorEquipment:Electricity, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + Fans:Electricity, !- Variable or Meter 5 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5 + Heating:Electricity, !- Variable or Meter 6 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6 + Cooling:Electricity, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + ExteriorLights:Electricity, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8 + Pumps:Electricity, !- Variable or Meter 9 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9 + HeatRejection:Electricity, !- Variable or Meter 10 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10 + ExteriorEquipment:Electricity, !- Variable or Meter 11 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11 + Humidification:Electricity, !- Variable or Meter 12 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12 + HeatRecovery:Electricity,!- Variable or Meter 13 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 13 + WaterSystems:Electricity,!- Variable or Meter 14 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 14 + Refrigeration:Electricity, !- Variable or Meter 15 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 15 + Generators:Electricity, !- Variable or Meter 16 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 16 + ElectricityProduced:Facility, !- Variable or Meter 17 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 17 + + Output:Table:Monthly, + Boiler Part Load Performance, !- Name + 2, !- Digits After Decimal + Boiler Part Load Ratio, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Boiler Part Load Ratio, !- Variable or Meter 2 Name + Maximum; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + Heating Part Load Performance, !- Name + 0, !- Digits After Decimal + Heating Coil Gas Rate, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating Coil Gas Rate, !- Variable or Meter 2 Name + Maximum; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + Cooling Part Load Performance, !- Name + 0, !- Digits After Decimal + Cooling Coil Electric Power, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Cooling Coil Electric Power, !- Variable or Meter 2 Name + Maximum; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + Fan Part Load Performance, !- Name + 0, !- Digits After Decimal + Fan Electric Power, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Fan Electric Power, !- Variable or Meter 2 Name + Maximum; !- Aggregation Type for Variable or Meter 2 + + Output:Table:TimeBins, + *, !- Key Value + Zone Air Relative Humidity, !- Variable Name + 60, !- Interval Start + 10, !- Interval Size + 4; !- Interval Count + + Output:Table:TimeBins, + *, !- Key Value + Air System Outdoor Air Flow Fraction, !- Variable Name + 0.00, !- Interval Start + 0.20, !- Interval Size + 5; !- Interval Count + + Output:Table:TimeBins, + *, !- Key Value + Availability Manager Night Cycle Control Status, !- Variable Name + 0, !- Interval Start + 1, !- Interval Size + 4; !- Interval Count + +! ***ENVIRONMENTAL FACTORS REPORTING*** + + Output:EnvironmentalImpactFactors, + Monthly; !- Reporting Frequency + + EnvironmentalImpactFactors, + 0.663, !- District Heating Efficiency + 4.18, !- District Cooling COP {W/W} + 0.585, !- Steam Conversion Efficiency + 80.7272, !- Total Carbon Equivalent Emission Factor From N2O {kg/kg} + 6.2727, !- Total Carbon Equivalent Emission Factor From CH4 {kg/kg} + 0.2727; !- Total Carbon Equivalent Emission Factor From CO2 {kg/kg} + +! Indiana electricity source and emission factors based on Deru and Torcellini 2007 + + FuelFactors, + Electricity, !- Existing Fuel Resource Name + kg, !- Units of Measure + , !- Energy per Unit Factor + 3.546, !- Source Energy Factor {J/J} + , !- Source Energy Schedule Name + 3.417E+02, !- CO2 Emission Factor {g/MJ} + , !- CO2 Emission Factor Schedule Name + 1.186E-01, !- CO Emission Factor {g/MJ} + , !- CO Emission Factor Schedule Name + 7.472E-01, !- CH4 Emission Factor {g/MJ} + , !- CH4 Emission Factor Schedule Name + 6.222E-01, !- NOx Emission Factor {g/MJ} + , !- NOx Emission Factor Schedule Name + 8.028E-03, !- N2O Emission Factor {g/MJ} + , !- N2O Emission Factor Schedule Name + 1.872E+00, !- SO2 Emission Factor {g/MJ} + , !- SO2 Emission Factor Schedule Name + 0.0, !- PM Emission Factor {g/MJ} + , !- PM Emission Factor Schedule Name + 1.739E-02, !- PM10 Emission Factor {g/MJ} + , !- PM10 Emission Factor Schedule Name + 0.0, !- PM2.5 Emission Factor {g/MJ} + , !- PM2.5 Emission Factor Schedule Name + 0.0, !- NH3 Emission Factor {g/MJ} + , !- NH3 Emission Factor Schedule Name + 1.019E-02, !- NMVOC Emission Factor {g/MJ} + , !- NMVOC Emission Factor Schedule Name + 5.639E-06, !- Hg Emission Factor {g/MJ} + , !- Hg Emission Factor Schedule Name + 2.778E-05, !- Pb Emission Factor {g/MJ} + , !- Pb Emission Factor Schedule Name + 0.4309556, !- Water Emission Factor {L/MJ} + , !- Water Emission Factor Schedule Name + 0, !- Nuclear High Level Emission Factor {g/MJ} + , !- Nuclear High Level Emission Factor Schedule Name + 0; !- Nuclear Low Level Emission Factor {m3/MJ} + +! Deru and Torcellini 2007 +! Source Energy and Emission Factors for Energy Use in Buildings +! NREL/TP-550-38617 +! source factor and Higher Heating Values from Table 5 +! post-combustion emission factors for boiler from Table 9 (with factor of 1000 correction for natural gas) + + FuelFactors, + NaturalGas, !- Existing Fuel Resource Name + m3, !- Units of Measure + 37631000, !- Energy per Unit Factor + 1.092, !- Source Energy Factor {J/J} + , !- Source Energy Schedule Name + 5.21E+01, !- CO2 Emission Factor {g/MJ} + , !- CO2 Emission Factor Schedule Name + 3.99E-02, !- CO Emission Factor {g/MJ} + , !- CO Emission Factor Schedule Name + 1.06E-03, !- CH4 Emission Factor {g/MJ} + , !- CH4 Emission Factor Schedule Name + 4.73E-02, !- NOx Emission Factor {g/MJ} + , !- NOx Emission Factor Schedule Name + 1.06E-03, !- N2O Emission Factor {g/MJ} + , !- N2O Emission Factor Schedule Name + 2.68E-04, !- SO2 Emission Factor {g/MJ} + , !- SO2 Emission Factor Schedule Name + 0.0, !- PM Emission Factor {g/MJ} + , !- PM Emission Factor Schedule Name + 3.59E-03, !- PM10 Emission Factor {g/MJ} + , !- PM10 Emission Factor Schedule Name + 0.0, !- PM2.5 Emission Factor {g/MJ} + , !- PM2.5 Emission Factor Schedule Name + 0, !- NH3 Emission Factor {g/MJ} + , !- NH3 Emission Factor Schedule Name + 2.61E-03, !- NMVOC Emission Factor {g/MJ} + , !- NMVOC Emission Factor Schedule Name + 1.11E-07, !- Hg Emission Factor {g/MJ} + , !- Hg Emission Factor Schedule Name + 2.13E-07, !- Pb Emission Factor {g/MJ} + , !- Pb Emission Factor Schedule Name + 0, !- Water Emission Factor {L/MJ} + , !- Water Emission Factor Schedule Name + 0, !- Nuclear High Level Emission Factor {g/MJ} + , !- Nuclear High Level Emission Factor Schedule Name + 0; !- Nuclear Low Level Emission Factor {m3/MJ} diff --git a/testfiles/ZoneCoupledKivaSlab.idf b/testfiles/ZoneCoupledKivaSlab.idf index b2ae06312d9..4a2628fa989 100644 --- a/testfiles/ZoneCoupledKivaSlab.idf +++ b/testfiles/ZoneCoupledKivaSlab.idf @@ -393,6 +393,7 @@ Foundation:Kiva, Slab Foundation, !- Name + , !- Initial Indoor Air Temperature , !- Interior Horizontal Insulation Material Name , !- Interior Horizontal Insulation Depth {m} , !- Interior Horizontal Insulation Width {m} diff --git a/testfiles/ZoneCoupledKivaWalkoutBasement.idf b/testfiles/ZoneCoupledKivaWalkoutBasement.idf index bc1d5c461bd..956c51be43b 100644 --- a/testfiles/ZoneCoupledKivaWalkoutBasement.idf +++ b/testfiles/ZoneCoupledKivaWalkoutBasement.idf @@ -756,6 +756,7 @@ Foundation:Kiva, Basement Foundation, !- Name + , !- Initial Indoor Air Temperature Basement Insulation, !- Interior Horizontal Insulation Material Name , !- Interior Horizontal Insulation Depth {m} 1, !- Interior Horizontal Insulation Width {m} diff --git a/testfiles/_5ZoneAirCooled_LeapYear_annual.idf b/testfiles/_5ZoneAirCooled_LeapYear_annual.idf new file mode 100644 index 00000000000..55186ee47dd --- /dev/null +++ b/testfiles/_5ZoneAirCooled_LeapYear_annual.idf @@ -0,0 +1,3439 @@ +!-Generator IDFEditor 1.34 +!-Option OriginalOrderTop UseSpecialFormat +!-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. +!- Use '!' comments if they need to be retained when using the IDFEditor. +! 5ZoneAirCooled.idf +! Basic file description: 1 story building divided into 4 exterior and one interior conditioned zones and return plenum. +! +! Highlights: Electric chiller with air cooled condenser; autosized preheating and precooling water coils in the +! outside air stream controlled to preheat and precool setpoints. +! +! Simulation Location/Run: CHICAGO_IL_USA TMY2-94846, 2 design days, 2 run periods, +! Run Control executes the run periods using the weather file +! +! Location: Chicago, IL +! +! Design Days: CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C +! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C +! +! Run Period (Weather File): 1/1 through 12/31, CHICAGO_IL_USA TMY2-94846 +! +! Run Control: Zone and System sizing with weather file run control (no design days run) +! +! Building: Single floor rectangular building 100 ft x 50 ft. 5 zones - 4 exterior, 1 interior, zone height 8 feet. +! Exterior zone depth is 12 feet. There is a 2 foot high return plenum: the overall building height is +! 10 feet. There are windows on all 4 facades; the south and north facades have glass doors. +! The south facing glass is shaded by overhangs. The walls are woodshingle over plywood, R11 insulation, +! and gypboard. The roof is a gravel built up roof with R-3 mineral board insulation and plywood sheathing. +! The windows are of various single and double pane construction with 3mm and 6mm glass and either 6mm or +! 13mm argon or air gap. The window to wall ratio is approximately 0.29. +! The south wall and door have overhangs. +! +! The building is oriented 30 degrees east of north. +! +! Floor Area: 463.6 m2 (5000 ft2) +! Number of Stories: 1 +! +! Zone Description Details: +! +! (0,15.2,0) (30.5,15.2,0) +! _____ ________ ____ +! |\ *** **************** /| +! | \ / | +! | \ (26.8,11.6,0) / | +! * \_____________________________/ * +! * |(3.7,11.6,0) | * +! * | | * +! * | | * +! * | (26.8,3.7,0)| * +! * |___________________________| * +! * / (3.7,3.7,0) \ * +! | / \ | +! | / \ | +! |/___******************___***________\| +! | Overhang | | +! |_______________________| | window/door = * +! |___| +! +! (0,0,0) (30.5,0,0) +! +! Internal gains description: lighting is 1.5 watts/ft2, office equip is 1.0 watts/ft2. There is 1 occupant +! per 100 ft2 of floor area. The infiltration is 0.25 air changes per hour. +! +! Interzone Surfaces: 6 interzone surfaces (see diagram) +! Internal Mass: None +! People: 50 +! Lights: 7500 W +! Windows: 4 ea.: 1) Double pane clear, 3mm glass, 13mm air gap +! 2) Double pane clear, 3mm glass, 13mm argon gap +! 3) Double pane clear, 6mm glass, 6mm air gap +! 4) Double pane lowE, 6mm lowE glass outside, 6mm air gap, 6mm clear glass +! +! Doors: 2 ea.: Single pane grey, 3mm glass +! +! Detached Shading: None +! Daylight: None +! Natural Ventilation: None +! Compact Schedules: Yes +! +! HVAC: Standard VAV system with outside air, hot water reheat coils, +! central chilled water cooling coil. Central Plant is single hot water +! boiler, electric compression chiller with air cooled condenser. +! All equipment is autosized. HW and ChW coils are used in the outside air +! stream to precondition the outside air. +! +! Zonal Equipment: AirTerminal:SingleDuct:VAV:Reheat +! Central Air Handling Equipment: Yes +! System Equipment Autosize: Yes +! Purchased Cooling: None +! Purchased Heating: None +! Coils: Coil:Cooling:Water, Coil:Heating:Water +! Pumps: Pump:VariableSpeed +! Boilers: Boiler:HotWater +! Chillers: Chiller:Electric +! +! Results: +! Standard Reports: None +! Timestep or Hourly Variables: Hourly +! Time bins Report: None +! HTML Report: None +! Environmental Emissions: None +! Utility Tariffs: None + + Version,9.2; + + Building, + Building, !- Name + 30., !- North Axis {deg} + City, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.4, !- Temperature Convergence Tolerance Value {deltaC} + FullExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + + Timestep,4; + + SurfaceConvectionAlgorithm:Inside,Simple; + + SurfaceConvectionAlgorithm:Outside,SimpleCombined; + + HeatBalanceAlgorithm,ConductionTransferFunction; + + GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + CounterClockWise, !- Vertex Entry Direction + relative; !- Coordinate System + + ScheduleTypeLimits, + Any Number; !- Name + + ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + CONTINUOUS, !- Numeric Type + Temperature; !- Unit Type + + ScheduleTypeLimits, + Control Type, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + FlowRate, !- Name + 0.0, !- Lower Limit Value + 10, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + RunPeriod, + RUNPERIOD 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + 2016, !- Begin Year + 12, !- End Month + 31, !- End Day of Month + 2016, !- End Year + Friday, !- Day of Week for Start Day + No, !- Use Weather File Holidays and Special Days + No, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + +RunPeriodControl:DaylightSavingTime, + 3/11, !- Start Date + 11/4; !- End Date + + Site:Location, + CHICAGO_IL_USA TMY2-94846, !- Name + 41.78, !- Latitude {deg} + -87.75, !- Longitude {deg} + -6.00, !- Time Zone {hr} + 190.00; !- Elevation {m} + + SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods + +! CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C + + SizingPeriod:DesignDay, + CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -17.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -17.3, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 0.0; !- Sky Clearness + +! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C + + SizingPeriod:DesignDay, + CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 31.5, !- Maximum Dry-Bulb Temperature {C} + 10.7, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 23.0, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.0; !- Sky Clearness + + Site:GroundTemperature:BuildingSurface,20.03,20.03,20.13,20.30,20.43,20.52,20.62,20.77,20.78,20.55,20.44,20.20; + + Material, + WD10, !- Name + MediumSmooth, !- Roughness + 0.667, !- Thickness {m} + 0.115, !- Conductivity {W/m-K} + 513, !- Density {kg/m3} + 1381, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.78, !- Solar Absorptance + 0.78; !- Visible Absorptance + + Material, + RG01, !- Name + Rough, !- Roughness + 1.2700000E-02, !- Thickness {m} + 1.442000, !- Conductivity {W/m-K} + 881.0000, !- Density {kg/m3} + 1674.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.6500000, !- Solar Absorptance + 0.6500000; !- Visible Absorptance + + Material, + BR01, !- Name + VeryRough, !- Roughness + 9.4999997E-03, !- Thickness {m} + 0.1620000, !- Conductivity {W/m-K} + 1121.000, !- Density {kg/m3} + 1464.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.7000000; !- Visible Absorptance + + Material, + IN46, !- Name + VeryRough, !- Roughness + 7.6200001E-02, !- Thickness {m} + 2.3000000E-02, !- Conductivity {W/m-K} + 24.00000, !- Density {kg/m3} + 1590.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.5000000, !- Solar Absorptance + 0.5000000; !- Visible Absorptance + + Material, + WD01, !- Name + MediumSmooth, !- Roughness + 1.9099999E-02, !- Thickness {m} + 0.1150000, !- Conductivity {W/m-K} + 513.0000, !- Density {kg/m3} + 1381.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7800000, !- Solar Absorptance + 0.7800000; !- Visible Absorptance + + Material, + PW03, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 0.1150000, !- Conductivity {W/m-K} + 545.0000, !- Density {kg/m3} + 1213.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7800000, !- Solar Absorptance + 0.7800000; !- Visible Absorptance + + Material, + IN02, !- Name + Rough, !- Roughness + 9.0099998E-02, !- Thickness {m} + 4.3000001E-02, !- Conductivity {W/m-K} + 10.00000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + GP01, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 0.1600000, !- Conductivity {W/m-K} + 801.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + GP02, !- Name + MediumSmooth, !- Roughness + 1.5900001E-02, !- Thickness {m} + 0.1600000, !- Conductivity {W/m-K} + 801.0000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + CC03, !- Name + MediumRough, !- Roughness + 0.1016000, !- Thickness {m} + 1.310000, !- Conductivity {W/m-K} + 2243.000, !- Density {kg/m3} + 837.0000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.6500000, !- Solar Absorptance + 0.6500000; !- Visible Absorptance + + Material:NoMass, + CP01, !- Name + Rough, !- Roughness + 0.3670000, !- Thermal Resistance {m2-K/W} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material:NoMass, + MAT-CLNG-1, !- Name + Rough, !- Roughness + 0.652259290, !- Thermal Resistance {m2-K/W} + 0.65, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + + Material:AirGap, + AL21, !- Name + 0.1570000; !- Thermal Resistance {m2-K/W} + + Material:AirGap, + AL23, !- Name + 0.1530000; !- Thermal Resistance {m2-K/W} + + Construction, + ROOF-1, !- Name + RG01, !- Outside Layer + BR01, !- Layer 2 + IN46, !- Layer 3 + WD01; !- Layer 4 + + Construction, + WALL-1, !- Name + WD01, !- Outside Layer + PW03, !- Layer 2 + IN02, !- Layer 3 + GP01; !- Layer 4 + + Construction, + CLNG-1, !- Name + MAT-CLNG-1; !- Outside Layer + + Construction, + FLOOR-SLAB-1, !- Name + CC03; !- Outside Layer + + Construction, + INT-WALL-1, !- Name + GP02, !- Outside Layer + AL21, !- Layer 2 + GP02; !- Layer 3 + + WindowMaterial:Gas, + AIR 13MM, !- Name + Air, !- Gas Type + 0.0127; !- Thickness {m} + + WindowMaterial:Glazing, + CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness {m} + 0.837, !- Solar Transmittance at Normal Incidence + 0.075, !- Front Side Solar Reflectance at Normal Incidence + 0.075, !- Back Side Solar Reflectance at Normal Incidence + 0.898, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0.081, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + GREY 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness {m} + 0.626, !- Solar Transmittance at Normal Incidence + 0.061, !- Front Side Solar Reflectance at Normal Incidence + 0.061, !- Back Side Solar Reflectance at Normal Incidence + 0.611, !- Visible Transmittance at Normal Incidence + 0.061, !- Front Side Visible Reflectance at Normal Incidence + 0.061, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + Construction, + Dbl Clr 3mm/13mm Air, !- Name + CLEAR 3MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + + Construction, + Sgl Grey 3mm, !- Name + GREY 3MM; !- Outside Layer + + Schedule:Compact, + OCCUPY-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2 + Until: 8:00,0.0, !- Field 3 + Until: 11:00,1.00, !- Field 5 + Until: 12:00,0.80, !- Field 7 + Until: 13:00,0.40, !- Field 9 + Until: 14:00,0.80, !- Field 11 + Until: 18:00,1.00, !- Field 13 + Until: 19:00,0.50, !- Field 15 + Until: 24:00,0.0, !- Field 17 + For: Weekends WinterDesignDay Holiday, !- Field 19 + Until: 24:00,0.0; !- Field 20 + + Schedule:Compact, + LIGHTS-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2 + Until: 8:00,0.05, !- Field 3 + Until: 9:00,0.9, !- Field 5 + Until: 10:00,0.95, !- Field 7 + Until: 11:00,1.00, !- Field 9 + Until: 12:00,0.95, !- Field 11 + Until: 13:00,0.8, !- Field 13 + Until: 14:00,0.9, !- Field 15 + Until: 18:00,1.00, !- Field 17 + Until: 19:00,0.60, !- Field 19 + Until: 21:00,0.20, !- Field 21 + Until: 24:00,0.05, !- Field 23 + For: Weekends WinterDesignDay Holiday, !- Field 25 + Until: 24:00,0.05; !- Field 26 + + Schedule:Compact, + EQUIP-1, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2 + Until: 8:00,0.02, !- Field 3 + Until: 9:00,0.4, !- Field 5 + Until: 14:00,0.9, !- Field 7 + Until: 15:00,0.8, !- Field 9 + Until: 16:00,0.7, !- Field 11 + Until: 18:00,0.5, !- Field 13 + Until: 20:00,0.3, !- Field 15 + Until: 24:00,0.02, !- Field 17 + For: Weekends WinterDesignDay Holiday, !- Field 19 + Until: 24:00,0.2; !- Field 20 + + Schedule:Compact, + INFIL-SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 10/31, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,0.0, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,1.0; !- Field 11 + + Schedule:Compact, + ActSchd, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,117.239997864; !- Field 3 + + !- Field 4 + + Schedule:Compact, + ShadeTransSch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 + + Zone, + PLENUM-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 0.609600067, !- Ceiling Height {m} + 283.2; !- Volume {m3} + + BuildingSurface:Detailed, + WALL-1PF, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,0.0,3.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 30.5,0.0,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WALL-1PR, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,0.0,3.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WALL-1PB, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 0.0,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + WALL-1PL, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 0.0,0.0,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + TOP-1, !- Name + ROOF, !- Surface Type + ROOF-1, !- Construction Name + PLENUM-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.00000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,3.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,3.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C1-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C1-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C2-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C2-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C3-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C3-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C4-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C4-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C5-1P, !- Name + FLOOR, !- Surface Type + CLNG-1, !- Construction Name + PLENUM-1, !- Zone Name + Surface, !- Outside Boundary Condition + C5-1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE1-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 239.247360229; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE1-1 Infil 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.032, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE1-1 People 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 11, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE1-1 Lights 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 1584, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE1-1 ElecEq 1, !- Name + SPACE1-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1056, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + FRONT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WF-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + FRONT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 3.0,0.0,2.1, !- X,Y,Z ==> Vertex 1 {m} + 3.0,0.0,0.9, !- X,Y,Z ==> Vertex 2 {m} + 16.8,0.0,0.9, !- X,Y,Z ==> Vertex 3 {m} + 16.8,0.0,2.1; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + DF-1, !- Name + GLASSDOOR, !- Surface Type + Sgl Grey 3mm, !- Construction Name + FRONT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.3,0.0,2.1, !- X,Y,Z ==> Vertex 1 {m} + 21.3,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 23.8,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 23.8,0.0,2.1; !- X,Y,Z ==> Vertex 4 {m} + + Shading:Zone:Detailed, + Main South Overhang, !- Name + FRONT-1, !- Base Surface Name + ShadeTransSch, !- Transmittance Schedule Name + 4, !- Number of Vertices + 0.0,-1.3,2.2, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.2, !- X,Y,Z ==> Vertex 2 {m} + 19.8,0.0,2.2, !- X,Y,Z ==> Vertex 3 {m} + 19.8,-1.3,2.2; !- X,Y,Z ==> Vertex 4 {m} + + Shading:Zone:Detailed, + South Door Overhang, !- Name + FRONT-1, !- Base Surface Name + ShadeTransSch, !- Transmittance Schedule Name + 4, !- Number of Vertices + 21.0,-2.0,2.6, !- X,Y,Z ==> Vertex 1 {m} + 21.0,0.0,2.6, !- X,Y,Z ==> Vertex 2 {m} + 24.1,0.0,2.6, !- X,Y,Z ==> Vertex 3 {m} + 24.1,-2.0,2.6; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C1-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + C1-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F1-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE1-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB12, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB21, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB14, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB41, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB15, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE1-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB51, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE2-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 103.311355591; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE2-1 Infil 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.014, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE2-1 People 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 5, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE2-1 Lights 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 684, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE2-1 ElecEq 1, !- Name + SPACE2-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 456, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + RIGHT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WR-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + RIGHT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 30.5,3.8,2.1, !- X,Y,Z ==> Vertex 1 {m} + 30.5,3.8,0.9, !- X,Y,Z ==> Vertex 2 {m} + 30.5,11.4,0.9, !- X,Y,Z ==> Vertex 3 {m} + 30.5,11.4,2.1; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C2-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + C2-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F2-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE2-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB21, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB12, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB23, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB32, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB25, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE2-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB52, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE3-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 239.247360229; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE3-1 Infil 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.032, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE3-1 People 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 11, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE3-1 Lights 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 1584, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE3-1 ElecEq 1, !- Name + SPACE3-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1056, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + BACK-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WB-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + BACK-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.4,15.2,2.1, !- X,Y,Z ==> Vertex 1 {m} + 27.4,15.2,0.9, !- X,Y,Z ==> Vertex 2 {m} + 13.7,15.2,0.9, !- X,Y,Z ==> Vertex 3 {m} + 13.7,15.2,2.1; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + DB-1, !- Name + GLASSDOOR, !- Surface Type + Sgl Grey 3mm, !- Construction Name + BACK-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 9.1,15.2,2.1, !- X,Y,Z ==> Vertex 1 {m} + 9.1,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 7.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 7.0,15.2,2.1; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C3-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + C3-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 30.5,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F3-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE3-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB32, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB23, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 30.5,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB34, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB43, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB35, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE3-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB53, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE4-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 103.311355591; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE4-1 Infil 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.014, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE4-1 People 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 5, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE4-1 Lights 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 684, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE4-1 ElecEq 1, !- Name + SPACE4-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 456, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + LEFT-1, !- Name + WALL, !- Surface Type + WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.50000, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + WL-1, !- Name + WINDOW, !- Surface Type + Dbl Clr 3mm/13mm Air, !- Construction Name + LEFT-1, !- Building Surface Name + , !- Outside Boundary Condition Object + 0.50000, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 0.0,11.4,2.1, !- X,Y,Z ==> Vertex 1 {m} + 0.0,11.4,0.9, !- X,Y,Z ==> Vertex 2 {m} + 0.0,3.8,0.9, !- X,Y,Z ==> Vertex 3 {m} + 0.0,3.8,2.1; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + C4-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + C4-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m} + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F4-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE4-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB41, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB14, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.0,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m} + 0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB43, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB34, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.0,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m} + 0.0,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB45, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE4-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB54, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Zone, + SPACE5-1, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + 2.438400269, !- Ceiling Height {m} + 447.682556152; !- Volume {m3} + + ZoneInfiltration:DesignFlowRate, + SPACE5-1 Infil 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + INFIL-SCH, !- Schedule Name + flow/zone, !- Design Flow Rate Calculation Method + 0.062, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.2237, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + + People, + SPACE5-1 People 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + OCCUPY-1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 20, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + , !- Sensible Heat Fraction + ActSchd; !- Activity Level Schedule Name + + Lights, + SPACE5-1 Lights 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + LIGHTS-1, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 2964, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2, !- Return Air Fraction + 0.59, !- Fraction Radiant + 0.2, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + SPACE5-1 ElecEq 1, !- Name + SPACE5-1, !- Zone or ZoneList Name + EQUIP-1, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1976, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0; !- Fraction Lost + + BuildingSurface:Detailed, + C5-1, !- Name + CEILING, !- Surface Type + CLNG-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + C5-1P, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + F5-1, !- Name + FLOOR, !- Surface Type + FLOOR-SLAB-1, !- Construction Name + SPACE5-1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB51, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB15, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB52, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB25, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 26.8,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB53, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB35, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 26.8,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + SB54, !- Name + WALL, !- Surface Type + INT-WALL-1, !- Construction Name + SPACE5-1, !- Zone Name + Surface, !- Outside Boundary Condition + SB45, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 3.7,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m} + 3.7,11.6,0.0, !- X,Y,Z ==> Vertex 2 {m} + 3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m} + 3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m} + + Sizing:Parameters, + 1.0, !- Heating Sizing Factor + 1.0, !- Cooling Sizing Factor + ; !- Timesteps in Averaging Window + + Sizing:Zone, + SPACE1-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE1-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE1-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE2-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE2-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE2-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE3-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE3-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE3-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE4-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE4-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE4-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + SPACE5-1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14., !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50., !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA SPACE5-1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA SPACE5-1, !- Name + sum, !- Outdoor Air Method + 0.00236, !- Outdoor Air Flow per Person {m3/s-person} + 0.000305, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:System, + VAV Sys 1, !- AirLoop Name + sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 4.5, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 11.0, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 16.7, !- Central Heating Design Supply Air Temperature {C} + noncoincident, !- Type of Zone Sum to Use + no, !- 100% Outdoor Air in Cooling + no, !- 100% Outdoor Air in Heating + 0.008, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + , !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + VAV; !- Central Cooling Capacity Control Method + + Sizing:Plant, + Hot Water Loop, !- Plant or Condenser Loop Name + heating, !- Loop Type + 82., !- Design Loop Exit Temperature {C} + 11; !- Loop Design Temperature Difference {deltaC} + + Sizing:Plant, + Chilled Water Loop, !- Plant or Condenser Loop Name + cooling, !- Loop Type + 7.00, !- Design Loop Exit Temperature {C} + 4.00; !- Loop Design Temperature Difference {deltaC} + + Schedule:Compact, + Htg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,16.7, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,22.2, !- Field 6 + For: WeekDays, !- Field 8 + Until: 6:00,16.7, !- Field 9 + Until: 20:00,22.2, !- Field 11 + Until: 24:00,16.7, !- Field 13 + For: WeekEnds Holiday, !- Field 15 + Until: 24:00,16.7, !- Field 16 + For: AllOtherDays, !- Field 18 + Until: 24:00,16.7; !- Field 19 + + Schedule:Compact, + PlenumHtg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,12.8; !- Field 3 + + Schedule:Compact, + Clg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,23.9, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.4, !- Field 6 + For: WeekDays, !- Field 8 + Until: 6:00,29.4, !- Field 9 + Until: 20:00,23.9, !- Field 11 + Until: 24:00,29.4, !- Field 13 + For: WeekEnds Holiday, !- Field 15 + Until: 24:00,29.4, !- Field 16 + For: AllOtherDays, !- Field 18 + Until: 24:00,29.4; !- Field 19 + + Schedule:Compact, + PlenumClg-SetP-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,40.0; !- Field 3 + + Schedule:Compact, + Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,2, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,1, !- Field 6 + For: AllOtherDays, !- Field 8 + Until: 24:00,4; !- Field 9 + + Schedule:Compact, + Min OA Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 6:00,0.02, !- Field 3 + Until: 20:00,1.0, !- Field 5 + Until: 24:00,0.02, !- Field 7 + For: AllOtherDays, !- Field 9 + Until: 24:00,0.02; !- Field 10 + + Schedule:Compact, + FanAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 9/30, !- Field 5 + For: WeekDays, !- Field 6 + Until: 6:00,0.0, !- Field 7 + Until: 20:00,1.0, !- Field 9 + Until: 24:00,0.0, !- Field 11 + For: SummerDesignDay WinterDesignDay, !- Field 13 + Until: 24:00,1.0, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,0.0, !- Field 17 + Through: 12/31, !- Field 19 + For: AllDays, !- Field 20 + Until: 24:00,1.0; !- Field 21 + + Schedule:Compact, + CoolingCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays, !- Field 2 + Until: 6:00,0.0, !- Field 3 + Until: 20:00,1.0, !- Field 5 + Until: 24:00,0.0, !- Field 7 + For: SummerDesignDay WinterDesignDay, !- Field 9 + Until: 24:00,1.0, !- Field 10 + For: AllOtherDays, !- Field 12 + Until: 24:00,0.0; !- Field 13 + + Schedule:Compact, + CoolingPumpAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + ReheatCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 9/30, !- Field 5 + For: WeekDays, !- Field 6 + Until: 6:00,0.0, !- Field 7 + Until: 20:00,1.0, !- Field 9 + Until: 24:00,0.0, !- Field 11 + For: SummerDesignDay WinterDesignDay, !- Field 13 + Until: 24:00,1.0, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,0.0, !- Field 17 + Through: 12/31, !- Field 19 + For: AllDays, !- Field 20 + Until: 24:00,1.0; !- Field 21 + + Schedule:Compact, + CW Loop Temp Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,7.22; !- Field 3 + + Schedule:Compact, + HW Loop Temp Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,82; !- Field 3 + + Schedule:Compact, + PlantOnSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + Seasonal Reset Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,16.0, !- Field 3 + Through: 9/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,13.0, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,16.0; !- Field 11 + + Schedule:Compact, + OA Cooling Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,11.5; !- Field 3 + + Schedule:Compact, + OA Heating Supply Air Temp Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4.5; !- Field 3 + + OutdoorAir:NodeList, + OutsideAirInletNodes; !- Node or NodeList Name 1 + + NodeList, + OutsideAirInletNodes, !- Name + Outside Air Inlet Node 1;!- Node 1 Name + + ZoneHVAC:EquipmentConnections, + SPACE1-1, !- Zone Name + SPACE1-1 Eq, !- Zone Conditioning Equipment List Name + SPACE1-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE1-1 Node, !- Zone Air Node Name + SPACE1-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + SPACE2-1, !- Zone Name + SPACE2-1 Eq, !- Zone Conditioning Equipment List Name + SPACE2-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE2-1 Node, !- Zone Air Node Name + SPACE2-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + SPACE3-1, !- Zone Name + SPACE3-1 Eq, !- Zone Conditioning Equipment List Name + SPACE3-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE3-1 Node, !- Zone Air Node Name + SPACE3-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + SPACE4-1, !- Zone Name + SPACE4-1 Eq, !- Zone Conditioning Equipment List Name + SPACE4-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE4-1 Node, !- Zone Air Node Name + SPACE4-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + SPACE5-1, !- Zone Name + SPACE5-1 Eq, !- Zone Conditioning Equipment List Name + SPACE5-1 In Node, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + SPACE5-1 Node, !- Zone Air Node Name + SPACE5-1 Out Node; !- Zone Return Air Node or NodeList Name + + ZoneControl:Thermostat, + SPACE1-1 Control, !- Name + SPACE1-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ZoneControl:Thermostat, + SPACE2-1 Control, !- Name + SPACE2-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ZoneControl:Thermostat, + SPACE3-1 Control, !- Name + SPACE3-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ZoneControl:Thermostat, + SPACE4-1 Control, !- Name + SPACE4-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ZoneControl:Thermostat, + SPACE5-1 Control, !- Name + SPACE5-1, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleCooling, !- Control 1 Object Type + CoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + HeatingSetpoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + DualSetPoint; !- Control 3 Name + + ThermostatSetpoint:SingleHeating, + HeatingSetpoint, !- Name + Htg-SetP-Sch; !- Setpoint Temperature Schedule Name + + ThermostatSetpoint:SingleCooling, + CoolingSetpoint, !- Name + Clg-SetP-Sch; !- Setpoint Temperature Schedule Name + + ThermostatSetpoint:SingleHeating, + PlenumHeatingSetpoint, !- Name + PlenumHtg-SetP-Sch; !- Setpoint Temperature Schedule Name + + ThermostatSetpoint:SingleCooling, + PlenumCoolingSetpoint, !- Name + PlenumClg-SetP-Sch; !- Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + DualSetPoint, !- Name + Htg-SetP-Sch, !- Heating Setpoint Temperature Schedule Name + Clg-SetP-Sch; !- Cooling Setpoint Temperature Schedule Name + + ZoneHVAC:EquipmentList, + SPACE1-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE1-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:EquipmentList, + SPACE2-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE2-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:EquipmentList, + SPACE3-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE3-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:EquipmentList, + SPACE4-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE4-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:EquipmentList, + SPACE5-1 Eq, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + SPACE5-1 ATU, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Load Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Load Fraction Schedule Name + + ZoneHVAC:AirDistributionUnit, + SPACE1-1 ATU, !- Name + SPACE1-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE1-1 VAV Reheat; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + SPACE2-1 ATU, !- Name + SPACE2-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE2-1 VAV Reheat; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + SPACE3-1 ATU, !- Name + SPACE3-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE3-1 VAV Reheat; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + SPACE4-1 ATU, !- Name + SPACE4-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE4-1 VAV Reheat; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + SPACE5-1 ATU, !- Name + SPACE5-1 In Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + SPACE5-1 VAV Reheat; !- Air Terminal Name + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE1-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE1-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE1-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE1-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE1-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE2-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE2-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE2-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE2-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE2-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE3-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE3-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE3-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE3-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE3-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE4-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE4-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE4-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE4-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE4-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + AirTerminal:SingleDuct:VAV:Reheat, + SPACE5-1 VAV Reheat, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + SPACE5-1 Zone Coil Air In Node, !- Damper Air Outlet Node Name + SPACE5-1 ATU In Node, !- Air Inlet Node Name + autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + SPACE5-1 Zone Coil, !- Reheat Coil Name + autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + SPACE5-1 In Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + AUTOCALCULATE, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AUTOCALCULATE; !- Maximum Flow Fraction During Reheat + + Coil:Heating:Water, + SPACE1-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE1-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE1-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE1-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE1-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + SPACE2-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE2-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE2-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE2-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE2-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + SPACE3-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE3-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE3-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE3-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE3-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + SPACE4-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE4-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE4-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE4-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE4-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + SPACE5-1 Zone Coil, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + SPACE5-1 Zone Coil Water In Node, !- Water Inlet Node Name + SPACE5-1 Zone Coil Water Out Node, !- Water Outlet Node Name + SPACE5-1 Zone Coil Air In Node, !- Air Inlet Node Name + SPACE5-1 In Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + AirLoopHVAC:ReturnPath, + ReturnAirPath1, !- Name + PLENUM-1 Out Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum,!- Component 1 Object Type + Return-Plenum-1; !- Component 1 Name + + AirLoopHVAC:ReturnPlenum, + Return-Plenum-1, !- Name + PLENUM-1, !- Zone Name + PLENUM-1 Node, !- Zone Node Name + PLENUM-1 Out Node, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + SPACE1-1 Out Node, !- Inlet 1 Node Name + SPACE2-1 Out Node, !- Inlet 2 Node Name + SPACE3-1 Out Node, !- Inlet 3 Node Name + SPACE4-1 Out Node, !- Inlet 4 Node Name + SPACE5-1 Out Node; !- Inlet 5 Node Name + + AirLoopHVAC:SupplyPath, + Zone Supply Air Path 1, !- Name + Zone Eq In Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + Zone Supply Air Splitter 1; !- Component 1 Name + + AirLoopHVAC:ZoneSplitter, + Zone Supply Air Splitter 1, !- Name + Zone Eq In Node, !- Inlet Node Name + SPACE1-1 ATU In Node, !- Outlet 1 Node Name + SPACE2-1 ATU In Node, !- Outlet 2 Node Name + SPACE3-1 ATU In Node, !- Outlet 3 Node Name + SPACE4-1 ATU In Node, !- Outlet 4 Node Name + SPACE5-1 ATU In Node; !- Outlet 5 Node Name + + AirLoopHVAC, + VAV Sys 1, !- Name + VAV Sys 1 Controllers, !- Controller List Name + VAV Sys 1 Avail List, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + VAV Sys 1 Branches, !- Branch List Name + , !- Connector List Name + VAV Sys 1 Inlet Node, !- Supply Side Inlet Node Name + PLENUM-1 Out Node, !- Demand Side Outlet Node Name + Zone Eq In Node, !- Demand Side Inlet Node Names + VAV Sys 1 Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC:ControllerList, + VAV Sys 1 Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + Central Cooling Coil Controller 1, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + Central Heating Coil Controller 1; !- Controller 2 Name + + AvailabilityManagerAssignmentList, + VAV Sys 1 Avail List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + VAV Sys 1 Avail; !- Availability Manager 1 Name + + AvailabilityManager:Scheduled, + VAV Sys 1 Avail, !- Name + FanAvailSched; !- Schedule Name + + BranchList, + VAV Sys 1 Branches, !- Name + VAV Sys 1 Main Branch; !- Branch 1 Name + + Branch, + VAV Sys 1 Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + OA Sys 1, !- Component 1 Name + VAV Sys 1 Inlet Node, !- Component 1 Inlet Node Name + Mixed Air Node 1, !- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + Main Cooling Coil 1, !- Component 2 Name + Mixed Air Node 1, !- Component 2 Inlet Node Name + Main Cooling Coil 1 Outlet Node, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + Main Heating Coil 1, !- Component 3 Name + Main Cooling Coil 1 Outlet Node, !- Component 3 Inlet Node Name + Main Heating Coil 1 Outlet Node, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + Supply Fan 1, !- Component 4 Name + Main Heating Coil 1 Outlet Node, !- Component 4 Inlet Node Name + VAV Sys 1 Outlet Node; !- Component 4 Outlet Node Name + + AirLoopHVAC:OutdoorAirSystem, + OA Sys 1, !- Name + OA Sys 1 Controllers, !- Controller List Name + OA Sys 1 Equipment, !- Outdoor Air Equipment List Name + VAV Sys 1 Avail List; !- Availability Manager List Name + + AirLoopHVAC:ControllerList, + OA Sys 1 Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + OA Controller 1, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + OA CC Controller 1, !- Controller 2 Name + Controller:WaterCoil, !- Controller 3 Object Type + OA HC Controller 1; !- Controller 3 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA Sys 1 Equipment, !- Name + Coil:Heating:Water, !- Component 1 Object Type + OA Heating Coil 1, !- Component 1 Name + Coil:Cooling:Water, !- Component 2 Object Type + OA Cooling Coil 1, !- Component 2 Name + OutdoorAir:Mixer, !- Component 3 Object Type + OA Mixing Box 1; !- Component 3 Name + + Coil:Heating:Water, + OA Heating Coil 1, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + OA Heating Coil 1 Water Inlet Node, !- Water Inlet Node Name + OA Heating Coil 1 Water Outlet Node, !- Water Outlet Node Name + Outside Air Inlet Node 1,!- Air Inlet Node Name + OA Heating Coil 1 Air Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Coil:Cooling:Water, + OA Cooling Coil 1, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + autosize, !- Design Inlet Water Temperature {C} + autosize, !- Design Inlet Air Temperature {C} + autosize, !- Design Outlet Air Temperature {C} + autosize, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + autosize, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + OA Cooling Coil 1 Water Inlet Node, !- Water Inlet Node Name + OA Cooling Coil 1 Water Outlet Node, !- Water Outlet Node Name + OA Heating Coil 1 Air Outlet Node, !- Air Inlet Node Name + OA Mixing Box 1 Inlet Node, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow, !- Heat Exchanger Configuration + , !- Condensate Collection Water Storage Tank Name + 4.0; !- Design Water Temperature Difference {deltaC} + + OutdoorAir:Mixer, + OA Mixing Box 1, !- Name + Mixed Air Node 1, !- Mixed Air Node Name + OA Mixing Box 1 Inlet Node, !- Outdoor Air Stream Node Name + Relief Air Outlet Node 1,!- Relief Air Stream Node Name + VAV Sys 1 Inlet Node; !- Return Air Stream Node Name + + Coil:Cooling:Water, + Main Cooling Coil 1, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + autosize, !- Design Inlet Water Temperature {C} + autosize, !- Design Inlet Air Temperature {C} + autosize, !- Design Outlet Air Temperature {C} + autosize, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + autosize, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + Main Cooling Coil 1 Water Inlet Node, !- Water Inlet Node Name + Main Cooling Coil 1 Water Outlet Node, !- Water Outlet Node Name + Mixed Air Node 1, !- Air Inlet Node Name + Main Cooling Coil 1 Outlet Node, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow, !- Heat Exchanger Configuration + , !- Condensate Collection Water Storage Tank Name + 4.0; !- Design Water Temperature Difference {deltaC} + + Coil:Heating:Water, + Main Heating Coil 1, !- Name + ReheatCoilAvailSched, !- Availability Schedule Name + autosize, !- U-Factor Times Area Value {W/K} + autosize, !- Maximum Water Flow Rate {m3/s} + Main Heating Coil 1 Water Inlet Node, !- Water Inlet Node Name + Main Heating Coil 1 Water Outlet Node, !- Water Outlet Node Name + Main Cooling Coil 1 Outlet Node, !- Air Inlet Node Name + Main Heating Coil 1 Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + , !- Rated Ratio for Air and Water Convection + 11; !- Design Water Temperature Difference {deltaC} + + Fan:VariableVolume, + Supply Fan 1, !- Name + FanAvailSched, !- Availability Schedule Name + 0.7, !- Fan Total Efficiency + 600.0, !- Pressure Rise {Pa} + autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} + 0.9, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.35071223, !- Fan Power Coefficient 1 + 0.30850535, !- Fan Power Coefficient 2 + -0.54137364, !- Fan Power Coefficient 3 + 0.87198823, !- Fan Power Coefficient 4 + 0.000, !- Fan Power Coefficient 5 + Main Heating Coil 1 Outlet Node, !- Air Inlet Node Name + VAV Sys 1 Outlet Node; !- Air Outlet Node Name + + Controller:WaterCoil, + OA HC Controller 1, !- Name + Temperature, !- Control Variable + Normal, !- Action + FLOW, !- Actuator Variable + OA Heating Coil 1 Air Outlet Node, !- Sensor Node Name + OA Heating Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + OA CC Controller 1, !- Name + Temperature, !- Control Variable + Reverse, !- Action + FLOW, !- Actuator Variable + OA Mixing Box 1 Inlet Node, !- Sensor Node Name + OA Cooling Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + Central Cooling Coil Controller 1, !- Name + Temperature, !- Control Variable + Reverse, !- Action + FLOW, !- Actuator Variable + Main Cooling Coil 1 Outlet Node, !- Sensor Node Name + Main Cooling Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:OutdoorAir, + OA Controller 1, !- Name + Relief Air Outlet Node 1,!- Relief Air Outlet Node Name + VAV Sys 1 Inlet Node, !- Return Air Node Name + Mixed Air Node 1, !- Mixed Air Node Name + Outside Air Inlet Node 1,!- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 19., !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + 4.6, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + Min OA Sched; !- Minimum Outdoor Air Schedule Name + + Controller:WaterCoil, + Central Heating Coil Controller 1, !- Name + Temperature, !- Control Variable + Normal, !- Action + FLOW, !- Actuator Variable + Main Heating Coil 1 Outlet Node, !- Sensor Node Name + Main Heating Coil 1 Water Inlet Node, !- Actuator Node Name + 0.002, !- Controller Convergence Tolerance {deltaC} + autosize, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + SetpointManager:Scheduled, + Supply Air Temp Manager 1, !- Name + Temperature, !- Control Variable + Seasonal Reset Supply Air Temp Sch, !- Schedule Name + VAV Sys 1 Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + OA Air Temp Manager 1, !- Name + Temperature, !- Control Variable + OA Cooling Supply Air Temp Sch, !- Schedule Name + OA Mixing Box 1 Inlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + OA Air Temp Manager 2, !- Name + Temperature, !- Control Variable + OA Heating Supply Air Temp Sch, !- Schedule Name + OA Heating Coil 1 Air Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + Mixed Air Temp Manager 1,!- Name + Temperature, !- Control Variable + VAV Sys 1 Outlet Node, !- Reference Setpoint Node Name + Main Heating Coil 1 Outlet Node, !- Fan Inlet Node Name + VAV Sys 1 Outlet Node, !- Fan Outlet Node Name + Main Branch SetPoint Node List; !- Setpoint Node or NodeList Name + + NodeList, + Main Branch SetPoint Node List, !- Name + Mixed Air Node 1, !- Node 1 Name + Main Cooling Coil 1 Outlet Node, !- Node 2 Name + Main Heating Coil 1 Outlet Node; !- Node 3 Name + + PlantLoop, + Hot Water Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Hot Loop Operation, !- Plant Equipment Operation Scheme Name + HW Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + , !- Plant Loop Volume {m3} + HW Supply Inlet Node, !- Plant Side Inlet Node Name + HW Supply Outlet Node, !- Plant Side Outlet Node Name + Heating Supply Side Branches, !- Plant Side Branch List Name + Heating Supply Side Connectors, !- Plant Side Connector List Name + HW Demand Inlet Node, !- Demand Side Inlet Node Name + HW Demand Outlet Node, !- Demand Side Outlet Node Name + Heating Demand Side Branches, !- Demand Side Branch List Name + Heating Demand Side Connectors, !- Demand Side Connector List Name + SequentialLoad; !- Load Distribution Scheme + + SetpointManager:Scheduled, + Hot Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + HW Loop Temp Schedule, !- Schedule Name + HW Supply Outlet Node; !- Setpoint Node or NodeList Name + + BranchList, + Heating Supply Side Branches, !- Name + Heating Supply Inlet Branch, !- Branch 1 Name + Central Boiler Branch, !- Branch 2 Name + Heating Supply Bypass Branch, !- Branch 3 Name + Heating Supply Outlet Branch; !- Branch 4 Name + + ConnectorList, + Heating Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heating Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heating Supply Mixer; !- Connector 2 Name + + Branch, + Heating Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + HW Circ Pump, !- Component 1 Name + HW Supply Inlet Node, !- Component 1 Inlet Node Name + HW Pump Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Central Boiler Branch, !- Name + , !- Pressure Drop Curve Name + Boiler:HotWater, !- Component 1 Object Type + Central Boiler, !- Component 1 Name + Central Boiler Inlet Node, !- Component 1 Inlet Node Name + Central Boiler Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heating Supply Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Supply Side Bypass, !- Component 1 Name + Heating Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + Heating Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Supply Side Bypass, !- Name + Heating Supply Bypass Inlet Node, !- Inlet Node Name + Heating Supply Bypass Outlet Node; !- Outlet Node Name + + Branch, + Heating Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Supply Outlet, !- Component 1 Name + Heating Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + HW Supply Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Supply Outlet, !- Name + Heating Supply Exit Pipe Inlet Node, !- Inlet Node Name + HW Supply Outlet Node; !- Outlet Node Name + + BranchList, + Heating Demand Side Branches, !- Name + Heating Demand Inlet Branch, !- Branch 1 Name + SPACE1-1 Reheat Branch, !- Branch 2 Name + SPACE2-1 Reheat Branch, !- Branch 3 Name + SPACE3-1 Reheat Branch, !- Branch 4 Name + SPACE4-1 Reheat Branch, !- Branch 5 Name + SPACE5-1 Reheat Branch, !- Branch 6 Name + OA Heating Coil Branch, !- Branch 7 Name + Main Heating Coil 1 Branch, !- Branch 8 Name + Heating Demand Bypass Branch, !- Branch 9 Name + Heating Demand Outlet Branch; !- Branch 10 Name + + ConnectorList, + Heating Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heating Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heating Demand Mixer; !- Connector 2 Name + + Branch, + Heating Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Inlet Pipe, !- Component 1 Name + HW Demand Inlet Node, !- Component 1 Inlet Node Name + HW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Demand Inlet Pipe, !- Name + HW Demand Inlet Node, !- Inlet Node Name + HW Demand Entrance Pipe Outlet Node; !- Outlet Node Name + + Branch, + Heating Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Outlet Pipe, !- Component 1 Name + HW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + HW Demand Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Demand Outlet Pipe, !- Name + HW Demand Exit Pipe Inlet Node, !- Inlet Node Name + HW Demand Outlet Node; !- Outlet Node Name + + Branch, + SPACE1-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE1-1 Zone Coil, !- Component 1 Name + SPACE1-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE1-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + SPACE2-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE2-1 Zone Coil, !- Component 1 Name + SPACE2-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE2-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + SPACE3-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE3-1 Zone Coil, !- Component 1 Name + SPACE3-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE3-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + SPACE4-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE4-1 Zone Coil, !- Component 1 Name + SPACE4-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE4-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + SPACE5-1 Reheat Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + SPACE5-1 Zone Coil, !- Component 1 Name + SPACE5-1 Zone Coil Water In Node, !- Component 1 Inlet Node Name + SPACE5-1 Zone Coil Water Out Node; !- Component 1 Outlet Node Name + + Branch, + OA Heating Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + OA Heating Coil 1, !- Component 1 Name + OA Heating Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + OA Heating Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Main Heating Coil 1 Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Main Heating Coil 1, !- Component 1 Name + Main Heating Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + Main Heating Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heating Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heating Demand Bypass, !- Component 1 Name + Heating Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + Heating Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Heating Demand Bypass, !- Name + Heating Demand Bypass Inlet Node, !- Inlet Node Name + Heating Demand Bypass Outlet Node; !- Outlet Node Name + + Connector:Splitter, + Heating Demand Splitter, !- Name + Heating Demand Inlet Branch, !- Inlet Branch Name + SPACE1-1 Reheat Branch, !- Outlet Branch 1 Name + SPACE2-1 Reheat Branch, !- Outlet Branch 2 Name + SPACE3-1 Reheat Branch, !- Outlet Branch 3 Name + SPACE4-1 Reheat Branch, !- Outlet Branch 4 Name + SPACE5-1 Reheat Branch, !- Outlet Branch 5 Name + OA Heating Coil Branch, !- Outlet Branch 6 Name + Main Heating Coil 1 Branch, !- Outlet Branch 7 Name + Heating Demand Bypass Branch; !- Outlet Branch 8 Name + + Connector:Mixer, + Heating Demand Mixer, !- Name + Heating Demand Outlet Branch, !- Outlet Branch Name + SPACE1-1 Reheat Branch, !- Inlet Branch 1 Name + SPACE2-1 Reheat Branch, !- Inlet Branch 2 Name + SPACE3-1 Reheat Branch, !- Inlet Branch 3 Name + SPACE4-1 Reheat Branch, !- Inlet Branch 4 Name + SPACE5-1 Reheat Branch, !- Inlet Branch 5 Name + OA Heating Coil Branch, !- Inlet Branch 6 Name + Main Heating Coil 1 Branch, !- Inlet Branch 7 Name + Heating Demand Bypass Branch; !- Inlet Branch 8 Name + + Connector:Splitter, + Heating Supply Splitter, !- Name + Heating Supply Inlet Branch, !- Inlet Branch Name + Central Boiler Branch, !- Outlet Branch 1 Name + Heating Supply Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + Heating Supply Mixer, !- Name + Heating Supply Outlet Branch, !- Outlet Branch Name + Central Boiler Branch, !- Inlet Branch 1 Name + Heating Supply Bypass Branch; !- Inlet Branch 2 Name + + PlantEquipmentOperationSchemes, + Hot Loop Operation, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + Central Boiler Only, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:HeatingLoad, + Central Boiler Only, !- Name + 0, !- Load Range 1 Lower Limit {W} + 1000000, !- Load Range 1 Upper Limit {W} + heating plant; !- Range 1 Equipment List Name + + PlantEquipmentList, + heating plant, !- Name + Boiler:HotWater, !- Equipment 1 Object Type + Central Boiler; !- Equipment 1 Name + + Boiler:HotWater, + Central Boiler, !- Name + NaturalGas, !- Fuel Type + autosize, !- Nominal Capacity {W} + 0.8, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + BoilerEfficiency, !- Normalized Boiler Efficiency Curve Name + autosize, !- Design Water Flow Rate {m3/s} + 0.0, !- Minimum Part Load Ratio + 1.2, !- Maximum Part Load Ratio + 1.0, !- Optimum Part Load Ratio + Central Boiler Inlet Node, !- Boiler Water Inlet Node Name + Central Boiler Outlet Node, !- Boiler Water Outlet Node Name + 100., !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated;!- Boiler Flow Mode + + SetpointManager:Scheduled, + Central Boiler Setpoint Manager, !- Name + Temperature, !- Control Variable + HW Loop Temp Schedule, !- Schedule Name + Central Boiler Outlet Node; !- Setpoint Node or NodeList Name + + Curve:Quadratic, + BoilerEfficiency, !- Name + 1.0, !- Coefficient1 Constant + 0.0, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + + Pump:VariableSpeed, + HW Circ Pump, !- Name + HW Supply Inlet Node, !- Inlet Node Name + HW Pump Outlet Node, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 179352, !- Design Pump Head {Pa} + autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + INTERMITTENT; !- Pump Control Type + + PlantLoop, + Chilled Water Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + CW Loop Operation, !- Plant Equipment Operation Scheme Name + CW Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 98, !- Maximum Loop Temperature {C} + 1, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + , !- Plant Loop Volume {m3} + CW Supply Inlet Node, !- Plant Side Inlet Node Name + CW Supply Outlet Node, !- Plant Side Outlet Node Name + Cooling Supply Side Branches, !- Plant Side Branch List Name + Cooling Supply Side Connectors, !- Plant Side Connector List Name + CW Demand Inlet Node, !- Demand Side Inlet Node Name + CW Demand Outlet Node, !- Demand Side Outlet Node Name + Cooling Demand Side Branches, !- Demand Side Branch List Name + Cooling Demand Side Connectors, !- Demand Side Connector List Name + SequentialLoad, !- Load Distribution Scheme + CW Avail List; !- Availability Manager List Name + + AvailabilityManagerAssignmentList, + CW Avail List, !- Name + AvailabilityManager:LowTemperatureTurnOff, !- Availability Manager 1 Object Type + CW Low Temp Limit; !- Availability Manager 1 Name + + AvailabilityManager:LowTemperatureTurnOff, + CW Low Temp Limit, !- Name + Outside Air Inlet Node 1,!- Sensor Node Name + 2.0, !- Temperature {C} + CoolingPumpAvailSched; !- Applicability Schedule Name + + SetpointManager:Scheduled, + Chilled Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + CW Loop Temp Schedule, !- Schedule Name + CW Supply Outlet Node; !- Setpoint Node or NodeList Name + + BranchList, + Cooling Supply Side Branches, !- Name + CW Pump Branch, !- Branch 1 Name + Central Chiller Branch, !- Branch 2 Name + Cooling Supply Bypass Branch, !- Branch 3 Name + Cooling Supply Outlet; !- Branch 4 Name + + BranchList, + Cooling Demand Side Branches, !- Name + Cooling Demand Inlet, !- Branch 1 Name + Cooling Coil Branch, !- Branch 2 Name + OA Cooling Coil Branch, !- Branch 3 Name + Cooling Demand Bypass Branch, !- Branch 4 Name + Cooling Demand Outlet; !- Branch 5 Name + + ConnectorList, + Cooling Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CW Loop Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CW Loop Mixer; !- Connector 2 Name + + ConnectorList, + Cooling Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CW Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CW Demand Mixer; !- Connector 2 Name + + Branch, + Cooling Demand Inlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Cooling Demand Side Inlet Pipe, !- Component 1 Name + CW Demand Inlet Node, !- Component 1 Inlet Node Name + CW Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Cooling Demand Side Inlet Pipe, !- Name + CW Demand Inlet Node, !- Inlet Node Name + CW Demand Entrance Pipe Outlet Node; !- Outlet Node Name + + Branch, + Cooling Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + Main Cooling Coil 1, !- Component 1 Name + Main Cooling Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + Main Cooling Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + OA Cooling Coil Branch, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + OA Cooling Coil 1, !- Component 1 Name + OA Cooling Coil 1 Water Inlet Node, !- Component 1 Inlet Node Name + OA Cooling Coil 1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Cooling Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Cooling Demand Side Bypass, !- Component 1 Name + CW Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + CW Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Cooling Demand Side Bypass, !- Name + CW Demand Bypass Inlet Node, !- Inlet Node Name + CW Demand Bypass Outlet Node; !- Outlet Node Name + + Branch, + Cooling Demand Outlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CW Demand Side Outlet Pipe, !- Component 1 Name + CW Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + CW Demand Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + CW Demand Side Outlet Pipe, !- Name + CW Demand Exit Pipe Inlet Node, !- Inlet Node Name + CW Demand Outlet Node; !- Outlet Node Name + + Branch, + Cooling Supply Outlet, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Supply Side Outlet Pipe, !- Component 1 Name + Supply Side Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + CW Supply Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Supply Side Outlet Pipe, !- Name + Supply Side Exit Pipe Inlet Node, !- Inlet Node Name + CW Supply Outlet Node; !- Outlet Node Name + + Branch, + CW Pump Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + CW Circ Pump, !- Component 1 Name + CW Supply Inlet Node, !- Component 1 Inlet Node Name + CW Pump Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Central Chiller Branch, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric, !- Component 1 Object Type + Central Chiller, !- Component 1 Name + Central Chiller Inlet Node, !- Component 1 Inlet Node Name + Central Chiller Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Cooling Supply Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Supply Side Bypass, !- Component 1 Name + CW Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + CW Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + + Pipe:Adiabatic, + Supply Side Bypass, !- Name + CW Supply Bypass Inlet Node, !- Inlet Node Name + CW Supply Bypass Outlet Node; !- Outlet Node Name + + Connector:Splitter, + CW Loop Splitter, !- Name + CW Pump Branch, !- Inlet Branch Name + Central Chiller Branch, !- Outlet Branch 1 Name + Cooling Supply Bypass Branch; !- Outlet Branch 2 Name + + Connector:Mixer, + CW Loop Mixer, !- Name + Cooling Supply Outlet, !- Outlet Branch Name + Central Chiller Branch, !- Inlet Branch 1 Name + Cooling Supply Bypass Branch; !- Inlet Branch 2 Name + + Connector:Splitter, + CW Demand Splitter, !- Name + Cooling Demand Inlet, !- Inlet Branch Name + Cooling Coil Branch, !- Outlet Branch 1 Name + OA Cooling Coil Branch, !- Outlet Branch 2 Name + Cooling Demand Bypass Branch; !- Outlet Branch 3 Name + + Connector:Mixer, + CW Demand Mixer, !- Name + Cooling Demand Outlet, !- Outlet Branch Name + Cooling Coil Branch, !- Inlet Branch 1 Name + OA Cooling Coil Branch, !- Inlet Branch 2 Name + Cooling Demand Bypass Branch; !- Inlet Branch 3 Name + + PlantEquipmentOperationSchemes, + CW Loop Operation, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + Central Chiller Only, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperation:CoolingLoad, + Central Chiller Only, !- Name + 0, !- Load Range 1 Lower Limit {W} + 900000, !- Load Range 1 Upper Limit {W} + Cooling Plant; !- Range 1 Equipment List Name + + PlantEquipmentList, + Cooling Plant, !- Name + Chiller:Electric, !- Equipment 1 Object Type + Central Chiller; !- Equipment 1 Name + + Chiller:Electric, + Central Chiller, !- Name + AirCooled, !- Condenser Type + autosize, !- Nominal Capacity {W} + 3.2, !- Nominal COP {W/W} + Central Chiller Inlet Node, !- Chilled Water Inlet Node Name + Central Chiller Outlet Node, !- Chilled Water Outlet Node Name + Central Chiller Condenser Inlet Node, !- Condenser Inlet Node Name + Central Chiller Condenser Outlet Node, !- Condenser Outlet Node Name + 0.0, !- Minimum Part Load Ratio + 1.0, !- Maximum Part Load Ratio + 0.65, !- Optimum Part Load Ratio + 35.0, !- Design Condenser Inlet Temperature {C} + 2.778, !- Temperature Rise Coefficient + 6.67, !- Design Chilled Water Outlet Temperature {C} + autosize, !- Design Chilled Water Flow Rate {m3/s} + autosize, !- Design Condenser Fluid Flow Rate {m3/s} + 0.9949, !- Coefficient 1 of Capacity Ratio Curve + -0.045954, !- Coefficient 2 of Capacity Ratio Curve + -0.0013543, !- Coefficient 3 of Capacity Ratio Curve + 2.333, !- Coefficient 1 of Power Ratio Curve + -1.975, !- Coefficient 2 of Power Ratio Curve + 0.6121, !- Coefficient 3 of Power Ratio Curve + 0.03303, !- Coefficient 1 of Full Load Ratio Curve + 0.6852, !- Coefficient 2 of Full Load Ratio Curve + 0.2818, !- Coefficient 3 of Full Load Ratio Curve + 5, !- Chilled Water Outlet Temperature Lower Limit {C} + LeavingSetpointModulated;!- Chiller Flow Mode + + SetpointManager:Scheduled, + Central Chiller Setpoint Manager, !- Name + Temperature, !- Control Variable + CW Loop Temp Schedule, !- Schedule Name + Central Chiller Outlet Node; !- Setpoint Node or NodeList Name + + OutdoorAir:Node, + Central Chiller Condenser Inlet Node, !- Name + -1.0; !- Height Above Ground {m} + + Pump:VariableSpeed, + CW Circ Pump, !- Name + CW Supply Inlet Node, !- Inlet Node Name + CW Pump Outlet Node, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 179352, !- Design Pump Head {Pa} + autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + INTERMITTENT, !- Pump Control Type + CoolingPumpAvailSched; !- Pump Flow Rate Schedule Name + + Output:Variable,*,Site Day Type Index,hourly; + + Output:Variable,*,Site Outdoor Air Drybulb Temperature,hourly; + + Output:Variable,*,Zone Air Temperature,hourly; + + Output:Variable,*,Zone Mean Air Dewpoint Temperature,hourly; + + Output:Variable,*,Zone Air System Sensible Cooling Rate,hourly; + + Output:Variable,*,Zone Air System Sensible Heating Rate,hourly; + + Output:Variable,OA Mixing Box 1 Inlet Node,System Node Temperature,hourly; + + Output:Variable,OA Mixing Box 1 Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,OA Mixing Box 1 Inlet Node,System Node Setpoint Temperature,hourly; + + Output:Variable,OA Mixing Box 1 Inlet Node,System Node Humidity Ratio,hourly; + + Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Temperature,hourly; + + Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Setpoint Temperature,hourly; + + Output:Variable,OA Heating Coil 1 Air Outlet Node,System Node Humidity Ratio,hourly; + + Output:Variable,Mixed Air Node 1,System Node Temperature,hourly; + + Output:Variable,Mixed Air Node 1,System Node Humidity Ratio,hourly; + + Output:Variable,Mixed Air Node 1,System Node Dewpoint Temperature,hourly; + + Output:Variable,VAV Sys 1 Outlet Node,System Node Temperature,hourly; + + Output:Variable,VAV Sys 1 Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,VAV Sys 1 Outlet Node,System Node Humidity Ratio,hourly; + + Output:Variable,VAV Sys 1 Outlet Node,System Node Setpoint Temperature,hourly; + + Output:Variable,OA Cooling Coil 1 Water Inlet Node,System Node Temperature,hourly; + + Output:Variable,OA Cooling Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Main Cooling Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,OA Heating Coil 1 Water Inlet Node,System Node Temperature,hourly; + + Output:Variable,OA Heating Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,Main Heating Coil 1 Water Inlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,*,Heating Coil Heating Rate,hourly; + + Output:Variable,*,Cooling Coil Total Cooling Rate,hourly; + + Output:Variable,*,Cooling Coil Sensible Cooling Rate,hourly; + + Output:Variable,*,Plant Supply Side Cooling Demand Rate,hourly; + + Output:Variable,*,Plant Supply Side Heating Demand Rate,hourly; + + Output:Variable,*,Boiler Gas Rate,hourly; + + Output:Variable,*,Boiler Heating Rate,hourly; + + Output:Variable,*,Chiller Electric Power,hourly; + + Output:Variable,*,Chiller Evaporator Cooling Rate,hourly; + + Output:Variable,*,Chiller Evaporator Inlet Temperature,hourly; + + Output:Variable,*,Chiller Evaporator Outlet Temperature,hourly; + + Output:Variable,*,Chiller Evaporator Mass Flow Rate,hourly; + + Output:Variable,*,Chiller Condenser Heat Transfer Rate,hourly; + + Output:Variable,*,Pump Mass Flow Rate,hourly; + + Output:Variable,*,Pump Outlet Temperature,hourly; + + Output:VariableDictionary,Regular; + + Output:Meter:MeterFileOnly,Electricity:Facility,monthly; + + Output:Meter:MeterFileOnly,Electricity:Building,monthly; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly; + + Output:Meter:MeterFileOnly,Electricity:HVAC,monthly; + + Output:Meter:MeterFileOnly,Electricity:Plant,monthly; + + Output:Meter:MeterFileOnly,Gas:Facility,monthly; + + Output:Meter:MeterFileOnly,Gas:Plant,monthly; + + Output:Meter:MeterFileOnly,Electricity:Facility,runperiod; + + Output:Meter:MeterFileOnly,Electricity:Building,runperiod; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,runperiod; + + Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; + + Output:Meter:MeterFileOnly,Electricity:Plant,runperiod; + + Output:Meter:MeterFileOnly,Gas:Facility,runperiod; + + Output:Meter:MeterFileOnly,Gas:Plant,runperiod; + + Output:Meter:MeterFileOnly,MyGeneralLights,monthly; + + Output:Meter:MeterFileOnly,MyGeneralLights,runperiod; + + Output:Meter:MeterFileOnly,MyBuildingElectric,monthly; + + Output:Meter:MeterFileOnly,MyBuildingElectric,runperiod; + + Output:Meter:MeterFileOnly,MyBuildingOther,monthly; + + Output:Meter:MeterFileOnly,MyBuildingOther,runperiod; + +! The following custom meters are set up to illustrate the capabilities +! of custom meters. +! Custom Meter "MyGeneralLights" duplicates the InteriorLights:Electricity meter. +! Custom Meter "MyBuildingElectric" duplicates the Electricity:Building meter (by specifying that meter). +! Custom Meter (Decrement) "MyBuildingOther" uses Electricity:Building as its source meter +! and subtracts out the values for MyGeneralLights (aka InteriorLights:Electricity). The +! resultant value for MyBuildingOther should be equal to the value for the meters +! Electricity:Building - InteriorLights:Electricity (aka MyGeneralLights) + + Meter:Custom, + MyGeneralLights, !- Name + Electricity, !- Fuel Type + SPACE1-1 Lights 1, !- Key Name 1 + Lights Electric Energy, !- Output Variable or Meter Name 1 + SPACE2-1 Lights 1, !- Key Name 2 + Lights Electric Energy, !- Output Variable or Meter Name 2 + SPACE3-1 Lights 1, !- Key Name 3 + Lights Electric Energy, !- Output Variable or Meter Name 3 + SPACE4-1 Lights 1, !- Key Name 4 + Lights Electric Energy, !- Output Variable or Meter Name 4 + SPACE5-1 Lights 1, !- Key Name 5 + Lights Electric Energy; !- Output Variable or Meter Name 5 + + Meter:Custom, + MyBuildingElectric, !- Name + Electricity, !- Fuel Type + , !- Key Name 1 + Electricity:Building; !- Output Variable or Meter Name 1 + + Meter:CustomDecrement, + MyBuildingOther, !- Name + Electricity, !- Fuel Type + Electricity:Building, !- Source Meter Name + , !- Key Name 1 + MyGeneralLights; !- Output Variable or Meter Name 1 + + Output:Surfaces:Drawing,VRML; + + OutputControl:Table:Style, + HTML; !- Column Separator + + Output:Table:SummaryReports, + AllSummary, !- Report 1 Name + ZoneComponentLoadSummary;!- Report 2 Name + + Output:Surfaces:List,Details; + diff --git a/third_party/.gitignore b/third_party/.gitignore index d421e86f9b3..5fca3a78b2a 100644 --- a/third_party/.gitignore +++ b/third_party/.gitignore @@ -27,3 +27,7 @@ kiva-ep/.travis.yml kiva-ep/appveyor.yml kiva-ep/ChangeLog.md kiva-ep/README.md + +# unused btwxt repo directories/files +btwxt/vendor/googletest +btwxt/.gitmodules \ No newline at end of file diff --git a/third_party/btwxt/.clang-format b/third_party/btwxt/.clang-format new file mode 100644 index 00000000000..3d673b2b07d --- /dev/null +++ b/third_party/btwxt/.clang-format @@ -0,0 +1,111 @@ +--- +Language: Cpp +# BasedOnStyle: LLVM +AccessModifierOffset: -2 +AlignAfterOpenBracket: Align +AlignConsecutiveAssignments: false +AlignConsecutiveDeclarations: false +AlignEscapedNewlines: Right +AlignOperands: true +AlignTrailingComments: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: All +AllowShortIfStatementsOnASingleLine: false +AllowShortLoopsOnASingleLine: false +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: false +AlwaysBreakTemplateDeclarations: false +BinPackArguments: true +BinPackParameters: true +BraceWrapping: + AfterClass: false + AfterControlStatement: false + AfterEnum: false + AfterFunction: false + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + AfterExternBlock: false + BeforeCatch: false + BeforeElse: false + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Attach +BreakBeforeInheritanceComma: false +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BreakConstructorInitializers: BeforeColon +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: true +ColumnLimit: 100 +CommentPragmas: '^ IWYU pragma:' +CompactNamespaces: false +ConstructorInitializerAllOnOneLineOrOnePerLine: true +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DerivePointerAlignment: false +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +FixNamespaceComments: true +ForEachMacros: + - foreach + - Q_FOREACH + - BOOST_FOREACH +IncludeBlocks: Preserve +IncludeCategories: + - Regex: '^"(llvm|llvm-c|clang|clang-c)/' + Priority: 2 + - Regex: '^(<|"(gtest|gmock|isl|json)/)' + Priority: 3 + - Regex: '.*' + Priority: 1 +IncludeIsMainRegex: '(Test)?$' +IndentCaseLabels: false +IndentPPDirectives: None +IndentWidth: 2 +IndentWrappedFunctionNames: false +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: true +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +PenaltyBreakAssignment: 2 +PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakString: 1000 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 60 +PointerAlignment: Right +ReflowComments: true +SortIncludes: true +SortUsingDeclarations: true +SpaceAfterCStyleCast: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +#SpaceBeforeCtorInitializerColon: true +#SpaceBeforeInheritanceColon: true +SpaceBeforeParens: ControlStatements +#SpaceBeforeRangeBasedForLoopColon: true +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: false +SpacesInContainerLiterals: true +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +Standard: Cpp11 +TabWidth: 8 +UseTab: Never +... + diff --git a/third_party/btwxt/.codecov.yml b/third_party/btwxt/.codecov.yml new file mode 100644 index 00000000000..7e0b7691b15 --- /dev/null +++ b/third_party/btwxt/.codecov.yml @@ -0,0 +1,6 @@ +coverage: + precision: 2 + round: nearest + range: "0...100" + ignore: + - "vendor/**/*" diff --git a/third_party/btwxt/.gitignore b/third_party/btwxt/.gitignore new file mode 100644 index 00000000000..562729fd805 --- /dev/null +++ b/third_party/btwxt/.gitignore @@ -0,0 +1,3 @@ +# Ignore the build directory +builds +.idea \ No newline at end of file diff --git a/third_party/btwxt/.travis.yml b/third_party/btwxt/.travis.yml new file mode 100644 index 00000000000..042eb2f69df --- /dev/null +++ b/third_party/btwxt/.travis.yml @@ -0,0 +1,48 @@ +language: cpp +git: + depth: 100 +notifications: + email: false +matrix: + include: + - os: osx + compiler: clang + osx_image: xcode10.1 + - os: linux + compiler: gcc + dist: xenial + - os: linux + compiler: gcc + dist: xenial + env: COVERAGE="ON" + - os: windows + +script: +- mkdir build +- cd build +- if [[ "$COVERAGE" == "ON" ]]; then + export CONFIG="Debug"; + export STATIC_LIB="OFF"; + else + export CONFIG="Release"; + export COVERAGE="OFF"; + export STATIC_LIB="ON"; + fi +- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then + export TESTING="ON"; + else + export TESTING="OFF"; + fi +- cmake -DBUILD_BTWXT_TESTING="$TESTING" -DBTWXT_STATIC_LIB="$STATIC_LIB" -DBTWXT_COVERAGE="$COVERAGE" -DCMAKE_BUILD_TYPE="$CONFIG" .. +- cmake --build . --config "$CONFIG" +- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then + ctest --output-on-failure -C "$CONFIG" || travis_terminate 1; + if [[ "$COVERAGE" == "ON" ]]; then + make gcov || travis_terminate 1; + fi + fi + +after_success: +- if [[ "$COVERAGE" == "ON" ]]; then + bash <(curl -s https://codecov.io/bash) -X gcov || travis_terminate 1; + fi diff --git a/third_party/btwxt/CMakeLists.txt b/third_party/btwxt/CMakeLists.txt new file mode 100644 index 00000000000..78e72e9397c --- /dev/null +++ b/third_party/btwxt/CMakeLists.txt @@ -0,0 +1,41 @@ +cmake_minimum_required(VERSION 3.10) + +project(btwxt) + +# Set a default build type if none was specified +if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + message(STATUS "Setting build type to 'Release' as none was specified.") + set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build." FORCE) + # Set the possible values of build type for cmake-gui + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" + "MinSizeRel" "RelWithDebInfo") +endif() + +find_package(Git QUIET) + +set (CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") + +include(compiler-flags) + +option( BUILD_BTWXT_TESTING "Build Btwxt testing targets" OFF ) +option( BTWXT_COVERAGE "Add coverage reports" OFF) + +# Set up testing/coverage +if (BUILD_BTWXT_TESTING) + enable_testing() + if (BTWXT_COVERAGE) + set(ENABLE_COVERAGE ON CACHE BOOL "" FORCE) + find_package(codecov) + endif() +endif() + + +add_subdirectory(src) +add_subdirectory(vendor) + +if (BUILD_BTWXT_TESTING) + add_subdirectory(test) + if (BTWXT_COVERAGE) + coverage_evaluate() + endif() +endif() diff --git a/third_party/btwxt/LICENSE b/third_party/btwxt/LICENSE new file mode 100644 index 00000000000..e81a8af67c0 --- /dev/null +++ b/third_party/btwxt/LICENSE @@ -0,0 +1,26 @@ +Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors +may be used to endorse or promote products derived from this software without +specific prior written permission from the copyright holders. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/third_party/btwxt/README.md b/third_party/btwxt/README.md new file mode 100644 index 00000000000..342a2d8f0a4 --- /dev/null +++ b/third_party/btwxt/README.md @@ -0,0 +1,91 @@ +[![Build Status](https://travis-ci.org/bigladder/btwxt.svg?branch=master)](https://travis-ci.org/bigladder/btwxt) +[![codecov](https://codecov.io/gh/bigladder/btwxt/branch/master/graph/badge.svg)](https://codecov.io/gh/bigladder/btwxt) + +# Btwxt + +## General-purpose, N-dimensional interpolation library... + +Btwxt is a free and open source c++ library to perform numerical interpolation on a gridded data set. The general architecture is that it creates a RegularGridInterpolator object from a) a collection of grid axes and b) a collection of values that fit that axis system. That RegularGridInterpolator object can then be queried repeatedly for values that fall inside its grid. + +Btwxt supports linear and cubic spline (Catmull-Rom) interpolation methods, and those methods can be specified independently for each axis. The API also allows specification of preferred extrapolation methods (constant or linear)--again independently for each axis--and extrapolation limits. + +The input grid is required to be regular (rectilinear) but the axes are not required to have uniform spacing. Each axis need only be strictly increasing. + +The values are imported as a long vector: a flattened array. It is your responsibility to ensure that you load the grid vectors in the same order as they are defined for the values. Btwxt ensures that the number of values aligns with the grid space, but it does not attempt to verify that the grid axis order is consistent with the values. + +Btwxt accepts: +* a collection of N vectors representing the input variables, +* attributes of each of the input vectors describing preferred interpolation and extrapolation methods, and +* an array of (or collection of arrays of) values that map onto the grid defined by the input vectors. + +## How to Use + +### How to install/include +Need to complete this section + +### API +An individual axis can be instantiated with +```c++ +std::vector one_axis{6, 10, 15}; +GridAxis(one_axis); +GridAxis(one_axis, interpolation_method = Method::CUBIC); +// interpolation method defaults to LINEAR +GridAxis(one_axis, extrapolation_method = Method::LINEAR); +// extrapolation method defaults to CONSTANT +std::pair extrap_bounds{0, 20}; +GridAxis(one_axis, Method::LINEAR, Method::CUBIC, extrap_bounds); +// extrapolation bounds default to {-DBL_MAX, DBL_MAX} +``` + +A collection of axes can be tied together into a GriddedData object +```c++ +std::vector my_grid{first_axis, second_axis, third_axis}; +std::vector< std::vector > values = {...}; +GriddedData(my_grid, values); +``` + +Or you can feed a vector of vectors straight into GriddedData and let it construct the GridAxis objects: +```c++ +std::vector > vector_grid = {{6, 10, 15}, + {4, 6, 9}}; +std::vector< std::vector > values = {...}; +GriddedData gridded_data(vector_grid, values); +gridded_data.set_axis_interp_method(0, Method::CUBIC); +gridded_data.set_axis_extrap_method(1, Method::LINEAR); +gridded_data.set_axis_extrap_limits(1, {2, 10}); +``` + +RegularGridInterpolator holds a GriddedData object and adds capabilities for interpolation. If specified straight from vectors, it will build the GriddedData and GridAxis objects appropriately. +```c++ +RegularGridInterpolator my_interpolator(gridded_data); +// or +std::vector > vector_grid = {{6, 10, 15}, + {4, 6, 9}}; +std::vector< std::vector > values = {...}; +my_interpolator(vector_grid, values); +``` + +Once you have an RGI object, you can set a point to interpolate to: +```c++ +std::vector target{12.5, 5.1}; +my_interpolator.set_new_grid_point(target); +std::vector result = my_interpolator.calculate_all_values_at_target(); +my_interpolator.clear_current_grid_point(); +// or set the point within the calculate: +std::vector new_target{11.7, 6.1}; +result = my_interpolator.calculate_all_values_at_target(new_target); +``` + +We have overloaded the () operator on the RGI to perform the interpolation, enabling the following: +```c++ +std::vector target{12.5, 5.1}; +my_interpolator.set_new_grid_point(target); +std::vector result = my_interpolator(); +std::vector new_target{11.7, 6.1}; +std::vector result = my_interpolator(new_target); +``` + + +## Dependencies +Btwxt uses +* [Googletest](https://github.com/google/googletest), both gtest and gmock for unittests. diff --git a/third_party/btwxt/cmake/FindGcov.cmake b/third_party/btwxt/cmake/FindGcov.cmake new file mode 100755 index 00000000000..638dc738d42 --- /dev/null +++ b/third_party/btwxt/cmake/FindGcov.cmake @@ -0,0 +1,158 @@ +# This file is part of CMake-codecov. +# +# Copyright (c) +# 2015-2017 RWTH Aachen University, Federal Republic of Germany +# +# See the LICENSE file in the package base directory for details +# +# Written by Alexander Haase, alexander.haase@rwth-aachen.de +# + + +# include required Modules +include(FindPackageHandleStandardArgs) + + +# Search for gcov binary. +set(CMAKE_REQUIRED_QUIET_SAVE ${CMAKE_REQUIRED_QUIET}) +set(CMAKE_REQUIRED_QUIET ${codecov_FIND_QUIETLY}) + +get_property(ENABLED_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES) +foreach (LANG ${ENABLED_LANGUAGES}) + # Gcov evaluation is dependent on the used compiler. Check gcov support for + # each compiler that is used. If gcov binary was already found for this + # compiler, do not try to find it again. + if (NOT GCOV_${CMAKE_${LANG}_COMPILER_ID}_BIN) + get_filename_component(COMPILER_PATH "${CMAKE_${LANG}_COMPILER}" PATH) + + if ("${CMAKE_${LANG}_COMPILER_ID}" STREQUAL "GNU") + # Some distributions like OSX (homebrew) ship gcov with the compiler + # version appended as gcov-x. To find this binary we'll build the + # suggested binary name with the compiler version. + string(REGEX MATCH "^[0-9]+" GCC_VERSION + "${CMAKE_${LANG}_COMPILER_VERSION}") + + find_program(GCOV_BIN NAMES gcov-${GCC_VERSION} gcov + HINTS ${COMPILER_PATH}) + + elseif ("${CMAKE_${LANG}_COMPILER_ID}" MATCHES "^(Apple)?Clang$") + # Some distributions like Debian ship llvm-cov with the compiler + # version appended as llvm-cov-x.y. To find this binary we'll build + # the suggested binary name with the compiler version. + string(REGEX MATCH "^[0-9]+.[0-9]+" LLVM_VERSION + "${CMAKE_${LANG}_COMPILER_VERSION}") + + # llvm-cov prior version 3.5 seems to be not working with coverage + # evaluation tools, but these versions are compatible with the gcc + # gcov tool. + if(LLVM_VERSION VERSION_GREATER 3.4) + find_program(LLVM_COV_BIN NAMES "llvm-cov-${LLVM_VERSION}" + "llvm-cov" HINTS ${COMPILER_PATH}) + mark_as_advanced(LLVM_COV_BIN) + + if (LLVM_COV_BIN) + find_program(LLVM_COV_WRAPPER "llvm-cov-wrapper" PATHS + ${CMAKE_MODULE_PATH}) + if (LLVM_COV_WRAPPER) + set(GCOV_BIN "${LLVM_COV_WRAPPER}" CACHE FILEPATH "") + + # set additional parameters + set(GCOV_${CMAKE_${LANG}_COMPILER_ID}_ENV + "LLVM_COV_BIN=${LLVM_COV_BIN}" CACHE STRING + "Environment variables for llvm-cov-wrapper.") + mark_as_advanced(GCOV_${CMAKE_${LANG}_COMPILER_ID}_ENV) + endif () + endif () + endif () + + if (NOT GCOV_BIN) + # Fall back to gcov binary if llvm-cov was not found or is + # incompatible. This is the default on OSX, but may crash on + # recent Linux versions. + find_program(GCOV_BIN gcov HINTS ${COMPILER_PATH}) + endif () + endif () + + + if (GCOV_BIN) + set(GCOV_${CMAKE_${LANG}_COMPILER_ID}_BIN "${GCOV_BIN}" CACHE STRING + "${LANG} gcov binary.") + + if (NOT CMAKE_REQUIRED_QUIET) + message("-- Found gcov evaluation for " + "${CMAKE_${LANG}_COMPILER_ID}: ${GCOV_BIN}") + endif() + + unset(GCOV_BIN CACHE) + endif () + endif () +endforeach () + + + + +# Add a new global target for all gcov targets. This target could be used to +# generate the gcov files for the whole project instead of calling -gcov +# for each target. +if (NOT TARGET gcov) + add_custom_target(gcov) +endif (NOT TARGET gcov) + + + +# This function will add gcov evaluation for target . Only sources of +# this target will be evaluated and no dependencies will be added. It will call +# Gcov on any source file of once and store the gcov file in the same +# directory. +function (add_gcov_target TNAME) + get_target_property(TBIN_DIR ${TNAME} BINARY_DIR) + set(TDIR ${TBIN_DIR}/CMakeFiles/${TNAME}.dir) + + # We don't have to check, if the target has support for coverage, thus this + # will be checked by add_coverage_target in Findcoverage.cmake. Instead we + # have to determine which gcov binary to use. + get_target_property(TSOURCES ${TNAME} SOURCES) + set(SOURCES "") + set(TCOMPILER "") + foreach (FILE ${TSOURCES}) + codecov_path_of_source(${FILE} FILE) + if (NOT "${FILE}" STREQUAL "") + codecov_lang_of_source(${FILE} LANG) + if (NOT "${LANG}" STREQUAL "") + list(APPEND SOURCES "${FILE}") + set(TCOMPILER ${CMAKE_${LANG}_COMPILER_ID}) + endif () + endif () + endforeach () + + # If no gcov binary was found, coverage data can't be evaluated. + if (NOT GCOV_${TCOMPILER}_BIN) + message(WARNING "No coverage evaluation binary found for ${TCOMPILER}.") + return() + endif () + + set(GCOV_BIN "${GCOV_${TCOMPILER}_BIN}") + set(GCOV_ENV "${GCOV_${TCOMPILER}_ENV}") + + + set(BUFFER "") + foreach(FILE ${SOURCES}) + get_filename_component(FILE_PATH "${TDIR}/${FILE}" PATH) + + # call gcov + add_custom_command(OUTPUT ${TDIR}/${FILE}.gcov + COMMAND ${GCOV_ENV} ${GCOV_BIN} ${TDIR}/${FILE}.gcno > /dev/null + DEPENDS ${TNAME} ${TDIR}/${FILE}.gcno + WORKING_DIRECTORY ${FILE_PATH} + ) + + list(APPEND BUFFER ${TDIR}/${FILE}.gcov) + endforeach() + + + # add target for gcov evaluation of + add_custom_target(${TNAME}-gcov DEPENDS ${BUFFER}) + + # add evaluation target to the global gcov target. + add_dependencies(gcov ${TNAME}-gcov) +endfunction (add_gcov_target) diff --git a/third_party/btwxt/cmake/FindLcov.cmake b/third_party/btwxt/cmake/FindLcov.cmake new file mode 100755 index 00000000000..bd98f36a5e6 --- /dev/null +++ b/third_party/btwxt/cmake/FindLcov.cmake @@ -0,0 +1,357 @@ +# This file is part of CMake-codecov. +# +# Copyright (c) +# 2015-2017 RWTH Aachen University, Federal Republic of Germany +# +# See the LICENSE file in the package base directory for details +# +# Written by Alexander Haase, alexander.haase@rwth-aachen.de +# + + +# configuration +set(LCOV_DATA_PATH "${CMAKE_BINARY_DIR}/lcov/data") +set(LCOV_DATA_PATH_INIT "${LCOV_DATA_PATH}/init") +set(LCOV_DATA_PATH_CAPTURE "${LCOV_DATA_PATH}/capture") +set(LCOV_HTML_PATH "${CMAKE_BINARY_DIR}/lcov/html") + + + + +# Search for Gcov which is used by Lcov. +find_package(Gcov) + + + + +# This function will add lcov evaluation for target . Only sources of +# this target will be evaluated and no dependencies will be added. It will call +# geninfo on any source file of once and store the info file in the same +# directory. +# +# Note: This function is only a wrapper to define this function always, even if +# coverage is not supported by the compiler or disabled. This function must +# be defined here, because the module will be exited, if there is no coverage +# support by the compiler or it is disabled by the user. +function (add_lcov_target TNAME) + if (LCOV_FOUND) + # capture initial coverage data + lcov_capture_initial_tgt(${TNAME}) + + # capture coverage data after execution + lcov_capture_tgt(${TNAME}) + endif () +endfunction (add_lcov_target) + + + + +# include required Modules +include(FindPackageHandleStandardArgs) + +# Search for required lcov binaries. +find_program(LCOV_BIN lcov) +find_program(GENINFO_BIN geninfo) +find_program(GENHTML_BIN genhtml) +find_package_handle_standard_args(lcov + REQUIRED_VARS LCOV_BIN GENINFO_BIN GENHTML_BIN + ) + +# enable genhtml C++ demangeling, if c++filt is found. +set(GENHTML_CPPFILT_FLAG "") +find_program(CPPFILT_BIN c++filt) +if (NOT CPPFILT_BIN STREQUAL "") + set(GENHTML_CPPFILT_FLAG "--demangle-cpp") +endif (NOT CPPFILT_BIN STREQUAL "") + +# enable no-external flag for lcov, if available. +if (GENINFO_BIN AND NOT DEFINED GENINFO_EXTERN_FLAG) + set(FLAG "") + execute_process(COMMAND ${GENINFO_BIN} --help OUTPUT_VARIABLE GENINFO_HELP) + string(REGEX MATCH "external" GENINFO_RES "${GENINFO_HELP}") + if (GENINFO_RES) + set(FLAG "--no-external") + endif () + + set(GENINFO_EXTERN_FLAG "${FLAG}" + CACHE STRING "Geninfo flag to exclude system sources.") +endif () + +# If Lcov was not found, exit module now. +if (NOT LCOV_FOUND) + return() +endif (NOT LCOV_FOUND) + + + + +# Create directories to be used. +file(MAKE_DIRECTORY ${LCOV_DATA_PATH_INIT}) +file(MAKE_DIRECTORY ${LCOV_DATA_PATH_CAPTURE}) + +set(LCOV_REMOVE_PATTERNS "") + +# This function will merge lcov files to a single target file. Additional lcov +# flags may be set with setting LCOV_EXTRA_FLAGS before calling this function. +function (lcov_merge_files OUTFILE ...) + # Remove ${OUTFILE} from ${ARGV} and generate lcov parameters with files. + list(REMOVE_AT ARGV 0) + + # Generate merged file. + string(REPLACE "${CMAKE_BINARY_DIR}/" "" FILE_REL "${OUTFILE}") + add_custom_command(OUTPUT "${OUTFILE}.raw" + COMMAND cat ${ARGV} > ${OUTFILE}.raw + DEPENDS ${ARGV} + COMMENT "Generating ${FILE_REL}" + ) + + add_custom_command(OUTPUT "${OUTFILE}" + COMMAND ${LCOV_BIN} --quiet -a ${OUTFILE}.raw --output-file ${OUTFILE} + --base-directory ${PROJECT_SOURCE_DIR} ${LCOV_EXTRA_FLAGS} + COMMAND ${LCOV_BIN} --quiet -r ${OUTFILE} ${LCOV_REMOVE_PATTERNS} + --output-file ${OUTFILE} ${LCOV_EXTRA_FLAGS} + DEPENDS ${OUTFILE}.raw + COMMENT "Post-processing ${FILE_REL}" + ) +endfunction () + + + + +# Add a new global target to generate initial coverage reports for all targets. +# This target will be used to generate the global initial info file, which is +# used to gather even empty report data. +if (NOT TARGET lcov-capture-init) + add_custom_target(lcov-capture-init) + set(LCOV_CAPTURE_INIT_FILES "" CACHE INTERNAL "") +endif (NOT TARGET lcov-capture-init) + + +# This function will add initial capture of coverage data for target , +# which is needed to get also data for objects, which were not loaded at +# execution time. It will call geninfo for every source file of once and +# store the info file in the same directory. +function (lcov_capture_initial_tgt TNAME) + # We don't have to check, if the target has support for coverage, thus this + # will be checked by add_coverage_target in Findcoverage.cmake. Instead we + # have to determine which gcov binary to use. + get_target_property(TSOURCES ${TNAME} SOURCES) + set(SOURCES "") + set(TCOMPILER "") + foreach (FILE ${TSOURCES}) + codecov_path_of_source(${FILE} FILE) + if (NOT "${FILE}" STREQUAL "") + codecov_lang_of_source(${FILE} LANG) + if (NOT "${LANG}" STREQUAL "") + list(APPEND SOURCES "${FILE}") + set(TCOMPILER ${CMAKE_${LANG}_COMPILER_ID}) + endif () + endif () + endforeach () + + # If no gcov binary was found, coverage data can't be evaluated. + if (NOT GCOV_${TCOMPILER}_BIN) + message(WARNING "No coverage evaluation binary found for ${TCOMPILER}.") + return() + endif () + + set(GCOV_BIN "${GCOV_${TCOMPILER}_BIN}") + set(GCOV_ENV "${GCOV_${TCOMPILER}_ENV}") + + + get_target_property(TBIN_DIR ${TNAME} BINARY_DIR) + set(TDIR ${TBIN_DIR}/CMakeFiles/${TNAME}.dir) + + set(GENINFO_FILES "") + foreach(FILE ${SOURCES}) + # generate empty coverage files + set(OUTFILE "${TDIR}/${FILE}.info.init") + list(APPEND GENINFO_FILES ${OUTFILE}) + + add_custom_command(OUTPUT ${OUTFILE} COMMAND ${GCOV_ENV} ${GENINFO_BIN} + --quiet --base-directory ${PROJECT_SOURCE_DIR} --initial + --gcov-tool ${GCOV_BIN} --output-filename ${OUTFILE} + ${GENINFO_EXTERN_FLAG} ${TDIR}/${FILE}.gcno + DEPENDS ${TNAME} + COMMENT "Capturing initial coverage data for ${FILE}" + ) + endforeach() + + # Concatenate all files generated by geninfo to a single file per target. + set(OUTFILE "${LCOV_DATA_PATH_INIT}/${TNAME}.info") + set(LCOV_EXTRA_FLAGS "--initial") + lcov_merge_files("${OUTFILE}" ${GENINFO_FILES}) + add_custom_target(${TNAME}-capture-init ALL DEPENDS ${OUTFILE}) + + # add geninfo file generation to global lcov-geninfo target + add_dependencies(lcov-capture-init ${TNAME}-capture-init) + set(LCOV_CAPTURE_INIT_FILES "${LCOV_CAPTURE_INIT_FILES}" + "${OUTFILE}" CACHE INTERNAL "" + ) +endfunction (lcov_capture_initial_tgt) + + +# This function will generate the global info file for all targets. It has to be +# called after all other CMake functions in the root CMakeLists.txt file, to get +# a full list of all targets that generate coverage data. +function (lcov_capture_initial) + # Skip this function (and do not create the following targets), if there are + # no input files. + if ("${LCOV_CAPTURE_INIT_FILES}" STREQUAL "") + return() + endif () + + # Add a new target to merge the files of all targets. + set(OUTFILE "${LCOV_DATA_PATH_INIT}/all_targets.info") + lcov_merge_files("${OUTFILE}" ${LCOV_CAPTURE_INIT_FILES}) + add_custom_target(lcov-geninfo-init ALL DEPENDS ${OUTFILE} + lcov-capture-init + ) +endfunction (lcov_capture_initial) + + + + +# Add a new global target to generate coverage reports for all targets. This +# target will be used to generate the global info file. +if (NOT TARGET lcov-capture) + add_custom_target(lcov-capture) + set(LCOV_CAPTURE_FILES "" CACHE INTERNAL "") +endif (NOT TARGET lcov-capture) + + +# This function will add capture of coverage data for target , which is +# needed to get also data for objects, which were not loaded at execution time. +# It will call geninfo for every source file of once and store the info +# file in the same directory. +function (lcov_capture_tgt TNAME) + # We don't have to check, if the target has support for coverage, thus this + # will be checked by add_coverage_target in Findcoverage.cmake. Instead we + # have to determine which gcov binary to use. + get_target_property(TSOURCES ${TNAME} SOURCES) + set(SOURCES "") + set(TCOMPILER "") + foreach (FILE ${TSOURCES}) + codecov_path_of_source(${FILE} FILE) + if (NOT "${FILE}" STREQUAL "") + codecov_lang_of_source(${FILE} LANG) + if (NOT "${LANG}" STREQUAL "") + list(APPEND SOURCES "${FILE}") + set(TCOMPILER ${CMAKE_${LANG}_COMPILER_ID}) + endif () + endif () + endforeach () + + # If no gcov binary was found, coverage data can't be evaluated. + if (NOT GCOV_${TCOMPILER}_BIN) + message(WARNING "No coverage evaluation binary found for ${TCOMPILER}.") + return() + endif () + + set(GCOV_BIN "${GCOV_${TCOMPILER}_BIN}") + set(GCOV_ENV "${GCOV_${TCOMPILER}_ENV}") + + get_target_property(TBIN_DIR ${TNAME} BINARY_DIR) + set(TDIR ${TBIN_DIR}/CMakeFiles/${TNAME}.dir) + + set(GENINFO_FILES "") + foreach(FILE ${SOURCES}) + # Generate coverage files. If no .gcda file was generated during + # execution, the empty coverage file will be used instead. + set(OUTFILE "${TDIR}/${FILE}.info") + list(APPEND GENINFO_FILES ${OUTFILE}) + + add_custom_command(OUTPUT ${OUTFILE} + COMMAND test -f "${TDIR}/${FILE}.gcda" + && ${GCOV_ENV} ${GENINFO_BIN} --quiet --base-directory + ${PROJECT_SOURCE_DIR} --gcov-tool ${GCOV_BIN} + --output-filename ${OUTFILE} ${GENINFO_EXTERN_FLAG} + ${TDIR}/${FILE}.gcda + || cp ${OUTFILE}.init ${OUTFILE} + DEPENDS ${TNAME} ${TNAME}-capture-init + COMMENT "Capturing coverage data for ${FILE}" + ) + endforeach() + + # Concatenate all files generated by geninfo to a single file per target. + set(OUTFILE "${LCOV_DATA_PATH_CAPTURE}/${TNAME}.info") + lcov_merge_files("${OUTFILE}" ${GENINFO_FILES}) + add_custom_target(${TNAME}-geninfo DEPENDS ${OUTFILE}) + + # add geninfo file generation to global lcov-capture target + add_dependencies(lcov-capture ${TNAME}-geninfo) + set(LCOV_CAPTURE_FILES "${LCOV_CAPTURE_FILES}" "${OUTFILE}" CACHE INTERNAL + "" + ) + + # Add target for generating html output for this target only. + file(MAKE_DIRECTORY ${LCOV_HTML_PATH}/${TNAME}) + add_custom_target(${TNAME}-genhtml + COMMAND ${GENHTML_BIN} --quiet --sort --prefix ${PROJECT_SOURCE_DIR} + --baseline-file ${LCOV_DATA_PATH_INIT}/${TNAME}.info + --output-directory ${LCOV_HTML_PATH}/${TNAME} + --title "${CMAKE_PROJECT_NAME} - target ${TNAME}" + ${GENHTML_CPPFILT_FLAG} ${OUTFILE} + DEPENDS ${TNAME}-geninfo ${TNAME}-capture-init + ) +endfunction (lcov_capture_tgt) + + +# This function will generate the global info file for all targets. It has to be +# called after all other CMake functions in the root CMakeLists.txt file, to get +# a full list of all targets that generate coverage data. +function (lcov_capture) + # Skip this function (and do not create the following targets), if there are + # no input files. + if ("${LCOV_CAPTURE_FILES}" STREQUAL "") + return() + endif () + + # Add a new target to merge the files of all targets. + set(OUTFILE "${LCOV_DATA_PATH_CAPTURE}/all_targets.info") + lcov_merge_files("${OUTFILE}" ${LCOV_CAPTURE_FILES}) + add_custom_target(lcov-geninfo DEPENDS ${OUTFILE} lcov-capture) + + # Add a new global target for all lcov targets. This target could be used to + # generate the lcov html output for the whole project instead of calling + # -geninfo and -genhtml for each target. It will also be + # used to generate a html site for all project data together instead of one + # for each target. + if (NOT TARGET lcov) + file(MAKE_DIRECTORY ${LCOV_HTML_PATH}/all_targets) + add_custom_target(lcov + COMMAND ${GENHTML_BIN} --quiet --sort + --baseline-file ${LCOV_DATA_PATH_INIT}/all_targets.info + --output-directory ${LCOV_HTML_PATH}/all_targets + --title "${CMAKE_PROJECT_NAME}" --prefix "${PROJECT_SOURCE_DIR}" + ${GENHTML_CPPFILT_FLAG} ${OUTFILE} + DEPENDS lcov-geninfo-init lcov-geninfo + ) + endif () +endfunction (lcov_capture) + + + + +# Add a new global target to generate the lcov html report for the whole project +# instead of calling -genhtml for each target (to create an own report +# for each target). Instead of the lcov target it does not require geninfo for +# all targets, so you have to call -geninfo to generate the info files +# the targets you'd like to have in your report or lcov-geninfo for generating +# info files for all targets before calling lcov-genhtml. +file(MAKE_DIRECTORY ${LCOV_HTML_PATH}/selected_targets) +if (NOT TARGET lcov-genhtml) + add_custom_target(lcov-genhtml + COMMAND ${GENHTML_BIN} + --quiet + --output-directory ${LCOV_HTML_PATH}/selected_targets + --title \"${CMAKE_PROJECT_NAME} - targets `find + ${LCOV_DATA_PATH_CAPTURE} -name \"*.info\" ! -name + \"all_targets.info\" -exec basename {} .info \\\;`\" + --prefix ${PROJECT_SOURCE_DIR} + --sort + ${GENHTML_CPPFILT_FLAG} + `find ${LCOV_DATA_PATH_CAPTURE} -name \"*.info\" ! -name + \"all_targets.info\"` + ) +endif (NOT TARGET lcov-genhtml) diff --git a/third_party/btwxt/cmake/Findcodecov.cmake b/third_party/btwxt/cmake/Findcodecov.cmake new file mode 100755 index 00000000000..5ed9acc3cbe --- /dev/null +++ b/third_party/btwxt/cmake/Findcodecov.cmake @@ -0,0 +1,258 @@ +# This file is part of CMake-codecov. +# +# Copyright (c) +# 2015-2017 RWTH Aachen University, Federal Republic of Germany +# +# See the LICENSE file in the package base directory for details +# +# Written by Alexander Haase, alexander.haase@rwth-aachen.de +# + + +# Add an option to choose, if coverage should be enabled or not. If enabled +# marked targets will be build with coverage support and appropriate targets +# will be added. If disabled coverage will be ignored for *ALL* targets. +option(ENABLE_COVERAGE "Enable coverage build." OFF) + +set(COVERAGE_FLAG_CANDIDATES + # gcc and clang + "-O0 -g -fprofile-arcs -ftest-coverage" + + # gcc and clang fallback + "-O0 -g --coverage" + ) + + +# Add coverage support for target ${TNAME} and register target for coverage +# evaluation. If coverage is disabled or not supported, this function will +# simply do nothing. +# +# Note: This function is only a wrapper to define this function always, even if +# coverage is not supported by the compiler or disabled. This function must +# be defined here, because the module will be exited, if there is no coverage +# support by the compiler or it is disabled by the user. +function (add_coverage TNAME) + # only add coverage for target, if coverage is support and enabled. + if (ENABLE_COVERAGE) + foreach (TNAME ${ARGV}) + add_coverage_target(${TNAME}) + endforeach () + endif () +endfunction (add_coverage) + + +# Add global target to gather coverage information after all targets have been +# added. Other evaluation functions could be added here, after checks for the +# specific module have been passed. +# +# Note: This function is only a wrapper to define this function always, even if +# coverage is not supported by the compiler or disabled. This function must +# be defined here, because the module will be exited, if there is no coverage +# support by the compiler or it is disabled by the user. +function (coverage_evaluate) + # add lcov evaluation + if (LCOV_FOUND) + lcov_capture_initial() + lcov_capture() + endif (LCOV_FOUND) +endfunction () + + +# Exit this module, if coverage is disabled. add_coverage is defined before this +# return, so this module can be exited now safely without breaking any build- +# scripts. +if (NOT ENABLE_COVERAGE) + return() +endif () + + + + +# Find the required flags foreach language. +set(CMAKE_REQUIRED_QUIET_SAVE ${CMAKE_REQUIRED_QUIET}) +set(CMAKE_REQUIRED_QUIET ${codecov_FIND_QUIETLY}) + +get_property(ENABLED_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES) +foreach (LANG ${ENABLED_LANGUAGES}) + # Coverage flags are not dependent on language, but the used compiler. So + # instead of searching flags foreach language, search flags foreach compiler + # used. + set(COMPILER ${CMAKE_${LANG}_COMPILER_ID}) + if (NOT COVERAGE_${COMPILER}_FLAGS) + foreach (FLAG ${COVERAGE_FLAG_CANDIDATES}) + if(NOT CMAKE_REQUIRED_QUIET) + message(STATUS "Try ${COMPILER} code coverage flag = [${FLAG}]") + endif() + + set(CMAKE_REQUIRED_FLAGS "${FLAG}") + unset(COVERAGE_FLAG_DETECTED CACHE) + + if (${LANG} STREQUAL "C") + include(CheckCCompilerFlag) + check_c_compiler_flag("${FLAG}" COVERAGE_FLAG_DETECTED) + + elseif (${LANG} STREQUAL "CXX") + include(CheckCXXCompilerFlag) + check_cxx_compiler_flag("${FLAG}" COVERAGE_FLAG_DETECTED) + + elseif (${LANG} STREQUAL "Fortran") + # CheckFortranCompilerFlag was introduced in CMake 3.x. To be + # compatible with older Cmake versions, we will check if this + # module is present before we use it. Otherwise we will define + # Fortran coverage support as not available. + include(CheckFortranCompilerFlag OPTIONAL + RESULT_VARIABLE INCLUDED) + if (INCLUDED) + check_fortran_compiler_flag("${FLAG}" + COVERAGE_FLAG_DETECTED) + elseif (NOT CMAKE_REQUIRED_QUIET) + message("-- Performing Test COVERAGE_FLAG_DETECTED") + message("-- Performing Test COVERAGE_FLAG_DETECTED - Failed" + " (Check not supported)") + endif () + endif() + + if (COVERAGE_FLAG_DETECTED) + set(COVERAGE_${COMPILER}_FLAGS "${FLAG}" + CACHE STRING "${COMPILER} flags for code coverage.") + mark_as_advanced(COVERAGE_${COMPILER}_FLAGS) + break() + else () + message(WARNING "Code coverage is not available for ${COMPILER}" + " compiler. Targets using this compiler will be " + "compiled without it.") + endif () + endforeach () + endif () +endforeach () + +set(CMAKE_REQUIRED_QUIET ${CMAKE_REQUIRED_QUIET_SAVE}) + + + + +# Helper function to get the language of a source file. +function (codecov_lang_of_source FILE RETURN_VAR) + get_filename_component(FILE_EXT "${FILE}" EXT) + string(TOLOWER "${FILE_EXT}" FILE_EXT) + string(SUBSTRING "${FILE_EXT}" 1 -1 FILE_EXT) + + get_property(ENABLED_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES) + foreach (LANG ${ENABLED_LANGUAGES}) + list(FIND CMAKE_${LANG}_SOURCE_FILE_EXTENSIONS "${FILE_EXT}" TEMP) + if (NOT ${TEMP} EQUAL -1) + set(${RETURN_VAR} "${LANG}" PARENT_SCOPE) + return() + endif () + endforeach() + + set(${RETURN_VAR} "" PARENT_SCOPE) +endfunction () + + +# Helper function to get the relative path of the source file destination path. +# This path is needed by FindGcov and FindLcov cmake files to locate the +# captured data. +function (codecov_path_of_source FILE RETURN_VAR) + string(REGEX MATCH "TARGET_OBJECTS:([^ >]+)" _source ${FILE}) + + # If expression was found, SOURCEFILE is a generator-expression for an + # object library. Currently we found no way to call this function automatic + # for the referenced target, so it must be called in the directoryso of the + # object library definition. + if (NOT "${_source}" STREQUAL "") + set(${RETURN_VAR} "" PARENT_SCOPE) + return() + endif () + + + string(REPLACE "${CMAKE_CURRENT_BINARY_DIR}/" "" FILE "${FILE}") + if(IS_ABSOLUTE ${FILE}) + file(RELATIVE_PATH FILE ${CMAKE_CURRENT_SOURCE_DIR} ${FILE}) + endif() + + # get the right path for file + string(REPLACE ".." "__" PATH "${FILE}") + + set(${RETURN_VAR} "${PATH}" PARENT_SCOPE) +endfunction() + + + + +# Add coverage support for target ${TNAME} and register target for coverage +# evaluation. +function(add_coverage_target TNAME) + # Check if all sources for target use the same compiler. If a target uses + # e.g. C and Fortran mixed and uses different compilers (e.g. clang and + # gfortran) this can trigger huge problems, because different compilers may + # use different implementations for code coverage. + get_target_property(TSOURCES ${TNAME} SOURCES) + set(TARGET_COMPILER "") + set(ADDITIONAL_FILES "") + foreach (FILE ${TSOURCES}) + # If expression was found, FILE is a generator-expression for an object + # library. Object libraries will be ignored. + string(REGEX MATCH "TARGET_OBJECTS:([^ >]+)" _file ${FILE}) + if ("${_file}" STREQUAL "") + codecov_lang_of_source(${FILE} LANG) + if (LANG) + list(APPEND TARGET_COMPILER ${CMAKE_${LANG}_COMPILER_ID}) + + list(APPEND ADDITIONAL_FILES "${FILE}.gcno") + list(APPEND ADDITIONAL_FILES "${FILE}.gcda") + endif () + endif () + endforeach () + + list(REMOVE_DUPLICATES TARGET_COMPILER) + list(LENGTH TARGET_COMPILER NUM_COMPILERS) + + if (NUM_COMPILERS GREATER 1) + message(WARNING "Can't use code coverage for target ${TNAME}, because " + "it will be compiled by incompatible compilers. Target will be " + "compiled without code coverage.") + return() + + elseif (NUM_COMPILERS EQUAL 0) + message(WARNING "Can't use code coverage for target ${TNAME}, because " + "it uses an unknown compiler. Target will be compiled without " + "code coverage.") + return() + + elseif (NOT DEFINED "COVERAGE_${TARGET_COMPILER}_FLAGS") + # A warning has been printed before, so just return if flags for this + # compiler aren't available. + return() + endif() + + + # enable coverage for target + set_property(TARGET ${TNAME} APPEND_STRING + PROPERTY COMPILE_FLAGS " ${COVERAGE_${TARGET_COMPILER}_FLAGS}") + set_property(TARGET ${TNAME} APPEND_STRING + PROPERTY LINK_FLAGS " ${COVERAGE_${TARGET_COMPILER}_FLAGS}") + + + # Add gcov files generated by compiler to clean target. + set(CLEAN_FILES "") + foreach (FILE ${ADDITIONAL_FILES}) + codecov_path_of_source(${FILE} FILE) + list(APPEND CLEAN_FILES "CMakeFiles/${TNAME}.dir/${FILE}") + endforeach() + + set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES + "${CLEAN_FILES}") + + + add_gcov_target(${TNAME}) + add_lcov_target(${TNAME}) +endfunction(add_coverage_target) + + + + +# Include modules for parsing the collected data and output it in a readable +# format (like gcov and lcov). +find_package(Gcov) +find_package(Lcov) diff --git a/third_party/btwxt/cmake/compiler-flags.cmake b/third_party/btwxt/cmake/compiler-flags.cmake new file mode 100644 index 00000000000..813003afcbd --- /dev/null +++ b/third_party/btwxt/cmake/compiler-flags.cmake @@ -0,0 +1,7 @@ +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + if (UNIX) + add_definitions("-fPIC") + endif() + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wextra") +endif() + diff --git a/third_party/btwxt/cmake/llvm-cov-wrapper b/third_party/btwxt/cmake/llvm-cov-wrapper new file mode 100755 index 00000000000..453f52d14c0 --- /dev/null +++ b/third_party/btwxt/cmake/llvm-cov-wrapper @@ -0,0 +1,56 @@ +#!/bin/sh + +# This file is part of CMake-codecov. +# +# Copyright (c) +# 2015-2017 RWTH Aachen University, Federal Republic of Germany +# +# See the LICENSE file in the package base directory for details +# +# Written by Alexander Haase, alexander.haase@rwth-aachen.de +# + +if [ -z "$LLVM_COV_BIN" ] +then + echo "LLVM_COV_BIN not set!" >& 2 + exit 1 +fi + + +# Get LLVM version to find out. +LLVM_VERSION=$($LLVM_COV_BIN -version | grep -i "LLVM version" \ + | sed "s/^\([A-Za-z ]*\)\([0-9]*\).\([0-9]*\).*$/\2.\3/g") + +if [ "$1" = "-v" ] +then + echo "llvm-cov-wrapper $LLVM_VERSION" + exit 0 +fi + + +if [ -n "$LLVM_VERSION" ] +then + MAJOR=$(echo $LLVM_VERSION | cut -d'.' -f1) + MINOR=$(echo $LLVM_VERSION | cut -d'.' -f2) + + if [ $MAJOR -eq 3 ] && [ $MINOR -le 4 ] + then + if [ -f "$1" ] + then + filename=$(basename "$1") + extension="${filename##*.}" + + case "$extension" in + "gcno") exec $LLVM_COV_BIN --gcno="$1" ;; + "gcda") exec $LLVM_COV_BIN --gcda="$1" ;; + esac + fi + fi + + if [ $MAJOR -eq 3 ] && [ $MINOR -le 5 ] + then + exec $LLVM_COV_BIN $@ + fi +fi + +exec $LLVM_COV_BIN gcov $@ diff --git a/third_party/btwxt/src/CMakeLists.txt b/third_party/btwxt/src/CMakeLists.txt new file mode 100644 index 00000000000..b54bd6c31d4 --- /dev/null +++ b/third_party/btwxt/src/CMakeLists.txt @@ -0,0 +1,29 @@ +# Main library + +set(library_sources + btwxt.h + btwxt.cpp + griddeddata.h + griddeddata.cpp + gridpoint.h + gridpoint.cpp + error.h + error.cpp +) + +option( BTWXT_STATIC_LIB "Make btwxt a static library" ON ) + +if (BTWXT_STATIC_LIB) + add_library(btwxt STATIC ${library_sources}) + set_target_properties(btwxt PROPERTIES COMPILE_FLAGS "-DBTWXT_STATIC_DEFINE") +else() + set(CMAKE_MACOSX_RPATH 1) + add_library(btwxt SHARED ${library_sources}) +endif() + +include(GenerateExportHeader) +generate_export_header(btwxt) + +if (BTWXT_COVERAGE) + add_coverage(btwxt) +endif() \ No newline at end of file diff --git a/third_party/btwxt/src/btwxt.cpp b/third_party/btwxt/src/btwxt.cpp new file mode 100644 index 00000000000..64ce0be60f7 --- /dev/null +++ b/third_party/btwxt/src/btwxt.cpp @@ -0,0 +1,86 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include +#include + +// btwxt +#include "btwxt.h" +#include "error.h" + +namespace Btwxt { + +RegularGridInterpolator::RegularGridInterpolator() = default; + +RegularGridInterpolator::RegularGridInterpolator(GriddedData &grid_data_in) + : grid_data(grid_data_in), grid_point(grid_data) {} + +RegularGridInterpolator::RegularGridInterpolator(const std::vector> &grid, + const std::vector> &values) + : grid_data(grid, values), grid_point(grid_data) {} + +RegularGridInterpolator::RegularGridInterpolator(const RegularGridInterpolator &source) { + *this = source; +} + +double RegularGridInterpolator::get_value_at_target(std::vector target, + std::size_t table_index) { + set_new_target(target); + std::vector result = grid_point.get_results(); + return result[table_index]; +} + +double RegularGridInterpolator::get_value_at_target(std::size_t table_index) { + std::vector result = grid_point.get_results(); + return result[table_index]; +} + +std::vector RegularGridInterpolator::get_values_at_target(const std::vector &target) { + set_new_target(target); + return grid_point.get_results(); +} + +std::vector RegularGridInterpolator::get_values_at_target() { + return grid_point.get_results(); +} + +void RegularGridInterpolator::normalize_values_at_target(std::size_t table_index, const std::vector &target, const double scalar) { + set_new_target(target); + normalize_values_at_target(table_index, scalar); +} + +void RegularGridInterpolator::normalize_values_at_target(std::size_t table_index, const double scalar) { + grid_point.normalize_grid_values_at_target(table_index, scalar); +} + +void RegularGridInterpolator::normalize_values_at_target(const std::vector &target, const double scalar) { + set_new_target(target); + normalize_values_at_target(scalar); +} + +void RegularGridInterpolator::normalize_values_at_target(const double scalar) { + grid_point.normalize_grid_values_at_target(scalar); +} + +void RegularGridInterpolator::set_new_target(const std::vector &target) { + grid_point.set_target(target); +} + +std::vector RegularGridInterpolator::get_current_target() { + return grid_point.get_current_target(); +} + +void RegularGridInterpolator::clear_current_target() { grid_point = GridPoint(grid_data); } + +std::size_t RegularGridInterpolator::get_ndims() { return grid_data.get_ndims(); } + +std::vector> &RegularGridInterpolator::get_hypercube() { + return grid_point.get_hypercube(); +} + +std::pair RegularGridInterpolator::get_axis_limits(int dim) { + return grid_data.get_extrap_limits(dim); +} + +} // namespace Btwxt diff --git a/third_party/btwxt/src/btwxt.h b/third_party/btwxt/src/btwxt.h new file mode 100644 index 00000000000..a2bfd6c3f50 --- /dev/null +++ b/third_party/btwxt/src/btwxt.h @@ -0,0 +1,110 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +#ifndef GRIDINTERP_H_ +#define GRIDINTERP_H_ + +// Standard +#include + +// btwxt +#include "griddeddata.h" +#include "gridpoint.h" + +namespace Btwxt { + +enum class MsgLevel { MSG_DEBUG, MSG_INFO, MSG_WARN, MSG_ERR }; +extern int LOG_LEVEL; + +typedef void (*BtwxtCallbackFunction)(const MsgLevel messageType, const std::string message, + void *contextPtr); + +extern BtwxtCallbackFunction btwxtCallbackFunction; +extern void *messageCallbackContextPtr; + +void setMessageCallback(BtwxtCallbackFunction callbackFunction, void *contextPtr); + +// this will be the public-facing class. +class RegularGridInterpolator { +public: + // GridSpace, GridAxis, AllValueTables, ValueTable are instantiated in RGI constructor. + + RegularGridInterpolator(); + + explicit RegularGridInterpolator(GriddedData &grid_data); + + RegularGridInterpolator(const std::vector> &grid, + const std::vector> &values); + + RegularGridInterpolator(const RegularGridInterpolator &source); + + RegularGridInterpolator &operator=(const RegularGridInterpolator &source) { + if (this == &source) { + return *this; + } + + grid_data = source.grid_data; + grid_point = source.grid_point; + if (source.grid_point.grid_data != nullptr) { + this->grid_point.grid_data = &this->grid_data; + } + return *this; + } + + // Add value table to GriddedData + std::size_t add_value_table(std::vector &value_vector) { + return grid_data.add_value_table(value_vector); + } + + // GridPoint gets instantiated inside calculate_value_at_target + double get_value_at_target(std::vector target, std::size_t table_index); + + double operator()(std::vector target, std::size_t table_index) { + return get_value_at_target(std::move(target), table_index); + } + + double get_value_at_target(std::size_t table_index); + + double operator()(std::size_t table_index) { return get_value_at_target(table_index); } + + std::vector get_values_at_target(); + + std::vector get_values_at_target(const std::vector &target); + + std::vector operator()(const std::vector &target) { + return get_values_at_target(target); + } + + std::vector operator()() { return get_values_at_target(); } + + void set_new_target(const std::vector &target); + + void normalize_values_at_target(const double scalar = 1.0); + + void normalize_values_at_target(const std::vector &target, const double scalar = 1.0); + + void normalize_values_at_target(std::size_t table_index, const double scalar = 1.0); + + void normalize_values_at_target(std::size_t table_index, const std::vector &target, const double scalar = 1.0); + + std::vector get_current_target(); + + void clear_current_target(); + + std::size_t get_ndims(); + + void set_axis_interp_method(std::size_t dim, Method method) { + grid_data.set_axis_interp_method(dim, method); + } + + std::vector>& get_hypercube(); + + std::pair get_axis_limits(int dim); + +private: + GriddedData grid_data; + GridPoint grid_point; +}; + +} // namespace Btwxt +#endif // GRIDINTERP_H_ diff --git a/third_party/btwxt/src/error.cpp b/third_party/btwxt/src/error.cpp new file mode 100644 index 00000000000..758b9bfec4b --- /dev/null +++ b/third_party/btwxt/src/error.cpp @@ -0,0 +1,41 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include +#include + +// Btwxt +#include "error.h" + +namespace Btwxt { + +BtwxtCallbackFunction btwxtCallbackFunction; +void *messageCallbackContextPtr; +int LOG_LEVEL = 2; + +void showMessage(const MsgLevel messageType, const std::string message) { + if (btwxtCallbackFunction != nullptr) { + (*btwxtCallbackFunction)(messageType, message, messageCallbackContextPtr); + } else if (messageType == MsgLevel::MSG_ERR) { + std::cout << " ERROR: " << message << std::endl; + throw std::invalid_argument(stringify(" ERROR: ", message)); + } else { + if (static_cast(messageType) >= Btwxt::LOG_LEVEL) { + std::string prefix(" DEBUG: "); + if (messageType == MsgLevel::MSG_WARN) { + prefix = " WARNING: "; + } else if (messageType == MsgLevel::MSG_INFO) { + prefix = " NOTE: "; + } + std::cout << prefix << message << std::endl; + } + } +} + +void setMessageCallback(BtwxtCallbackFunction callBackFunction, void *contextPtr) { + btwxtCallbackFunction = callBackFunction; + messageCallbackContextPtr = contextPtr; +} + +} // namespace Btwxt diff --git a/third_party/btwxt/src/error.h b/third_party/btwxt/src/error.h new file mode 100644 index 00000000000..8ea8a390cc3 --- /dev/null +++ b/third_party/btwxt/src/error.h @@ -0,0 +1,27 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +#ifndef BTWXT_ERROR_H_ +#define BTWXT_ERROR_H_ + +#include + +// BTWXT +#include "btwxt.h" + +namespace Btwxt { + +void showMessage(MsgLevel messageType, std::string message); + +struct expand_type { + template expand_type(T &&...) {} +}; + +template std::string stringify(ArgTypes... args) { + std::ostringstream oss; + expand_type{0, (oss << args, 0)...}; + return oss.str(); +} + +} // namespace Btwxt +#endif // BTWXT_ERROR_H_ diff --git a/third_party/btwxt/src/griddeddata.cpp b/third_party/btwxt/src/griddeddata.cpp new file mode 100644 index 00000000000..f331f63eb6b --- /dev/null +++ b/third_party/btwxt/src/griddeddata.cpp @@ -0,0 +1,310 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include +#include +#include + +// btwxt +#include "error.h" +#include "griddeddata.h" + +namespace Btwxt { + +GridAxis::GridAxis() = default; + +GridAxis::GridAxis(std::vector grid_vector, Method extrapolation_method, + Method interpolation_method, std::pair extrapolation_limits) + : grid(std::move(grid_vector)), + spacing_multipliers(2, std::vector(std::max((int)grid.size() - 1, 0), 1.0)), + extrapolation_method(extrapolation_method), + interpolation_method(interpolation_method), + extrapolation_limits(std::move(extrapolation_limits)) { + if (grid.size() == 0) { + showMessage(MsgLevel::MSG_ERR, "Cannot create a GridAxis from a zero-length vector."); + } + check_grid_sorted(); + check_extrap_limits(); + if (interpolation_method == Method::CUBIC) { + calc_spacing_multipliers(); + } +} + +std::size_t GridAxis::get_length() { return grid.size(); } + +void GridAxis::set_interp_method(const Method im) { + interpolation_method = im; + if (im == Method::CUBIC) { + calc_spacing_multipliers(); + } +} + +void GridAxis::set_extrap_method(const Method em) { extrapolation_method = em; } + +void GridAxis::set_extrap_limits(const std::pair extrap_limits) { + extrapolation_limits = extrap_limits; + check_extrap_limits(); +} + +double GridAxis::get_spacing_multiplier(const std::size_t &flavor, const std::size_t &index) { + return spacing_multipliers[flavor][index]; +} + +void GridAxis::calc_spacing_multipliers() { + // "0" and "1" are the "flavors" of the calc_spacing_multipliers. + // If you are sitting at the "0" along an edge of the hypercube, you want the "0" flavof + if (grid.size() == 1) { + set_interp_method(Method::LINEAR); + showMessage(MsgLevel::MSG_WARN, "A cubic interpolation method is not valid for grid axes with only one value. Interpolation method reset to linear."); + } + double center_spacing; + for (std::size_t i = 0; i < grid.size() - 1; i++) { + center_spacing = grid[i + 1] - grid[i]; + if (i != 0) { + spacing_multipliers[0][i] = center_spacing / (grid[i + 1] - grid[i - 1]); + } + if (i + 2 != grid.size()) { + spacing_multipliers[1][i] = center_spacing / (grid[i + 2] - grid[i]); + } + } +} + +void GridAxis::check_grid_sorted() { + bool grid_is_sorted = Btwxt::free_check_sorted(grid); + if (!grid_is_sorted) { + showMessage(MsgLevel::MSG_ERR, "axis is not sorted."); + } +} + +void GridAxis::check_extrap_limits() { + if (extrapolation_limits.first > grid[0]) { + showMessage(MsgLevel::MSG_WARN, stringify("The lower extrapolation limit (", extrapolation_limits.first,") is within the set of grid values. Setting to smallest grid value (", grid[0],").")); + extrapolation_limits.first = grid[0]; + } + if (extrapolation_limits.second < grid.back()) { + showMessage(MsgLevel::MSG_WARN, stringify("The upper extrapolation limit (", extrapolation_limits.first,") is within the set of grid values. Setting to largest grid value (", grid.back(),").")); + extrapolation_limits.second = grid.back(); + } +} + +GriddedData::GriddedData() = default; + +GriddedData::GriddedData(std::vector> grid, + std::vector> values) + : ndims(grid.size()), dimension_lengths(ndims), dimension_step_size(ndims), temp_coords(ndims) { + construct_axes(grid); + set_dimension_sizes(); + num_tables = values.size(); + results.resize(num_tables); + + value_tables = values; +} + +GriddedData::GriddedData(std::vector grid_axes, std::vector> values) + : grid_axes(grid_axes), + ndims(grid_axes.size()), + dimension_lengths(ndims), + dimension_step_size(ndims), + temp_coords(ndims) { + set_dimension_sizes(); + num_tables = values.size(); + results.resize(num_tables); + + value_tables = values; +} + +GriddedData::GriddedData(std::vector grid_axes) + : grid_axes(grid_axes), + ndims(grid_axes.size()), + dimension_lengths(ndims), + dimension_step_size(ndims), + temp_coords(ndims) { + set_dimension_sizes(); + num_tables = 0; +} + +void GriddedData::set_dimension_sizes() { + num_values = 1; + for (std::size_t dim = ndims - 1; /* dim >= 0 */ dim < ndims; --dim) { + std::size_t length = grid_axes[dim].get_length(); + if (length == 0) { + showMessage(MsgLevel::MSG_ERR, stringify("Dimension ", dim, " has an axis of length zero.")); + } + dimension_lengths[dim] = length; + dimension_step_size[dim] = num_values; + num_values *= length; + } +} + +void GriddedData::construct_axes(const std::vector> &grid) { + for (const auto &axis : grid) { + grid_axes.emplace_back(axis); + } +} + +std::size_t GriddedData::add_value_table(std::vector &value_vector) { + if (value_vector.size() != num_values) { + showMessage(MsgLevel::MSG_ERR, stringify("Input value table does not match the grid size: ", + value_vector.size(), " != ", num_values)); + } + value_tables.push_back(value_vector); + num_tables++; + results.resize(num_tables); + return num_tables - 1; +} + +std::size_t GriddedData::get_ndims() { return grid_axes.size(); } + +std::size_t GriddedData::get_num_tables() { return num_tables; } + +std::size_t GriddedData::get_value_index(const std::vector &coords) { + std::size_t index = 0; + for (std::size_t dim = 0; dim < ndims; ++dim) { + index += coords[dim] * dimension_step_size[dim]; + } + return index; +} + +std::size_t GriddedData::get_value_index_relative(const std::vector &coords, + const std::vector &translation) { + int new_coord; + for (std::size_t dim = 0; dim < coords.size(); dim++) { + new_coord = coords[dim] + translation[dim]; + if (new_coord < 0) { + temp_coords[dim] = 0u; + } else if (new_coord >= (int)dimension_lengths[dim]) { + temp_coords[dim] = dimension_lengths[dim] - 1u; + } else { + temp_coords[dim] = new_coord; + } + } + return get_value_index(temp_coords); +} + +std::vector GriddedData::get_values(const std::vector &coords) { + std::size_t index = get_value_index(coords); + for (std::size_t i = 0; i < num_tables; ++i) { + results[i] = value_tables[i][index]; + } + return results; +} + +std::vector GriddedData::get_values(const std::size_t index) { + for (std::size_t i = 0; i < num_tables; ++i) { + results[i] = value_tables[i][index]; + } + return results; +} + +std::vector GriddedData::get_values_relative(const std::vector &coords, + const std::vector &translation) { + return get_values(get_value_index_relative(coords, translation)); +} + +const std::vector &GriddedData::get_grid_vector(const std::size_t &dim) { + return grid_axes[dim].grid; +} + +std::pair GriddedData::get_extrap_limits(const std::size_t &dim) { + return grid_axes[dim].extrapolation_limits; +} + +double GriddedData::get_axis_spacing_mult(const std::size_t &dim, const std::size_t &flavor, + const std::size_t &index) { + if (grid_axes[dim].interpolation_method == Method::CUBIC) { + return grid_axes[dim].get_spacing_multiplier(flavor, index); + } else { + return 0.0; + } +} + +void GriddedData::set_axis_extrap_method(const std::size_t &dim, + const Method extrapolation_method) { + grid_axes[dim].extrapolation_method = extrapolation_method; +} + +std::vector GriddedData::get_extrap_methods() { + std::vector extrap_methods(ndims); + for (std::size_t dim = 0; dim < ndims; dim++) { + extrap_methods[dim] = grid_axes[dim].extrapolation_method; + } + return extrap_methods; +} + +void GriddedData::set_axis_extrap_limits(const std::size_t &dim, + const std::pair &extrap_limits) { + grid_axes[dim].set_extrap_limits(extrap_limits); +} + +std::vector GriddedData::get_interp_methods() { + std::vector interp_methods(ndims); + for (std::size_t dim = 0; dim < ndims; dim++) { + interp_methods[dim] = grid_axes[dim].interpolation_method; + } + return interp_methods; +} + +void GriddedData::set_axis_interp_method(const std::size_t &dim, + const Method interpolation_method) { + grid_axes[dim].set_interp_method(interpolation_method); +} + +void GriddedData::normalize_value_table(std::size_t table_num, double scalar) { + auto &table = value_tables[table_num]; + if (scalar == 0.0) { + showMessage(MsgLevel::MSG_ERR, "Attempt to normalize values by zero."); + } + scalar = 1.0/scalar; + std::transform(table.begin(), table.end(), table.begin(), + std::bind(std::multiplies(), std::placeholders::_1, scalar)); +} + +std::string GriddedData::write_data() { + std::vector indices(ndims,0); + std::stringstream output(""); + + for (std::size_t dim=0; dim < ndims; ++dim) { + output << "Axis " << dim + 1 << ","; + } + for (std::size_t tab=0; tab < num_tables; ++tab) { + output << "Value " << tab + 1 << ","; + } + output << std::endl; + for (std::size_t index=0; index < num_values; ++index) { + for (std::size_t dim=0; dim < ndims; ++dim) { + output << grid_axes[dim].grid[indices[dim]] << ","; + } + for (std::size_t tab=0; tab < num_tables; ++tab) { + output << value_tables[tab][index] << ","; + } + output << std::endl; + ++indices[ndims - 1]; + for (std::size_t dim= ndims - 1; dim > 0; --dim) { + if (indices[dim] >= dimension_lengths[dim]) { + ++indices[dim - 1]; + indices[dim] = 0; + } + } + } + return output.str(); +} + +// free functions +bool free_check_sorted(std::vector my_vec) { + // ensures that the grid vector is strictly ascending + auto first = my_vec.begin(); + auto last = my_vec.end(); + if (first == last) + return true; + + auto next = first; + while (++next != last) { + if (*next <= *first) + return false; + ++first; + } + return true; +} + +} // namespace Btwxt diff --git a/third_party/btwxt/src/griddeddata.h b/third_party/btwxt/src/griddeddata.h new file mode 100644 index 00000000000..20f6f4854ce --- /dev/null +++ b/third_party/btwxt/src/griddeddata.h @@ -0,0 +1,130 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +#ifndef GRIDDEDDATA_H_ +#define GRIDDEDDATA_H_ + +#include +#include + +namespace Btwxt { + +enum class Method { CONSTANT, LINEAR, CUBIC, UNDEF }; + +class GridAxis { + // A single input dimension of the performance space +public: + GridAxis(); + + GridAxis(std::vector grid_vector, Method extrapolation_method = Method::CONSTANT, + Method interpolation_method = Method::LINEAR, + std::pair extrapolation_limits = {-DBL_MAX, DBL_MAX}); + + std::vector grid; + std::vector> spacing_multipliers; + Method extrapolation_method; + Method interpolation_method; + std::pair extrapolation_limits; + + // bool is_regular; <-- to add later + + std::size_t get_length(); + + void set_interp_method(Method interpolation_method); + void set_extrap_method(Method extrapolation_method); + void set_extrap_limits(std::pair extrap_limits); + + double get_spacing_multiplier(const std::size_t &flavor, const std::size_t &index); + +private: + void calc_spacing_multipliers(); + void check_grid_sorted(); + void check_extrap_limits(); +}; + +class GriddedData { +public: + GriddedData(); + + GriddedData(std::vector> grid, std::vector> values); + + GriddedData(std::vector grid_axes, std::vector> values); + + explicit GriddedData(std::vector grid_axes); + + std::size_t get_ndims(); + + std::size_t get_num_tables(); + + std::size_t add_value_table(std::vector &value_vector); + + const std::vector &get_grid_vector(const std::size_t &dim); + + std::pair get_extrap_limits(const std::size_t &dim); + + std::size_t get_value_index(const std::vector &coords); + + std::size_t get_value_index_relative(const std::vector &coords, + const std::vector &translation); + + std::vector get_values(const std::vector &coords); + + std::vector get_values_relative(const std::vector &coords, + const std::vector &translation); + + std::vector get_values(const std::size_t index); + + double get_axis_spacing_mult(const std::size_t &dim, const std::size_t &flavor, + const std::size_t &index); + + std::vector get_interp_methods(); + + std::vector get_extrap_methods(); + + void normalize_value_table(std::size_t table_num, double scalar = 1.0); + + void set_axis_extrap_method(const std::size_t &dim, Method); + + void set_axis_extrap_limits(const std::size_t &dim, + const std::pair &extrap_limits); + + void set_axis_interp_method(const std::size_t &dim, Method); + + std::string write_data(); + + std::vector> value_tables; + std::size_t num_values; + std::size_t num_tables; + std::vector grid_axes; + std::size_t ndims; + std::vector dimension_lengths; + +private: + void construct_axes(const std::vector> &grid); + void set_dimension_sizes(); + std::vector dimension_step_size; + std::vector temp_coords; + std::vector results; +}; + +// free functions +bool free_check_sorted(std::vector); + +template +std::vector> cart_product(const std::vector> &v) { + std::vector> combinations = {{}}; + for (const auto &list : v) { + std::vector> r; + for (const auto &x : combinations) { + for (const auto item : list) { + r.push_back(x); + r.back().push_back(item); + } + } + combinations = std::move(r); + } + return combinations; +} + +} // namespace Btwxt +#endif // GRIDDEDDATA_H_ diff --git a/third_party/btwxt/src/gridpoint.cpp b/third_party/btwxt/src/gridpoint.cpp new file mode 100644 index 00000000000..1db843399a0 --- /dev/null +++ b/third_party/btwxt/src/gridpoint.cpp @@ -0,0 +1,308 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include +#include +#include + +// btwxt +#include "error.h" + +namespace Btwxt { + +GridPoint::GridPoint() {} + +GridPoint::GridPoint(GriddedData &grid_data_in) + : grid_data(&grid_data_in), + ndims(grid_data->get_ndims()), + target(ndims, 0.0), + target_is_set(false), + point_floor(ndims, 0), + floor_index(0), + weights(ndims, 0), + is_inbounds(ndims), + methods(ndims, Method::UNDEF), + reset_hypercube(false), + weighting_factors(ndims, std::vector(4, 0.0)), + interp_coeffs(ndims, std::vector(2, 0.0)), + cubic_slope_coeffs(ndims, std::vector(2, 0.0)), + results(grid_data->num_tables), + hypercube_size_hash(0) { +} + +GridPoint::GridPoint(GriddedData &grid_data_in, std::vector v) + : grid_data(&grid_data_in), + ndims(grid_data->get_ndims()), + target_is_set(false), + point_floor(ndims, 0), + weights(ndims, 0), + is_inbounds(ndims), + methods(ndims, Method::UNDEF), + reset_hypercube(false), + weighting_factors(ndims, std::vector(4, 0.0)), + interp_coeffs(ndims, std::vector(2, 0.0)), + cubic_slope_coeffs(ndims, std::vector(2, 0.0)), + results(grid_data->num_tables) { + set_target(v); +} + +void GridPoint::set_target(const std::vector &v) { + if (v.size() != ndims) { + showMessage(MsgLevel::MSG_ERR, + stringify("Target and Gridded Data do not have the same dimensions.")); + } + if (target_is_set) { + if (std::equal(v.begin(), v.end(), target.begin())) { + return; + } + } + target = v; + target_is_set = true; + set_floor(); + calculate_weights(); + consolidate_methods(); + calculate_interp_coeffs(); + set_results(); +} + +std::vector GridPoint::get_current_target() { + if (!target_is_set) { + showMessage(MsgLevel::MSG_WARN, + stringify("The current target was requested, but no target has been set.")); + return target; + } + return target; +} + +std::vector GridPoint::get_floor() { return point_floor; } + +std::vector GridPoint::get_weights() { return weights; } + +std::vector GridPoint::get_is_inbounds() { return is_inbounds; } + +std::vector GridPoint::get_methods() { return methods; } + +std::vector> GridPoint::get_interp_coeffs() { return interp_coeffs; } + +std::vector> GridPoint::get_cubic_slope_coeffs() { return cubic_slope_coeffs; } + +void GridPoint::set_floor() { + for (std::size_t dim = 0; dim < ndims; dim += 1) { + set_dim_floor(dim); + } + floor_index = grid_data->get_value_index(point_floor); +} + +void GridPoint::set_dim_floor(std::size_t dim) { + GridAxis &axis = grid_data->grid_axes[dim]; + std::size_t l = axis.grid.size(); + if (target[dim] < axis.extrapolation_limits.first) { + is_inbounds[dim] = Bounds::OUTLAW; + point_floor[dim] = 0u; + } else if (target[dim] > axis.extrapolation_limits.second) { + is_inbounds[dim] = Bounds::OUTLAW; + point_floor[dim] = std::max((int)l - 2, 0); // l-2 because that's the left side of the (l-2, l-1) edge. + } else if (target[dim] < axis.grid[0]) { + is_inbounds[dim] = Bounds::OUTBOUNDS; + point_floor[dim] = 0; + } else if (target[dim] > axis.grid.back()) { + is_inbounds[dim] = Bounds::OUTBOUNDS; + point_floor[dim] = std::max((int)l - 2, 0); // l-2 because that's the left side of the (l-2, l-1) edge. + } else if (target[dim] == axis.grid.back()) { + is_inbounds[dim] = Bounds::INBOUNDS; + point_floor[dim] = std::max((int)l - 2, 0); // l-2 because that's the left side of the (l-2, l-1) edge. + } else { + is_inbounds[dim] = Bounds::INBOUNDS; + std::vector::const_iterator upper = + std::upper_bound(axis.grid.begin(), axis.grid.end(), target[dim]); + point_floor[dim] = upper - axis.grid.begin() - 1; + } +} + +void GridPoint::calculate_weights() { + for (std::size_t dim = 0; dim < ndims; ++dim) { + if (grid_data->grid_axes[dim].grid.size() > 1) { + double edge[] = {grid_data->grid_axes[dim].grid[point_floor[dim]], + grid_data->grid_axes[dim].grid[point_floor[dim] + 1]}; + weights[dim] = compute_fraction(target[dim], edge); + } else { + weights[dim] = 1.0; + } + } +} + +double compute_fraction(double x, double edge[2]) { + // how far along an edge is the target? + return (x - edge[0]) / (edge[1] - edge[0]); +} + +void GridPoint::consolidate_methods() +// If out of bounds, extrapolate according to prescription +// If outside of extrapolation limits, send a warning and perform constant extrapolation. +{ + previous_methods = methods; + methods = grid_data->get_interp_methods(); + if (target_is_set) { + auto extrap_methods = grid_data->get_extrap_methods(); + for (std::size_t dim = 0; dim < ndims; dim++) { + if (is_inbounds[dim]==Bounds::OUTBOUNDS) { + methods[dim] = extrap_methods[dim]; + } else if (is_inbounds[dim]==Bounds::OUTLAW) { + // showMessage(MsgLevel::MSG_WARN, stringify("The target is outside the extrapolation limits + // in dimension ", dim, + // ". Will perform constant extrapolation.")); + methods[dim] = Method::CONSTANT; + } + } + } + reset_hypercube |= !std::equal(previous_methods.begin(), previous_methods.end(), methods.begin()); + if (reset_hypercube) { + set_hypercube(methods); + } +} + +void GridPoint::set_hypercube() { set_hypercube(grid_data->get_interp_methods()); } + +void GridPoint::set_hypercube(std::vector methods) { + if (methods.size() != ndims) { + showMessage(MsgLevel::MSG_ERR, stringify("Error setting hypercube. Methods vector does not " + "have the correct number of dimensions.")); + } + std::size_t previous_size = hypercube.size(); + std::vector> options(ndims, {0, 1}); + reset_hypercube = false; + + hypercube_size_hash = 0; + std::size_t digit = 1; + for (std::size_t dim = 0; dim < ndims; dim++) { + if (target_is_set && weights[dim] == 0.0) { + options[dim] = {0}; + reset_hypercube = true; + } else if (methods[dim] == Method::CUBIC) { + options[dim] = {-1, 0, 1, 2}; + } + hypercube_size_hash += options[dim].size()*digit; + digit *= 10; + } + hypercube = {{}}; + for (const auto &list : options) { + std::vector> r; + for (const auto &x : hypercube) { + for (const auto item : list) { + r.push_back(x); + r.back().push_back(item); + } + } + hypercube = std::move(r); + } + if (hypercube.size() != previous_size) { + hypercube_values.resize(hypercube.size(), std::vector(grid_data->num_tables)); + hypercube_weights.resize(hypercube.size()); + } +} + +std::vector> &GridPoint::get_hypercube() { + consolidate_methods(); + return hypercube; +} + +void GridPoint::calculate_interp_coeffs() { + for (std::size_t dim = 0; dim < ndims; dim++) { + double mu = weights[dim]; + if (methods[dim] == Method::CUBIC) { + interp_coeffs[dim][0] = 2 * mu * mu * mu - 3 * mu * mu + 1; + interp_coeffs[dim][1] = -2 * mu * mu * mu + 3 * mu * mu; + cubic_slope_coeffs[dim][0] = (mu * mu * mu - 2 * mu * mu + mu)*grid_data->get_axis_spacing_mult(dim, 0, point_floor[dim]); + cubic_slope_coeffs[dim][1] = (mu * mu * mu - mu * mu)*grid_data->get_axis_spacing_mult(dim, 1, point_floor[dim]); + } else { + if (methods[dim] == Method::CONSTANT) { + mu = mu < 0 ? 0 : 1; + } + interp_coeffs[dim][0] = 1 - mu; + interp_coeffs[dim][1] = mu; + cubic_slope_coeffs[dim][0] = 0.0; + cubic_slope_coeffs[dim][1] = 0.0; + } + weighting_factors[dim][0] = -cubic_slope_coeffs[dim][0]; // point below floor (-1) + weighting_factors[dim][1] = interp_coeffs[dim][0] - cubic_slope_coeffs[dim][1]; // floor (0) + weighting_factors[dim][2] = interp_coeffs[dim][1] + cubic_slope_coeffs[dim][0]; // ceiling (1) + weighting_factors[dim][3] = cubic_slope_coeffs[dim][1]; // point above ceiling (2) + } +} + +void GridPoint::set_hypercube_values() { + if (results.size() != grid_data->num_tables) { + results.resize(grid_data->num_tables); + hypercube_values.resize(hypercube.size(), std::vector(grid_data->num_tables)); + hypercube_cache.clear(); + } + if (hypercube_cache.count({floor_index,hypercube_size_hash})) { + hypercube_values = hypercube_cache.at({floor_index,hypercube_size_hash}); + return; + } + std::size_t hypercube_index = 0; + for (const auto &v : hypercube) { + hypercube_values[hypercube_index] = grid_data->get_values_relative(point_floor, v); + ++hypercube_index; + } + hypercube_cache[{floor_index,hypercube_size_hash}] = hypercube_values; +} + +void GridPoint::set_results() { + set_hypercube_values(); + std::fill(results.begin(), results.end(), 0.0); + for (std::size_t i = 0; i < hypercube.size(); ++i) { + hypercube_weights[i] = get_vertex_weight(hypercube[i]); + const auto &values = hypercube_values[i]; + for (std::size_t j = 0; j < grid_data->num_tables; ++j) { + results[j] += values[j] * hypercube_weights[i]; + } + } +} + +std::vector GridPoint::get_results() { + if (grid_data->num_tables == 0u) { + showMessage(MsgLevel::MSG_WARN, + stringify("There are no value tables in the gridded data. No results returned.")); + } + if (!target_is_set) { + showMessage(MsgLevel::MSG_WARN, + stringify("Results were requested, but no target has been set.")); + } + return results; +} + +double GridPoint::get_vertex_weight(const std::vector &v) { + double weight = 1.0; + for (std::size_t dim = 0; dim < ndims; dim++) { + weight *= weighting_factors[dim][v[dim] + 1]; + } + return weight; +} + +void GridPoint::normalize_grid_values_at_target(const double scalar) { + if (!target_is_set) { + showMessage(MsgLevel::MSG_WARN, + stringify("Cannot normalize grid values. No target has been set.")); + return; + } + for (std::size_t table_index = 0; table_index < grid_data->num_tables; ++table_index) { + grid_data->normalize_value_table(table_index,results[table_index]*scalar); + } + hypercube_cache.clear(); + set_results(); +} + +void GridPoint::normalize_grid_values_at_target(std::size_t table_num, const double scalar) { + if (!target_is_set) { + showMessage(MsgLevel::MSG_WARN, + stringify("Cannot normalize grid values. No target has been set.")); + return; + } + grid_data->normalize_value_table(table_num,results[table_num]*scalar); + hypercube_cache.clear(); + set_results(); +} + +} // namespace Btwxt diff --git a/third_party/btwxt/src/gridpoint.h b/third_party/btwxt/src/gridpoint.h new file mode 100644 index 00000000000..de00527b918 --- /dev/null +++ b/third_party/btwxt/src/gridpoint.h @@ -0,0 +1,105 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +#ifndef GRIDPOINT_H_ +#define GRIDPOINT_H_ + +// Standard +#include +#include +#include + +// btwxt +#include "griddeddata.h" + +namespace Btwxt { + +enum class Bounds { OUTLAW, OUTBOUNDS, INBOUNDS }; + +class GridPoint { +public: + GridPoint(); + + GridPoint(GriddedData &grid_data); + + GridPoint(GriddedData &grid_data, std::vector v); + + void set_target(const std::vector &v); + + std::vector get_current_target(); + + std::vector get_floor(); + + std::vector get_weights(); + + std::vector get_is_inbounds(); + + std::vector get_methods(); + + std::vector> get_interp_coeffs(); + + std::vector> get_cubic_slope_coeffs(); + + std::vector get_results(); + + double get_vertex_weight(const std::vector &v); + + void normalize_grid_values_at_target(std::size_t table_num, const double scalar = 1.0); + + void normalize_grid_values_at_target(const double scalar = 1.0); + + void set_floor(); + +private: + friend class RegularGridInterpolator; + GriddedData *grid_data; + std::size_t ndims; + std::vector target; + bool target_is_set; + std::vector point_floor; // index of grid point <= target + std::size_t floor_index; + std::vector weights; + std::vector is_inbounds; // for deciding interpolation vs. extrapolation; + std::vector methods; + std::vector previous_methods; + std::vector> hypercube; + bool reset_hypercube; + std::vector> weighting_factors; // A set of weighting factors for each dimension + + + std::vector> interp_coeffs; + std::vector> cubic_slope_coeffs; + + std::vector> hypercube_values; + std::vector hypercube_weights; + std::vector results; + + void calculate_weights(); + + void consolidate_methods(); + + void calculate_interp_coeffs(); + + void set_dim_floor(std::size_t dim); + + void set_hypercube(); + + void set_hypercube(std::vector methods); + + std::vector>& get_hypercube(); + + void set_hypercube_values(); + + void set_results(); + + std::map,std::vector>> hypercube_cache; + + std::size_t hypercube_size_hash; + +}; + +// free functions +double compute_fraction(double x, double edge[2]); +} // namespace Btwxt + +#endif // GRIDPOINT_H_ diff --git a/third_party/btwxt/test/CMakeLists.txt b/third_party/btwxt/test/CMakeLists.txt new file mode 100644 index 00000000000..466eabccd65 --- /dev/null +++ b/third_party/btwxt/test/CMakeLists.txt @@ -0,0 +1,23 @@ +# Test Executable + +include_directories("${btwxt_SOURCE_DIR}/src" + "${gtest_SOURCE_DIR}/include") + +set(library_sources + main_test.cpp + fixtures.hpp + btwxt_test.cpp + griddeddata_test.cpp + gridpoint_test.cpp + math_test.cpp + large_test.cpp + hypercube_test.cpp +) + +link_libraries(btwxt gtest gmock) + +add_executable(btwxt_tests ${library_sources}) + +include(GoogleTest) + +gtest_discover_tests(btwxt_tests TEST_PREFIX btwxt:) diff --git a/third_party/btwxt/test/btwxt_test.cpp b/third_party/btwxt/test/btwxt_test.cpp new file mode 100644 index 00000000000..ee0a02142d9 --- /dev/null +++ b/third_party/btwxt/test/btwxt_test.cpp @@ -0,0 +1,201 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include "gmock/gmock.h" +#include "gtest/gtest.h" +#include +#include + +// btwxt +#include "fixtures.hpp" +#include +#include +#include + +using namespace Btwxt; + +TEST_F(TwoDFixture, construct_from_gridded_data) { + Btwxt::LOG_LEVEL = 0; + RegularGridInterpolator rgi_from_grid(test_gridded_data); + std::size_t ndims = rgi_from_grid.get_ndims(); + EXPECT_EQ(ndims, 2u); + Btwxt::LOG_LEVEL = 1; +} + +TEST_F(TwoDFixture, target_undefined) { + std::vector returned_target; + std::vector bad_floor; + double bad_result; + std::string TargetExpectedOut = + " WARNING: The current target was requested, but no target has been set.\n"; + std::string ResultsExpectedOut = + " WARNING: Results were requested, but no target has been set.\n"; + + // The test fixture does not instantiate a GridPoint. + EXPECT_STDOUT(returned_target = test_rgi.get_current_target();, TargetExpectedOut); + std::vector expected_result = {0, 0}; + EXPECT_EQ(returned_target, expected_result); + + EXPECT_STDOUT(bad_result = test_rgi.get_value_at_target(0);, ResultsExpectedOut); + EXPECT_EQ(bad_result, 0); + + // Define the target; make sure it works now. + test_rgi.set_new_target(target); + std::string EmptyOut = ""; + EXPECT_STDOUT(returned_target = test_rgi.get_current_target();, EmptyOut); + expected_result = {12, 5}; + EXPECT_EQ(returned_target, expected_result); + + // Clear the target; see that it reverts to warnings. + test_rgi.clear_current_target(); + EXPECT_STDOUT(returned_target = test_rgi.get_current_target();, TargetExpectedOut); + expected_result = {0, 0}; + EXPECT_EQ(returned_target, expected_result); + + EXPECT_STDOUT(bad_result = test_rgi.get_value_at_target(0);, ResultsExpectedOut); + EXPECT_EQ(bad_result, 0); +} + +TEST_F(CubicFixture, spacing_multiplier) { + double result; + result = test_gridded_data.get_axis_spacing_mult(0, 0, 0); + EXPECT_DOUBLE_EQ(result, 1.0); + + result = test_gridded_data.get_axis_spacing_mult(0, 1, 0); + EXPECT_DOUBLE_EQ(result, (10 - 6) / (15.0 - 6.0)); + + result = test_gridded_data.get_axis_spacing_mult(0, 0, 1); + EXPECT_DOUBLE_EQ(result, (15 - 10) / (15.0 - 6.0)); + + result = test_gridded_data.get_axis_spacing_mult(0, 1, 2); + EXPECT_DOUBLE_EQ(result, 1.0); + + result = test_gridded_data.get_axis_spacing_mult(1, 0, 0); + EXPECT_DOUBLE_EQ(result, 0.0); +} + +TEST_F(CubicFixture, interpolate) { + test_rgi.set_new_target(target); + + Btwxt::LOG_LEVEL = 0; + auto start = std::chrono::high_resolution_clock::now(); + std::vector result = test_rgi.get_values_at_target(); + auto stop = std::chrono::high_resolution_clock::now(); + auto duration = std::chrono::duration_cast(stop - start); + showMessage(MsgLevel::MSG_INFO, + stringify("Time to do cubic interpolation: ", duration.count(), " microseconds")); + Btwxt::LOG_LEVEL = 1; + EXPECT_THAT(result, testing::ElementsAre(testing::DoubleEq(4.158), testing::DoubleEq(11.836))); +} + +TEST_F(TwoDFixture, interpolate) { + Btwxt::LOG_LEVEL = 0; + test_rgi.set_new_target(target); + + // All values, current target + std::vector result = test_rgi.get_values_at_target(); + EXPECT_THAT(result, testing::ElementsAre(testing::DoubleEq(4.2), testing::DoubleEq(8.4))); + Btwxt::LOG_LEVEL = 1; + // Single value, current target + double d_result = test_rgi.get_value_at_target(0); + EXPECT_DOUBLE_EQ(d_result, 4.2); + + std::vector another_target = {8.1, 4.2}; + // All values, fresh target + result = test_rgi.get_values_at_target(another_target); + EXPECT_THAT(result, testing::ElementsAre(testing::DoubleEq(3.189), testing::DoubleEq(6.378))); + // Single value, fresh target + d_result = test_rgi.get_value_at_target(another_target, 1); + EXPECT_DOUBLE_EQ(d_result, 6.378); +} + +TEST_F(TwoDFixture, extrapolate) { + // axis1 is designated constant extrapolation + std::vector const_extr_target = {10, 3}; + Btwxt::LOG_LEVEL = 0; + std::vector result = test_rgi(const_extr_target); + EXPECT_THAT(result, testing::ElementsAre(testing::DoubleEq(2), testing::DoubleEq(4))); + Btwxt::LOG_LEVEL = 1; + + // axis0 is designated linear extrapolation + std::vector lin_extr_target = {18, 5}; + Btwxt::LOG_LEVEL = 0; + result = test_rgi(lin_extr_target); + EXPECT_THAT(result, testing::ElementsAre(testing::DoubleEq(1.8), testing::DoubleEq(3.6))); + Btwxt::LOG_LEVEL = 1; +} + +TEST_F(TwoDFixture, invalid_inputs) { + // we expect two errors that the value table inputs do not match the grid + // we expect an error that the target dimensions do not match the grid + std::vector short_values = {6, 3, 2, 8, 4}; + EXPECT_THROW(test_gridded_data.add_value_table(short_values);, std::invalid_argument); + std::vector long_values = {1, 1, 1, 1, 1, 1, 1}; + EXPECT_THROW(test_gridded_data.add_value_table(long_values);, std::invalid_argument); + + std::vector short_target = {1}; + EXPECT_THROW(test_rgi.set_new_target(short_target);, std::invalid_argument); + std::vector long_target = {1, 2, 3}; + EXPECT_THROW(test_rgi.set_new_target(long_target);, std::invalid_argument); +} + +TEST_F(OneDFixture, cubic_interpolate) { + Btwxt::LOG_LEVEL = 0; + test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + test_rgi = RegularGridInterpolator(test_gridded_data); + double result = test_rgi.get_values_at_target(target)[0]; + Btwxt::LOG_LEVEL = 1; + EXPECT_NEAR(result, 4.804398, 0.0001); +} + +TEST_F(OneDL0Fixture, throw_test) { + Btwxt::LOG_LEVEL = 0; + EXPECT_THROW(GriddedData(grid, values),std::invalid_argument); +} + +TEST_F(OneDL1Fixture, cubic_interpolate) { + Btwxt::LOG_LEVEL = 0; + test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + test_rgi = RegularGridInterpolator(test_gridded_data); + double result = test_rgi.get_values_at_target(target)[0]; + Btwxt::LOG_LEVEL = 1; + EXPECT_NEAR(result, 5., 0.0001); +} + +TEST_F(OneDL2Fixture, cubic_interpolate) { + Btwxt::LOG_LEVEL = 0; + test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + test_rgi = RegularGridInterpolator(test_gridded_data); + double result = test_rgi.get_values_at_target(target)[0]; + Btwxt::LOG_LEVEL = 1; + EXPECT_NEAR(result, 5.25, 0.0001); +} + + +TEST_F(TwoDFixture, cubic_interpolate) { + Btwxt::LOG_LEVEL = 0; + test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + test_gridded_data.set_axis_interp_method(1, Method::CUBIC); + test_rgi = RegularGridInterpolator(test_gridded_data); + test_rgi.set_new_target(target); + + // All values, current target + std::vector result = test_rgi.get_values_at_target(); + EXPECT_THAT(result, testing::ElementsAre(testing::DoubleEq(4.416), testing::DoubleEq(8.832))); + Btwxt::LOG_LEVEL = 1; +} + +TEST_F(TwoDFixture, normalize) { + Btwxt::LOG_LEVEL = 0; + test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + test_gridded_data.set_axis_interp_method(1, Method::CUBIC); + test_rgi = RegularGridInterpolator(test_gridded_data); + test_rgi.set_new_target(target); + + // All values, current target + test_rgi.normalize_values_at_target((std::size_t)0); // normalize first value table + std::vector result = test_rgi.get_values_at_target(); + EXPECT_THAT(result, testing::ElementsAre(testing::DoubleEq(1.0), testing::DoubleEq(8.832))); + Btwxt::LOG_LEVEL = 1; +} diff --git a/third_party/btwxt/test/fixtures.hpp b/third_party/btwxt/test/fixtures.hpp new file mode 100644 index 00000000000..43d28f4339f --- /dev/null +++ b/third_party/btwxt/test/fixtures.hpp @@ -0,0 +1,160 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +#ifndef TEST_FIXTURE_HPP_ +#define TEST_FIXTURE_HPP_ + +#include "gtest/gtest.h" + +// btwxt +#include +#include +#include + +#define EXPECT_STDOUT(action, ExpectedOut) \ + { \ + std::stringstream buffer; \ + std::streambuf *sbuf = std::cout.rdbuf(); \ + std::cout.rdbuf(buffer.rdbuf()); \ + action std::string capture = buffer.str(); \ + std::cout.rdbuf(sbuf); \ + EXPECT_STREQ(ExpectedOut.c_str(), buffer.str().c_str()); \ + } + +using namespace Btwxt; + +class OneDFixture : public testing::Test { +protected: + RegularGridInterpolator test_rgi; + GriddedData test_gridded_data; + std::vector target; + + OneDFixture() { + std::vector> grid = {{0, 2, 5, 10}}; + std::vector> values = {{6, 5, 4, 3}}; + + target = {2.5}; + test_gridded_data = GriddedData(grid, values); + test_rgi = RegularGridInterpolator(test_gridded_data); + } +}; + +class OneDL0Fixture : public testing::Test { +protected: + std::vector> grid; + std::vector> values; + + OneDL0Fixture() { + grid = {{}}; + values = {{}}; + } +}; + + +class OneDL1Fixture : public testing::Test { +protected: + RegularGridInterpolator test_rgi; + GriddedData test_gridded_data; + std::vector target; + + OneDL1Fixture() { + std::vector> grid = {{2}}; + std::vector> values = {{5}}; + + target = {2.5}; + test_gridded_data = GriddedData(grid, values); + test_gridded_data.set_axis_extrap_method(0, Method::LINEAR); + test_rgi = RegularGridInterpolator(test_gridded_data); + } +}; + +class OneDL2Fixture : public testing::Test { +protected: + RegularGridInterpolator test_rgi; + GriddedData test_gridded_data; + std::vector target; + + OneDL2Fixture() { + std::vector> grid = {{0, 10}}; + std::vector> values = {{6, 3}}; + + target = {2.5}; + test_gridded_data = GriddedData(grid, values); + test_gridded_data.set_axis_extrap_method(0, Method::LINEAR); + test_rgi = RegularGridInterpolator(test_gridded_data); + } +}; + +class TwoDFixture : public testing::Test { +protected: + RegularGridInterpolator test_rgi; + GriddedData test_gridded_data; + std::vector> values; + std::vector target; + + TwoDFixture() { + std::vector> grid = {{0, 10, 15}, {4, 6}}; + // 4 6 + values = {{6, 3, // 0 + 2, 8, // 10 + 4, 2}, // 15 + {12, 6, 4, 16, 8, 4}}; + target = {12, 5}; + test_gridded_data = GriddedData(grid, values); + test_gridded_data.set_axis_extrap_method(0, Method::LINEAR); + test_rgi = RegularGridInterpolator(test_gridded_data); + } +}; + +class CubicFixture : public testing::Test { +protected: + RegularGridInterpolator test_rgi; + GriddedData test_gridded_data; + std::vector target; + + CubicFixture() { + std::vector> grid = {{6, 10, 15, 20}, {2, 4, 6, 8}}; + std::vector> values = + // 2 4 6 8 + {{4, 3, 1.5, 1, // 6 + 5, 4, 2, 1, // 10 + 8, 6, 3, 2, // 15 + 10, 8, 4, 2}, // 20 + + {12, 10, 4, 4, // 6 + 16, 12, 6, 4, // 10 + 20, 16, 8, 4, // 15 + 25, 20, 10, 5}}; // 20 + + target = {12, 4.5}; + test_gridded_data = GriddedData(grid, values); + test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + // test_gridded_data.set_axis_interp_method(1, Method::CUBIC); + test_rgi = RegularGridInterpolator(test_gridded_data); + } +}; + +class ThreeDFixture : public testing::Test { +protected: + RegularGridInterpolator test_rgi; + GriddedData test_gridded_data; + std::vector> values; + std::vector target; + + ThreeDFixture() { + std::vector> grid = {{-15, 0.2, 105}, {0, 10, 15}, {4, 6}}; + // 4 6 + values = {{6, 3, // 0 + 2, 8, // 10 + 4, 2, // 15 + 3, 6, 13, 2, 0, 15, 3, 6, 13, 2, 0, 15}}; + target = {26.9, 12, 5}; + test_gridded_data = GriddedData(grid, values); + test_gridded_data.set_axis_interp_method(0, Method::LINEAR); + test_gridded_data.set_axis_interp_method(1, Method::CUBIC); + test_gridded_data.set_axis_interp_method(2, Method::LINEAR); + test_rgi = RegularGridInterpolator(test_gridded_data); + } +}; + +#endif /* TEST_FIXTURE_HPP_ */ diff --git a/third_party/btwxt/test/griddeddata_test.cpp b/third_party/btwxt/test/griddeddata_test.cpp new file mode 100644 index 00000000000..1d88c16d4a3 --- /dev/null +++ b/third_party/btwxt/test/griddeddata_test.cpp @@ -0,0 +1,138 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include "gmock/gmock.h" +#include "gtest/gtest.h" +#include + +// btwxt +#include "fixtures.hpp" +#include +#include + +using namespace Btwxt; + +TEST_F(OneDFixture, construct_from_vectors) { + std::size_t ndims = test_gridded_data.get_ndims(); + EXPECT_EQ(ndims, 1u); +} + +TEST_F(TwoDFixture, construct_from_vectors) { + std::size_t ndims = test_gridded_data.get_ndims(); + EXPECT_EQ(ndims, 2u); + + std::size_t num_tables = test_gridded_data.get_num_tables(); + EXPECT_EQ(num_tables, 2u); +} + +TEST_F(TwoDFixture, write_data) { + EXPECT_EQ("Axis 1,Axis 2,Value 1,Value 2,\n" + "0,4,6,12,\n" + "0,6,3,6,\n" + "10,4,2,4,\n" + "10,6,8,16,\n" + "15,4,4,8,\n" + "15,6,2,4,\n", + test_gridded_data.write_data()); +} + + +TEST_F(TwoDFixture, construct_from_axes) { + GridAxis ax0 = GridAxis(std::vector({0, 10, 15})); + GridAxis ax1 = GridAxis(std::vector({4, 6})); + std::vector test_axes = {ax0, ax1}; + test_gridded_data = GriddedData(test_axes); + EXPECT_EQ(test_gridded_data.get_ndims(), 2u); + EXPECT_EQ(test_gridded_data.get_num_tables(), 0u); + EXPECT_THAT(test_gridded_data.dimension_lengths, testing::ElementsAre(3, 2)); + + test_gridded_data.add_value_table(values[0]); + EXPECT_EQ(test_gridded_data.get_num_tables(), 1u); + std::vector coords{1, 1}; + EXPECT_THAT(test_gridded_data.get_values(coords), testing::ElementsAre(8)); + + test_gridded_data = GriddedData(test_axes, values); + EXPECT_EQ(test_gridded_data.get_ndims(), 2u); + EXPECT_EQ(test_gridded_data.get_num_tables(), 2u); + EXPECT_THAT(test_gridded_data.get_values(coords), testing::ElementsAre(8, 16)); +} + +TEST_F(TwoDFixture, get_grid_vector) { + std::vector returned_vec = test_gridded_data.get_grid_vector(1); + EXPECT_THAT(returned_vec, testing::ElementsAre(4, 6)); +} + +TEST_F(TwoDFixture, get_values) { + std::vector coords = {0, 1}; + std::vector returned_vec = test_gridded_data.get_values(coords); + EXPECT_THAT(returned_vec, testing::ElementsAre(3, 6)); + + coords = {1, 0}; + returned_vec = test_gridded_data.get_values(coords); + EXPECT_THAT(returned_vec, testing::ElementsAre(2, 4)); +} + +TEST_F(TwoDFixture, get_values_relative) { + std::vector coords{0, 1}; + std::vector translation{1, 0}; // {1, 1} stays as is + std::vector expected_vec = test_gridded_data.get_values({1, 1}); + EXPECT_EQ(test_gridded_data.get_values_relative(coords, translation), expected_vec); + + translation = {1, 1}; // {1, 2} -> {1, 1} + EXPECT_EQ(test_gridded_data.get_values_relative(coords, translation), expected_vec); + + translation = {-1, 0}; // {-1, 1} -> {0, 1} + expected_vec = test_gridded_data.get_values({0, 1}); + EXPECT_EQ(test_gridded_data.get_values_relative(coords, translation), expected_vec); + + translation = {3, -2}; // {3, -1} -> {2, 0} + expected_vec = test_gridded_data.get_values({2, 0}); + EXPECT_EQ(test_gridded_data.get_values_relative(coords, translation), expected_vec); +} + +TEST(GridAxis, sorting) { + std::vector grid_vector = {0, 5, 7, 17, 15}; + EXPECT_THROW(GridAxis my_grid_axis = GridAxis(grid_vector);, std::invalid_argument); + grid_vector = {0, 5, 7, 10, 15}; + EXPECT_NO_THROW(GridAxis my_grid_axis = GridAxis(grid_vector);); +} + +TEST_F(CubicFixture, get_spacing_multipliers) { + // for cubic dimension 0: {6, 10, 15, 20}, multipliers should be: + // flavor 0: {4/4, 5/9, 5/10} + // flavor 1: {4/9, 5/10, 5/5} + std::vector> expected_results{{4.0 / 4, 5.0 / 9, 5.0 / 10}, + {4.0 / 9, 5.0 / 10, 5.0 / 5}}; + double result; + for (std::size_t flavor = 0; flavor < 2; flavor++) { + for (std::size_t index = 0; index < 3; index++) { + result = test_gridded_data.get_axis_spacing_mult(0, flavor, index); + EXPECT_DOUBLE_EQ(result, expected_results[flavor][index]); + } + } +} + +TEST(GridAxis, calc_spacing_multipliers) { + std::vector grid_vector{6, 10, 15, 20, 22}; + + GridAxis test_gridaxis(grid_vector, Method::CONSTANT, Method::CUBIC, {-DBL_MAX, DBL_MAX}); + std::vector> values = test_gridaxis.spacing_multipliers; + EXPECT_THAT(values[0], testing::ElementsAre(1, 5.0 / 9, 0.5, 2.0 / 7)); + EXPECT_THAT(values[1], testing::ElementsAre(4.0 / 9, 0.5, 5.0 / 7, 1)); +} + +TEST(GridAxis, bad_limits) { + GridAxis my_grid_axis({0, 5, 7, 11, 12, 15}); + std::pair extrap_limits{4, 17}; + std::string ExpectedOut = " WARNING: The lower extrapolation limit (4) is within the set of " + "grid values. Setting to smallest grid value (0).\n"; + EXPECT_STDOUT(my_grid_axis.set_extrap_limits(extrap_limits);, ExpectedOut); + EXPECT_EQ(my_grid_axis.extrapolation_limits.first, 0); + + extrap_limits = {-2, 12}; + ExpectedOut = " WARNING: The upper extrapolation limit (-2) is within the set of grid values. " + "Setting to largest grid value (15).\n"; + EXPECT_STDOUT(my_grid_axis.set_extrap_limits(extrap_limits);, ExpectedOut); + EXPECT_EQ(my_grid_axis.extrapolation_limits.second, 15); +} diff --git a/third_party/btwxt/test/gridpoint_test.cpp b/third_party/btwxt/test/gridpoint_test.cpp new file mode 100644 index 00000000000..9417d5c43f6 --- /dev/null +++ b/third_party/btwxt/test/gridpoint_test.cpp @@ -0,0 +1,84 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include + +// vendor +#include "gmock/gmock.h" +#include "gtest/gtest.h" + +// btwxt +#include "fixtures.hpp" +#include +#include + +using namespace Btwxt; + +TEST_F(TwoDFixture, grid_point_basics) { + GridPoint grid_point(test_gridded_data, target); + + std::vector point_floor = grid_point.get_floor(); + std::vector expected_floor{1, 0}; + EXPECT_EQ(point_floor, expected_floor); + + std::vector weights = grid_point.get_weights(); + std::vector expected_weights{0.4, 0.5}; + EXPECT_EQ(weights, expected_weights); +} + +TEST_F(TwoDFixture, grid_point_out_of_bounds) { + std::vector oobounds_vector = {16, 3}; + GridPoint grid_point(test_gridded_data, oobounds_vector); + + std::vector point_floor = grid_point.get_floor(); + std::vector expected_floor{1, 0}; + EXPECT_EQ(point_floor, expected_floor); + + std::vector weights = grid_point.get_weights(); + std::vector expected_weights{1.2, -0.5}; + EXPECT_EQ(weights, expected_weights); +} + +TEST_F(TwoDFixture, grid_point_consolidate_methods) { + GridPoint grid_point(test_gridded_data, target); + + std::vector methods = grid_point.get_methods(); + std::vector expected_methods{Method::LINEAR, Method::LINEAR}; + EXPECT_EQ(methods, expected_methods); + + std::vector oobounds_vector = {12, 3}; + grid_point = GridPoint(test_gridded_data, oobounds_vector); + methods = grid_point.get_methods(); + expected_methods = {Method::LINEAR, Method::CONSTANT}; + EXPECT_EQ(methods, expected_methods); +} + +TEST_F(TwoDFixture, grid_point_interp_coeffs) { + GridPoint grid_point(test_gridded_data, target); + + std::vector> interp_coeffs = grid_point.get_interp_coeffs(); + std::vector> cubic_slope_coeffs = grid_point.get_cubic_slope_coeffs(); + std::vector mu = grid_point.get_weights(); + + EXPECT_EQ(interp_coeffs[0][1], mu[0]); + EXPECT_EQ(interp_coeffs[1][0], 1 - mu[1]); + + EXPECT_EQ(cubic_slope_coeffs[0][0], 0); + EXPECT_EQ(cubic_slope_coeffs[1][1], 0); +} + +TEST_F(CubicFixture, grid_point_interp_coeffs) { + GridPoint grid_point(test_gridded_data, target); + + std::vector> interp_coeffs = grid_point.get_interp_coeffs(); + std::vector> cubic_slope_coeffs = grid_point.get_cubic_slope_coeffs(); + double mu = grid_point.get_weights()[0]; + std::size_t floor = grid_point.get_floor()[0]; + + EXPECT_EQ(interp_coeffs[0][0], 2 * mu * mu * mu - 3 * mu * mu + 1); + EXPECT_EQ(interp_coeffs[0][1], -2 * mu * mu * mu + 3 * mu * mu); + + EXPECT_EQ(cubic_slope_coeffs[0][0], (mu * mu * mu - 2 * mu * mu + mu)*test_gridded_data.get_axis_spacing_mult(0,0,floor)); + EXPECT_EQ(cubic_slope_coeffs[0][1], (mu * mu * mu - mu * mu)*test_gridded_data.get_axis_spacing_mult(0,1,floor)); +} diff --git a/third_party/btwxt/test/hypercube_test.cpp b/third_party/btwxt/test/hypercube_test.cpp new file mode 100644 index 00000000000..03de3042fa8 --- /dev/null +++ b/third_party/btwxt/test/hypercube_test.cpp @@ -0,0 +1,114 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include + +// vendor +#include "gmock/gmock.h" +#include "gtest/gtest.h" + +// btwxt +#include "fixtures.hpp" +#include +#include +#include + +using namespace Btwxt; + +TEST_F(ThreeDFixture, hypercube) { + auto hypercube = test_rgi.get_hypercube(); + EXPECT_EQ(hypercube.size(), 16u); } + +TEST_F(ThreeDFixture, test_hypercube) { + auto hypercube = test_rgi.get_hypercube(); + EXPECT_EQ(hypercube.size(), 2u * 4u * 2u); + EXPECT_THAT(hypercube[0], testing::ElementsAre(0, -1, 0)); + EXPECT_THAT(hypercube[2], testing::ElementsAre(0, 0, 0)); + EXPECT_THAT(hypercube[12], testing::ElementsAre(1, 1, 0)); + EXPECT_THAT(hypercube[15], testing::ElementsAre(1, 2, 1)); +} + +TEST_F(ThreeDFixture, make_linear_hypercube) { + test_rgi.set_axis_interp_method(1, Method::LINEAR); + auto hypercube = test_rgi.get_hypercube(); + EXPECT_EQ(hypercube.size(), 8u); + EXPECT_THAT(hypercube[0], testing::ElementsAre(0, 0, 0)); + EXPECT_THAT(hypercube[2], testing::ElementsAre(0, 1, 0)); + EXPECT_THAT(hypercube[5], testing::ElementsAre(1, 0, 1)); +} + +TEST(Hypercube, cart_product) { + std::vector> v = {{1, 2, 3}, {4, 5}, {6, 7, 8, 9}}; + std::vector> result = cart_product(v); + EXPECT_EQ(result.size(), 3u * 2u * 4u); + EXPECT_THAT(result[0], testing::ElementsAre(1, 4, 6)); + EXPECT_THAT(result[1], testing::ElementsAre(1, 4, 7)); + EXPECT_THAT(result[10], testing::ElementsAre(2, 4, 8)); + EXPECT_THAT(result[3 * 2 * 4 - 1], testing::ElementsAre(3, 5, 9)); +} + +TEST_F(CubicFixture, hypercube_weigh_one_vertex) { + test_gridded_data.set_axis_interp_method(1, Method::CUBIC); + GridPoint grid_point(test_gridded_data, target); + std::vector methods = grid_point.get_methods(); + + std::vector mus = grid_point.get_weights(); + double mx = mus[0]; + double my = mus[1]; + double c0x = 2 * mx * mx * mx - 3 * mx * mx + 1; + double c0y = 2 * my * my * my - 3 * my * my + 1; + // double c1x = -2*mx*mx*mx + 3*mx*mx; + double c1y = -2 * my * my * my + 3 * my * my; + double d0x = mx * mx * mx - 2 * mx * mx + mx; + double d0y = my * my * my - 2 * my * my + my; + double d1x = mx * mx * mx - mx * mx; + double d1y = my * my * my - my * my; + double s1x = 5.0 / 10; + double s1y = 2.0 / 4; + double s0x = 5.0 / 9; + double s0y = 2.0 / 4; + + std::vector this_vertex = {0, 0}; + double weight = grid_point.get_vertex_weight(this_vertex); + double expected_result = c0x * c0y; + expected_result += -1 * c0x * d1y * s1y; + expected_result += -1 * d1x * s1x * c0y; + expected_result += d1x * s1x * d1y * s1y; + EXPECT_DOUBLE_EQ(weight, expected_result); + + this_vertex = {-1, 1}; + weight = grid_point.get_vertex_weight(this_vertex); + expected_result = -1 * d0x * s0x * c1y; + expected_result += -1 * d0x * s0x * d0y * s0y; + EXPECT_DOUBLE_EQ(weight, expected_result); + + this_vertex = {2, 0}; + weight = grid_point.get_vertex_weight(this_vertex); + expected_result = d1x * s1x * c0y; + expected_result += -1 * d1x * s1x * d1y * s1y; + EXPECT_DOUBLE_EQ(weight, expected_result); + + this_vertex = {2, 2}; + weight = grid_point.get_vertex_weight(this_vertex); + expected_result = d1x * s1x * d1y * s1y; + EXPECT_DOUBLE_EQ(weight, expected_result); +} + +TEST_F(CubicFixture, hypercube_calculations) { + test_gridded_data.set_axis_interp_method(1, Method::CUBIC); + GridPoint grid_point(test_gridded_data, target); + + std::vector result = grid_point.get_results(); + EXPECT_NEAR(result[0], 4.1953, 0.0001); + EXPECT_NEAR(result[1], 11.9271, 0.0001); +} + +TEST_F(OneDFixture, hypercube_calculations) { + test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + GridPoint grid_point(test_gridded_data, target); + std::vector methods = grid_point.get_methods(); + + std::vector result = grid_point.get_results(); + EXPECT_NEAR(result[0], 4.804398, 0.00001); +} diff --git a/third_party/btwxt/test/large_test.cpp b/third_party/btwxt/test/large_test.cpp new file mode 100644 index 00000000000..a4a17ea172d --- /dev/null +++ b/third_party/btwxt/test/large_test.cpp @@ -0,0 +1,200 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include "gmock/gmock.h" +#include "gtest/gtest.h" +#include +#include + +// btwxt +#include +#include +#include + +using namespace Btwxt; + +// return an evenly spaced 1-d grid of doubles. +std::vector linspace(double first, double last, std::size_t len) { + std::vector result(len); + double step = (last - first) / (len - 1); + double val = first; + for (std::size_t i = 0; i < len; i++, val += step) { + result[i] = val; + } + return result; +} + +// the functions to interpolate. +double fn0(double x0, double x1, double x2, double x3) { return sin(x0 + x1) + cos(x2 + x3); } + +double fn1(double x0, double x1, double x2, double x3) { return (x0 + x1 + x2 + x3); } + +class LargeFixture : public testing::Test { +protected: + RegularGridInterpolator test_rgi; + GriddedData test_gridded_data; + std::vector target; + + LargeFixture() { + std::size_t ndims = 4; + std::vector> grid(ndims); + + std::size_t axis_len = 10; // could easily change to vector of lengths + std::size_t num_values = 1; + std::vector dim_lengths; + for (std::size_t i = 0; i < ndims; i++) { + grid[i] = linspace(0.0, 4.5, axis_len); + num_values *= grid[i].size(); + dim_lengths.push_back(grid[i].size()); + } + + std::vector values0(num_values); + std::vector values1(num_values); + std::size_t value_loc = 0; + for (std::size_t i0 = 0; i0 < dim_lengths[0]; i0++) { + for (std::size_t i1 = 0; i1 < dim_lengths[1]; i1++) { + for (std::size_t i2 = 0; i2 < dim_lengths[2]; i2++) { + for (std::size_t i3 = 0; i3 < dim_lengths[3]; i3++) { + values0[value_loc] = fn0(grid[0][i0], grid[1][i1], grid[2][i2], grid[3][i3]); + values1[value_loc] = fn1(grid[0][i0], grid[1][i1], grid[2][i2], grid[3][i3]); + value_loc++; + } + } + } + } + std::vector> values = {values0, values1}; + + // target = {2.5, 3.5, 1.4, 4.0}; + target = {2.2, 3.3, 1.4, 4.1}; + // target = {0.0, 0.0, 0.0, 0.0}; + test_gridded_data = GriddedData(grid, values); + // test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + // test_gridded_data.set_axis_interp_method(1, Method::CUBIC); + // test_gridded_data.set_axis_interp_method(2, Method::CUBIC); + // test_gridded_data.set_axis_interp_method(3, Method::CUBIC); + test_rgi = RegularGridInterpolator(test_gridded_data); + } +}; + +TEST_F(LargeFixture, construct) { + test_rgi.set_new_target(target); + + std::vector returned_target = test_rgi.get_current_target(); + EXPECT_THAT(returned_target, testing::ElementsAre(2.2, 3.3, 1.4, 4.1)); +} + +TEST_F(LargeFixture, calculate) { + test_rgi.set_new_target(target); + + Btwxt::LOG_LEVEL = 0; + std::vector result = test_rgi.get_values_at_target(); + EXPECT_NEAR(result[0], fn0(target[0], target[1], target[2], target[3]), 0.02); + EXPECT_DOUBLE_EQ(result[1], fn1(target[0], target[1], target[2], target[3])); + Btwxt::LOG_LEVEL = 1; +} + +TEST_F(LargeFixture, verify_linear) { + // no matter what we do, result[1] should always be 11! + std::vector result; + + EXPECT_THAT(test_gridded_data.get_interp_methods(), + testing::ElementsAre(Method::LINEAR, Method::LINEAR, Method::LINEAR, Method::LINEAR)); + test_rgi = RegularGridInterpolator(test_gridded_data); + test_rgi.set_new_target(target); + result = test_rgi.get_values_at_target(); + EXPECT_DOUBLE_EQ(result[1], 11); + + test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + EXPECT_THAT(test_gridded_data.get_interp_methods(), + testing::ElementsAre(Method::CUBIC, Method::LINEAR, Method::LINEAR, Method::LINEAR)); + test_rgi = RegularGridInterpolator(test_gridded_data); + test_rgi.set_new_target(target); + result = test_rgi.get_values_at_target(); + EXPECT_DOUBLE_EQ(result[1], 11); + + test_gridded_data.set_axis_interp_method(3, Method::CUBIC); + EXPECT_THAT(test_gridded_data.get_interp_methods(), + testing::ElementsAre(Method::CUBIC, Method::LINEAR, Method::LINEAR, Method::CUBIC)); + test_rgi = RegularGridInterpolator(test_gridded_data); + test_rgi.set_new_target(target); + result = test_rgi.get_values_at_target(); + EXPECT_DOUBLE_EQ(result[1], 11); + + test_gridded_data.set_axis_interp_method(0, Method::LINEAR); + EXPECT_THAT(test_gridded_data.get_interp_methods(), + testing::ElementsAre(Method::LINEAR, Method::LINEAR, Method::LINEAR, Method::CUBIC)); + test_rgi = RegularGridInterpolator(test_gridded_data); + test_rgi.set_new_target(target); + result = test_rgi.get_values_at_target(); + EXPECT_DOUBLE_EQ(result[1], 11); + + test_gridded_data.set_axis_interp_method(2, Method::CUBIC); + EXPECT_THAT(test_gridded_data.get_interp_methods(), + testing::ElementsAre(Method::LINEAR, Method::LINEAR, Method::CUBIC, Method::CUBIC)); + test_rgi = RegularGridInterpolator(test_gridded_data); + test_rgi.set_new_target(target); + result = test_rgi.get_values_at_target(); + EXPECT_DOUBLE_EQ(result[1], 11); + + test_gridded_data.set_axis_interp_method(0, Method::CUBIC); + EXPECT_THAT(test_gridded_data.get_interp_methods(), + testing::ElementsAre(Method::CUBIC, Method::LINEAR, Method::CUBIC, Method::CUBIC)); + test_rgi = RegularGridInterpolator(test_gridded_data); + test_rgi.set_new_target(target); + result = test_rgi.get_values_at_target(); + EXPECT_DOUBLE_EQ(result[1], 11); + + test_gridded_data.set_axis_interp_method(1, Method::CUBIC); + EXPECT_THAT(test_gridded_data.get_interp_methods(), + testing::ElementsAre(Method::CUBIC, Method::CUBIC, Method::CUBIC, Method::CUBIC)); + test_rgi = RegularGridInterpolator(test_gridded_data); + test_rgi.set_new_target(target); + result = test_rgi.get_values_at_target(); + EXPECT_DOUBLE_EQ(result[1], 11); +} + +TEST_F(LargeFixture, timer) { + test_rgi.set_new_target(target); + + // Get starting timepoint + auto start = std::chrono::high_resolution_clock::now(); + std::vector result = test_rgi.get_values_at_target(); + // Get ending timepoint + auto stop = std::chrono::high_resolution_clock::now(); + auto duration = std::chrono::duration_cast(stop - start); + showMessage(MsgLevel::MSG_INFO, + stringify("Time taken by interpolation: ", duration.count(), " microseconds")); + + // time running the functions straight + start = std::chrono::high_resolution_clock::now(); + // double r0 = fn0(target[0], target[1], target[2], target[3]); + // double r1 = fn1(target[0], target[1], target[2], target[3]); + // Get ending timepoint + stop = std::chrono::high_resolution_clock::now(); + auto nano_duration = std::chrono::duration_cast(stop - start); + showMessage(MsgLevel::MSG_INFO, + stringify("Time taken by direct functions: ", nano_duration.count(), " nanoseconds")); +} + +TEST_F(LargeFixture, multi_timer) { + std::vector> set_of_targets = { + {0.1, 0.1, 0.1, 0.1}, {3.3, 2.2, 4.1, 1.4}, {2.1, 1.6, 1.6, 2.1}, {3.7, 4.3, 0.8, 2.1}, + {1.9, 3.4, 1.2, 1.1}, {3.3, 3.8, 1.6, 3.0}, {0.3, 1.0, 2.4, 1.1}, {3.1, 1.9, 2.9, 3.3}, + {4.2, 2.7, 1.3, 4.4}, {2.1, 2.9, 1.8, 1.9}}; + + for (std::size_t count = 0; count < 10; count++) { + Btwxt::LOG_LEVEL = 2; + // Get starting timepoint + auto start = std::chrono::high_resolution_clock::now(); + for (auto target : set_of_targets) { + std::vector result = test_rgi(target); + } + // Get ending timepoint + auto stop = std::chrono::high_resolution_clock::now(); + auto duration = std::chrono::duration_cast(stop - start); + Btwxt::LOG_LEVEL = 1; + showMessage(MsgLevel::MSG_INFO, + stringify("Time taken by ten interpolations: ", duration.count(), " microseconds")); + } +} diff --git a/third_party/btwxt/test/main_test.cpp b/third_party/btwxt/test/main_test.cpp new file mode 100644 index 00000000000..2b693b24d06 --- /dev/null +++ b/third_party/btwxt/test/main_test.cpp @@ -0,0 +1,43 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +#include "gtest/gtest.h" + +// btwxt +#include +#include +#include + +using namespace Btwxt; + +// use custom callback function b/c we don't want to exit tests on error. +void my_callback(MsgLevel messageType, std::string message, void *contextPtr); + +void my_callback(const MsgLevel messageType, const std::string message, + void * // contextPtr +) { + if (messageType == MsgLevel::MSG_ERR) { + std::cout << " ERROR: " << message << std::endl; + throw std::invalid_argument(stringify(" ERROR: ", message)); + } else { + if (static_cast(messageType) >= Btwxt::LOG_LEVEL) { + std::string prefix(" DEBUG: "); + if (messageType == MsgLevel::MSG_WARN) { + prefix = " WARNING: "; + } else if (messageType == MsgLevel::MSG_INFO) { + prefix = " NOTE: "; + } + std::cout << prefix << message << std::endl; + } + } +} + +int main(int argc, char **argv) { + Btwxt::LOG_LEVEL = 1; + ::testing::InitGoogleTest(&argc, argv); + + int *my_context_ptr = nullptr; + setMessageCallback(my_callback, my_context_ptr); + + return RUN_ALL_TESTS(); +} diff --git a/third_party/btwxt/test/math_test.cpp b/third_party/btwxt/test/math_test.cpp new file mode 100644 index 00000000000..5f855423210 --- /dev/null +++ b/third_party/btwxt/test/math_test.cpp @@ -0,0 +1,114 @@ +/* Copyright (c) 2018 Big Ladder Software LLC. All rights reserved. + * See the LICENSE file for additional terms and conditions. */ + +// Standard +#include + +// vendor +#include "gmock/gmock.h" +#include "gtest/gtest.h" + +// btwxt +#include +#include +#include + +using namespace Btwxt; + +// Unit tests on free functions, generally mathematically oriented. + +TEST(GriddedData, free_check_sorted) { + Btwxt::LOG_LEVEL = 0; + std::vector, bool>> my_vecs = {{{1, 3, 5, 7, 9}, true}, + {{1, 3, 5, 17, 9}, false}, + {{9, 7, 5, 3, 1}, false}, + {{1, 3, 3, 7, 9}, false}, + {{9}, true}}; + bool is_sorted; + for (auto pair : my_vecs) { + is_sorted = Btwxt::free_check_sorted(pair.first); + EXPECT_EQ(is_sorted, pair.second); + } + Btwxt::LOG_LEVEL = 1; +} + +TEST(GriddedData, locate_coords) { + std::vector> grid = {{1, 2, 3, 4, 5}, {1, 2, 3, 4, 5, 6, 7}}; + std::vector value1(5 * 7, 0.0); + std::vector> values = {value1}; + GriddedData test_gridded_data1(grid, values); + + std::vector coords = {2, 3}; + std::vector dimension_lengths = {5, 7}; + std::size_t index = test_gridded_data1.get_value_index(coords); + EXPECT_EQ(index, 17u); + + coords = {2, 3, 2}; + grid = {{1, 2, 3, 4, 5}, {1, 2, 3, 4, 5, 6, 7}, {1, 2, 3}}; + + std::vector value2(5 * 7 * 3, 0.0); + values = {value2}; + GriddedData test_gridded_data2(grid, values); + index = test_gridded_data2.get_value_index(coords); + EXPECT_EQ(index, 53u); +} + +TEST(GridPoint, set_dim_floor) { + + GridAxis axis({1, 3, 5, 7, 9}); + + axis.set_extrap_limits({0, 11}); + + std::vector target = {5.3}; + + GriddedData test_gridded_data = GriddedData({axis}); + + GridPoint grid_point(test_gridded_data, target); + + grid_point.set_floor(); + + EXPECT_EQ(grid_point.get_is_inbounds()[0], Bounds::INBOUNDS); + EXPECT_EQ(grid_point.get_floor()[0], 2u); + double expected_weight = 0.15; + double edge[2] = {axis.grid[grid_point.get_floor()[0]], axis.grid[grid_point.get_floor()[0] + 1]}; + double returned_weight = compute_fraction(target[0], edge); + EXPECT_DOUBLE_EQ(returned_weight, expected_weight); + + grid_point.set_target({0.3}); + grid_point.set_floor(); + EXPECT_EQ(grid_point.get_is_inbounds()[0], Bounds::OUTBOUNDS); + EXPECT_EQ(grid_point.get_floor()[0], 0u); + + grid_point.set_target({10.3}); + grid_point.set_floor(); + EXPECT_EQ(grid_point.get_is_inbounds()[0], Bounds::OUTBOUNDS); + EXPECT_EQ(grid_point.get_floor()[0], 3u); + + grid_point.set_target({-0.3}); + grid_point.set_floor(); + EXPECT_EQ(grid_point.get_is_inbounds()[0], Bounds::OUTLAW); + EXPECT_EQ(grid_point.get_floor()[0], 0u); + + grid_point.set_target({11.3}); + grid_point.set_floor(); + EXPECT_EQ(grid_point.get_is_inbounds()[0], Bounds::OUTLAW); + EXPECT_EQ(grid_point.get_floor()[0], 3u); + + test_gridded_data.grid_axes[0].set_extrap_limits({-DBL_MAX, DBL_MAX}); + grid_point.set_target({-0.3}); + grid_point.set_floor(); + EXPECT_EQ(grid_point.get_is_inbounds()[0], Bounds::OUTBOUNDS); + EXPECT_EQ(grid_point.get_floor()[0], 0u); + + grid_point.set_target({11.3}); + grid_point.set_floor(); + EXPECT_EQ(grid_point.get_is_inbounds()[0], Bounds::OUTBOUNDS); + EXPECT_EQ(grid_point.get_floor()[0], 3u); +} + +TEST(GridPoint, compute_fraction) { + double x = 4.3; + double edge[2] = {4, 6}; + double weight = compute_fraction(x, edge); + EXPECT_DOUBLE_EQ(weight, 0.15); +} diff --git a/third_party/btwxt/vendor/CMakeLists.txt b/third_party/btwxt/vendor/CMakeLists.txt new file mode 100644 index 00000000000..37e9c98d930 --- /dev/null +++ b/third_party/btwxt/vendor/CMakeLists.txt @@ -0,0 +1,23 @@ +if(GIT_FOUND AND EXISTS "${PROJECT_SOURCE_DIR}/.git") + # Update submodules as needed + option(GIT_SUBMODULE "Check submodules during build" ON) + if(GIT_SUBMODULE) + message(STATUS "${PROJECT_NAME} submodule update") + execute_process(COMMAND ${GIT_EXECUTABLE} submodule update --init --recursive + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + RESULT_VARIABLE GIT_SUBMOD_RESULT) + if(NOT GIT_SUBMOD_RESULT EQUAL "0") + message(FATAL_ERROR "git submodule update --init failed with ${GIT_SUBMOD_RESULT}, please checkout submodules") + endif() + endif() +endif() + +if (BUILD_BTWXT_TESTING AND NOT TARGET gtest) + + # Prevent GoogleTest from overriding our compiler/linker options + # when building with Visual Studio + set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) + set(BUILD_GTEST ON CACHE BOOL "" FORCE) + add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/googletest) + +endif() \ No newline at end of file diff --git a/tst/EnergyPlus/unit/AirLoopHVACDOAS.unit.cc b/tst/EnergyPlus/unit/AirLoopHVACDOAS.unit.cc new file mode 100644 index 00000000000..f1f142e9e91 --- /dev/null +++ b/tst/EnergyPlus/unit/AirLoopHVACDOAS.unit.cc @@ -0,0 +1,3993 @@ +// EnergyPlus, Copyright (c) 1996-2019, The Board of Trustees of the University of Illinois, +// The Regents of the University of California, through Lawrence Berkeley National Laboratory +// (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge +// National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other +// contributors. All rights reserved. +// +// NOTICE: This Software was developed under funding from the U.S. Department of Energy and the +// U.S. Government consequently retains certain rights. As such, the U.S. Government has been +// granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, +// worldwide license in the Software to reproduce, distribute copies to the public, prepare +// derivative works, and perform publicly and display publicly, and to permit others to do so. +// +// Redistribution and use in source and binary forms, with or without modification, are permitted +// provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, this list of +// conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, this list of +// conditions and the following disclaimer in the documentation and/or other materials +// provided with the distribution. +// +// (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, +// the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be +// used to endorse or promote products derived from this software without specific prior +// written permission. +// +// (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form +// without changes from the version obtained under this License, or (ii) Licensee makes a +// reference solely to the software portion of its product, Licensee must refer to the +// software as "EnergyPlus version X" software, where "X" is the version number Licensee +// obtained under this License and may not use a different name for the software. Except as +// specifically required in this Section (4), Licensee shall not use in a company name, a +// product name, in advertising, publicity, or other promotional activities any name, trade +// name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly +// similar designation, without the U.S. Department of Energy's prior written consent. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR +// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. + +// EnergyPlus::AirflowNetworkBalanceManager unit tests + +// Google test headers +#include +#include + +// EnergyPlus Headers +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "Fixtures/EnergyPlusFixture.hh" + +using namespace EnergyPlus; +using namespace DataSurfaces; +using namespace DataHeatBalance; +using namespace DataGlobals; +using namespace EnergyPlus::DataLoopNode; +using namespace EnergyPlus::ScheduleManager; +using namespace OutAirNodeManager; + +namespace EnergyPlus { + +TEST_F(EnergyPlusFixture, AirLoopHVACDOASTest) +{ + // unit test for a new feature to model a central DOAS to serve multiple AirLoops + std::string const idf_objects = delimited_string({ + " Version,9.2;", + + " SimulationControl,", + " YES, !- Do Zone Sizing Calculation", + " YES, !- Do System Sizing Calculation", + " YES, !- Do Plant Sizing Calculation", + " YES, !- Run Simulation for Sizing Periods", + " NO; !- Run Simulation for Weather File Run Periods", + + " Building,", + " Ref Bldg Small Office New2004_v1.3_5.0, !- Name", + " 0.0000, !- North Axis {deg}", + " City, !- Terrain", + " 0.0400, !- Loads Convergence Tolerance Value", + " 0.2000, !- Temperature Convergence Tolerance Value {deltaC}", + " FullInteriorAndExterior, !- Solar Distribution", + " 25, !- Maximum Number of Warmup Days", + " 6; !- Minimum Number of Warmup Days", + + " ScheduleTypeLimits,", + " Any Number; !- Name", + + " ScheduleTypeLimits,", + " Fraction, !- Name", + " 0.0, !- Lower Limit Value", + " 1.0, !- Upper Limit Value", + " CONTINUOUS; !- Numeric Type", + + " ScheduleTypeLimits,", + " Temperature, !- Name", + " -60, !- Lower Limit Value", + " 200, !- Upper Limit Value", + " CONTINUOUS; !- Numeric Type", + + " ScheduleTypeLimits,", + " On/Off, !- Name", + " 0, !- Lower Limit Value", + " 1, !- Upper Limit Value", + " DISCRETE; !- Numeric Type", + + " ScheduleTypeLimits,", + " Control Type, !- Name", + " 0, !- Lower Limit Value", + " 4, !- Upper Limit Value", + " DISCRETE; !- Numeric Type", + + " ScheduleTypeLimits,", + " Humidity, !- Name", + " 10, !- Lower Limit Value", + " 90, !- Upper Limit Value", + " CONTINUOUS; !- Numeric Type", + + " ScheduleTypeLimits,", + " Number; !- Name", + + " Schedule:Compact,", + " ALWAYS_ON, !- Name", + " On/Off, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,1; !- Field 3", + + " SurfaceConvectionAlgorithm:Inside,TARP;", + + " SurfaceConvectionAlgorithm:Outside,DOE-2;", + + " HeatBalanceAlgorithm,ConductionTransferFunction,200.0000;", + + " ZoneAirHeatBalanceAlgorithm,", + " AnalyticalSolution; !- Algorithm", + + " Sizing:Parameters,", + " 1.2, !- Heating Sizing Factor", + " 1.2, !- Cooling Sizing Factor", + " 6; !- Timesteps in Averaging Window", + + " ConvergenceLimits,", + " 2, !- Minimum System Timestep {minutes}", + " 25; !- Maximum HVAC Iterations", + + " ShadowCalculation,", + " AverageOverDaysInFrequency, !- Calculation Method", + " 7, !- Calculation Frequency", + " 15000; !- Maximum Figures in Shadow Overlap Calculations", + + " Timestep,6;", + + " Site:Location,", + " USA IL-CHICAGO-OHARE, !- Name", + " 41.77, !- Latitude {deg}", + " -87.75, !- Longitude {deg}", + " -6.00, !- Time Zone {hr}", + " 190; !- Elevation {m}", + + " SizingPeriod:DesignDay,", + " CHICAGO Ann Htg 99.6% Condns DB, !- Name", + " 1, !- Month", + " 21, !- Day of Month", + " WinterDesignDay, !- Day Type", + " -20.6, !- Maximum Dry-Bulb Temperature {C}", + " 0.0, !- Daily Dry-Bulb Temperature Range {deltaC}", + " , !- Dry-Bulb Temperature Range Modifier Type", + " , !- Dry-Bulb Temperature Range Modifier Day Schedule Name", + " Wetbulb, !- Humidity Condition Type", + " -20.6, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C}", + " , !- Humidity Condition Day Schedule Name", + " , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}", + " , !- Enthalpy at Maximum Dry-Bulb {J/kg}", + " , !- Daily Wet-Bulb Temperature Range {deltaC}", + " 99063., !- Barometric Pressure {Pa}", + " 4.9, !- Wind Speed {m/s}", + " 270, !- Wind Direction {deg}", + " No, !- Rain Indicator", + " No, !- Snow Indicator", + " No, !- Daylight Saving Time Indicator", + " ASHRAEClearSky, !- Solar Model Indicator", + " , !- Beam Solar Day Schedule Name", + " , !- Diffuse Solar Day Schedule Name", + " , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}", + " , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}", + " 0.00; !- Sky Clearness", + + " SizingPeriod:DesignDay,", + " CHICAGO Ann Clg .4% Condns WB=>MDB, !- Name", + " 7, !- Month", + " 21, !- Day of Month", + " SummerDesignDay, !- Day Type", + " 31.2, !- Maximum Dry-Bulb Temperature {C}", + " 10.7, !- Daily Dry-Bulb Temperature Range {deltaC}", + " , !- Dry-Bulb Temperature Range Modifier Type", + " , !- Dry-Bulb Temperature Range Modifier Day Schedule Name", + " Wetbulb, !- Humidity Condition Type", + " 25.5, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C}", + " , !- Humidity Condition Day Schedule Name", + " , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}", + " , !- Enthalpy at Maximum Dry-Bulb {J/kg}", + " , !- Daily Wet-Bulb Temperature Range {deltaC}", + " 99063., !- Barometric Pressure {Pa}", + " 5.3, !- Wind Speed {m/s}", + " 230, !- Wind Direction {deg}", + " No, !- Rain Indicator", + " No, !- Snow Indicator", + " No, !- Daylight Saving Time Indicator", + " ASHRAEClearSky, !- Solar Model Indicator", + " , !- Beam Solar Day Schedule Name", + " , !- Diffuse Solar Day Schedule Name", + " , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}", + " , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}", + " 1.00; !- Sky Clearness", + + " Site:WaterMainsTemperature,", + " CORRELATION, !- Calculation Method", + " , !- Temperature Schedule Name", + " 9.69, !- Annual Average Outdoor Air Temperature {C}", + " 28.10; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC}", + + " Site:GroundTemperature:BuildingSurface,19.527,19.502,19.536,19.598,20.002,21.640,22.225,22.375,21.449,20.121,19.802,19.633;", + + " Construction,", + " Mass Non-res Ext Wall, !- Name", + " 1IN Stucco, !- Outside Layer", + " 8IN Concrete HW, !- Layer 2", + " Mass NonRes Wall Insulation, !- Layer 3", + " 1/2IN Gypsum; !- Layer 4", + + " Material,", + " Mass NonRes Wall Insulation, !- Name", + " MediumRough, !- Roughness", + " 0.0495494599433393, !- Thickness {m}", + " 0.049, !- Conductivity {W/m-K}", + " 265.0000, !- Density {kg/m3}", + " 836.8000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.7000, !- Solar Absorptance", + " 0.7000; !- Visible Absorptance", + + " Construction,", + " Attic Non-res Floor, !- Name", + " 1/2IN Gypsum, !- Outside Layer", + " AtticFloor NonRes Insulation, !- Layer 2", + " 1/2IN Gypsum; !- Layer 3", + + " Construction,", + " Attic Non-res Roof, !- Name", + " Roof Membrane, !- Outside Layer", + " Metal Decking; !- Layer 2", + + " Material,", + " AtticFloor NonRes Insulation, !- Name", + " MediumRough, !- Roughness", + " 0.236804989096202, !- Thickness {m}", + " 0.049, !- Conductivity {W/m-K}", + " 265.0000, !- Density {kg/m3}", + " 836.8000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.7000, !- Solar Absorptance", + " 0.7000; !- Visible Absorptance", + + " Construction,", + " ext-slab, !- Name", + " HW CONCRETE, !- Outside Layer", + " CP02 CARPET PAD; !- Layer 2", + + " Construction,", + " int-walls, !- Name", + " 1/2IN Gypsum, !- Outside Layer", + " 1/2IN Gypsum; !- Layer 2", + + " Construction,", + " Window Non-res Fixed, !- Name", + " NonRes Fixed Assembly Window; !- Outside Layer", + + " WindowMaterial:SimpleGlazingSystem,", + " NonRes Fixed Assembly Window, !- Name", + " 3.23646, !- U-Factor {W/m2-K}", + " 0.39, !- Solar Heat Gain Coefficient", + " ; !- Visible Transmittance", + + " Construction,", + " InteriorFurnishings, !- Name", + " Std Wood 6inch; !- Outside Layer", + + " Material,", + " Std Wood 6inch, !- Name", + " MediumSmooth, !- Roughness", + " 0.15, !- Thickness {m}", + " 0.12, !- Conductivity {W/m-K}", + " 540.0000, !- Density {kg/m3}", + " 1210, !- Specific Heat {J/kg-K}", + " 0.9000000, !- Thermal Absorptance", + " 0.7000000, !- Solar Absorptance", + " 0.7000000; !- Visible Absorptance", + + " Material,", + " Wood Siding, !- Name", + " MediumSmooth, !- Roughness", + " 0.0100, !- Thickness {m}", + " 0.1100, !- Conductivity {W/m-K}", + " 544.6200, !- Density {kg/m3}", + " 1210.0000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.7800, !- Solar Absorptance", + " 0.7800; !- Visible Absorptance", + + " Material,", + " 1/2IN Gypsum, !- Name", + " Smooth, !- Roughness", + " 0.0127, !- Thickness {m}", + " 0.1600, !- Conductivity {W/m-K}", + " 784.9000, !- Density {kg/m3}", + " 830.0000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.9200, !- Solar Absorptance", + " 0.9200; !- Visible Absorptance", + + " Material,", + " 1IN Stucco, !- Name", + " Smooth, !- Roughness", + " 0.0253, !- Thickness {m}", + " 0.6918, !- Conductivity {W/m-K}", + " 1858.0000, !- Density {kg/m3}", + " 837.0000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.9200, !- Solar Absorptance", + " 0.9200; !- Visible Absorptance", + + " Material,", + " 8IN CONCRETE HW, !- Name", + " Rough, !- Roughness", + " 0.2032, !- Thickness {m}", + " 1.3110, !- Conductivity {W/m-K}", + " 2240.0000, !- Density {kg/m3}", + " 836.8000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.7000, !- Solar Absorptance", + " 0.7000; !- Visible Absorptance", + + " Material,", + " Metal Siding, !- Name", + " Smooth, !- Roughness", + " 0.0015, !- Thickness {m}", + " 44.9600, !- Conductivity {W/m-K}", + " 7688.8600, !- Density {kg/m3}", + " 410.0000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.2000, !- Solar Absorptance", + " 0.2000; !- Visible Absorptance", + + " Material,", + " HW CONCRETE, !- Name", + " Rough, !- Roughness", + " 0.1016, !- Thickness {m}", + " 1.3110, !- Conductivity {W/m-K}", + " 2240.0000, !- Density {kg/m3}", + " 836.8000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.7000, !- Solar Absorptance", + " 0.7000; !- Visible Absorptance", + + " Material:NoMass,", + " CP02 CARPET PAD, !- Name", + " VeryRough, !- Roughness", + " 0.2165, !- Thermal Resistance {m2-K/W}", + " 0.9000, !- Thermal Absorptance", + " 0.7000, !- Solar Absorptance", + " 0.8000; !- Visible Absorptance", + + " Material,", + " Roof Membrane, !- Name", + " VeryRough, !- Roughness", + " 0.0095, !- Thickness {m}", + " 0.1600, !- Conductivity {W/m-K}", + " 1121.2900, !- Density {kg/m3}", + " 1460.0000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.7000, !- Solar Absorptance", + " 0.7000; !- Visible Absorptance", + + " Material,", + " Metal Decking, !- Name", + " MediumSmooth, !- Roughness", + " 0.0015, !- Thickness {m}", + " 45.0060, !- Conductivity {W/m-K}", + " 7680.0000, !- Density {kg/m3}", + " 418.4000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.7000, !- Solar Absorptance", + " 0.3000; !- Visible Absorptance", + + " Material,", + " Metal Roofing, !- Name", + " MediumSmooth, !- Roughness", + " 0.0015, !- Thickness {m}", + " 45.0060, !- Conductivity {W/m-K}", + " 7680.0000, !- Density {kg/m3}", + " 418.4000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.7000, !- Solar Absorptance", + " 0.3000; !- Visible Absorptance", + + " Material,", + " MAT-CC05 4 HW CONCRETE, !- Name", + " Rough, !- Roughness", + " 0.1016, !- Thickness {m}", + " 1.3110, !- Conductivity {W/m-K}", + " 2240.0000, !- Density {kg/m3}", + " 836.8000, !- Specific Heat {J/kg-K}", + " 0.9000, !- Thermal Absorptance", + " 0.7000, !- Solar Absorptance", + " 0.7000; !- Visible Absorptance", + + " Material,", + " Std AC02, !- Name", + " MediumSmooth, !- Roughness", + " 1.2700000E-02, !- Thickness {m}", + " 5.7000000E-02, !- Conductivity {W/m-K}", + " 288.0000, !- Density {kg/m3}", + " 1339.000, !- Specific Heat {J/kg-K}", + " 0.9000000, !- Thermal Absorptance", + " 0.7000000, !- Solar Absorptance", + " 0.2000000; !- Visible Absorptance", + + " Material:NoMass,", + " MAT-AIR-WALL, !- Name", + " Rough, !- Roughness", + " 0.2079491, !- Thermal Resistance {m2-K/W}", + " 0.9, !- Thermal Absorptance", + " 0.7; !- Solar Absorptance", + + " Zone,", + " Attic, !- Name", + " 0.0000, !- Direction of Relative North {deg}", + " 0.0000, !- X Origin {m}", + " 0.0000, !- Y Origin {m}", + " 0.0000, !- Z Origin {m}", + " 1, !- Type", + " 1, !- Multiplier", + " , !- Ceiling Height {m}", + " , !- Volume {m3}", + " autocalculate, !- Floor Area {m2}", + " , !- Zone Inside Convection Algorithm", + " , !- Zone Outside Convection Algorithm", + " No; !- Part of Total Floor Area", + + " Zone,", + " Core_ZN, !- Name", + " 0.0000, !- Direction of Relative North {deg}", + " 0.0000, !- X Origin {m}", + " 0.0000, !- Y Origin {m}", + " 0.0000, !- Z Origin {m}", + " 1, !- Type", + " 1, !- Multiplier", + " , !- Ceiling Height {m}", + " , !- Volume {m3}", + " autocalculate, !- Floor Area {m2}", + " , !- Zone Inside Convection Algorithm", + " , !- Zone Outside Convection Algorithm", + " Yes; !- Part of Total Floor Area", + + " Zone,", + " Perimeter_ZN_1, !- Name", + " 0.0000, !- Direction of Relative North {deg}", + " 0.0000, !- X Origin {m}", + " 0.0000, !- Y Origin {m}", + " 0.0000, !- Z Origin {m}", + " 1, !- Type", + " 1, !- Multiplier", + " , !- Ceiling Height {m}", + " , !- Volume {m3}", + " autocalculate, !- Floor Area {m2}", + " , !- Zone Inside Convection Algorithm", + " , !- Zone Outside Convection Algorithm", + " Yes; !- Part of Total Floor Area", + + " Zone,", + " Perimeter_ZN_2, !- Name", + " 0.0000, !- Direction of Relative North {deg}", + " 0.0000, !- X Origin {m}", + " 0.0000, !- Y Origin {m}", + " 0.0000, !- Z Origin {m}", + " 1, !- Type", + " 1, !- Multiplier", + " , !- Ceiling Height {m}", + " , !- Volume {m3}", + " autocalculate, !- Floor Area {m2}", + " , !- Zone Inside Convection Algorithm", + " , !- Zone Outside Convection Algorithm", + " Yes; !- Part of Total Floor Area", + + " Zone,", + " Perimeter_ZN_3, !- Name", + " 0.0000, !- Direction of Relative North {deg}", + " 0.0000, !- X Origin {m}", + " 0.0000, !- Y Origin {m}", + " 0.0000, !- Z Origin {m}", + " 1, !- Type", + " 1, !- Multiplier", + " , !- Ceiling Height {m}", + " , !- Volume {m3}", + " autocalculate, !- Floor Area {m2}", + " , !- Zone Inside Convection Algorithm", + " , !- Zone Outside Convection Algorithm", + " Yes; !- Part of Total Floor Area", + + " Zone,", + " Perimeter_ZN_4, !- Name", + " 0.0000, !- Direction of Relative North {deg}", + " 0.0000, !- X Origin {m}", + " 0.0000, !- Y Origin {m}", + " 0.0000, !- Z Origin {m}", + " 1, !- Type", + " 1, !- Multiplier", + " , !- Ceiling Height {m}", + " , !- Volume {m3}", + " autocalculate, !- Floor Area {m2}", + " , !- Zone Inside Convection Algorithm", + " , !- Zone Outside Convection Algorithm", + " Yes; !- Part of Total Floor Area", + + " BuildingSurface:Detailed,", + " Attic_floor_core, !- Name", + " Floor, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Attic, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Core_ZN_ceiling, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_floor_perimeter_east, !- Name", + " Floor, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Attic, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_2_ceiling, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_floor_perimeter_north, !- Name", + " Floor, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Attic, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_3_ceiling, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_floor_perimeter_south, !- Name", + " Floor, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Attic, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_1_ceiling, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_floor_perimeter_west, !- Name", + " Floor, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Attic, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_4_ceiling, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_roof_east, !- Name", + " Roof, !- Surface Type", + " Attic Non-res Roof, !- Construction Name", + " Attic, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 3, !- Number of Vertices", + " 28.2900,-0.6000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 28.2900,19.0600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 18.4600,9.2300,6.3300; !- X,Y,Z ==> Vertex 3 {m}", + + " BuildingSurface:Detailed,", + " Attic_roof_north, !- Name", + " Roof, !- Surface Type", + " Attic Non-res Roof, !- Construction Name", + " Attic, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 28.2900,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " -0.6000,19.0600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 9.2300,9.2300,6.3300, !- X,Y,Z ==> Vertex 3 {m}", + " 18.4600,9.2300,6.3300; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_roof_south, !- Name", + " Roof, !- Surface Type", + " Attic Non-res Roof, !- Construction Name", + " Attic, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " -0.6000,-0.6000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 28.2900,-0.6000,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 18.4600,9.2300,6.3300, !- X,Y,Z ==> Vertex 3 {m}", + " 9.2300,9.2300,6.3300; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_roof_west, !- Name", + " Roof, !- Surface Type", + " Attic Non-res Roof, !- Construction Name", + " Attic, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 3, !- Number of Vertices", + " -0.6000,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " -0.6000,-0.6000,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 9.2300,9.2300,6.3300; !- X,Y,Z ==> Vertex 3 {m}", + + " BuildingSurface:Detailed,", + " Attic_soffit_east, !- Name", + " Floor, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Attic, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 28.2900,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 28.2900,-0.6000,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_soffit_north, !- Name", + " Floor, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Attic, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " -0.6000,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 28.2900,19.0600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_soffit_south, !- Name", + " Floor, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Attic, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 28.2900,-0.6000,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " -0.6000,-0.6000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Attic_soffit_west, !- Name", + " Floor, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Attic, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " -0.6000,19.0600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " -0.6000,-0.6000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Core_ZN_ceiling, !- Name", + " Ceiling, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Core_ZN, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Attic_floor_core, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Core_ZN_floor, !- Name", + " Floor, !- Surface Type", + " ext-slab, !- Construction Name", + " Core_ZN, !- Zone Name", + " Ground, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,5.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Core_ZN_wall_east, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Core_ZN, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_2_wall_west,!- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Core_ZN_wall_north, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Core_ZN, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_3_wall_south, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Core_ZN_wall_south, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Core_ZN, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_1_wall_north, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Core_ZN_wall_west, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Core_ZN, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_4_wall_east,!- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_1_ceiling, !- Name", + " Ceiling, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Perimeter_ZN_1, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Attic_floor_perimeter_south, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_1_floor, !- Name", + " Floor, !- Surface Type", + " ext-slab, !- Construction Name", + " Perimeter_ZN_1, !- Zone Name", + " Ground, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,5.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_1_wall_east,!- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_1, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_2_wall_south, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_1_wall_north, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_1, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Core_ZN_wall_south, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_1_wall_south, !- Name", + " Wall, !- Surface Type", + " Mass Non-res Ext Wall, !- Construction Name", + " Perimeter_ZN_1, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_1_wall_west,!- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_1, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_4_wall_south, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_2_ceiling, !- Name", + " Ceiling, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Perimeter_ZN_2, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Attic_floor_perimeter_east, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_2_floor, !- Name", + " Floor, !- Surface Type", + " ext-slab, !- Construction Name", + " Perimeter_ZN_2, !- Zone Name", + " Ground, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,5.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_2_wall_east,!- Name", + " Wall, !- Surface Type", + " Mass Non-res Ext Wall, !- Construction Name", + " Perimeter_ZN_2, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 27.6900,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_2_wall_north, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_2, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_3_wall_east,!- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_2_wall_south, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_2, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_1_wall_east,!- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 22.6900,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_2_wall_west,!- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_2, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Core_ZN_wall_east, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_3_ceiling, !- Name", + " Ceiling, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Perimeter_ZN_3, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Attic_floor_perimeter_north, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_3_floor, !- Name", + " Floor, !- Surface Type", + " ext-slab, !- Construction Name", + " Perimeter_ZN_3, !- Zone Name", + " Ground, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,13.4600,0.0000; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_3_wall_east,!- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_3, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_2_wall_north, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 22.6900,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_3_wall_north, !- Name", + " Wall, !- Surface Type", + " Mass Non-res Ext Wall, !- Construction Name", + " Perimeter_ZN_3, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 27.6900,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_3_wall_south, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_3, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Core_ZN_wall_north, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 22.6900,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 22.6900,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_3_wall_west,!- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_3, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_4_wall_north, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_4_ceiling, !- Name", + " Ceiling, !- Surface Type", + " Attic Non-res Floor, !- Construction Name", + " Perimeter_ZN_4, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Attic_floor_perimeter_west, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 2 {m}", + " 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_4_floor, !- Name", + " Floor, !- Surface Type", + " ext-slab, !- Construction Name", + " Perimeter_ZN_4, !- Zone Name", + " Ground, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,13.4600,0.0000; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_4_wall_east,!- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_4, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Core_ZN_wall_west, !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,5.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,13.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_4_wall_north, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_4, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_3_wall_west,!- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 5.0000,13.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 5.0000,13.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,18.4600,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_4_wall_south, !- Name", + " Wall, !- Surface Type", + " int-walls, !- Construction Name", + " Perimeter_ZN_4, !- Zone Name", + " Surface, !- Outside Boundary Condition", + " Perimeter_ZN_1_wall_west,!- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,0.0000,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 5.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 5.0000,5.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " BuildingSurface:Detailed,", + " Perimeter_ZN_4_wall_west,!- Name", + " Wall, !- Surface Type", + " Mass Non-res Ext Wall, !- Construction Name", + " Perimeter_ZN_4, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " AutoCalculate, !- View Factor to Ground", + " 4, !- Number of Vertices", + " 0.0000,18.4600,3.0500, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,18.4600,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,0.0000,3.0500; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_1_wall_south_Window_1, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_1_wall_south, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 1.3900,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 1.3900,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 3.2200,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 3.2200,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_1_wall_south_Window_2, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_1_wall_south, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 6.0100,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 6.0100,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 7.8400,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 7.8400,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_1_wall_south_Window_3, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_1_wall_south, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 10.6200,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 10.6200,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 12.4500,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 12.4500,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_1_wall_south_Window_4, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_1_wall_south, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 15.2400,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 15.2400,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 17.0700,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 17.0700,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_1_wall_south_Window_5, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_1_wall_south, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 19.8500,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 19.8500,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 21.6800,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 21.6800,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_1_wall_south_Window_6, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_1_wall_south, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 24.4700,0.0000,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 24.4700,0.0000,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 26.3000,0.0000,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 26.3000,0.0000,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_1_wall_south_door, !- Name", + " GlassDoor, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_1_wall_south, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 12.930,0.0000,2.1340, !- X,Y,Z ==> Vertex 1 {m}", + " 12.930,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m}", + " 14.760,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m}", + " 14.760,0.0000,2.1340; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_2_wall_east_Window_1, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_2_wall_east,!- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 27.6900,1.3900,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,1.3900,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,3.2200,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,3.2200,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_2_wall_east_Window_2, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_2_wall_east,!- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 27.6900,6.0100,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,6.0100,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,7.8400,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,7.8400,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_2_wall_east_Window_3, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_2_wall_east,!- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 27.6900,10.6200,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,10.6200,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,12.4500,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,12.4500,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_2_wall_east_Window_4, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_2_wall_east,!- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 27.6900,15.2400,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 27.6900,15.2400,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 27.6900,17.0700,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 27.6900,17.0700,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_3_wall_north_Window_1, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_3_wall_north, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 26.3000,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 26.3000,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 24.4700,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 24.4700,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_3_wall_north_Window_2, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_3_wall_north, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 21.6800,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 21.6800,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 19.8500,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 19.8500,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_3_wall_north_Window_3, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_3_wall_north, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 17.0700,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 17.0700,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 15.2400,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 15.2400,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_3_wall_north_Window_4, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_3_wall_north, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 12.4500,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 12.4500,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 10.6200,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 10.6200,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_3_wall_north_Window_5, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_3_wall_north, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 7.8400,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 7.8400,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 6.0100,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 6.0100,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_3_wall_north_Window_6, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_3_wall_north, !- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 3.2200,18.4600,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 3.2200,18.4600,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 1.3900,18.4600,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 1.3900,18.4600,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_4_wall_west_Window_1, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_4_wall_west,!- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 0.0000,17.0700,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,17.0700,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,15.2400,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,15.2400,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_4_wall_west_Window_2, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_4_wall_west,!- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 0.0000,12.4500,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,12.4500,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,10.6200,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,10.6200,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_4_wall_west_Window_3, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_4_wall_west,!- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 0.0000,7.8400,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,7.8400,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,6.0100,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,6.0100,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " FenestrationSurface:Detailed,", + " Perimeter_ZN_4_wall_west_Window_4, !- Name", + " Window, !- Surface Type", + " Window Non-res Fixed, !- Construction Name", + " Perimeter_ZN_4_wall_west,!- Building Surface Name", + " , !- Outside Boundary Condition Object", + " AutoCalculate, !- View Factor to Ground", + " , !- Frame and Divider Name", + " 1.0000, !- Multiplier", + " 4, !- Number of Vertices", + " 0.0000,3.2200,2.4240, !- X,Y,Z ==> Vertex 1 {m}", + " 0.0000,3.2200,0.9000, !- X,Y,Z ==> Vertex 2 {m}", + " 0.0000,1.3900,0.9000, !- X,Y,Z ==> Vertex 3 {m}", + " 0.0000,1.3900,2.4240; !- X,Y,Z ==> Vertex 4 {m}", + + " GlobalGeometryRules,", + " UpperLeftCorner, !- Starting Vertex Position", + " Counterclockwise, !- Vertex Entry Direction", + " Relative, !- Coordinate System", + " Relative; !- Daylighting Reference Point Coordinate System", + + " People,", + " Core_ZN People, !- Name", + " Core_ZN, !- Zone or ZoneList Name", + " BLDG_OCC_SCH, !- Number of People Schedule Name", + " Area/Person, !- Number of People Calculation Method", + " , !- Number of People", + " , !- People per Zone Floor Area {person/m2}", + " 18.58, !- Zone Floor Area per Person {m2/person}", + " 0.3000, !- Fraction Radiant", + " AUTOCALCULATE, !- Sensible Heat Fraction", + " ACTIVITY_SCH, !- Activity Level Schedule Name", + " , !- Carbon Dioxide Generation Rate {m3/s-W}", + " No, !- Enable ASHRAE 55 Comfort Warnings", + " ZoneAveraged, !- Mean Radiant Temperature Calculation Type", + " , !- Surface Name/Angle Factor List Name", + " WORK_EFF_SCH, !- Work Efficiency Schedule Name", + " ClothingInsulationSchedule, !- Clothing Insulation Calculation Method", + " , !- Clothing Insulation Calculation Method Schedule Name", + " CLOTHING_SCH, !- Clothing Insulation Schedule Name", + " AIR_VELO_SCH, !- Air Velocity Schedule Name", + " FANGER; !- Thermal Comfort Model 1 Type", + + " People,", + " Perimeter_ZN_1 People, !- Name", + " Perimeter_ZN_1, !- Zone or ZoneList Name", + " BLDG_OCC_SCH, !- Number of People Schedule Name", + " Area/Person, !- Number of People Calculation Method", + " , !- Number of People", + " , !- People per Zone Floor Area {person/m2}", + " 18.58, !- Zone Floor Area per Person {m2/person}", + " 0.3000, !- Fraction Radiant", + " AUTOCALCULATE, !- Sensible Heat Fraction", + " ACTIVITY_SCH, !- Activity Level Schedule Name", + " , !- Carbon Dioxide Generation Rate {m3/s-W}", + " No, !- Enable ASHRAE 55 Comfort Warnings", + " ZoneAveraged, !- Mean Radiant Temperature Calculation Type", + " , !- Surface Name/Angle Factor List Name", + " WORK_EFF_SCH, !- Work Efficiency Schedule Name", + " ClothingInsulationSchedule, !- Clothing Insulation Calculation Method", + " , !- Clothing Insulation Calculation Method Schedule Name", + " CLOTHING_SCH, !- Clothing Insulation Schedule Name", + " AIR_VELO_SCH, !- Air Velocity Schedule Name", + " FANGER; !- Thermal Comfort Model 1 Type", + + " People,", + " Perimeter_ZN_2 People, !- Name", + " Perimeter_ZN_2, !- Zone or ZoneList Name", + " BLDG_OCC_SCH, !- Number of People Schedule Name", + " Area/Person, !- Number of People Calculation Method", + " , !- Number of People", + " , !- People per Zone Floor Area {person/m2}", + " 18.58, !- Zone Floor Area per Person {m2/person}", + " 0.3000, !- Fraction Radiant", + " AUTOCALCULATE, !- Sensible Heat Fraction", + " ACTIVITY_SCH, !- Activity Level Schedule Name", + " , !- Carbon Dioxide Generation Rate {m3/s-W}", + " No, !- Enable ASHRAE 55 Comfort Warnings", + " ZoneAveraged, !- Mean Radiant Temperature Calculation Type", + " , !- Surface Name/Angle Factor List Name", + " WORK_EFF_SCH, !- Work Efficiency Schedule Name", + " ClothingInsulationSchedule, !- Clothing Insulation Calculation Method", + " , !- Clothing Insulation Calculation Method Schedule Name", + " CLOTHING_SCH, !- Clothing Insulation Schedule Name", + " AIR_VELO_SCH, !- Air Velocity Schedule Name", + " FANGER; !- Thermal Comfort Model 1 Type", + + " People,", + " Perimeter_ZN_3 People, !- Name", + " Perimeter_ZN_3, !- Zone or ZoneList Name", + " BLDG_OCC_SCH, !- Number of People Schedule Name", + " Area/Person, !- Number of People Calculation Method", + " , !- Number of People", + " , !- People per Zone Floor Area {person/m2}", + " 18.58, !- Zone Floor Area per Person {m2/person}", + " 0.3000, !- Fraction Radiant", + " AUTOCALCULATE, !- Sensible Heat Fraction", + " ACTIVITY_SCH, !- Activity Level Schedule Name", + " , !- Carbon Dioxide Generation Rate {m3/s-W}", + " No, !- Enable ASHRAE 55 Comfort Warnings", + " ZoneAveraged, !- Mean Radiant Temperature Calculation Type", + " , !- Surface Name/Angle Factor List Name", + " WORK_EFF_SCH, !- Work Efficiency Schedule Name", + " ClothingInsulationSchedule, !- Clothing Insulation Calculation Method", + " , !- Clothing Insulation Calculation Method Schedule Name", + " CLOTHING_SCH, !- Clothing Insulation Schedule Name", + " AIR_VELO_SCH, !- Air Velocity Schedule Name", + " FANGER; !- Thermal Comfort Model 1 Type", + + " People,", + " Perimeter_ZN_4 People, !- Name", + " Perimeter_ZN_4, !- Zone or ZoneList Name", + " BLDG_OCC_SCH, !- Number of People Schedule Name", + " Area/Person, !- Number of People Calculation Method", + " , !- Number of People", + " , !- People per Zone Floor Area {person/m2}", + " 18.58, !- Zone Floor Area per Person {m2/person}", + " 0.3000, !- Fraction Radiant", + " AUTOCALCULATE, !- Sensible Heat Fraction", + " ACTIVITY_SCH, !- Activity Level Schedule Name", + " , !- Carbon Dioxide Generation Rate {m3/s-W}", + " No, !- Enable ASHRAE 55 Comfort Warnings", + " ZoneAveraged, !- Mean Radiant Temperature Calculation Type", + " , !- Surface Name/Angle Factor List Name", + " WORK_EFF_SCH, !- Work Efficiency Schedule Name", + " ClothingInsulationSchedule, !- Clothing Insulation Calculation Method", + " , !- Clothing Insulation Calculation Method Schedule Name", + " CLOTHING_SCH, !- Clothing Insulation Schedule Name", + " AIR_VELO_SCH, !- Air Velocity Schedule Name", + " FANGER; !- Thermal Comfort Model 1 Type", + + " Lights,", + " Core_ZN_Lights, !- Name", + " Core_ZN, !- Zone or ZoneList Name", + " BLDG_LIGHT_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Lighting Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Return Air Fraction", + " 0.7000, !- Fraction Radiant", + " 0.2000, !- Fraction Visible", + " 1.0000, !- Fraction Replaceable", + " General, !- End-Use Subcategory", + " No; !- Return Air Fraction Calculated from Plenum Temperature", + + " Lights,", + " Perimeter_ZN_1_Lights, !- Name", + " Perimeter_ZN_1, !- Zone or ZoneList Name", + " BLDG_LIGHT_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Lighting Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Return Air Fraction", + " 0.7000, !- Fraction Radiant", + " 0.2000, !- Fraction Visible", + " 1.0000, !- Fraction Replaceable", + " General, !- End-Use Subcategory", + " No; !- Return Air Fraction Calculated from Plenum Temperature", + + " Lights,", + " Perimeter_ZN_2_Lights, !- Name", + " Perimeter_ZN_2, !- Zone or ZoneList Name", + " BLDG_LIGHT_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Lighting Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Return Air Fraction", + " 0.7000, !- Fraction Radiant", + " 0.2000, !- Fraction Visible", + " 1.0000, !- Fraction Replaceable", + " General, !- End-Use Subcategory", + " No; !- Return Air Fraction Calculated from Plenum Temperature", + + " Lights,", + " Perimeter_ZN_3_Lights, !- Name", + " Perimeter_ZN_3, !- Zone or ZoneList Name", + " BLDG_LIGHT_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Lighting Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Return Air Fraction", + " 0.7000, !- Fraction Radiant", + " 0.2000, !- Fraction Visible", + " 1.0000, !- Fraction Replaceable", + " General, !- End-Use Subcategory", + " No; !- Return Air Fraction Calculated from Plenum Temperature", + + " Lights,", + " Perimeter_ZN_4_Lights, !- Name", + " Perimeter_ZN_4, !- Zone or ZoneList Name", + " BLDG_LIGHT_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Lighting Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Return Air Fraction", + " 0.7000, !- Fraction Radiant", + " 0.2000, !- Fraction Visible", + " 1.0000, !- Fraction Replaceable", + " General, !- End-Use Subcategory", + " No; !- Return Air Fraction Calculated from Plenum Temperature", + + " ElectricEquipment,", + " Core_ZN_MiscPlug_Equip, !- Name", + " Core_ZN, !- Zone or ZoneList Name", + " BLDG_EQUIP_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Design Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Fraction Latent", + " 0.5000, !- Fraction Radiant", + " 0.0000, !- Fraction Lost", + " MiscPlug; !- End-Use Subcategory", + + " ElectricEquipment,", + " Perimeter_ZN_1_MiscPlug_Equip, !- Name", + " Perimeter_ZN_1, !- Zone or ZoneList Name", + " BLDG_EQUIP_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Design Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Fraction Latent", + " 0.5000, !- Fraction Radiant", + " 0.0000, !- Fraction Lost", + " MiscPlug; !- End-Use Subcategory", + + " ElectricEquipment,", + " Perimeter_ZN_2_MiscPlug_Equip, !- Name", + " Perimeter_ZN_2, !- Zone or ZoneList Name", + " BLDG_EQUIP_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Design Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Fraction Latent", + " 0.5000, !- Fraction Radiant", + " 0.0000, !- Fraction Lost", + " MiscPlug; !- End-Use Subcategory", + + " ElectricEquipment,", + " Perimeter_ZN_3_MiscPlug_Equip, !- Name", + " Perimeter_ZN_3, !- Zone or ZoneList Name", + " BLDG_EQUIP_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Design Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Fraction Latent", + " 0.5000, !- Fraction Radiant", + " 0.0000, !- Fraction Lost", + " MiscPlug; !- End-Use Subcategory", + + " ElectricEquipment,", + " Perimeter_ZN_4_MiscPlug_Equip, !- Name", + " Perimeter_ZN_4, !- Zone or ZoneList Name", + " BLDG_EQUIP_SCH, !- Schedule Name", + " Watts/Area, !- Design Level Calculation Method", + " , !- Design Level {W}", + " 10.76, !- Watts per Zone Floor Area {W/m2}", + " , !- Watts per Person {W/person}", + " 0.0000, !- Fraction Latent", + " 0.5000, !- Fraction Radiant", + " 0.0000, !- Fraction Lost", + " MiscPlug; !- End-Use Subcategory", + + " Exterior:Lights,", + " Exterior Facade Lighting,!- Name", + " ALWAYS_ON, !- Schedule Name", + " 2303, !- Design Level {W}", + " AstronomicalClock, !- Control Option", + " Exterior Facade Lighting;!- End-Use Subcategory", + + " ZoneInfiltration:DesignFlowRate,", + " Core_ZN_Infiltration, !- Name", + " Core_ZN, !- Zone or ZoneList Name", + " INFIL_QUARTER_ON_SCH, !- Schedule Name", + " AirChanges/Hour, !- Design Flow Rate Calculation Method", + " , !- Design Flow Rate {m3/s}", + " , !- Flow per Zone Floor Area {m3/s-m2}", + " , !- Flow per Exterior Surface Area {m3/s-m2}", + " 0.36, !- Air Changes per Hour {1/hr}", + " 1.0000, !- Constant Term Coefficient", + " 0.0000, !- Temperature Term Coefficient", + " 0.0000, !- Velocity Term Coefficient", + " 0.0000; !- Velocity Squared Term Coefficient", + + " ZoneInfiltration:DesignFlowRate,", + " Perimeter_ZN_1_Infiltration, !- Name", + " Perimeter_ZN_1, !- Zone or ZoneList Name", + " INFIL_QUARTER_ON_SCH, !- Schedule Name", + " Flow/ExteriorArea, !- Design Flow Rate Calculation Method", + " , !- Design Flow Rate {m3/s}", + " , !- Flow per Zone Floor Area {m3/s-m2}", + " 0.000302, !- Flow per Exterior Surface Area {m3/s-m2}", + " , !- Air Changes per Hour {1/hr}", + " 1.0000, !- Constant Term Coefficient", + " 0.0000, !- Temperature Term Coefficient", + " 0.0000, !- Velocity Term Coefficient", + " 0.0000; !- Velocity Squared Term Coefficient", + + " ZoneInfiltration:DesignFlowRate,", + " Perimeter_ZN_2_Infiltration, !- Name", + " Perimeter_ZN_2, !- Zone or ZoneList Name", + " INFIL_QUARTER_ON_SCH, !- Schedule Name", + " Flow/ExteriorArea, !- Design Flow Rate Calculation Method", + " , !- Design Flow Rate {m3/s}", + " , !- Flow per Zone Floor Area {m3/s-m2}", + " 0.000302, !- Flow per Exterior Surface Area {m3/s-m2}", + " , !- Air Changes per Hour {1/hr}", + " 1.0000, !- Constant Term Coefficient", + " 0.0000, !- Temperature Term Coefficient", + " 0.0000, !- Velocity Term Coefficient", + " 0.0000; !- Velocity Squared Term Coefficient", + + " ZoneInfiltration:DesignFlowRate,", + " Perimeter_ZN_3_Infiltration, !- Name", + " Perimeter_ZN_3, !- Zone or ZoneList Name", + " INFIL_QUARTER_ON_SCH, !- Schedule Name", + " Flow/ExteriorArea, !- Design Flow Rate Calculation Method", + " , !- Design Flow Rate {m3/s}", + " , !- Flow per Zone Floor Area {m3/s-m2}", + " 0.000302, !- Flow per Exterior Surface Area {m3/s-m2}", + " , !- Air Changes per Hour {1/hr}", + " 1.0000, !- Constant Term Coefficient", + " 0.0000, !- Temperature Term Coefficient", + " 0.0000, !- Velocity Term Coefficient", + " 0.0000; !- Velocity Squared Term Coefficient", + + " ZoneInfiltration:DesignFlowRate,", + " Perimeter_ZN_4_Infiltration, !- Name", + " Perimeter_ZN_4, !- Zone or ZoneList Name", + " INFIL_QUARTER_ON_SCH, !- Schedule Name", + " Flow/ExteriorArea, !- Design Flow Rate Calculation Method", + " , !- Design Flow Rate {m3/s}", + " , !- Flow per Zone Floor Area {m3/s-m2}", + " 0.000302, !- Flow per Exterior Surface Area {m3/s-m2}", + " , !- Air Changes per Hour {1/hr}", + " 1.0000, !- Constant Term Coefficient", + " 0.0000, !- Temperature Term Coefficient", + " 0.0000, !- Velocity Term Coefficient", + " 0.0000; !- Velocity Squared Term Coefficient", + + " InternalMass,", + " Core_ZN Internal Mass, !- Name", + " InteriorFurnishings, !- Construction Name", + " Core_ZN, !- Zone Name", + " 299.3148; !- Surface Area {m2}", + + " InternalMass,", + " Perimeter_ZN_1 Internal Mass, !- Name", + " InteriorFurnishings, !- Construction Name", + " Perimeter_ZN_1, !- Zone Name", + " 226.9000; !- Surface Area {m2}", + + " InternalMass,", + " Perimeter_ZN_2 Internal Mass, !- Name", + " InteriorFurnishings, !- Construction Name", + " Perimeter_ZN_2, !- Zone Name", + " 134.6000; !- Surface Area {m2}", + + " InternalMass,", + " Perimeter_ZN_3 Internal Mass, !- Name", + " InteriorFurnishings, !- Construction Name", + " Perimeter_ZN_3, !- Zone Name", + " 226.9000; !- Surface Area {m2}", + + " InternalMass,", + " Perimeter_ZN_4 Internal Mass, !- Name", + " InteriorFurnishings, !- Construction Name", + " Perimeter_ZN_4, !- Zone Name", + " 134.6000; !- Surface Area {m2}", + + " Schedule:Compact,", + " INFIL_QUARTER_ON_SCH, !- Name", + " Fraction, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: Weekdays SummerDesignDay, !- Field 2", + " Until: 06:00,1.0, !- Field 3", + " Until: 22:00,0.25, !- Field 5", + " Until: 24:00,1.0, !- Field 7", + " For: Saturday WinterDesignDay, !- Field 9", + " Until: 06:00,1.0, !- Field 10", + " Until: 18:00,0.25, !- Field 12", + " Until: 24:00,1.0, !- Field 14", + " For: Sunday Holidays AllOtherDays, !- Field 16", + " Until: 24:00,1.0; !- Field 17", + + " Schedule:Compact,", + " BLDG_OCC_SCH, !- Name", + " Fraction, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: SummerDesignDay, !- Field 2", + " Until: 06:00,0.0, !- Field 3", + " Until: 22:00,1.0, !- Field 5", + " Until: 24:00,0.05, !- Field 7", + " For: Weekdays, !- Field 9", + " Until: 06:00,0.0, !- Field 10", + " Until: 07:00,0.1, !- Field 12", + " Until: 08:00,0.2, !- Field 14", + " Until: 12:00,0.95, !- Field 16", + " Until: 13:00,0.5, !- Field 18", + " Until: 17:00,0.95, !- Field 20", + " Until: 18:00,0.3, !- Field 22", + " Until: 20:00,0.1, !- Field 24", + " Until: 24:00,0.05, !- Field 26", + " For: Saturday, !- Field 28", + " Until: 06:00,0.0, !- Field 29", + " Until: 08:00,0.1, !- Field 31", + " Until: 12:00,0.3, !- Field 33", + " Until: 17:00,0.1, !- Field 35", + " Until: 24:00,0.0, !- Field 37", + " For: AllOtherDays, !- Field 39", + " Until: 24:00,0.0; !- Field 40", + + " Schedule:Compact,", + " BLDG_LIGHT_SCH, !- Name", + " Fraction, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: Weekdays, !- Field 2", + " Until: 05:00,0.05, !- Field 3", + " Until: 07:00,0.1, !- Field 5", + " Until: 08:00,0.3, !- Field 7", + " Until: 17:00,0.9, !- Field 9", + " Until: 18:00,0.5, !- Field 11", + " Until: 20:00,0.3, !- Field 13", + " Until: 22:00,0.2, !- Field 15", + " Until: 23:00,0.1, !- Field 17", + " Until: 24:00,0.05, !- Field 19", + " For: Saturday, !- Field 21", + " Until: 06:00,0.05, !- Field 22", + " Until: 08:00,0.1, !- Field 24", + " Until: 12:00,0.3, !- Field 26", + " Until: 17:00,0.15, !- Field 28", + " Until: 24:00,0.05, !- Field 30", + " For: SummerDesignDay, !- Field 32", + " Until: 24:00,1.0, !- Field 33", + " For: WinterDesignDay, !- Field 35", + " Until: 24:00,0.0, !- Field 36", + " For: AllOtherDays, !- Field 38", + " Until: 24:00,0.05; !- Field 39", + + " Schedule:Compact,", + " BLDG_EQUIP_SCH, !- Name", + " Fraction, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: Weekdays, !- Field 2", + " Until: 08:00,0.40, !- Field 3", + " Until: 12:00,0.90, !- Field 5", + " Until: 13:00,0.80, !- Field 7", + " Until: 17:00,0.90, !- Field 9", + " Until: 18:00,0.50, !- Field 11", + " Until: 24:00,0.40, !- Field 13", + " For: Saturday, !- Field 15", + " Until: 06:00,0.30, !- Field 16", + " Until: 08:00,0.4, !- Field 18", + " Until: 12:00,0.5, !- Field 20", + " Until: 17:00,0.35, !- Field 22", + " Until: 24:00,0.30, !- Field 24", + " For: SummerDesignDay, !- Field 26", + " Until: 24:00,1.0, !- Field 27", + " For: WinterDesignDay, !- Field 29", + " Until: 24:00,0.0, !- Field 30", + " For: AllOtherDays, !- Field 32", + " Until: 24:00,0.30; !- Field 33", + + " Schedule:Compact,", + " ACTIVITY_SCH, !- Name", + " Any Number, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,120; !- Field 3", + + " Schedule:Compact,", + " WORK_EFF_SCH, !- Name", + " Fraction, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,0.0; !- Field 3", + + " Schedule:Compact,", + " AIR_VELO_SCH, !- Name", + " Any Number, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,0.2; !- Field 3", + + " Schedule:Compact,", + " CLOTHING_SCH, !- Name", + " Any Number, !- Schedule Type Limits Name", + " Through: 04/30, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,1.0, !- Field 3", + " Through: 09/30, !- Field 5", + " For: AllDays, !- Field 6", + " Until: 24:00,0.5, !- Field 7", + " Through: 12/31, !- Field 9", + " For: AllDays, !- Field 10", + " Until: 24:00,1.0; !- Field 11", + + " ZoneInfiltration:DesignFlowRate,", + " Attic_Infiltration, !- Name", + " Attic, !- Zone or ZoneList Name", + " ALWAYS_ON, !- Schedule Name", + " AirChanges/Hour, !- Design Flow Rate Calculation Method", + " , !- Design Flow Rate {m3/s}", + " , !- Flow per Zone Floor Area {m3/s-m2}", + " , !- Flow per Exterior Surface Area {m3/s-m2}", + " 1.0, !- Air Changes per Hour {1/hr}", + " 1.0000, !- Constant Term Coefficient", + " 0.0000, !- Temperature Term Coefficient", + " 0.0000, !- Velocity Term Coefficient", + " 0.0000; !- Velocity Squared Term Coefficient", + + " Fan:SystemModel,", + " PSZ-AC:1_Fan, !- Name", + " HVACOperationSchd, !- Availability Schedule Name", + " PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Air Inlet Node Name", + " PSZ-AC:1 Supply Equipment Outlet Node, !- Air Outlet Node Name", + " AUTOSIZE, !- Design Maximum Air Flow Rate {m3/s}", + " Discrete, !- Speed Control Method", + " 0.0, !- Electric Power Minimum Flow Rate Fraction", + " 622.0, !- Design Pressure Rise {Pa}", + " 0.825, !- Motor Efficiency", + " 1.0, !- Motor In Air Stream Fraction", + " AUTOSIZE, !- Design Electric Power Consumption {W}", + " TotalEfficiencyAndPressure, !- Design Power Sizing Method", + " , !- Electric Power Per Unit Flow Rate {W/(m3/s)}", + " , !- Electric Power Per Unit Flow Rate Per Unit Pressure {W/((m3/s)-Pa)}", + " 0.53625, !- Fan Total Efficiency", + " , !- Electric Power Function of Flow Fraction Curve Name", + " , !- Night Ventilation Mode Pressure Rise {Pa}", + " , !- Night Ventilation Mode Flow Fraction", + " , !- Motor Loss Zone Name", + " , !- Motor Loss Radiative Fraction", + " Fan Energy; !- End-Use Subcategory", + + " Fan:ConstantVolume,", + " PSZ-AC:2_Fan, !- Name", + " HVACOperationSchd, !- Availability Schedule Name", + " 0.53625, !- Fan Total Efficiency", + " 622.0, !- Pressure Rise {Pa}", + " AUTOSIZE, !- Maximum Flow Rate {m3/s}", + " 0.825, !- Motor Efficiency", + " 1.0, !- Motor In Airstream Fraction", + " PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Air Inlet Node Name", + " PSZ-AC:2 Supply Equipment Outlet Node, !- Air Outlet Node Name", + " Fan Energy; !- End-Use Subcategory", + + " Fan:ConstantVolume,", + " PSZ-AC:3_Fan, !- Name", + " HVACOperationSchd, !- Availability Schedule Name", + " 0.53625, !- Fan Total Efficiency", + " 622.0, !- Pressure Rise {Pa}", + " AUTOSIZE, !- Maximum Flow Rate {m3/s}", + " 0.825, !- Motor Efficiency", + " 1.0, !- Motor In Airstream Fraction", + " PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Air Inlet Node Name", + " PSZ-AC:3 Supply Equipment Outlet Node, !- Air Outlet Node Name", + " Fan Energy; !- End-Use Subcategory", + + " Fan:ConstantVolume,", + " PSZ-AC:4_Fan, !- Name", + " HVACOperationSchd, !- Availability Schedule Name", + " 0.53625, !- Fan Total Efficiency", + " 622.0, !- Pressure Rise {Pa}", + " AUTOSIZE, !- Maximum Flow Rate {m3/s}", + " 0.825, !- Motor Efficiency", + " 1.0, !- Motor In Airstream Fraction", + " PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Air Inlet Node Name", + " PSZ-AC:4 Supply Equipment Outlet Node, !- Air Outlet Node Name", + " Fan Energy; !- End-Use Subcategory", + + " Fan:ConstantVolume,", + " PSZ-AC:5_Fan, !- Name", + " HVACOperationSchd, !- Availability Schedule Name", + " 0.53625, !- Fan Total Efficiency", + " 622.0, !- Pressure Rise {Pa}", + " AUTOSIZE, !- Maximum Flow Rate {m3/s}", + " 0.825, !- Motor Efficiency", + " 1.0, !- Motor In Airstream Fraction", + " PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Air Inlet Node Name", + " PSZ-AC:5 Supply Equipment Outlet Node, !- Air Outlet Node Name", + " Fan Energy; !- End-Use Subcategory", + + " Coil:Heating:Fuel,", + " PSZ-AC:1_HeatC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " NaturalGas, !- Fuel Type", + " 0.8, !- Burner Efficiency", + " AUTOSIZE, !- Nominal Capacity {W}", + " PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- Air Inlet Node Name", + " PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Air Outlet Node Name", + " PSZ-AC:1_HeatC-PSZ-AC:1_FanNode; !- Temperature Setpoint Node Name", + + " Coil:Heating:Fuel,", + " PSZ-AC:2_HeatC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " NaturalGas, !- Fuel Type", + " 0.8, !- Burner Efficiency", + " AUTOSIZE, !- Nominal Capacity {W}", + " PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- Air Inlet Node Name", + " PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Air Outlet Node Name", + " PSZ-AC:2_HeatC-PSZ-AC:2_FanNode; !- Temperature Setpoint Node Name", + + " Coil:Heating:Fuel,", + " PSZ-AC:3_HeatC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " NaturalGas, !- Fuel Type", + " 0.8, !- Burner Efficiency", + " AUTOSIZE, !- Nominal Capacity {W}", + " PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- Air Inlet Node Name", + " PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Air Outlet Node Name", + " PSZ-AC:3_HeatC-PSZ-AC:3_FanNode; !- Temperature Setpoint Node Name", + + " Coil:Heating:Fuel,", + " PSZ-AC:4_HeatC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " NaturalGas, !- Fuel Type", + " 0.8, !- Burner Efficiency", + " AUTOSIZE, !- Nominal Capacity {W}", + " PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- Air Inlet Node Name", + " PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Air Outlet Node Name", + " PSZ-AC:4_HeatC-PSZ-AC:4_FanNode; !- Temperature Setpoint Node Name", + + " Coil:Heating:Fuel,", + " PSZ-AC:5_HeatC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " NaturalGas, !- Fuel Type", + " 0.8, !- Burner Efficiency", + " AUTOSIZE, !- Nominal Capacity {W}", + " PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- Air Inlet Node Name", + " PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Air Outlet Node Name", + " PSZ-AC:5_HeatC-PSZ-AC:5_FanNode; !- Temperature Setpoint Node Name", + + " Coil:Cooling:DX:SingleSpeed,", + " PSZ-AC:1_CoolC DXCoil, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " AUTOSIZE, !- Gross Rated Total Cooling Capacity {W}", + " AUTOSIZE, !- Gross Rated Sensible Heat Ratio", + " 3.66668442928701, !- Gross Rated Cooling COP {W/W}", + " AUTOSIZE, !- Rated Air Flow Rate {m3/s}", + " , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}", + " PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Air Inlet Node Name", + " PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- Air Outlet Node Name", + " Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name", + " ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name", + " Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name", + " ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name", + " Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name", + + " Coil:Cooling:DX:SingleSpeed,", + " PSZ-AC:2_CoolC DXCoil, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " AUTOSIZE, !- Gross Rated Total Cooling Capacity {W}", + " AUTOSIZE, !- Gross Rated Sensible Heat Ratio", + " 3.66668442928701, !- Gross Rated Cooling COP {W/W}", + " AUTOSIZE, !- Rated Air Flow Rate {m3/s}", + " , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}", + " PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Air Inlet Node Name", + " PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- Air Outlet Node Name", + " Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name", + " ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name", + " Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name", + " ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name", + " Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name", + + " Coil:Cooling:DX:SingleSpeed,", + " PSZ-AC:3_CoolC DXCoil, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " AUTOSIZE, !- Gross Rated Total Cooling Capacity {W}", + " AUTOSIZE, !- Gross Rated Sensible Heat Ratio", + " 3.66668442928701, !- Gross Rated Cooling COP {W/W}", + " AUTOSIZE, !- Rated Air Flow Rate {m3/s}", + " , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}", + " PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Air Inlet Node Name", + " PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- Air Outlet Node Name", + " Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name", + " ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name", + " Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name", + " ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name", + " Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name", + + " Coil:Cooling:DX:SingleSpeed,", + " PSZ-AC:4_CoolC DXCoil, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " AUTOSIZE, !- Gross Rated Total Cooling Capacity {W}", + " AUTOSIZE, !- Gross Rated Sensible Heat Ratio", + " 3.66668442928701, !- Gross Rated Cooling COP {W/W}", + " AUTOSIZE, !- Rated Air Flow Rate {m3/s}", + " , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}", + " PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Air Inlet Node Name", + " PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- Air Outlet Node Name", + " Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name", + " ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name", + " Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name", + " ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name", + " Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name", + + " Coil:Cooling:DX:SingleSpeed,", + " PSZ-AC:5_CoolC DXCoil, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " AUTOSIZE, !- Gross Rated Total Cooling Capacity {W}", + " AUTOSIZE, !- Gross Rated Sensible Heat Ratio", + " 3.66668442928701, !- Gross Rated Cooling COP {W/W}", + " AUTOSIZE, !- Rated Air Flow Rate {m3/s}", + " , !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}", + " PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Air Inlet Node Name", + " PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- Air Outlet Node Name", + " Cool-Cap-fT, !- Total Cooling Capacity Function of Temperature Curve Name", + " ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name", + " Cool-EIR-fT, !- Energy Input Ratio Function of Temperature Curve Name", + " ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name", + " Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name", + + " ZoneHVAC:EquipmentList,", + " Core_ZN Equipment, !- Name", + " SequentialLoad, !- Load Distribution Scheme", + " AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type", + " Core_ZN Direct Air, !- Zone Equipment 1 Name", + " 1, !- Zone Equipment 1 Cooling Sequence", + " 1, !- Zone Equipment 1 Heating or No-Load Sequence", + " , !- Zone Equipment 1 Sequential Cooling Load Fraction", + " ; !- Zone Equipment 1 Sequential Heating Load Fraction", + + " ZoneHVAC:EquipmentList,", + " Perimeter_ZN_1 Equipment,!- Name", + " SequentialLoad, !- Load Distribution Scheme", + " AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type", + " Perimeter_ZN_1 Direct Air, !- Zone Equipment 1 Name", + " 1, !- Zone Equipment 1 Cooling Sequence", + " 1, !- Zone Equipment 1 Heating or No-Load Sequence", + " , !- Zone Equipment 1 Sequential Cooling Load Fraction", + " ; !- Zone Equipment 1 Sequential Heating Load Fraction", + + " ZoneHVAC:EquipmentList,", + " Perimeter_ZN_2 Equipment,!- Name", + " SequentialLoad, !- Load Distribution Scheme", + " AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type", + " Perimeter_ZN_2 Direct Air, !- Zone Equipment 1 Name", + " 1, !- Zone Equipment 1 Cooling Sequence", + " 1, !- Zone Equipment 1 Heating or No-Load Sequence", + " , !- Zone Equipment 1 Sequential Cooling Load Fraction", + " ; !- Zone Equipment 1 Sequential Heating Load Fraction", + + " ZoneHVAC:EquipmentList,", + " Perimeter_ZN_3 Equipment,!- Name", + " SequentialLoad, !- Load Distribution Scheme", + " AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type", + " Perimeter_ZN_3 Direct Air, !- Zone Equipment 1 Name", + " 1, !- Zone Equipment 1 Cooling Sequence", + " 1, !- Zone Equipment 1 Heating or No-Load Sequence", + " , !- Zone Equipment 1 Sequential Cooling Load Fraction", + " ; !- Zone Equipment 1 Sequential Heating Load Fraction", + + " ZoneHVAC:EquipmentList,", + " Perimeter_ZN_4 Equipment,!- Name", + " SequentialLoad, !- Load Distribution Scheme", + " AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type", + " Perimeter_ZN_4 Direct Air, !- Zone Equipment 1 Name", + " 1, !- Zone Equipment 1 Cooling Sequence", + " 1, !- Zone Equipment 1 Heating or No-Load Sequence", + " , !- Zone Equipment 1 Sequential Cooling Load Fraction", + " ; !- Zone Equipment 1 Sequential Heating Load Fraction", + + " Sizing:Zone,", + " Core_ZN, !- Zone or ZoneList Name", + " SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method", + " 14.0000, !- Zone Cooling Design Supply Air Temperature {C}", + " , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}", + " SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method", + " 40.0000, !- Zone Heating Design Supply Air Temperature {C}", + " , !- Zone Heating Design Supply Air Temperature Difference {deltaC}", + " 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " SZ DSOA Core_ZN, !- Design Specification Outdoor Air Object Name", + " , !- Zone Heating Sizing Factor", + " , !- Zone Cooling Sizing Factor", + " DesignDay, !- Cooling Design Air Flow Method", + " , !- Cooling Design Air Flow Rate {m3/s}", + " , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Cooling Minimum Air Flow {m3/s}", + " , !- Cooling Minimum Air Flow Fraction", + " DesignDay, !- Heating Design Air Flow Method", + " , !- Heating Design Air Flow Rate {m3/s}", + " , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Heating Maximum Air Flow {m3/s}", + " ; !- Heating Maximum Air Flow Fraction", + + " DesignSpecification:OutdoorAir,", + " SZ DSOA Core_ZN, !- Name", + " Flow/Person, !- Outdoor Air Method", + " 0.01, !- Outdoor Air Flow per Person {m3/s-person}", + " , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}", + " ; !- Outdoor Air Flow per Zone {m3/s}", + + " Sizing:Zone,", + " Perimeter_ZN_1, !- Zone or ZoneList Name", + " SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method", + " 13.9000, !- Zone Cooling Design Supply Air Temperature {C}", + " , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}", + " SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method", + " 40.0000, !- Zone Heating Design Supply Air Temperature {C}", + " , !- Zone Heating Design Supply Air Temperature Difference {deltaC}", + " 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " SZ DSOA Perimeter_ZN_1, !- Design Specification Outdoor Air Object Name", + " , !- Zone Heating Sizing Factor", + " , !- Zone Cooling Sizing Factor", + " DesignDay, !- Cooling Design Air Flow Method", + " , !- Cooling Design Air Flow Rate {m3/s}", + " , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Cooling Minimum Air Flow {m3/s}", + " , !- Cooling Minimum Air Flow Fraction", + " DesignDay, !- Heating Design Air Flow Method", + " , !- Heating Design Air Flow Rate {m3/s}", + " , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Heating Maximum Air Flow {m3/s}", + " ; !- Heating Maximum Air Flow Fraction", + + " DesignSpecification:OutdoorAir,", + " SZ DSOA Perimeter_ZN_1, !- Name", + " Flow/Person, !- Outdoor Air Method", + " 0.01, !- Outdoor Air Flow per Person {m3/s-person}", + " , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}", + " ; !- Outdoor Air Flow per Zone {m3/s}", + + " Sizing:Zone,", + " Perimeter_ZN_2, !- Zone or ZoneList Name", + " SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method", + " 14.0000, !- Zone Cooling Design Supply Air Temperature {C}", + " , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}", + " SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method", + " 40.0000, !- Zone Heating Design Supply Air Temperature {C}", + " , !- Zone Heating Design Supply Air Temperature Difference {deltaC}", + " 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " SZ DSOA Perimeter_ZN_2, !- Design Specification Outdoor Air Object Name", + " , !- Zone Heating Sizing Factor", + " , !- Zone Cooling Sizing Factor", + " DesignDay, !- Cooling Design Air Flow Method", + " , !- Cooling Design Air Flow Rate {m3/s}", + " , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Cooling Minimum Air Flow {m3/s}", + " , !- Cooling Minimum Air Flow Fraction", + " DesignDay, !- Heating Design Air Flow Method", + " , !- Heating Design Air Flow Rate {m3/s}", + " , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Heating Maximum Air Flow {m3/s}", + " ; !- Heating Maximum Air Flow Fraction", + + " DesignSpecification:OutdoorAir,", + " SZ DSOA Perimeter_ZN_2, !- Name", + " Flow/Person, !- Outdoor Air Method", + " 0.01, !- Outdoor Air Flow per Person {m3/s-person}", + " , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}", + " ; !- Outdoor Air Flow per Zone {m3/s}", + + " Sizing:Zone,", + " Perimeter_ZN_3, !- Zone or ZoneList Name", + " SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method", + " 13.9000, !- Zone Cooling Design Supply Air Temperature {C}", + " , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}", + " SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method", + " 40.0000, !- Zone Heating Design Supply Air Temperature {C}", + " , !- Zone Heating Design Supply Air Temperature Difference {deltaC}", + " 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " SZ DSOA Perimeter_ZN_3, !- Design Specification Outdoor Air Object Name", + " , !- Zone Heating Sizing Factor", + " , !- Zone Cooling Sizing Factor", + " DesignDay, !- Cooling Design Air Flow Method", + " , !- Cooling Design Air Flow Rate {m3/s}", + " , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Cooling Minimum Air Flow {m3/s}", + " , !- Cooling Minimum Air Flow Fraction", + " DesignDay, !- Heating Design Air Flow Method", + " , !- Heating Design Air Flow Rate {m3/s}", + " , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Heating Maximum Air Flow {m3/s}", + " ; !- Heating Maximum Air Flow Fraction", + + " DesignSpecification:OutdoorAir,", + " SZ DSOA Perimeter_ZN_3, !- Name", + " Flow/Person, !- Outdoor Air Method", + " 0.01, !- Outdoor Air Flow per Person {m3/s-person}", + " , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}", + " ; !- Outdoor Air Flow per Zone {m3/s}", + + " Sizing:Zone,", + " Perimeter_ZN_4, !- Zone or ZoneList Name", + " SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method", + " 14.0000, !- Zone Cooling Design Supply Air Temperature {C}", + " , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}", + " SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method", + " 40.0000, !- Zone Heating Design Supply Air Temperature {C}", + " , !- Zone Heating Design Supply Air Temperature Difference {deltaC}", + " 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " SZ DSOA Perimeter_ZN_4, !- Design Specification Outdoor Air Object Name", + " , !- Zone Heating Sizing Factor", + " , !- Zone Cooling Sizing Factor", + " DesignDay, !- Cooling Design Air Flow Method", + " , !- Cooling Design Air Flow Rate {m3/s}", + " , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Cooling Minimum Air Flow {m3/s}", + " , !- Cooling Minimum Air Flow Fraction", + " DesignDay, !- Heating Design Air Flow Method", + " , !- Heating Design Air Flow Rate {m3/s}", + " , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Heating Maximum Air Flow {m3/s}", + " ; !- Heating Maximum Air Flow Fraction", + + " DesignSpecification:OutdoorAir,", + " SZ DSOA Perimeter_ZN_4, !- Name", + " Flow/Person, !- Outdoor Air Method", + " 0.01, !- Outdoor Air Flow per Person {m3/s-person}", + " , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}", + " ; !- Outdoor Air Flow per Zone {m3/s}", + + " ZoneControl:Thermostat,", + " Core_ZN Thermostat, !- Name", + " Core_ZN, !- Zone or ZoneList Name", + " Dual Zone Control Type Sched, !- Control Type Schedule Name", + " ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type", + " Core_ZN DualSPSched; !- Control 1 Name", + + " ZoneControl:Thermostat,", + " Perimeter_ZN_1 Thermostat, !- Name", + " Perimeter_ZN_1, !- Zone or ZoneList Name", + " Dual Zone Control Type Sched, !- Control Type Schedule Name", + " ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type", + " Perimeter_ZN_1 DualSPSched; !- Control 1 Name", + + " ZoneControl:Thermostat,", + " Perimeter_ZN_2 Thermostat, !- Name", + " Perimeter_ZN_2, !- Zone or ZoneList Name", + " Dual Zone Control Type Sched, !- Control Type Schedule Name", + " ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type", + " Perimeter_ZN_2 DualSPSched; !- Control 1 Name", + + " ZoneControl:Thermostat,", + " Perimeter_ZN_3 Thermostat, !- Name", + " Perimeter_ZN_3, !- Zone or ZoneList Name", + " Dual Zone Control Type Sched, !- Control Type Schedule Name", + " ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type", + " Perimeter_ZN_3 DualSPSched; !- Control 1 Name", + + " ZoneControl:Thermostat,", + " Perimeter_ZN_4 Thermostat, !- Name", + " Perimeter_ZN_4, !- Zone or ZoneList Name", + " Dual Zone Control Type Sched, !- Control Type Schedule Name", + " ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type", + " Perimeter_ZN_4 DualSPSched; !- Control 1 Name", + + " ThermostatSetpoint:DualSetpoint,", + " Core_ZN DualSPSched, !- Name", + " HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name", + " CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name", + + " ThermostatSetpoint:DualSetpoint,", + " Perimeter_ZN_1 DualSPSched, !- Name", + " HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name", + " CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name", + + " ThermostatSetpoint:DualSetpoint,", + " Perimeter_ZN_2 DualSPSched, !- Name", + " HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name", + " CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name", + + " ThermostatSetpoint:DualSetpoint,", + " Perimeter_ZN_3 DualSPSched, !- Name", + " HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name", + " CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name", + + " ThermostatSetpoint:DualSetpoint,", + " Perimeter_ZN_4 DualSPSched, !- Name", + " HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name", + " CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name", + + " SetpointManager:SingleZone:Reheat,", + " SupAirTemp MngrCore_ZN, !- Name", + " Temperature, !- Control Variable", + " 10.0, !- Minimum Supply Air Temperature {C}", + " 50.0, !- Maximum Supply Air Temperature {C}", + " Core_ZN, !- Control Zone Name", + " Core_ZN Air Node, !- Zone Node Name", + " Core_ZN Direct Air Inlet Node Name, !- Zone Inlet Node Name", + " PSZ-AC:1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name", + + " SetpointManager:SingleZone:Reheat,", + " SupAirTemp MngrPerimeter_ZN_1, !- Name", + " Temperature, !- Control Variable", + " 10.0, !- Minimum Supply Air Temperature {C}", + " 50.0, !- Maximum Supply Air Temperature {C}", + " Perimeter_ZN_1, !- Control Zone Name", + " Perimeter_ZN_1 Air Node, !- Zone Node Name", + " Perimeter_ZN_1 Direct Air Inlet Node Name, !- Zone Inlet Node Name", + " PSZ-AC:2 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name", + + " SetpointManager:SingleZone:Reheat,", + " SupAirTemp MngrPerimeter_ZN_2, !- Name", + " Temperature, !- Control Variable", + " 10.0, !- Minimum Supply Air Temperature {C}", + " 50.0, !- Maximum Supply Air Temperature {C}", + " Perimeter_ZN_2, !- Control Zone Name", + " Perimeter_ZN_2 Air Node, !- Zone Node Name", + " Perimeter_ZN_2 Direct Air Inlet Node Name, !- Zone Inlet Node Name", + " PSZ-AC:3 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name", + + " SetpointManager:SingleZone:Reheat,", + " SupAirTemp MngrPerimeter_ZN_3, !- Name", + " Temperature, !- Control Variable", + " 10.0, !- Minimum Supply Air Temperature {C}", + " 50.0, !- Maximum Supply Air Temperature {C}", + " Perimeter_ZN_3, !- Control Zone Name", + " Perimeter_ZN_3 Air Node, !- Zone Node Name", + " Perimeter_ZN_3 Direct Air Inlet Node Name, !- Zone Inlet Node Name", + " PSZ-AC:4 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name", + + " SetpointManager:SingleZone:Reheat,", + " SupAirTemp MngrPerimeter_ZN_4, !- Name", + " Temperature, !- Control Variable", + " 10.0, !- Minimum Supply Air Temperature {C}", + " 50.0, !- Maximum Supply Air Temperature {C}", + " Perimeter_ZN_4, !- Control Zone Name", + " Perimeter_ZN_4 Air Node, !- Zone Node Name", + " Perimeter_ZN_4 Direct Air Inlet Node Name, !- Zone Inlet Node Name", + " PSZ-AC:5 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name", + + " Sizing:System,", + " PSZ-AC:1, !- AirLoop Name", + " Sensible, !- Type of Load to Size On", + " AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}", + " 1.0, !- Central Heating Maximum System Air Flow Ratio", + " 7.0, !- Preheat Design Temperature {C}", + " 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Precool Design Temperature {C}", + " 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Central Cooling Design Supply Air Temperature {C}", + " 40.0, !- Central Heating Design Supply Air Temperature {C}", + " NonCoincident, !- Type of Zone Sum to Use", + " No, !- 100% Outdoor Air in Cooling", + " No, !- 100% Outdoor Air in Heating", + " 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " DesignDay, !- Cooling Supply Air Flow Rate Method", + " , !- Cooling Supply Air Flow Rate {m3/s}", + " , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}", + " DesignDay, !- Heating Supply Air Flow Rate Method", + " , !- Heating Supply Air Flow Rate {m3/s}", + " , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Heating Fraction of Autosized Heating Supply Air Flow Rate", + " , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}", + " , !- System Outdoor Air Method", + " 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless}", + " CoolingDesignCapacity, !- Cooling Design Capacity Method", + " autosize, !- Cooling Design Capacity {W}", + " , !- Cooling Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Cooling Design Capacity", + " HeatingDesignCapacity, !- Heating Design Capacity Method", + " autosize, !- Heating Design Capacity {W}", + " , !- Heating Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Heating Design Capacity", + " VAV; !- Central Cooling Capacity Control Method", + + " Sizing:System,", + " PSZ-AC:2, !- AirLoop Name", + " Sensible, !- Type of Load to Size On", + " AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}", + " 1.0, !- Central Heating Maximum System Air Flow Ratio", + " 7.0, !- Preheat Design Temperature {C}", + " 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Precool Design Temperature {C}", + " 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Central Cooling Design Supply Air Temperature {C}", + " 40.0, !- Central Heating Design Supply Air Temperature {C}", + " NonCoincident, !- Type of Zone Sum to Use", + " No, !- 100% Outdoor Air in Cooling", + " No, !- 100% Outdoor Air in Heating", + " 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " DesignDay, !- Cooling Supply Air Flow Rate Method", + " , !- Cooling Supply Air Flow Rate {m3/s}", + " , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}", + " DesignDay, !- Heating Supply Air Flow Rate Method", + " , !- Heating Supply Air Flow Rate {m3/s}", + " , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Heating Fraction of Autosized Heating Supply Air Flow Rate", + " , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}", + " , !- System Outdoor Air Method", + " 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless}", + " CoolingDesignCapacity, !- Cooling Design Capacity Method", + " autosize, !- Cooling Design Capacity {W}", + " , !- Cooling Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Cooling Design Capacity", + " HeatingDesignCapacity, !- Heating Design Capacity Method", + " autosize, !- Heating Design Capacity {W}", + " , !- Heating Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Heating Design Capacity", + " VAV; !- Central Cooling Capacity Control Method", + + " Sizing:System,", + " PSZ-AC:3, !- AirLoop Name", + " Sensible, !- Type of Load to Size On", + " AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}", + " 1.0, !- Central Heating Maximum System Air Flow Ratio", + " 7.0, !- Preheat Design Temperature {C}", + " 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Precool Design Temperature {C}", + " 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Central Cooling Design Supply Air Temperature {C}", + " 40.0, !- Central Heating Design Supply Air Temperature {C}", + " NonCoincident, !- Type of Zone Sum to Use", + " No, !- 100% Outdoor Air in Cooling", + " No, !- 100% Outdoor Air in Heating", + " 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " DesignDay, !- Cooling Supply Air Flow Rate Method", + " , !- Cooling Supply Air Flow Rate {m3/s}", + " , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}", + " DesignDay, !- Heating Supply Air Flow Rate Method", + " , !- Heating Supply Air Flow Rate {m3/s}", + " , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Heating Fraction of Autosized Heating Supply Air Flow Rate", + " , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}", + " , !- System Outdoor Air Method", + " 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless}", + " CoolingDesignCapacity, !- Cooling Design Capacity Method", + " autosize, !- Cooling Design Capacity {W}", + " , !- Cooling Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Cooling Design Capacity", + " HeatingDesignCapacity, !- Heating Design Capacity Method", + " autosize, !- Heating Design Capacity {W}", + " , !- Heating Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Heating Design Capacity", + " VAV; !- Central Cooling Capacity Control Method", + + " Sizing:System,", + " PSZ-AC:4, !- AirLoop Name", + " Sensible, !- Type of Load to Size On", + " AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}", + " 1.0, !- Central Heating Maximum System Air Flow Ratio", + " 7.0, !- Preheat Design Temperature {C}", + " 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Precool Design Temperature {C}", + " 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Central Cooling Design Supply Air Temperature {C}", + " 40.0, !- Central Heating Design Supply Air Temperature {C}", + " NonCoincident, !- Type of Zone Sum to Use", + " No, !- 100% Outdoor Air in Cooling", + " No, !- 100% Outdoor Air in Heating", + " 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " DesignDay, !- Cooling Supply Air Flow Rate Method", + " , !- Cooling Supply Air Flow Rate {m3/s}", + " , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}", + " DesignDay, !- Heating Supply Air Flow Rate Method", + " , !- Heating Supply Air Flow Rate {m3/s}", + " , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Heating Fraction of Autosized Heating Supply Air Flow Rate", + " , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}", + " , !- System Outdoor Air Method", + " 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless}", + " CoolingDesignCapacity, !- Cooling Design Capacity Method", + " autosize, !- Cooling Design Capacity {W}", + " , !- Cooling Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Cooling Design Capacity", + " HeatingDesignCapacity, !- Heating Design Capacity Method", + " autosize, !- Heating Design Capacity {W}", + " , !- Heating Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Heating Design Capacity", + " VAV; !- Central Cooling Capacity Control Method", + + " Sizing:System,", + " PSZ-AC:5, !- AirLoop Name", + " Sensible, !- Type of Load to Size On", + " AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s}", + " 1.0, !- Central Heating Maximum System Air Flow Ratio", + " 7.0, !- Preheat Design Temperature {C}", + " 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Precool Design Temperature {C}", + " 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}", + " 12.8000, !- Central Cooling Design Supply Air Temperature {C}", + " 40.0, !- Central Heating Design Supply Air Temperature {C}", + " NonCoincident, !- Type of Zone Sum to Use", + " No, !- 100% Outdoor Air in Cooling", + " No, !- 100% Outdoor Air in Heating", + " 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.0080, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " DesignDay, !- Cooling Supply Air Flow Rate Method", + " , !- Cooling Supply Air Flow Rate {m3/s}", + " , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}", + " DesignDay, !- Heating Supply Air Flow Rate Method", + " , !- Heating Supply Air Flow Rate {m3/s}", + " , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}", + " , !- Heating Fraction of Autosized Heating Supply Air Flow Rate", + " , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate", + " , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}", + " , !- System Outdoor Air Method", + " 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless}", + " CoolingDesignCapacity, !- Cooling Design Capacity Method", + " autosize, !- Cooling Design Capacity {W}", + " , !- Cooling Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Cooling Design Capacity", + " HeatingDesignCapacity, !- Heating Design Capacity Method", + " autosize, !- Heating Design Capacity {W}", + " , !- Heating Design Capacity Per Floor Area {W/m2}", + " , !- Fraction of Autosized Heating Design Capacity", + " VAV; !- Central Cooling Capacity Control Method", + + " Controller:OutdoorAir,", + " PSZ-AC:1_OA_Controller, !- Name", + " PSZ-AC:1_OARelief Node, !- Relief Air Outlet Node Name", + " PSZ-AC:1 Supply Equipment Inlet Node, !- Return Air Node Name", + " PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:1_OAInlet Node, !- Actuator Node Name", + " AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}", + " AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}", + " NoEconomizer, !- Economizer Control Type", + " ModulateFlow, !- Economizer Control Action Type", + " 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C}", + " 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg}", + " , !- Economizer Maximum Limit Dewpoint Temperature {C}", + " , !- Electronic Enthalpy Limit Curve Name", + " -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C}", + " NoLockout, !- Lockout Type", + " FixedMinimum, !- Minimum Limit Type", + " MinOA_Sched, !- Minimum Outdoor Air Schedule Name", + " , !- Minimum Fraction of Outdoor Air Schedule Name", + " , !- Maximum Fraction of Outdoor Air Schedule Name", + " ; !- Mechanical Ventilation Controller Name", + + " Controller:OutdoorAir,", + " PSZ-AC:2_OA_Controller, !- Name", + " PSZ-AC:2_OARelief Node, !- Relief Air Outlet Node Name", + " PSZ-AC:2 Supply Equipment Inlet Node, !- Return Air Node Name", + " PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:2_OAInlet Node, !- Actuator Node Name", + " AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}", + " AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}", + " NoEconomizer, !- Economizer Control Type", + " ModulateFlow, !- Economizer Control Action Type", + " 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C}", + " 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg}", + " , !- Economizer Maximum Limit Dewpoint Temperature {C}", + " , !- Electronic Enthalpy Limit Curve Name", + " -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C}", + " NoLockout, !- Lockout Type", + " FixedMinimum, !- Minimum Limit Type", + " MinOA_Sched, !- Minimum Outdoor Air Schedule Name", + " , !- Minimum Fraction of Outdoor Air Schedule Name", + " , !- Maximum Fraction of Outdoor Air Schedule Name", + " ; !- Mechanical Ventilation Controller Name", + + " Controller:OutdoorAir,", + " PSZ-AC:3_OA_Controller, !- Name", + " PSZ-AC:3_OARelief Node, !- Relief Air Outlet Node Name", + " PSZ-AC:3 Supply Equipment Inlet Node, !- Return Air Node Name", + " PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:3_OAInlet Node, !- Actuator Node Name", + " AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}", + " AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}", + " NoEconomizer, !- Economizer Control Type", + " ModulateFlow, !- Economizer Control Action Type", + " 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C}", + " 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg}", + " , !- Economizer Maximum Limit Dewpoint Temperature {C}", + " , !- Electronic Enthalpy Limit Curve Name", + " -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C}", + " NoLockout, !- Lockout Type", + " FixedMinimum, !- Minimum Limit Type", + " MinOA_Sched, !- Minimum Outdoor Air Schedule Name", + " , !- Minimum Fraction of Outdoor Air Schedule Name", + " , !- Maximum Fraction of Outdoor Air Schedule Name", + " ; !- Mechanical Ventilation Controller Name", + + " Controller:OutdoorAir,", + " PSZ-AC:4_OA_Controller, !- Name", + " PSZ-AC:4_OARelief Node, !- Relief Air Outlet Node Name", + " PSZ-AC:4 Supply Equipment Inlet Node, !- Return Air Node Name", + " PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:4_OAInlet Node, !- Actuator Node Name", + " AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}", + " AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}", + " NoEconomizer, !- Economizer Control Type", + " ModulateFlow, !- Economizer Control Action Type", + " 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C}", + " 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg}", + " , !- Economizer Maximum Limit Dewpoint Temperature {C}", + " , !- Electronic Enthalpy Limit Curve Name", + " -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C}", + " NoLockout, !- Lockout Type", + " FixedMinimum, !- Minimum Limit Type", + " MinOA_Sched, !- Minimum Outdoor Air Schedule Name", + " , !- Minimum Fraction of Outdoor Air Schedule Name", + " , !- Maximum Fraction of Outdoor Air Schedule Name", + " ; !- Mechanical Ventilation Controller Name", + + " Controller:OutdoorAir,", + " PSZ-AC:5_OA_Controller, !- Name", + " PSZ-AC:5_OARelief Node, !- Relief Air Outlet Node Name", + " PSZ-AC:5 Supply Equipment Inlet Node, !- Return Air Node Name", + " PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:5_OAInlet Node, !- Actuator Node Name", + " AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s}", + " AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s}", + " NoEconomizer, !- Economizer Control Type", + " ModulateFlow, !- Economizer Control Action Type", + " 28.0, !- Economizer Maximum Limit Dry-Bulb Temperature {C}", + " 64000.0, !- Economizer Maximum Limit Enthalpy {J/kg}", + " , !- Economizer Maximum Limit Dewpoint Temperature {C}", + " , !- Electronic Enthalpy Limit Curve Name", + " -100.0, !- Economizer Minimum Limit Dry-Bulb Temperature {C}", + " NoLockout, !- Lockout Type", + " FixedMinimum, !- Minimum Limit Type", + " MinOA_Sched, !- Minimum Outdoor Air Schedule Name", + " , !- Minimum Fraction of Outdoor Air Schedule Name", + " , !- Maximum Fraction of Outdoor Air Schedule Name", + " ; !- Mechanical Ventilation Controller Name", + + " Curve:Quadratic,", + " Cool-PLF-fPLR, !- Name", + " 0.90949556, !- Coefficient1 Constant", + " 0.09864773, !- Coefficient2 x", + " -0.00819488, !- Coefficient3 x**2", + " 0, !- Minimum Value of x", + " 1, !- Maximum Value of x", + " 0.7, !- Minimum Curve Output", + " 1; !- Maximum Curve Output", + + " Curve:Cubic,", + " ConstantCubic, !- Name", + " 1, !- Coefficient1 Constant", + " 0, !- Coefficient2 x", + " 0, !- Coefficient3 x**2", + " 0, !- Coefficient4 x**3", + " -100, !- Minimum Value of x", + " 100; !- Maximum Value of x", + + " Curve:Biquadratic,", + " Cool-Cap-fT, !- Name", + " 0.9712123, !- Coefficient1 Constant", + " -0.015275502, !- Coefficient2 x", + " 0.0014434524, !- Coefficient3 x**2", + " -0.00039321, !- Coefficient4 y", + " -0.0000068364, !- Coefficient5 y**2", + " -0.0002905956, !- Coefficient6 x*y", + " -100, !- Minimum Value of x", + " 100, !- Maximum Value of x", + " -100, !- Minimum Value of y", + " 100; !- Maximum Value of y", + + " Curve:Biquadratic,", + " Cool-EIR-fT, !- Name", + " 0.28687133, !- Coefficient1 Constant", + " 0.023902164, !- Coefficient2 x", + " -0.000810648, !- Coefficient3 x**2", + " 0.013458546, !- Coefficient4 y", + " 0.0003389364, !- Coefficient5 y**2", + " -0.0004870044, !- Coefficient6 x*y", + " -100, !- Minimum Value of x", + " 100, !- Maximum Value of x", + " -100, !- Minimum Value of y", + " 100; !- Maximum Value of y", + + " AirLoopHVAC,", + " PSZ-AC:1, !- Name", + " , !- Controller List Name", + " PSZ-AC:1 Availability Manager List, !- Availability Manager List Name", + " AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}", + " PSZ-AC:1 Air Loop Branches, !- Branch List Name", + " , !- Connector List Name", + " PSZ-AC:1 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name", + " PSZ-AC:1 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name", + " PSZ-AC:1 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names", + " PSZ-AC:1 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names", + + " AirLoopHVAC,", + " PSZ-AC:2, !- Name", + " , !- Controller List Name", + " PSZ-AC:2 Availability Manager List, !- Availability Manager List Name", + " AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}", + " PSZ-AC:2 Air Loop Branches, !- Branch List Name", + " , !- Connector List Name", + " PSZ-AC:2 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name", + " PSZ-AC:2 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name", + " PSZ-AC:2 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names", + " PSZ-AC:2 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names", + + " AirLoopHVAC,", + " PSZ-AC:3, !- Name", + " , !- Controller List Name", + " PSZ-AC:3 Availability Manager List, !- Availability Manager List Name", + " AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}", + " PSZ-AC:3 Air Loop Branches, !- Branch List Name", + " , !- Connector List Name", + " PSZ-AC:3 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name", + " PSZ-AC:3 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name", + " PSZ-AC:3 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names", + " PSZ-AC:3 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names", + + " AirLoopHVAC,", + " PSZ-AC:4, !- Name", + " , !- Controller List Name", + " PSZ-AC:4 Availability Manager List, !- Availability Manager List Name", + " AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}", + " PSZ-AC:4 Air Loop Branches, !- Branch List Name", + " , !- Connector List Name", + " PSZ-AC:4 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name", + " PSZ-AC:4 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name", + " PSZ-AC:4 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names", + " PSZ-AC:4 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names", + + " AirLoopHVAC,", + " PSZ-AC:5, !- Name", + " , !- Controller List Name", + " PSZ-AC:5 Availability Manager List, !- Availability Manager List Name", + " AUTOSIZE, !- Design Supply Air Flow Rate {m3/s}", + " PSZ-AC:5 Air Loop Branches, !- Branch List Name", + " , !- Connector List Name", + " PSZ-AC:5 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name", + " PSZ-AC:5 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name", + " PSZ-AC:5 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names", + " PSZ-AC:5 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names", + + " CoilSystem:Cooling:DX,", + " PSZ-AC:1_CoolC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- DX Cooling Coil System Inlet Node Name", + " PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- DX Cooling Coil System Outlet Node Name", + " PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- DX Cooling Coil System Sensor Node Name", + " Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type", + " PSZ-AC:1_CoolC DXCoil; !- Cooling Coil Name", + + " CoilSystem:Cooling:DX,", + " PSZ-AC:2_CoolC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- DX Cooling Coil System Inlet Node Name", + " PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- DX Cooling Coil System Outlet Node Name", + " PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- DX Cooling Coil System Sensor Node Name", + " Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type", + " PSZ-AC:2_CoolC DXCoil; !- Cooling Coil Name", + + " CoilSystem:Cooling:DX,", + " PSZ-AC:3_CoolC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- DX Cooling Coil System Inlet Node Name", + " PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- DX Cooling Coil System Outlet Node Name", + " PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- DX Cooling Coil System Sensor Node Name", + " Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type", + " PSZ-AC:3_CoolC DXCoil; !- Cooling Coil Name", + + " CoilSystem:Cooling:DX,", + " PSZ-AC:4_CoolC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- DX Cooling Coil System Inlet Node Name", + " PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- DX Cooling Coil System Outlet Node Name", + " PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- DX Cooling Coil System Sensor Node Name", + " Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type", + " PSZ-AC:4_CoolC DXCoil; !- Cooling Coil Name", + + " CoilSystem:Cooling:DX,", + " PSZ-AC:5_CoolC, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- DX Cooling Coil System Inlet Node Name", + " PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- DX Cooling Coil System Outlet Node Name", + " PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- DX Cooling Coil System Sensor Node Name", + " Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type", + " PSZ-AC:5_CoolC DXCoil; !- Cooling Coil Name", + + " ZoneHVAC:EquipmentConnections,", + " Core_ZN, !- Zone Name", + " Core_ZN Equipment, !- Zone Conditioning Equipment List Name", + " Core_ZN Inlet Nodes, !- Zone Air Inlet Node or NodeList Name", + " , !- Zone Air Exhaust Node or NodeList Name", + " Core_ZN Air Node, !- Zone Air Node Name", + " Core_ZN Return Air Node Name; !- Zone Return Air Node or NodeList Name", + + " ZoneHVAC:EquipmentConnections,", + " Perimeter_ZN_1, !- Zone Name", + " Perimeter_ZN_1 Equipment,!- Zone Conditioning Equipment List Name", + " Perimeter_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name", + " , !- Zone Air Exhaust Node or NodeList Name", + " Perimeter_ZN_1 Air Node, !- Zone Air Node Name", + " Perimeter_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name", + + " ZoneHVAC:EquipmentConnections,", + " Perimeter_ZN_2, !- Zone Name", + " Perimeter_ZN_2 Equipment,!- Zone Conditioning Equipment List Name", + " Perimeter_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name", + " , !- Zone Air Exhaust Node or NodeList Name", + " Perimeter_ZN_2 Air Node, !- Zone Air Node Name", + " Perimeter_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name", + + " ZoneHVAC:EquipmentConnections,", + " Perimeter_ZN_3, !- Zone Name", + " Perimeter_ZN_3 Equipment,!- Zone Conditioning Equipment List Name", + " Perimeter_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name", + " , !- Zone Air Exhaust Node or NodeList Name", + " Perimeter_ZN_3 Air Node, !- Zone Air Node Name", + " Perimeter_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name", + + " ZoneHVAC:EquipmentConnections,", + " Perimeter_ZN_4, !- Zone Name", + " Perimeter_ZN_4 Equipment,!- Zone Conditioning Equipment List Name", + " Perimeter_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name", + " , !- Zone Air Exhaust Node or NodeList Name", + " Perimeter_ZN_4 Air Node, !- Zone Air Node Name", + " Perimeter_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name", + + " NodeList,", + " Core_ZN Inlet Nodes, !- Name", + " Core_ZN Direct Air Inlet Node Name; !- Node 1 Name", + + " NodeList,", + " PSZ-AC:1_OANode List, !- Name", + " PSZ-AC:1_OAInlet Node; !- Node 1 Name", + + " NodeList,", + " PSZ-AC:2_OANode List, !- Name", + " PSZ-AC:2_OAInlet Node; !- Node 1 Name", + + " NodeList,", + " PSZ-AC:3_OANode List, !- Name", + " PSZ-AC:3_OAInlet Node; !- Node 1 Name", + + " NodeList,", + " PSZ-AC:4_OANode List, !- Name", + " PSZ-AC:4_OAInlet Node; !- Node 1 Name", + + " NodeList,", + " PSZ-AC:5_OANode List, !- Name", + " PSZ-AC:5_OAInlet Node; !- Node 1 Name", + + " NodeList,", + " Perimeter_ZN_1 Inlet Nodes, !- Name", + " Perimeter_ZN_1 Direct Air Inlet Node Name; !- Node 1 Name", + + " NodeList,", + " Perimeter_ZN_2 Inlet Nodes, !- Name", + " Perimeter_ZN_2 Direct Air Inlet Node Name; !- Node 1 Name", + + " NodeList,", + " Perimeter_ZN_3 Inlet Nodes, !- Name", + " Perimeter_ZN_3 Direct Air Inlet Node Name; !- Node 1 Name", + + " NodeList,", + " Perimeter_ZN_4 Inlet Nodes, !- Name", + " Perimeter_ZN_4 Direct Air Inlet Node Name; !- Node 1 Name", + + " AirTerminal:SingleDuct:Uncontrolled,", + " Core_ZN Direct Air, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " Core_ZN Direct Air Inlet Node Name, !- Zone Supply Air Node Name", + " AUTOSIZE; !- Maximum Air Flow Rate {m3/s}", + + " AirTerminal:SingleDuct:Uncontrolled,", + " Perimeter_ZN_1 Direct Air, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " Perimeter_ZN_1 Direct Air Inlet Node Name, !- Zone Supply Air Node Name", + " AUTOSIZE; !- Maximum Air Flow Rate {m3/s}", + + " AirTerminal:SingleDuct:Uncontrolled,", + " Perimeter_ZN_2 Direct Air, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " Perimeter_ZN_2 Direct Air Inlet Node Name, !- Zone Supply Air Node Name", + " AUTOSIZE; !- Maximum Air Flow Rate {m3/s}", + + " AirTerminal:SingleDuct:Uncontrolled,", + " Perimeter_ZN_3 Direct Air, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " Perimeter_ZN_3 Direct Air Inlet Node Name, !- Zone Supply Air Node Name", + " AUTOSIZE; !- Maximum Air Flow Rate {m3/s}", + + " AirTerminal:SingleDuct:Uncontrolled,", + " Perimeter_ZN_4 Direct Air, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " Perimeter_ZN_4 Direct Air Inlet Node Name, !- Zone Supply Air Node Name", + " AUTOSIZE; !- Maximum Air Flow Rate {m3/s}", + + " AvailabilityManagerAssignmentList,", + " PSZ-AC:1 Availability Manager List, !- Name", + " AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type", + " PSZ-AC:1 Availability Manager; !- Availability Manager 1 Name", + + " AvailabilityManagerAssignmentList,", + " PSZ-AC:2 Availability Manager List, !- Name", + " AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type", + " PSZ-AC:2 Availability Manager; !- Availability Manager 1 Name", + + " AvailabilityManagerAssignmentList,", + " PSZ-AC:3 Availability Manager List, !- Name", + " AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type", + " PSZ-AC:3 Availability Manager; !- Availability Manager 1 Name", + + " AvailabilityManagerAssignmentList,", + " PSZ-AC:4 Availability Manager List, !- Name", + " AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type", + " PSZ-AC:4 Availability Manager; !- Availability Manager 1 Name", + + " AvailabilityManagerAssignmentList,", + " PSZ-AC:5 Availability Manager List, !- Name", + " AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type", + " PSZ-AC:5 Availability Manager; !- Availability Manager 1 Name", + + " AvailabilityManager:NightCycle,", + " PSZ-AC:1 Availability Manager, !- Name", + " ALWAYS_ON, !- Applicability Schedule Name", + " HVACOperationSchd, !- Fan Schedule Name", + " CycleOnAny, !- Control Type", + " 1.0, !- Thermostat Tolerance {deltaC}", + " FixedRunTime, !- Cycling Run Time Control Type", + " 1800; !- Cycling Run Time {s}", + + " AvailabilityManager:NightCycle,", + " PSZ-AC:2 Availability Manager, !- Name", + " ALWAYS_ON, !- Applicability Schedule Name", + " HVACOperationSchd, !- Fan Schedule Name", + " CycleOnAny, !- Control Type", + " 1.0, !- Thermostat Tolerance {deltaC}", + " FixedRunTime, !- Cycling Run Time Control Type", + " 1800; !- Cycling Run Time {s}", + + " AvailabilityManager:NightCycle,", + " PSZ-AC:3 Availability Manager, !- Name", + " ALWAYS_ON, !- Applicability Schedule Name", + " HVACOperationSchd, !- Fan Schedule Name", + " CycleOnAny, !- Control Type", + " 1.0, !- Thermostat Tolerance {deltaC}", + " FixedRunTime, !- Cycling Run Time Control Type", + " 1800; !- Cycling Run Time {s}", + + " AvailabilityManager:NightCycle,", + " PSZ-AC:4 Availability Manager, !- Name", + " ALWAYS_ON, !- Applicability Schedule Name", + " HVACOperationSchd, !- Fan Schedule Name", + " CycleOnAny, !- Control Type", + " 1.0, !- Thermostat Tolerance {deltaC}", + " FixedRunTime, !- Cycling Run Time Control Type", + " 1800; !- Cycling Run Time {s}", + + " AvailabilityManager:NightCycle,", + " PSZ-AC:5 Availability Manager, !- Name", + " ALWAYS_ON, !- Applicability Schedule Name", + " HVACOperationSchd, !- Fan Schedule Name", + " CycleOnAny, !- Control Type", + " 1.0, !- Thermostat Tolerance {deltaC}", + " FixedRunTime, !- Cycling Run Time Control Type", + " 1800; !- Cycling Run Time {s}", + + " BranchList,", + " PSZ-AC:1 Air Loop Branches, !- Name", + " PSZ-AC:1 Air Loop Main Branch; !- Branch 1 Name", + + " BranchList,", + " PSZ-AC:2 Air Loop Branches, !- Name", + " PSZ-AC:2 Air Loop Main Branch; !- Branch 1 Name", + + " BranchList,", + " PSZ-AC:3 Air Loop Branches, !- Name", + " PSZ-AC:3 Air Loop Main Branch; !- Branch 1 Name", + + " BranchList,", + " PSZ-AC:4 Air Loop Branches, !- Name", + " PSZ-AC:4 Air Loop Main Branch; !- Branch 1 Name", + + " BranchList,", + " PSZ-AC:5 Air Loop Branches, !- Name", + " PSZ-AC:5 Air Loop Main Branch; !- Branch 1 Name", + + " Branch,", + " PSZ-AC:1 Air Loop Main Branch, !- Name", + " , !- Pressure Drop Curve Name", + " AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type", + " PSZ-AC:1_OA, !- Component 1 Name", + " PSZ-AC:1 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name", + " PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Component 1 Outlet Node Name", + " CoilSystem:Cooling:DX, !- Component 2 Object Type", + " PSZ-AC:1_CoolC, !- Component 2 Name", + " PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Component 2 Inlet Node Name", + " PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- Component 2 Outlet Node Name", + " Coil:Heating:Fuel, !- Component 3 Object Type", + " PSZ-AC:1_HeatC, !- Component 3 Name", + " PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode, !- Component 3 Inlet Node Name", + " PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Component 3 Outlet Node Name", + " Fan:SystemModel, !- Component 4 Object Type", + " PSZ-AC:1_Fan, !- Component 4 Name", + " PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Component 4 Inlet Node Name", + " PSZ-AC:1 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name", + + " Branch,", + " PSZ-AC:2 Air Loop Main Branch, !- Name", + " , !- Pressure Drop Curve Name", + " AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type", + " PSZ-AC:2_OA, !- Component 1 Name", + " PSZ-AC:2 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name", + " PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Component 1 Outlet Node Name", + " CoilSystem:Cooling:DX, !- Component 2 Object Type", + " PSZ-AC:2_CoolC, !- Component 2 Name", + " PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Component 2 Inlet Node Name", + " PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- Component 2 Outlet Node Name", + " Coil:Heating:Fuel, !- Component 3 Object Type", + " PSZ-AC:2_HeatC, !- Component 3 Name", + " PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode, !- Component 3 Inlet Node Name", + " PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Component 3 Outlet Node Name", + " Fan:ConstantVolume, !- Component 4 Object Type", + " PSZ-AC:2_Fan, !- Component 4 Name", + " PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Component 4 Inlet Node Name", + " PSZ-AC:2 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name", + + " Branch,", + " PSZ-AC:3 Air Loop Main Branch, !- Name", + " , !- Pressure Drop Curve Name", + " AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type", + " PSZ-AC:3_OA, !- Component 1 Name", + " PSZ-AC:3 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name", + " PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Component 1 Outlet Node Name", + " CoilSystem:Cooling:DX, !- Component 2 Object Type", + " PSZ-AC:3_CoolC, !- Component 2 Name", + " PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Component 2 Inlet Node Name", + " PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- Component 2 Outlet Node Name", + " Coil:Heating:Fuel, !- Component 3 Object Type", + " PSZ-AC:3_HeatC, !- Component 3 Name", + " PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode, !- Component 3 Inlet Node Name", + " PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Component 3 Outlet Node Name", + " Fan:ConstantVolume, !- Component 4 Object Type", + " PSZ-AC:3_Fan, !- Component 4 Name", + " PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Component 4 Inlet Node Name", + " PSZ-AC:3 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name", + + " Branch,", + " PSZ-AC:4 Air Loop Main Branch, !- Name", + " , !- Pressure Drop Curve Name", + " AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type", + " PSZ-AC:4_OA, !- Component 1 Name", + " PSZ-AC:4 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name", + " PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Component 1 Outlet Node Name", + " CoilSystem:Cooling:DX, !- Component 2 Object Type", + " PSZ-AC:4_CoolC, !- Component 2 Name", + " PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Component 2 Inlet Node Name", + " PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- Component 2 Outlet Node Name", + " Coil:Heating:Fuel, !- Component 3 Object Type", + " PSZ-AC:4_HeatC, !- Component 3 Name", + " PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode, !- Component 3 Inlet Node Name", + " PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Component 3 Outlet Node Name", + " Fan:ConstantVolume, !- Component 4 Object Type", + " PSZ-AC:4_Fan, !- Component 4 Name", + " PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Component 4 Inlet Node Name", + " PSZ-AC:4 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name", + + " Branch,", + " PSZ-AC:5 Air Loop Main Branch, !- Name", + " , !- Pressure Drop Curve Name", + " AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type", + " PSZ-AC:5_OA, !- Component 1 Name", + " PSZ-AC:5 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name", + " PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Component 1 Outlet Node Name", + " CoilSystem:Cooling:DX, !- Component 2 Object Type", + " PSZ-AC:5_CoolC, !- Component 2 Name", + " PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Component 2 Inlet Node Name", + " PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- Component 2 Outlet Node Name", + " Coil:Heating:Fuel, !- Component 3 Object Type", + " PSZ-AC:5_HeatC, !- Component 3 Name", + " PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode, !- Component 3 Inlet Node Name", + " PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Component 3 Outlet Node Name", + " Fan:ConstantVolume, !- Component 4 Object Type", + " PSZ-AC:5_Fan, !- Component 4 Name", + " PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Component 4 Inlet Node Name", + " PSZ-AC:5 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name", + + " AirLoopHVAC:ControllerList,", + " PSZ-AC:1_OA_Controllers, !- Name", + " Controller:OutdoorAir, !- Controller 1 Object Type", + " PSZ-AC:1_OA_Controller; !- Controller 1 Name", + + " AirLoopHVAC:ControllerList,", + " PSZ-AC:2_OA_Controllers, !- Name", + " Controller:OutdoorAir, !- Controller 1 Object Type", + " PSZ-AC:2_OA_Controller; !- Controller 1 Name", + + " AirLoopHVAC:ControllerList,", + " PSZ-AC:3_OA_Controllers, !- Name", + " Controller:OutdoorAir, !- Controller 1 Object Type", + " PSZ-AC:3_OA_Controller; !- Controller 1 Name", + + " AirLoopHVAC:ControllerList,", + " PSZ-AC:4_OA_Controllers, !- Name", + " Controller:OutdoorAir, !- Controller 1 Object Type", + " PSZ-AC:4_OA_Controller; !- Controller 1 Name", + + " AirLoopHVAC:ControllerList,", + " PSZ-AC:5_OA_Controllers, !- Name", + " Controller:OutdoorAir, !- Controller 1 Object Type", + " PSZ-AC:5_OA_Controller; !- Controller 1 Name", + + " AirLoopHVAC:OutdoorAirSystem:EquipmentList,", + " PSZ-AC:1_OA_Equipment, !- Name", + " OutdoorAir:Mixer, !- Component 1 Object Type", + " PSZ-AC:1_OAMixing Box; !- Component 1 Name", + + " AirLoopHVAC:OutdoorAirSystem:EquipmentList,", + " PSZ-AC:2_OA_Equipment, !- Name", + " OutdoorAir:Mixer, !- Component 1 Object Type", + " PSZ-AC:2_OAMixing Box; !- Component 1 Name", + + " AirLoopHVAC:OutdoorAirSystem:EquipmentList,", + " PSZ-AC:3_OA_Equipment, !- Name", + " OutdoorAir:Mixer, !- Component 1 Object Type", + " PSZ-AC:3_OAMixing Box; !- Component 1 Name", + + " AirLoopHVAC:OutdoorAirSystem:EquipmentList,", + " PSZ-AC:4_OA_Equipment, !- Name", + " OutdoorAir:Mixer, !- Component 1 Object Type", + " PSZ-AC:4_OAMixing Box; !- Component 1 Name", + + " AirLoopHVAC:OutdoorAirSystem:EquipmentList,", + " PSZ-AC:5_OA_Equipment, !- Name", + " OutdoorAir:Mixer, !- Component 1 Object Type", + " PSZ-AC:5_OAMixing Box; !- Component 1 Name", + + " AirLoopHVAC:OutdoorAirSystem,", + " PSZ-AC:1_OA, !- Name", + " PSZ-AC:1_OA_Controllers, !- Controller List Name", + " PSZ-AC:1_OA_Equipment, !- Outdoor Air Equipment List Name", + " PSZ-AC:1 Availability Manager List; !- Availability Manager List Name", + + " AirLoopHVAC:OutdoorAirSystem,", + " PSZ-AC:2_OA, !- Name", + " PSZ-AC:2_OA_Controllers, !- Controller List Name", + " PSZ-AC:2_OA_Equipment, !- Outdoor Air Equipment List Name", + " PSZ-AC:2 Availability Manager List; !- Availability Manager List Name", + + " AirLoopHVAC:OutdoorAirSystem,", + " PSZ-AC:3_OA, !- Name", + " PSZ-AC:3_OA_Controllers, !- Controller List Name", + " PSZ-AC:3_OA_Equipment, !- Outdoor Air Equipment List Name", + " PSZ-AC:3 Availability Manager List; !- Availability Manager List Name", + + " AirLoopHVAC:OutdoorAirSystem,", + " PSZ-AC:4_OA, !- Name", + " PSZ-AC:4_OA_Controllers, !- Controller List Name", + " PSZ-AC:4_OA_Equipment, !- Outdoor Air Equipment List Name", + " PSZ-AC:4 Availability Manager List; !- Availability Manager List Name", + + " AirLoopHVAC:OutdoorAirSystem,", + " PSZ-AC:5_OA, !- Name", + " PSZ-AC:5_OA_Controllers, !- Controller List Name", + " PSZ-AC:5_OA_Equipment, !- Outdoor Air Equipment List Name", + " PSZ-AC:5 Availability Manager List; !- Availability Manager List Name", + + " OutdoorAir:NodeList,", + " PSZ-AC:1_OANode List; !- Node or NodeList Name 1", + + " OutdoorAir:NodeList,", + " PSZ-AC:2_OANode List; !- Node or NodeList Name 1", + + " OutdoorAir:NodeList,", + " PSZ-AC:3_OANode List; !- Node or NodeList Name 1", + + " OutdoorAir:NodeList,", + " PSZ-AC:4_OANode List; !- Node or NodeList Name 1", + + " OutdoorAir:NodeList,", + " PSZ-AC:5_OANode List; !- Node or NodeList Name 1", + + " OutdoorAir:Node,", + " PSZ-AC:1_CoolCOA Ref node; !- Name", + + " OutdoorAir:Node,", + " PSZ-AC:2_CoolCOA Ref node; !- Name", + + " OutdoorAir:Node,", + " PSZ-AC:3_CoolCOA Ref node; !- Name", + + " OutdoorAir:Node,", + " PSZ-AC:4_CoolCOA Ref node; !- Name", + + " OutdoorAir:Node,", + " PSZ-AC:5_CoolCOA Ref node; !- Name", + + " OutdoorAir:Mixer,", + " PSZ-AC:1_OAMixing Box, !- Name", + " PSZ-AC:1_OA-PSZ-AC:1_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:1_OAInlet Node, !- Outdoor Air Stream Node Name", + " PSZ-AC:1_OARelief Node, !- Relief Air Stream Node Name", + " PSZ-AC:1 Supply Equipment Inlet Node; !- Return Air Stream Node Name", + + " OutdoorAir:Mixer,", + " PSZ-AC:2_OAMixing Box, !- Name", + " PSZ-AC:2_OA-PSZ-AC:2_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:2_OAInlet Node, !- Outdoor Air Stream Node Name", + " PSZ-AC:2_OARelief Node, !- Relief Air Stream Node Name", + " PSZ-AC:2 Supply Equipment Inlet Node; !- Return Air Stream Node Name", + + " OutdoorAir:Mixer,", + " PSZ-AC:3_OAMixing Box, !- Name", + " PSZ-AC:3_OA-PSZ-AC:3_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:3_OAInlet Node, !- Outdoor Air Stream Node Name", + " PSZ-AC:3_OARelief Node, !- Relief Air Stream Node Name", + " PSZ-AC:3 Supply Equipment Inlet Node; !- Return Air Stream Node Name", + + " OutdoorAir:Mixer,", + " PSZ-AC:4_OAMixing Box, !- Name", + " PSZ-AC:4_OA-PSZ-AC:4_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:4_OAInlet Node, !- Outdoor Air Stream Node Name", + " PSZ-AC:4_OARelief Node, !- Relief Air Stream Node Name", + " PSZ-AC:4 Supply Equipment Inlet Node; !- Return Air Stream Node Name", + + " OutdoorAir:Mixer,", + " PSZ-AC:5_OAMixing Box, !- Name", + " PSZ-AC:5_OA-PSZ-AC:5_CoolCNode, !- Mixed Air Node Name", + " PSZ-AC:5_OAInlet Node, !- Outdoor Air Stream Node Name", + " PSZ-AC:5_OARelief Node, !- Relief Air Stream Node Name", + " PSZ-AC:5 Supply Equipment Inlet Node; !- Return Air Stream Node Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:1_CoolC SAT Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:1 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:1_CoolC-PSZ-AC:1_HeatCNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:1_HeatC MixedAir Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:1 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:1_HeatC-PSZ-AC:1_FanNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:1_OAMixed Air Temp Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:1_HeatC-PSZ-AC:1_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:1 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:1_OA-PSZ-AC:1_CoolCNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:2_CoolC SAT Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:2 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:2_CoolC-PSZ-AC:2_HeatCNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:2_HeatC MixedAir Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:2 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:2_HeatC-PSZ-AC:2_FanNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:2_OAMixed Air Temp Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:2_HeatC-PSZ-AC:2_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:2 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:2_OA-PSZ-AC:2_CoolCNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:3_CoolC SAT Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:3 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:3_CoolC-PSZ-AC:3_HeatCNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:3_HeatC MixedAir Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:3 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:3_HeatC-PSZ-AC:3_FanNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:3_OAMixed Air Temp Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:3_HeatC-PSZ-AC:3_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:3 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:3_OA-PSZ-AC:3_CoolCNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:4_CoolC SAT Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:4 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:4 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:4_CoolC-PSZ-AC:4_HeatCNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:4_HeatC MixedAir Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:4 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:4 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:4_HeatC-PSZ-AC:4_FanNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:4_OAMixed Air Temp Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:4 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:4_HeatC-PSZ-AC:4_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:4 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:4_OA-PSZ-AC:4_CoolCNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:5_CoolC SAT Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:5 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:5_CoolC-PSZ-AC:5_HeatCNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:5_HeatC MixedAir Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:5 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:5_HeatC-PSZ-AC:5_FanNode; !- Setpoint Node or NodeList Name", + + " SetpointManager:MixedAir,", + " PSZ-AC:5_OAMixed Air Temp Manager, !- Name", + " Temperature, !- Control Variable", + " PSZ-AC:5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name", + " PSZ-AC:5_HeatC-PSZ-AC:5_FanNode, !- Fan Inlet Node Name", + " PSZ-AC:5 Supply Equipment Outlet Node, !- Fan Outlet Node Name", + " PSZ-AC:5_OA-PSZ-AC:5_CoolCNode; !- Setpoint Node or NodeList Name", + + " AirLoopHVAC:SupplyPath,", + " PSZ-AC:1, !- Name", + " PSZ-AC:1 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name", + " AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type", + " PSZ-AC:1 Supply Air Splitter; !- Component 1 Name", + + " AirLoopHVAC:SupplyPath,", + " PSZ-AC:2, !- Name", + " PSZ-AC:2 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name", + " AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type", + " PSZ-AC:2 Supply Air Splitter; !- Component 1 Name", + + " AirLoopHVAC:SupplyPath,", + " PSZ-AC:3, !- Name", + " PSZ-AC:3 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name", + " AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type", + " PSZ-AC:3 Supply Air Splitter; !- Component 1 Name", + + " AirLoopHVAC:SupplyPath,", + " PSZ-AC:4, !- Name", + " PSZ-AC:4 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name", + " AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type", + " PSZ-AC:4 Supply Air Splitter; !- Component 1 Name", + + " AirLoopHVAC:SupplyPath,", + " PSZ-AC:5, !- Name", + " PSZ-AC:5 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name", + " AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type", + " PSZ-AC:5 Supply Air Splitter; !- Component 1 Name", + + " AirLoopHVAC:ZoneSplitter,", + " PSZ-AC:1 Supply Air Splitter, !- Name", + " PSZ-AC:1 Zone Equipment Inlet Node, !- Inlet Node Name", + " Core_ZN Direct Air Inlet Node Name; !- Outlet 1 Node Name", + + " AirLoopHVAC:ZoneSplitter,", + " PSZ-AC:2 Supply Air Splitter, !- Name", + " PSZ-AC:2 Zone Equipment Inlet Node, !- Inlet Node Name", + " Perimeter_ZN_1 Direct Air Inlet Node Name; !- Outlet 1 Node Name", + + " AirLoopHVAC:ZoneSplitter,", + " PSZ-AC:3 Supply Air Splitter, !- Name", + " PSZ-AC:3 Zone Equipment Inlet Node, !- Inlet Node Name", + " Perimeter_ZN_2 Direct Air Inlet Node Name; !- Outlet 1 Node Name", + + " AirLoopHVAC:ZoneSplitter,", + " PSZ-AC:4 Supply Air Splitter, !- Name", + " PSZ-AC:4 Zone Equipment Inlet Node, !- Inlet Node Name", + " Perimeter_ZN_3 Direct Air Inlet Node Name; !- Outlet 1 Node Name", + + " AirLoopHVAC:ZoneSplitter,", + " PSZ-AC:5 Supply Air Splitter, !- Name", + " PSZ-AC:5 Zone Equipment Inlet Node, !- Inlet Node Name", + " Perimeter_ZN_4 Direct Air Inlet Node Name; !- Outlet 1 Node Name", + + " AirLoopHVAC:ReturnPath,", + " PSZ-AC:1 Return Air Path,!- Name", + " PSZ-AC:1 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name", + " AirLoopHVAC:ZoneMixer, !- Component 1 Object Type", + " PSZ-AC:1 Return Air Mixer; !- Component 1 Name", + + " AirLoopHVAC:ReturnPath,", + " PSZ-AC:2 Return Air Path,!- Name", + " PSZ-AC:2 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name", + " AirLoopHVAC:ZoneMixer, !- Component 1 Object Type", + " PSZ-AC:2 Return Air Mixer; !- Component 1 Name", + + " AirLoopHVAC:ReturnPath,", + " PSZ-AC:3 Return Air Path,!- Name", + " PSZ-AC:3 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name", + " AirLoopHVAC:ZoneMixer, !- Component 1 Object Type", + " PSZ-AC:3 Return Air Mixer; !- Component 1 Name", + + " AirLoopHVAC:ReturnPath,", + " PSZ-AC:4 Return Air Path,!- Name", + " PSZ-AC:4 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name", + " AirLoopHVAC:ZoneMixer, !- Component 1 Object Type", + " PSZ-AC:4 Return Air Mixer; !- Component 1 Name", + + " AirLoopHVAC:ReturnPath,", + " PSZ-AC:5 Return Air Path,!- Name", + " PSZ-AC:5 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name", + " AirLoopHVAC:ZoneMixer, !- Component 1 Object Type", + " PSZ-AC:5 Return Air Mixer; !- Component 1 Name", + + " AirLoopHVAC:ZoneMixer,", + " PSZ-AC:1 Return Air Mixer, !- Name", + " PSZ-AC:1 Zone Equipment Outlet Node, !- Outlet Node Name", + " Core_ZN Return Air Node Name; !- Inlet 1 Node Name", + + " AirLoopHVAC:ZoneMixer,", + " PSZ-AC:2 Return Air Mixer, !- Name", + " PSZ-AC:2 Zone Equipment Outlet Node, !- Outlet Node Name", + " Perimeter_ZN_1 Return Air Node Name; !- Inlet 1 Node Name", + + " AirLoopHVAC:ZoneMixer,", + " PSZ-AC:3 Return Air Mixer, !- Name", + " PSZ-AC:3 Zone Equipment Outlet Node, !- Outlet Node Name", + " Perimeter_ZN_2 Return Air Node Name; !- Inlet 1 Node Name", + + " AirLoopHVAC:ZoneMixer,", + " PSZ-AC:4 Return Air Mixer, !- Name", + " PSZ-AC:4 Zone Equipment Outlet Node, !- Outlet Node Name", + " Perimeter_ZN_3 Return Air Node Name; !- Inlet 1 Node Name", + + " AirLoopHVAC:ZoneMixer,", + " PSZ-AC:5 Return Air Mixer, !- Name", + " PSZ-AC:5 Zone Equipment Outlet Node, !- Outlet Node Name", + " Perimeter_ZN_4 Return Air Node Name; !- Inlet 1 Node Name", + + " Schedule:Compact,", + " CLGSETP_SCH, !- Name", + " Temperature, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: Weekdays SummerDesignDay, !- Field 2", + " Until: 06:00,26.7, !- Field 3", + " Until: 22:00,24.0, !- Field 5", + " Until: 24:00,26.7, !- Field 7", + " For: Saturday, !- Field 9", + " Until: 06:00,26.7, !- Field 10", + " Until: 18:00,24.0, !- Field 12", + " Until: 24:00,26.7, !- Field 14", + " For: AllOtherDays, !- Field 16", + " Until: 24:00,26.7; !- Field 17", + + " Schedule:Compact,", + " HTGSETP_SCH, !- Name", + " Temperature, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: Weekdays, !- Field 2", + " Until: 06:00,15.6, !- Field 3", + " Until: 22:00,21.0, !- Field 5", + " Until: 24:00,15.6, !- Field 7", + " For: Saturday, !- Field 9", + " Until: 06:00,15.6, !- Field 10", + " Until: 18:00,21.0, !- Field 12", + " Until: 24:00,15.6, !- Field 14", + " For: WinterDesignDay, !- Field 16", + " Until: 24:00,21.0, !- Field 17", + " For: AllOtherDays, !- Field 19", + " Until: 24:00,15.6; !- Field 20", + + " Schedule:Compact,", + " MinOA_Sched, !- Name", + " Fraction, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: Weekdays SummerDesignDay, !- Field 2", + " Until: 07:00,0.0, !- Field 3", + " Until: 22:00,1.0, !- Field 5", + " Until: 24:00,0.0, !- Field 7", + " For: Saturday WinterDesignDay, !- Field 9", + " Until: 07:00,0.0, !- Field 10", + " Until: 18:00,1.0, !- Field 12", + " Until: 24:00,0.0, !- Field 14", + " For: AllOtherDays, !- Field 16", + " Until: 24:00,0.0; !- Field 17", + + " Schedule:Compact,", + " Dual Zone Control Type Sched, !- Name", + " Control Type, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,4; !- Field 3", + + " Schedule:Compact,", + " HVACOperationSchd, !- Name", + " On/Off, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: Weekdays SummerDesignDay, !- Field 2", + " Until: 06:00,0.0, !- Field 3", + " Until: 22:00,1.0, !- Field 5", + " Until: 24:00,0.0, !- Field 7", + " For: Saturday WinterDesignDay, !- Field 9", + " Until: 06:00,0.0, !- Field 10", + " Until: 18:00,1.0, !- Field 12", + " Until: 24:00,0.0, !- Field 14", + " For: AllOtherDays, !- Field 16", + " Until: 24:00,0.0; !- Field 17", + + " AirLoopHVAC:DedicatedOutdoorAirSystem,", + " AirLoopHVAC DOAS, !- Name", + " AirLoopDOAS OA system, !- AirLoopHVAC:OutdoorAirSystem Name", + " ALWAYS_ON, !- Availability Schedule Name", + " AirLoopDOASMixer, !- AirLoopHVAC:Mixer Name", + " AirLoopDOASSplitter, !- AirLoopHVAC:Splitter Name", + " 4.5, !- Preheat Design Temperature {C}", + " 0.004, !- Preheat Design Humidity Ratio {kgWater/kgDryAir}", + " 11.5, !- Precool Design Temperature {C}", + " 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir}", + " 5, !- Number of AirLoopHVAC", + " PSZ-AC:1, !- AirLoopHVAC 1 Name", + " PSZ-AC:2, !- AirLoopHVAC 2 Name", + " PSZ-AC:3, !- AirLoopHVAC 3 Name", + " PSZ-AC:4, !- AirLoopHVAC 4 Name", + " PSZ-AC:5; !- AirLoopHVAC 5 Name", + + " AirLoopHVAC:Mixer,", + " AirLoopDOASMixer, !- Name", + " AirLoopDOASMixerOutlet, !- Outlet Node Name", + " PSZ-AC:1_OARelief Node, !- Inlet 1 Node Name", + " PSZ-AC:2_OARelief Node, !- Inlet 2 Node Name", + " PSZ-AC:3_OARelief Node, !- Inlet 3 Node Name", + " PSZ-AC:4_OARelief Node, !- Inlet 4 Node Name", + " PSZ-AC:5_OARelief Node; !- Inlet 5 Node Name", + + " AirLoopHVAC:Splitter,", + " AirLoopDOASSplitter, !- Name", + " AirLoopDOASSplitterInlet, !- Inlet Node Name", + " PSZ-AC:1_OAInlet Node, !- Outlet 1 Node Name", + " PSZ-AC:2_OAInlet Node, !- Outlet 2 Node Name", + " PSZ-AC:3_OAInlet Node, !- Outlet 3 Node Name", + " PSZ-AC:4_OAInlet Node, !- Outlet 4 Node Name", + " PSZ-AC:5_OAInlet Node; !- Outlet 5 Node Name", + + " Schedule:Compact,", + " OA Cooling Supply Air Temp Sch, !- Name", + " Temperature, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,11.5; !- Field 3", + + " Schedule:Compact,", + " OA Heating Supply Air Temp Sch, !- Name", + " Temperature, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,4.5; !- Field 3", + + " SetpointManager:Scheduled,", + " OA Air Temp Manager 1, !- Name", + " Temperature, !- Control Variable", + " OA Cooling Supply Air Temp Sch, !- Schedule Name", + " AirLoopDOASSplitterInlet; !- Setpoint Node or NodeList Name", + + " SetpointManager:Scheduled,", + " OA Air Temp Manager 2, !- Name", + " Temperature, !- Control Variable", + " OA Heating Supply Air Temp Sch, !- Schedule Name", + " AirLoopDOASSplitterInlet; !- Setpoint Node or NodeList Name", + + " AirLoopHVAC:OutdoorAirSystem,", + " AirLoopDOAS OA system, !- Name", + " , !- Controller List Name", + " OA Sys 1 Equipment, !- Outdoor Air Equipment List Name", + " OA Sys 1 Avail List; !- Availability Manager List Name", + + " AvailabilityManagerAssignmentList,", + " OA Sys 1 Avail List, !- Name", + " AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type", + " OA Sys 1 Avail; !- Availability Manager 1 Name", + + " AvailabilityManager:Scheduled,", + " OA Sys 1 Avail, !- Name", + " Always_ON; !- Schedule Name", + + " AirLoopHVAC:OutdoorAirSystem:EquipmentList,", + " OA Sys 1 Equipment, !- Name", + " HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type", + " DOAS Heat Recovery, !- Component 1 Name", + " Coil:Heating:Fuel, !- Component 1 Object Type", + " OA Heating Coil; !- Component 1 Name", + + " Coil:Heating:Fuel,", + " OA Heating Coil, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " NaturalGas, !- Fuel Type", + " 0.8, !- Burner Efficiency", + " 40000, !- Nominal Capacity {W}", + " DOAS Heat Recovery Supply Outlet, !- Air Inlet Node Name", + " AirLoopDOASSplitterInlet, !- Air Outlet Node Name", + " AirLoopDOASSplitterInlet; !- Temperature Setpoint Node Name", + + " HeatExchanger:AirToAir:SensibleAndLatent,", + " DOAS Heat Recovery, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " 1.5, !- Nominal Supply Air Flow Rate {m3/s}", + " 0.7, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless}", + " 0.65, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless}", + " 0.750000, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless}", + " 0.700000, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless}", + " 0.7, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless}", + " 0.65, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless}", + " 0.750000, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless}", + " 0.700000, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless}", + " Outside Air Inlet Node 1, !- Supply Air Inlet Node Name", + " DOAS Heat Recovery Supply Outlet, !- Supply Air Outlet Node Name", + " AirLoopDOASMixerOutlet, !- Exhaust Air Inlet Node Name", + " DOAS Heat Recovery Relief Outlet, !- Exhaust Air Outlet Node Name", + " 0, !- Nominal Electric Power {W}", + " No, !- Supply Air Outlet Temperature Control", + " Plate, !- Heat Exchanger Type", + " MinimumExhaustTemperature, !- Frost Control Type", + " 1.7, !- Threshold Temperature {C}", + " 0.083, !- Initial Defrost Time Fraction {dimensionless}", + " 0.012, !- Rate of Defrost Time Fraction Increase {1/K}", + " Yes; !- Economizer Lockout", + + " OutdoorAir:NodeList,", + " OutsideAirInletNodes; !- Node or NodeList Name 1", + + " NodeList,", + " OutsideAirInletNodes, !- Name", + " Outside Air Inlet Node 1;!- Node 1 Name", + + }); + + ASSERT_TRUE(process_idf(idf_objects)); + + using namespace EnergyPlus::DataIPShortCuts; + + lNumericFieldBlanks.allocate(1000); + lAlphaFieldBlanks.allocate(1000); + cAlphaFieldNames.allocate(1000); + cNumericFieldNames.allocate(1000); + cAlphaArgs.allocate(1000); + rNumericArgs.allocate(1000); + lNumericFieldBlanks = false; + lAlphaFieldBlanks = false; + cAlphaFieldNames = " "; + cNumericFieldNames = " "; + cAlphaArgs = " "; + rNumericArgs = 0.0; + + bool ErrorsFound = false; + // Read objects + HeatBalanceManager::GetProjectControlData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + HeatBalanceManager::GetZoneData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + HeatBalanceManager::GetWindowGlassSpectralData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + HeatBalanceManager::GetMaterialData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + HeatBalanceManager::GetConstructData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + SurfaceGeometry::GetGeometryParameters(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + + SurfaceGeometry::CosBldgRotAppGonly = 1.0; + SurfaceGeometry::SinBldgRotAppGonly = 0.0; + SurfaceGeometry::CosZoneRelNorth.allocate(6); + SurfaceGeometry::SinZoneRelNorth.allocate(6); + SurfaceGeometry::CosZoneRelNorth = 1.0; + SurfaceGeometry::SinZoneRelNorth = 0.0; + SurfaceGeometry::CosBldgRelNorth = 1.0; + SurfaceGeometry::SinBldgRelNorth = 0.0; + SurfaceGeometry::GetSurfaceData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + + ZoneEquipmentManager::GetZoneEquipment(); + SimAirServingZones::GetAirPathData(); + // OA inlet node + DataLoopNode::Node(2).MassFlowRate = 0.1; + DataLoopNode::Node(3).MassFlowRate = 0.1; + DataLoopNode::Node(4).MassFlowRate = 0.1; + DataLoopNode::Node(5).MassFlowRate = 0.1; + DataLoopNode::Node(6).MassFlowRate = 0.1; + // OA relief node + DataLoopNode::Node(62).MassFlowRate = 0.1; + DataLoopNode::Node(63).MassFlowRate = 0.1; + DataLoopNode::Node(64).MassFlowRate = 0.1; + DataLoopNode::Node(65).MassFlowRate = 0.1; + DataLoopNode::Node(66).MassFlowRate = 0.1; + DataLoopNode::Node(62).Temp = 23.0; + DataLoopNode::Node(63).Temp = 23.0; + DataLoopNode::Node(64).Temp = 23.0; + DataLoopNode::Node(65).Temp = 23.0; + DataLoopNode::Node(66).Temp = 23.0; + DataLoopNode::Node(62).HumRat = 0.001; + DataLoopNode::Node(63).HumRat = 0.001; + DataLoopNode::Node(64).HumRat = 0.001; + DataLoopNode::Node(65).HumRat = 0.001; + DataLoopNode::Node(66).HumRat = 0.001; + + auto &thisAirLoopDOASObjec = AirLoopHVACDOAS::airloopDOAS[0]; + + int index = 0; + thisAirLoopDOASObjec.SizingOnceFlag = false; + DataLoopNode::Node(11).Temp = -10.0; + DataLoopNode::Node(11).HumRat = 0.0008; + DataLoopNode::Node(70).TempSetPoint = 4.5; + Schedule(1).CurrentValue = 1.0; // set availability and fan schedule to 1 + thisAirLoopDOASObjec.SimAirLoopHVACDOAS(true, index); + + // Mixer outlet + EXPECT_NEAR(23.0, DataLoopNode::Node(68).Temp, 0.0001); + EXPECT_NEAR(0.5, DataLoopNode::Node(68).MassFlowRate, 0.0001); + // Outlet of HX + EXPECT_NEAR(-8.0710884, DataLoopNode::Node(67).Temp, 0.0001); + // Outlet of Central DOAS + EXPECT_NEAR(4.5, DataLoopNode::Node(70).Temp, 0.0001); + EXPECT_NEAR(0.5, DataLoopNode::Node(70).MassFlowRate, 0.0001); + // Outlet of splitter + EXPECT_NEAR(4.5, DataLoopNode::Node(2).Temp, 0.0001); + EXPECT_NEAR(4.5, DataLoopNode::Node(3).Temp, 0.0001); + EXPECT_NEAR(4.5, DataLoopNode::Node(4).Temp, 0.0001); + EXPECT_NEAR(4.5, DataLoopNode::Node(5).Temp, 0.0001); + EXPECT_NEAR(4.5, DataLoopNode::Node(6).Temp, 0.0001); + +} +} // namespace EnergyPlus diff --git a/tst/EnergyPlus/unit/AirTerminalSingleDuctPIUReheat.unit.cc b/tst/EnergyPlus/unit/AirTerminalSingleDuctPIUReheat.unit.cc index 30440be13bb..0dda39d51e1 100644 --- a/tst/EnergyPlus/unit/AirTerminalSingleDuctPIUReheat.unit.cc +++ b/tst/EnergyPlus/unit/AirTerminalSingleDuctPIUReheat.unit.cc @@ -1470,7 +1470,7 @@ TEST_F(EnergyPlusFixture, AirTerminalSingleDuctSeriesPIU_SimTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; ManageSimulation(); // run the design day over the warmup period (24 hrs, 25 days) diff --git a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc index dea80a891be..2225b890abf 100644 --- a/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc +++ b/tst/EnergyPlus/unit/AirflowNetworkBalanceManager.unit.cc @@ -4522,44 +4522,60 @@ TEST_F(EnergyPlusFixture, AirflowNetworkBalanceManager_AirPrandtl) TEST_F(EnergyPlusFixture, TestWindPressureTable) { - // Test a Table:OneIV object as a wind pressure curve - std::string const idf_objects = delimited_string({"Table:OneIndependentVariable,", - " EFacade_WPCCurve, !- Name", - " Linear, !- Curve Type", - " LinearInterpolationOfTable, !- Interpolation Method", - " 0, !- Minimum Value of X", - " 360, !- Maximum Value of X", - " -1, !- Minimum Table Output", - " 1, !- Maximum Table Output", - " Dimensionless, !- Input Unit Type for X", - " Dimensionless, !- Output Unit Type", - " 1, !- Normalization Reference", - " 0, !- X Value #1", - " -0.56, !- Output Value #1", - " 30, !- X Value #2", - " 0.04, !- Output Value #2", - " 60, !- X Value #3", - " 0.48, !- Output Value #3", - " 90, !- X Value #4", - " 0.6, !- Output Value #4", - " 120, !- X Value #5", - " 0.48, !- Output Value #5", - " 150, !- X Value #6", - " 0.04, !- Output Value #6", - " 180, !- X Value #7", - " -0.56, !- Output Value #7", - " 210, !- N20", - " -0.56, !- N21", - " 240, !- N22", - " -0.42, !- N23", - " 270, !- N24", - " -0.37, !- N25", - " 300, !- N26", - " -0.42, !- N27", - " 330, !- N28", - " -0.56, !- N29", - " 360, !- N30", - " -0.56; !- N31"}); + // Test a Table:Lookup object as a wind pressure curve + std::string const idf_objects = delimited_string({"Table:IndependentVariable,", + " Wind_Direction_30_deg, !- Name", + " Linear, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0, !- Minimum Value", + " 360, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0, !- Value 1", + " 30,", + " 60,", + " 90,", + " 120,", + " 150,", + " 180,", + " 210,", + " 240,", + " 270,", + " 300,", + " 330,", + " 360;", + + "Table:IndependentVariableList,", + " Wind_Pressure_Variables, !- Name", + " Wind_Direction_30_deg; !- Independent Variable 1 Name", + + "Table:Lookup,", + " EFacade_WPCCurve, !- Name", + " Wind_Pressure_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " -1, !- Minimum Output", + " 1, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " -0.56, !- Output Value 1", + " 0.04,", + " 0.48,", + " 0.6,", + " 0.48,", + " 0.04,", + " -0.56,", + " -0.56,", + " -0.42,", + " -0.37,", + " -0.42,", + " -0.56,", + " -0.56;"}); // Load and verify the table ASSERT_TRUE(process_idf(idf_objects)); @@ -4570,7 +4586,7 @@ TEST_F(EnergyPlusFixture, TestWindPressureTable) EXPECT_EQ(1, CurveManager::PerfCurve(1).NumDims); EXPECT_EQ("EFACADE_WPCCURVE", CurveManager::GetCurveName(1)); EXPECT_EQ(1, CurveManager::GetCurveIndex("EFACADE_WPCCURVE")); - EXPECT_EQ("Table:OneIndependentVariable", CurveManager::PerfCurve(1).ObjectType); + EXPECT_EQ("Table:Lookup", CurveManager::PerfCurve(1).ObjectType); EXPECT_DOUBLE_EQ(-0.56, CurveManager::CurveValue(1, 0.0)); // In-range value EXPECT_DOUBLE_EQ(0.54, CurveManager::CurveValue(1, 105.0)); // In-range value EXPECT_DOUBLE_EQ(-0.56, CurveManager::CurveValue(1, -10.0)); // Minimum x @@ -4612,7 +4628,7 @@ TEST_F(EnergyPlusFixture, TestWindPressureTable) TEST_F(EnergyPlusFixture, TestWPCValue) { - // Test loading a WPC object into a Table:OneIV + // Test loading a WPC object into a Table:Lookup std::string const idf_objects = delimited_string({"AirflowNetwork:MultiZone:WindPressureCoefficientArray,", " Every 30 Degrees, !- Name", " 0, !- Wind Direction 1 {deg}", @@ -6125,54 +6141,86 @@ TEST_F(EnergyPlusFixture, TestExternalNodesWithTables) " 0.01, !- Air Mass Flow Coefficient at Reference Conditions{ kg / s }", " 0.667, !- Air Mass Flow Exponent{ dimensionless }", " ReferenceCrackConditions;!- Reference Crack Conditions", - "Table:OneIndependentVariable,", - " NFacade_WPCCurve, !- Name", - " Linear, !- Curve Type", - " LinearInterpolationOfTable, !- Interpolation Method", - " 0, !- Minimum Value of X", - " 360, !- Maximum Value of X", - " -1, !- Minimum Table Output", - " 1, !- Maximum Table Output", - " Dimensionless, !- Input Unit Type for X", - " Dimensionless, !- Output Unit Type", - " 1, !- Normalization Reference", - " 0, 0.60, !- X,Y Pair #1", - " 30, 0.48, !- X,Y Pair #2", - " 60, 0.04, !- X,Y Pair #3", - " 90, -0.56, !- X,Y Pair #4", - " 120, -0.56, !- X,Y Pair #5", - " 150, -0.42, !- X,Y Pair #6", - " 180, -0.37, !- X,Y Pair #7", - " 210, -0.42, !- X,Y Pair #8", - " 240, -0.56, !- X,Y Pair #9", - " 270, -0.56, !- X,Y Pair #10", - " 300, 0.04, !- X,Y Pair #11", - " 330, 0.48, !- X,Y Pair #12", - " 360, 0.60; !- X,Y Pair #13", - "Table:OneIndependentVariable,", - " SFacade_WPCCurve, !- Name", - " Linear, !- Curve Type", - " LinearInterpolationOfTable, !- Interpolation Method", - " 0, !- Minimum Value of X", - " 360, !- Maximum Value of X", - " -1, !- Minimum Table Output", - " 1, !- Maximum Table Output", - " Dimensionless, !- Input Unit Type for X", - " Dimensionless, !- Output Unit Type", - " 1, !- Normalization Reference", - " 0, -0.37, !- X,Y Pair #1", - " 30, -0.42, !- X,Y Pair #2", - " 60, -0.56, !- X,Y Pair #3", - " 90, -0.56, !- X,Y Pair #4", - " 120, 0.04, !- X,Y Pair #5", - " 150, 0.48, !- X,Y Pair #6", - " 180, 0.60, !- X,Y Pair #7", - " 210, 0.48, !- X,Y Pair #8", - " 240, 0.04, !- X,Y Pair #9", - " 270, -0.56, !- X,Y Pair #10", - " 300, -0.56, !- X,Y Pair #11", - " 330, -0.42, !- X,Y Pair #12", - " 360, -0.37; !- X,Y Pair #13", + + "Table:IndependentVariable,", + " Wind_Direction_30_deg, !- Name", + " Linear, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0, !- Minimum Value", + " 360, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0, !- Value 1", + " 30,", + " 60,", + " 90,", + " 120,", + " 150,", + " 180,", + " 210,", + " 240,", + " 270,", + " 300,", + " 330,", + " 360;", + + "Table:IndependentVariableList,", + " Wind_Pressure_Variables, !- Name", + " Wind_Direction_30_deg; !- Independent Variable 1 Name", + + "Table:Lookup,", + " NFacade_WPCCurve, !- Name", + " Wind_Pressure_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " -1, !- Minimum Output", + " 1, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.60, !- Output Value 1", + " 0.48,", + " 0.04,", + " -0.56,", + " -0.56,", + " -0.42,", + " -0.37,", + " -0.42,", + " -0.56,", + " -0.56,", + " 0.04,", + " 0.48,", + " 0.60;", + + "Table:Lookup,", + " SFacade_WPCCurve, !- Name", + " Wind_Pressure_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " -1, !- Minimum Output", + " 1, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " -0.37, !- Output Value 1", + " -0.42,", + " -0.56,", + " -0.56,", + " 0.04,", + " 0.48,", + " 0.60,", + " 0.48,", + " 0.04,", + " -0.56,", + " -0.56,", + " -0.42,", + " -0.37;", + "SurfaceConvectionAlgorithm:Inside,TARP;", "SurfaceConvectionAlgorithm:Outside,DOE-2;", "HeatBalanceAlgorithm,ConductionTransferFunction;", @@ -7380,24 +7428,49 @@ TEST_F(EnergyPlusFixture, TestExternalNodesWithSymmetricTable) " 0.01, !- Air Mass Flow Coefficient at Reference Conditions{ kg / s }", " 0.667, !- Air Mass Flow Exponent{ dimensionless }", " ReferenceCrackConditions;!- Reference Crack Conditions", - "Table:OneIndependentVariable,", - " NFacade_WPCCurve, !- Name", - " Linear, !- Curve Type", - " LinearInterpolationOfTable, !- Interpolation Method", - " 0, !- Minimum Value of X", - " 180, !- Maximum Value of X", - " -1, !- Minimum Table Output", - " 1, !- Maximum Table Output", - " Dimensionless, !- Input Unit Type for X", - " Dimensionless, !- Output Unit Type", - " 1, !- Normalization Reference", - " 0, 0.60, !- X,Y Pair #1", - " 30, 0.48, !- X,Y Pair #2", - " 60, 0.04, !- X,Y Pair #3", - " 90, -0.56, !- X,Y Pair #4", - " 120, -0.56, !- X,Y Pair #5", - " 150, -0.42, !- X,Y Pair #6", - " 180, -0.37; !- X,Y Pair #7", + + "Table:IndependentVariable,", + " Wind_Direction_30_deg, !- Name", + " Linear, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0, !- Minimum Value", + " 180, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0, !- Value 1", + " 30,", + " 60,", + " 90,", + " 120,", + " 150,", + " 180;", + + "Table:IndependentVariableList,", + " Wind_Pressure_Variables, !- Name", + " Wind_Direction_30_deg; !- Independent Variable 1 Name", + + "Table:Lookup,", + " NFacade_WPCCurve, !- Name", + " Wind_Pressure_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " -1, !- Minimum Output", + " 1, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.60, !- Output Value 1", + " 0.48,", + " 0.04,", + " -0.56,", + " -0.56,", + " -0.42,", + " -0.37;", + "SurfaceConvectionAlgorithm:Inside,TARP;", "SurfaceConvectionAlgorithm:Outside,DOE-2;", "HeatBalanceAlgorithm,ConductionTransferFunction;", @@ -8666,54 +8739,86 @@ TEST_F(EnergyPlusFixture, TestExternalNodesWithLocalAirNode) " 0.01, !- Air Mass Flow Coefficient at Reference Conditions{ kg / s }", " 0.667, !- Air Mass Flow Exponent{ dimensionless }", " ReferenceCrackConditions;!- Reference Crack Conditions", - "Table:OneIndependentVariable,", - " NFacade_WPCCurve, !- Name", - " Linear, !- Curve Type", - " LinearInterpolationOfTable, !- Interpolation Method", - " 0, !- Minimum Value of X", - " 360, !- Maximum Value of X", - " -1, !- Minimum Table Output", - " 1, !- Maximum Table Output", - " Dimensionless, !- Input Unit Type for X", - " Dimensionless, !- Output Unit Type", - " 1, !- Normalization Reference", - " 0, 0.60, !- X,Y Pair #1", - " 30, 0.48, !- X,Y Pair #2", - " 60, 0.04, !- X,Y Pair #3", - " 90, -0.56, !- X,Y Pair #4", - " 120, -0.56, !- X,Y Pair #5", - " 150, -0.42, !- X,Y Pair #6", - " 180, -0.37, !- X,Y Pair #7", - " 210, -0.42, !- X,Y Pair #8", - " 240, -0.56, !- X,Y Pair #9", - " 270, -0.56, !- X,Y Pair #10", - " 300, 0.04, !- X,Y Pair #11", - " 330, 0.48, !- X,Y Pair #12", - " 360, 0.60; !- X,Y Pair #13", - "Table:OneIndependentVariable,", - " SFacade_WPCCurve, !- Name", - " Linear, !- Curve Type", - " LinearInterpolationOfTable, !- Interpolation Method", - " 0, !- Minimum Value of X", - " 360, !- Maximum Value of X", - " -1, !- Minimum Table Output", - " 1, !- Maximum Table Output", - " Dimensionless, !- Input Unit Type for X", - " Dimensionless, !- Output Unit Type", - " 1, !- Normalization Reference", - " 0, -0.37, !- X,Y Pair #1", - " 30, -0.42, !- X,Y Pair #2", - " 60, -0.56, !- X,Y Pair #3", - " 90, -0.56, !- X,Y Pair #4", - " 120, 0.04, !- X,Y Pair #5", - " 150, 0.48, !- X,Y Pair #6", - " 180, 0.60, !- X,Y Pair #7", - " 210, 0.48, !- X,Y Pair #8", - " 240, 0.04, !- X,Y Pair #9", - " 270, -0.56, !- X,Y Pair #10", - " 300, -0.56, !- X,Y Pair #11", - " 330, -0.42, !- X,Y Pair #12", - " 360, -0.37; !- X,Y Pair #13", + + "Table:IndependentVariable,", + " Wind_Direction_30_deg, !- Name", + " Linear, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0, !- Minimum Value", + " 360, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0, !- Value 1", + " 30,", + " 60,", + " 90,", + " 120,", + " 150,", + " 180,", + " 210,", + " 240,", + " 270,", + " 300,", + " 330,", + " 360;", + + "Table:IndependentVariableList,", + " Wind_Pressure_Variables, !- Name", + " Wind_Direction_30_deg; !- Independent Variable 1 Name", + + "Table:Lookup,", + " NFacade_WPCCurve, !- Name", + " Wind_Pressure_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " -1, !- Minimum Output", + " 1, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.60, !- Output Value 1", + " 0.48,", + " 0.04,", + " -0.56,", + " -0.56,", + " -0.42,", + " -0.37,", + " -0.42,", + " -0.56,", + " -0.56,", + " 0.04,", + " 0.48,", + " 0.60;", + + "Table:Lookup,", + " SFacade_WPCCurve, !- Name", + " Wind_Pressure_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " -1, !- Minimum Output", + " 1, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " -0.37, !- Output Value 1", + " -0.42,", + " -0.56,", + " -0.56,", + " 0.04,", + " 0.48,", + " 0.60,", + " 0.48,", + " 0.04,", + " -0.56,", + " -0.56,", + " -0.42,", + " -0.37;", + "SurfaceConvectionAlgorithm:Inside,TARP;", "SurfaceConvectionAlgorithm:Outside,DOE-2;", "HeatBalanceAlgorithm,ConductionTransferFunction;", @@ -9247,15 +9352,17 @@ TEST_F(EnergyPlusFixture, BasicAdvancedSingleSided) EXPECT_EQ(270.0, AirflowNetwork::MultizoneExternalNodeData(3).azimuth); // Check the curve values for the left window, taken from v8.6.0 on Windows - unsigned i = 0; - for (auto value : CurveManager::PerfCurveTableData(7).Y) { - EXPECT_NEAR(valsForLeftWindow[i++], value, 1.0e-12) << ("Issue at index: " + std::to_string(i)); + for (unsigned i = 0; i <= 36; i++) { + Real64 angle = i*10.0; + Real64 value = CurveManager::CurveValue(7, angle); + EXPECT_NEAR(valsForLeftWindow[i], value, 1.0e-12) << ("Issue at index: " + std::to_string(i)); } // Check the curve values for the left window, taken from v8.6.0 on Windows - i = 0; - for (auto value : CurveManager::PerfCurveTableData(6).Y) { - EXPECT_NEAR(valsForRightWindow[i++], value, 1.0e-12) << ("Issue at index: " + std::to_string(i)); + for (unsigned i = 0; i <= 36; i++) { + Real64 angle = i*10.0; + Real64 value = CurveManager::CurveValue(6, angle); + EXPECT_NEAR(valsForRightWindow[i], value, 1.0e-12) << ("Issue at index: " + std::to_string(i)); } } diff --git a/tst/EnergyPlus/unit/BranchNodeConnections.unit.cc b/tst/EnergyPlus/unit/BranchNodeConnections.unit.cc index e065ece29be..c619a62af09 100644 --- a/tst/EnergyPlus/unit/BranchNodeConnections.unit.cc +++ b/tst/EnergyPlus/unit/BranchNodeConnections.unit.cc @@ -1110,7 +1110,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheckFailure) ASSERT_TRUE(process_idf(idf_objects)); compare_err_stream(""); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; GetProjectData(); @@ -2118,7 +2118,7 @@ TEST_F(EnergyPlusFixture, BranchNodeConnections_ReturnPlenumNodeCheck) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; GetProjectData(); diff --git a/tst/EnergyPlus/unit/CMakeLists.txt b/tst/EnergyPlus/unit/CMakeLists.txt index aa1f34c3f05..d4cf96c614c 100644 --- a/tst/EnergyPlus/unit/CMakeLists.txt +++ b/tst/EnergyPlus/unit/CMakeLists.txt @@ -15,6 +15,7 @@ set( test_src AirflowNetworkSimulationControl.unit.cc AirflowNetworkBalanceManager.unit.cc AirflowNetworkSolver.unit.cc + AirLoopHVACDOAS.unit.cc AirTerminalSingleDuct.unit.cc AirTerminalSingleDuctConstantVolumeNoReheat.unit.cc AirTerminalSingleDuctMixer.unit.cc @@ -72,6 +73,7 @@ set( test_src GeneralRoutines.unit.cc GroundHeatExchangers.unit.cc HeatBalanceAirManager.unit.cc + HeatBalanceKivaManager.unit.cc HeatBalanceManager.unit.cc HeatBalanceMovableInsulation.unit.cc HeatBalanceIntRadExchange.unit.cc @@ -190,6 +192,7 @@ set( test_src XingGroundTemperatureModel.unit.cc ZoneContaminantPredictorCorrector.unit.cc ZoneEquipmentManager.unit.cc + ZoneHVACEvaporativeCooler.unit ZonePlenum.unit.cc ZoneTempPredictorCorrector.unit.cc main.cc diff --git a/tst/EnergyPlus/unit/ChillerAbsorption.unit.cc b/tst/EnergyPlus/unit/ChillerAbsorption.unit.cc index 26b6644fcfb..0a170a309f5 100644 --- a/tst/EnergyPlus/unit/ChillerAbsorption.unit.cc +++ b/tst/EnergyPlus/unit/ChillerAbsorption.unit.cc @@ -1775,7 +1775,7 @@ TEST_F(EnergyPlusFixture, ChillerAbsorption_Calc) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); SimulationManager::ManageSimulation(); // run the design day // set conditions for test diff --git a/tst/EnergyPlus/unit/CondenserLoopTowers.unit.cc b/tst/EnergyPlus/unit/CondenserLoopTowers.unit.cc index 46964bc588e..9c632be8564 100644 --- a/tst/EnergyPlus/unit/CondenserLoopTowers.unit.cc +++ b/tst/EnergyPlus/unit/CondenserLoopTowers.unit.cc @@ -491,7 +491,7 @@ TEST_F(EnergyPlusFixture, CondenserLoopTowers_MerkelNoCooling) SimulationManager::GetProjectData(); OutputReportPredefined::SetPredefinedTables(); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); @@ -883,7 +883,7 @@ TEST_F(EnergyPlusFixture, CondenserLoopTowers_SingleSpeedSizing) SimulationManager::GetProjectData(); OutputReportPredefined::SetPredefinedTables(); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); @@ -1315,7 +1315,7 @@ TEST_F(EnergyPlusFixture, CondenserLoopTowers_SingleSpeedUserInputTowerSizing) SimulationManager::GetProjectData(); OutputReportPredefined::SetPredefinedTables(); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); @@ -1730,7 +1730,7 @@ TEST_F(EnergyPlusFixture, CondenserLoopTowers_TwoSpeedUserInputTowerSizing) SimulationManager::GetProjectData(); OutputReportPredefined::SetPredefinedTables(); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); @@ -2214,7 +2214,7 @@ TEST_F(EnergyPlusFixture, CondenserLoopTowers_MerkelUserInputTowerSizing) SimulationManager::GetProjectData(); OutputReportPredefined::SetPredefinedTables(); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); @@ -2641,7 +2641,7 @@ TEST_F(EnergyPlusFixture, CondenserLoopTowers_TwoSpeedTowerLowSpeedNomCapSizing) SimulationManager::GetProjectData(); OutputReportPredefined::SetPredefinedTables(); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); @@ -3037,7 +3037,7 @@ TEST_F(EnergyPlusFixture, CondenserLoopTowers_SingleSpeedUser_SizingError_Sizing SimulationManager::GetProjectData(); OutputReportPredefined::SetPredefinedTables(); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); @@ -3437,7 +3437,7 @@ TEST_F(EnergyPlusFixture, CondenserLoopTowers_SingleSpeedUser_SizingError_UserSp SimulationManager::GetProjectData(); OutputReportPredefined::SetPredefinedTables(); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); diff --git a/tst/EnergyPlus/unit/CurveManager.unit.cc b/tst/EnergyPlus/unit/CurveManager.unit.cc index 50b9b2ccceb..1acfc72a837 100644 --- a/tst/EnergyPlus/unit/CurveManager.unit.cc +++ b/tst/EnergyPlus/unit/CurveManager.unit.cc @@ -61,1105 +61,6 @@ using namespace EnergyPlus; using namespace EnergyPlus::CurveManager; -TEST_F(EnergyPlusFixture, Tables_TwoIndVar_Malformed) -{ - - DataIPShortCuts::lAlphaFieldBlanks = true; - std::string const idf_objects = delimited_string({ - " ", - " Table:TwoIndependentVariables, ", - " AWHP_rCAP, !- Name ", - " BiQuadratic, !- Curve Type ", - " LagrangeInterpolationLinearExtrapolation, !- Interpolation Method", - " -15, !- Minimum Value of X ", - " 25, !- Maximum Value of X ", - " 35, !- Minimum Value of Y ", - " 55, !- Maximum Value of Y ", - " 6842105, !- Minimum Table Output ", - " 10657895, !- Maximum Table Output ", - " Temperature, !- Input Unit Type for X ", - " Temperature, !- Input Unit Type for Y ", - " Dimensionless, !- Output Unit Type ", - " -15, !- Normalization Reference ", - " , !- External File Name", - " 35, !- X Value #1 ", - " 0.789473684210526, !- Y Value #1 ", - " -15, !- Output Value #1 ", - " 40, !- X Value #2 ", - " 0.763157894736842, !- Y Value #2 ", - " -15, !- Output Value #2 ", - " 45, !- X Value #3 ", - " 0.736842105263158, !- Y Value #3 ", - " -15, !- Output Value #3 ", - " 50, !- X Value #4 ", - " 0.710526315789474, !- Y Value #4 ", - " -15, !- Output Value #4 ", - " 55, !- ", - " 0.684210526315789, !- ", - " -10, !- ", - " 35, !- ", - " 0.815789473684211, !- ", - " -10, !- ", - " 40, !- ", - " 0.802631578947368, !- ", - " -10, !- ", - " 45, !- ", - " 0.789473684210526, !- ", - " -10, !- ", - " 50, !- ", - " 0.763157894736842, !- ", - " -10, !- ", - " 55, !- ", - " 0.736842105263158, !- ", - " -5, !- ", - " 35, !- ", - " 0.868421052631579, !- ", - " -5, !- ", - " 40, !- ", - " 0.861842105263158, !- ", - " -5, !- ", - " 45, !- ", - " 0.855263157894737, !- ", - " -5, !- ", - " 50, !- ", - " 0.80921052631579, !- ", - " -5, !- ", - " 55, !- ", - " 0.763157894736842, !- ", - " 0, !- ", - " 35, !- ", - " 0.934210526315789, !- ", - " 0, !- ", - " 40, !- ", - " 0.914473684210526, !- ", - " 0, !- ", - " 45, !- ", - " 0.894736842105263, !- ", - " 0, !- ", - " 50, !- ", - " 0.855263157894737, !- ", - " 0, !- ", - " 55, !- ", - " 0.815789473684211, !- ", - " 5, !- ", - " 35, !- ", - " 1, !- ", - " 5, !- ", - " 40, !- ", - " 0.973684210526316, !- ", - " 5, !- ", - " 45, !- ", - " 0.947368421052632, !- ", - " 5, !- ", - " 50, !- ", - " 0.888157894736842, !- ", - " 5, !- ", - " 55, !- ", - " 0.828947368421053, !- ", - " 10, !- ", - " 35, !- ", - " 1.02631578947368, !- ", - " 10, !- ", - " 40, !- ", - " 1, !- ", - " 10, !- ", - " 45, !- ", - " 0.973684210526316, !- ", - " 10, !- ", - " 50, !- ", - " 0.914473684210526, !- ", - " 10, !- ", - " 55, !- ", - " 0.855263157894737, !- ", - " 15, !- ", - " 35, !- ", - " 1.05263157894737, !- ", - " 15, !- ", - " 40, !- ", - " 1.01973684210526, !- ", - " 15, !- ", - " 45, !- ", - " 0.986842105263158, !- ", - " 15, !- ", - " 50, !- ", - " 0.940789473684211, !- ", - " 15, !- ", - " 55, !- ", - " 0.894736842105263, !- ", - " 20, !- ", - " 35, !- ", - " 1.06578947368421, !- ", - " 20, !- ", - " 40, !- ", - " 1.02631578947368, !- ", - " 20, !- ", - " 45, !- ", - " 0.986842105263158, !- ", - " 20, !- ", - " 50, !- ", - " 0.947368421052632, !- ", - " 20, !- ", - " 55, !- ", - " 0.907894736842105, !- ", - " 25, !- ", - " 35, !- ", - " 1.06578947368421, !- ", - " 25, !- ", - " 40, !- ", - " 1.02631578947368, !- ", - " 25, !- ", - " 45, !- ", - " 0.986842105263158, !- ", - " 25, !- ", - " 50, !- ", - " 0.947368421052632, !- ", - " 25, !- ", - " 55, !- ", - " 0.907894736842105; !- ", - " ", - }); - - ASSERT_TRUE(process_idf(idf_objects)); - - bool ErrorsFound = false; - CurveManager::GetCurveInputData(ErrorsFound); - EXPECT_TRUE(ErrorsFound); - - EXPECT_EQ(1, CurveManager::NumCurves); - - std::string const error_string = delimited_string({ - " ** Severe ** GetCurveInput: For Table:TwoIndependentVariables: AWHP_RCAP", - " ** ~~~ ** The number of data entries must be evenly divisable by 3. Number of data entries = 134", - }); - - EXPECT_TRUE(compare_err_stream(error_string, true)); -} -TEST_F(EnergyPlusFixture, Tables_OneIndependentVariable_UserDidNotEnterMinMaxXY) -{ - std::string const idf_objects = delimited_string( - {"Table:OneIndependentVariable,", "TestTableMinMax, !- Name", "Linear, !- Curve Type", - "LinearInterpolationOfTable, !- Interpolation Method", ", !- Minimum Value of X", - ", !- Maximum Value of X", ", !- Minimum Table Output", - ", !- Maximum Table Output", "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Output Unit Type", ", !- Normalization Reference", - "0, !- X Value #1", "0, !- Output Value #1", "1, !- X Value #2", - "1; !- Output Value #2"}); - ASSERT_TRUE(process_idf(idf_objects)); - EXPECT_EQ(0, CurveManager::NumCurves); - CurveManager::GetCurveInput(); - CurveManager::GetCurvesInputFlag = false; - ASSERT_EQ(1, CurveManager::NumCurves); - EXPECT_EQ(1, CurveManager::PerfCurve(1).NumDims); - EXPECT_EQ("TESTTABLEMINMAX", CurveManager::GetCurveName(1)); - EXPECT_EQ(1, CurveManager::GetCurveIndex("TESTTABLEMINMAX")); - bool error = false; - int index = CurveManager::GetCurveCheck("TESTTABLEMINMAX", error, "TEST"); - EXPECT_FALSE(error); - EXPECT_EQ(1, index); - EXPECT_EQ("Table:OneIndependentVariable", CurveManager::PerfCurve(1).ObjectType); - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(1, 0)); // In-range value - EXPECT_DOUBLE_EQ(0.75, CurveManager::CurveValue(1, 0.75)); // In-range value - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(1, -10.0)); // Minimum x - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(1, 5000)); // Maximum x - EXPECT_FALSE(has_err_output()); -} - -TEST_F(EnergyPlusFixture, Tables_OneIndependentVariable_EvaluateToLimits_UserEnteredMinMaxXY) -{ - - std::string const idf_objects = delimited_string({"Table:OneIndependentVariable,", - "TestTableOverwrite, !- Name", - "Linear, !- Curve Type", - "EvaluateCurveToLimits, !- Interpolation Method", - "0.1, !- Minimum Value of X", - "4.9, !- Maximum Value of X", - "1.2, !- Minimum Table Output", - "2.5, !- Maximum Table Output", - "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Output Unit Type", - ", !- Normalization Reference", - "0, !- X Value #1", - "0, !- Output Value #1", - "1, !- X Value #2", - "2, !- Output Value #2", - "2, !- X Value #3", - "2, !- Output Value #3", - "3, !- X Value #4", - "3, !- Output Value #4", - "4, !- X Value #5", - "4, !- Output Value #5", - "5, !- X Value #6", - "2; !- Output Value #6"}); - - ASSERT_TRUE(process_idf(idf_objects)); - - EXPECT_EQ(0, CurveManager::NumCurves); - CurveManager::GetCurveInput(); - CurveManager::GetCurvesInputFlag = false; - ASSERT_EQ(1, CurveManager::NumCurves); - - // Linear curve type, specified min/max - EXPECT_EQ(1, CurveManager::PerfCurve(1).NumDims); - EXPECT_EQ("TESTTABLEOVERWRITE", CurveManager::GetCurveName(1)); - EXPECT_EQ(1, CurveManager::GetCurveIndex("TESTTABLEOVERWRITE")); - bool error = false; - int index = CurveManager::GetCurveCheck("TESTTABLEOVERWRITE", error, "TEST"); - EXPECT_FALSE(error); - EXPECT_EQ(1, index); - Real64 min, max; - CurveManager::GetCurveMinMaxValues(1, min, max); - EXPECT_EQ(0.1, min); // Minimum Value of X - EXPECT_EQ(4.9, max); // Maximum Value of X - EXPECT_EQ("Table:OneIndependentVariable", CurveManager::PerfCurve(1).ObjectType); - - EXPECT_DOUBLE_EQ(1.2, CurveManager::CurveValue(1, 0.5)); // Value too small, Min Table Output used - EXPECT_DOUBLE_EQ(2.5, CurveManager::CurveValue(1, 4)); // Value too large, Max Table Output used - EXPECT_DOUBLE_EQ(1.438095238095238, CurveManager::CurveValue(1, 1.0)); // In-range value - - CurveManager::SetCurveOutputMinMaxValues(1, error, 1.1, 2.6); - EXPECT_FALSE(error); - EXPECT_DOUBLE_EQ(1.1, CurveManager::CurveValue(1, 0.3)); // Value too small, new Min Table Output used - EXPECT_DOUBLE_EQ(2.6, CurveManager::CurveValue(1, 4)); // Value too large, new Max Table Output used - EXPECT_FALSE(has_err_output()); -} - -TEST_F(EnergyPlusFixture, Tables_OneIndependentVariable_Lagrange_UserDidntEnterMinMaxXY) -{ - - std::string const idf_objects = delimited_string({"Table:OneIndependentVariable,", - "TestTableOverwrite, !- Name", - "Linear, !- Curve Type", - "LAGRANGEINTERPOLATIONLINEAREXTRAPOLATION, !- Interpolation Method", - ", !- Minimum Value of X", - ", !- Maximum Value of X", - ", !- Minimum Table Output", - ", !- Maximum Table Output", - "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Output Unit Type", - ", !- Normalization Reference", - "0.21, !- X Value #1", - "0, !- Output Value #1", - "1, !- X Value #2", - "2, !- Output Value #2", - "2, !- X Value #3", - "2, !- Output Value #3", - "3, !- X Value #4", - "3, !- Output Value #4", - "4, !- X Value #5", - "4, !- Output Value #5", - "4.93, !- X Value #6", - "2; !- Output Value #6"}); - - ASSERT_TRUE(process_idf(idf_objects)); - - EXPECT_EQ(0, CurveManager::NumCurves); - CurveManager::GetCurveInput(); - CurveManager::GetCurvesInputFlag = false; - ASSERT_EQ(1, CurveManager::NumCurves); - - // Linear curve type, specified min/max - EXPECT_EQ(1, CurveManager::PerfCurve(1).NumDims); - EXPECT_EQ("TESTTABLEOVERWRITE", CurveManager::GetCurveName(1)); - EXPECT_EQ(1, CurveManager::GetCurveIndex("TESTTABLEOVERWRITE")); - bool error = false; - int index = CurveManager::GetCurveCheck("TESTTABLEOVERWRITE", error, "TEST"); - EXPECT_FALSE(error); - EXPECT_EQ(1, index); - Real64 min, max; - CurveManager::GetCurveMinMaxValues(1, min, max); - EXPECT_EQ(0.21, min); // Minimum Value of X in data set - EXPECT_EQ(4.93, max); // Maximum Value of X in data set - EXPECT_EQ("Table:OneIndependentVariable", CurveManager::PerfCurve(1).ObjectType); - - EXPECT_DOUBLE_EQ(0.73417721518987344, CurveManager::CurveValue(1, 0.5)); // Value in range, no Min Table Output used, show actual value - Real64 curvOut = ((0.5 - 0.21) / (1.0 - 0.21)) * (2.0 - 0.0); // Check above: delta X divided by X range multiplied by Y range - EXPECT_DOUBLE_EQ(0.73417721518987344, curvOut); // Compare interpolated hand calc - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(1, 4)); // Value right at 4,4. Output = 4 - EXPECT_DOUBLE_EQ(2.0, CurveManager::CurveValue(1, 1.0)); // Value right at 1,2. Output = 2 - EXPECT_DOUBLE_EQ(2.753, CurveManager::CurveValue(1, 2.753)); // Value in between 2,2 and 3,3. Output = 2.753 - - CurveManager::SetCurveOutputMinMaxValues(1, error, 1.1, 2.6); - EXPECT_FALSE(error); - EXPECT_DOUBLE_EQ(1.1, CurveManager::CurveValue(1, 0.5)); // Value too small, new Min Table Output used - EXPECT_DOUBLE_EQ(2.6, CurveManager::CurveValue(1, 4)); // Value too large, new Max Table Output used - EXPECT_FALSE(has_err_output()); -} - -TEST_F(EnergyPlusFixture, Tables_TwoIndependentVariable_EvaluateToLimits_NotAndUserEnteredMinMaxXY) -{ - - std::string const idf_objects = delimited_string({ - - "Table:TwoIndependentVariables,", - " TWOVARS, !- Name", - " BiQuadratic, !- Curve Type", - " EvaluateCurveToLimits, !- Interpolation Method", - " 12.77778, !- Minimum Value of X", - " 23.88889, !- Maximum Value of X", - " 18.0, !- Minimum Value of Y", - " 46.11111, !- Maximum Value of Y", - " 15000, !- Minimum Table Output", - " 40000, !- Maximum Table Output", - " Temperature, !- Input Unit Type for X", - " Temperature, !- Input Unit Type for Y", - " Dimensionless, !- Output Unit Type", - " 25000.0, !- Normalization Reference", - " , !- External File Name", - " 12.77778, !- X Value #1", - " 36, !- Y Value #1", - " 19524.15032, !- Output Value #1", - " 12.77778, !- X Value #2", - " 42, !- Y Value #2", - " 18167.25518, !- Output Value #2", - " 12.77778, !- X Value #3", - " 46.11111, !- Y Value #3", - " 16810.36004, !- Output Value #3", - " 19.44448943, !- ", - " 41, !- ", - " 23375.08713, !- ", - " 19.44448943, !- ", - " 41, !- ", - " 22686.72090, !- ", - " 19.44448943, !- ", - " 46.11111, !- ", - " 21998.35468; !- ", - - "Table:TwoIndependentVariables,", - " TWOVARS2, !- Name", - " BiQuadratic, !- Curve Type", - " EvaluateCurveToLimits, !- Interpolation Method", - " , !- Minimum Value of X", - " , !- Maximum Value of X", - " , !- Minimum Value of Y", - " , !- Maximum Value of Y", - " , !- Minimum Table Output", - " , !- Maximum Table Output", - " Temperature, !- Input Unit Type for X", - " Temperature, !- Input Unit Type for Y", - " Dimensionless, !- Output Unit Type", - " 25000.0, !- Normalization Reference", - " , !- External File Name", - " 12.77778, !- X Value #1", - " 36, !- Y Value #1", - " 19524.15032, !- Output Value #1", - " 12.77778, !- X Value #2", - " 42, !- Y Value #2", - " 18167.25518, !- Output Value #2", - " 12.77778, !- X Value #3", - " 46.11111, !- Y Value #3", - " 16810.36004, !- Output Value #3", - " 19.44448943, !- ", - " 41, !- ", - " 23375.08713, !- ", - " 19.44448943, !- ", - " 41, !- ", - " 22686.72090, !- ", - " 19.44448943, !- ", - " 46.11111, !- ", - " 21998.35468; !- "}); - - ASSERT_TRUE(process_idf(idf_objects)); - - EXPECT_EQ(0, CurveManager::NumCurves); - CurveManager::GetCurveInput(); - CurveManager::GetCurvesInputFlag = false; - ASSERT_EQ(2, CurveManager::NumCurves); - - // BiQuadratic curve type, specified min/max - EXPECT_EQ(2, CurveManager::PerfCurve(1).NumDims); - EXPECT_EQ("TWOVARS", CurveManager::GetCurveName(1)); - EXPECT_EQ(1, CurveManager::GetCurveIndex("TWOVARS")); - bool error = false; - int index = CurveManager::GetCurveCheck("TWOVARS", error, "TEST"); - EXPECT_FALSE(error); - EXPECT_EQ(1, index); - Real64 min1, max1, min2, max2; - CurveManager::GetCurveMinMaxValues(1, min1, max1, min2, max2); - EXPECT_EQ(12.77778, min1); // Minimum Value of X - EXPECT_EQ(23.88889, max1); // Maximum Value of X - EXPECT_EQ(18.0, min2); // Minimum Value of Y - EXPECT_EQ(46.11111, max2); // Maximum Value of Y - EXPECT_EQ((15000.0 / 25000.0), CurveManager::PerfCurve(1).CurveMin); - EXPECT_EQ((40000.0 / 25000.0), CurveManager::PerfCurve(1).CurveMax); - EXPECT_EQ("Table:TwoIndependentVariables", CurveManager::PerfCurve(1).ObjectType); - - EXPECT_GT(CurveManager::CurveValue(1, 10.0, 15.0), - (15000.0 / 25000.0)); // both values too small, Minimum Value of X (12.8) and Y (18) are used, Min Table Output is not used - Real64 Coeff1 = CurveManager::PerfCurve(1).Coeff1; - Real64 Coeff2 = CurveManager::PerfCurve(1).Coeff2; - Real64 Coeff3 = CurveManager::PerfCurve(1).Coeff3; - Real64 Coeff4 = CurveManager::PerfCurve(1).Coeff4; - Real64 Coeff5 = CurveManager::PerfCurve(1).Coeff5; - Real64 Coeff6 = CurveManager::PerfCurve(1).Coeff6; - - // calculate output as if entered data was valid - Real64 curveOut = Coeff1 + (Coeff2 * 10.0) + (Coeff3 * 10.0 * 10.0) + (Coeff4 * 15.0) + (Coeff5 * 15.0 * 15.0) + (Coeff6 * 10.0 * 15.0); - // entered data was not valid since 10 < min X1 and 15 < min X2 so expect result to be greater than curveOut - EXPECT_LT(curveOut, CurveManager::CurveValue(1, 10.0, 15.0)); // result of using less than minimum X1 and X2 limits - - // calculate new value using min X1 and min X2, this value should match curve output - Real64 curveOutActual = - Coeff1 + (Coeff2 * 12.77778) + (Coeff3 * 12.77778 * 12.77778) + (Coeff4 * 18.0) + (Coeff5 * 18.0 * 18.0) + (Coeff6 * 12.77778 * 18.0); - EXPECT_NEAR(0.7662161, curveOutActual, 0.0000001); // result of using less than minimum X1 and X2 limits - EXPECT_NEAR(curveOutActual, CurveManager::CurveValue(1, 10.0, 15.0), 0.000001); // result of using less than minimum X1 and X2 limits - EXPECT_NEAR(curveOutActual, CurveManager::CurveValue(1, 12.0, 16.0), - 0.000001); // result shouldn't change as long as inputs are below minimum X1 and X2 limits - curveOutActual = Coeff1 + (Coeff2 * 23.88889) + (Coeff3 * 23.88889 * 23.88889) + (Coeff4 * 46.11111) + (Coeff5 * 46.11111 * 46.11111) + - (Coeff6 * 23.88889 * 46.11111); - EXPECT_LT(CurveManager::CurveValue(1, 40.0, 50.0), - (40000.0 / 25000.0)); // both values too large, Maximum Value of X1 (23.8) and X2 (46.1) are used, Max Table Output is too high - EXPECT_NEAR(curveOutActual, CurveManager::CurveValue(1, 40.0, 50.0), 0.000001); // result of using maximum X1 and X2 limits - EXPECT_NEAR(curveOutActual, CurveManager::CurveValue(1, 25.0, 47.0), - 0.000001); // result shouldn't change as long as inputs are above maximum X and Y limits - EXPECT_NEAR(0.91625045, curveOutActual, 0.00000001); // result is actually less than max ouput since a regression was performed - - // artificially change CurveMin And CurveMax and repeat limit test - CurveManager::PerfCurve(1).CurveMin = 0.8; // 0.8 is same as entering 20000 for Minimum Table Output - CurveManager::PerfCurve(1).CurveMax = 0.9; // 0.9 is same as entering 22500 for Maximum Table Output - EXPECT_EQ(0.8, CurveManager::CurveValue(1, 10.0, 15.0)); // result of using minimum X1 and X2 limits when minimum output > result - EXPECT_EQ(0.9, CurveManager::CurveValue(1, 40.0, 50.0)); // result of using maximum X1 and X2 limits when maximum output < result - - // Evaluate 2nd performance curve - // BiQuadratic curve type, no specified min/max - EXPECT_EQ(2, CurveManager::PerfCurve(1).NumDims); - EXPECT_EQ("TWOVARS2", CurveManager::GetCurveName(2)); - EXPECT_EQ(2, CurveManager::GetCurveIndex("TWOVARS2")); - error = false; - index = CurveManager::GetCurveCheck("TWOVARS2", error, "TEST"); - EXPECT_FALSE(error); - EXPECT_EQ(2, index); - - CurveManager::GetCurveMinMaxValues(2, min1, max1, min2, max2); - EXPECT_EQ(12.77778, min1); // Minimum Value of X defaults to lower limit specified in table data - EXPECT_EQ(19.44448943, max1); // Maximum Value of X defaults to upper limit specified in table data - EXPECT_EQ(36.0, min2); // Minimum Value of Y defaults to lower limit specified in table data - EXPECT_EQ(46.11111, max2); // Maximum Value of Y defaults to upper limit specified in table data - - // curve min/max output were not entered by user. Expect min/max equal to 0 since they were not initilized - EXPECT_NEAR(0.0, CurveManager::PerfCurve(2).CurveMin, 0.0000000001); - EXPECT_FALSE(CurveManager::PerfCurve(2).CurveMinPresent); // min won't be used since value is NOT present - EXPECT_NEAR(0.0, CurveManager::PerfCurve(2).CurveMax, 0.0000000001); - EXPECT_FALSE(CurveManager::PerfCurve(2).CurveMaxPresent); // max won't be used since value is NOT present - EXPECT_EQ("Table:TwoIndependentVariables", CurveManager::PerfCurve(2).ObjectType); - - EXPECT_GT(CurveManager::CurveValue(2, 10.0, 15.0), - (15000.0 / 25000.0)); // both values too small, Minimum Value of X1 (12.8) and X2 (18) are used, Min Table Output is not present - EXPECT_NEAR(0.780966, CurveManager::CurveValue(2, 10.0, 15.0), 0.0000001); // result of using minimum X1 and X2 limits - EXPECT_NEAR(0.780966, CurveManager::CurveValue(2, 12.0, 16.0), - 0.0000001); // result shouldn't change as long as inputs are below minimum X1 and X2 limits - curveOutActual = Coeff1 + (Coeff2 * 19.44448943) + (Coeff3 * 19.44448943 * 19.44448943) + (Coeff4 * 46.11111) + (Coeff5 * 46.11111 * 46.11111) + - (Coeff6 * 19.44448943 * 46.11111); - EXPECT_LT(CurveManager::CurveValue(2, 40.0, 50.0), - (23375.08713 / 25000.0)); // both values too large, Maximum Value of X1 (23.8) and X2 (46.1) are used, Max Table Output is not present - EXPECT_NEAR(curveOutActual, CurveManager::CurveValue(2, 40.0, 50.0), 0.000001); // result of using maximum X1 and X2 limits - EXPECT_NEAR(curveOutActual, CurveManager::CurveValue(2, 25.0, 47.0), - 0.000001); // result shouldn't change as long as inputs are above maximum X1 and X2 limits - - // test capacity entered by user is same as calculated - EXPECT_NEAR(19524.15032, (CurveManager::CurveValue(2, 12.77778, 36.0) * 25000.0), 0.1); // uses data from first entry in table - - // artificially change CurveMin And CurveMax to be above min and below max table data and repeat limit test - CurveManager::PerfCurve(2).CurveMin = 0.8; // 0.8 is same as entering 20000 for Minimum Table Output - CurveManager::PerfCurve(2).CurveMinPresent = true; // as if user did enter input data - CurveManager::PerfCurve(2).CurveMax = 0.87; // 0.87 is same as entering 21750 for Maximum Table Output - CurveManager::PerfCurve(2).CurveMaxPresent = true; // as if user did enter input data - - EXPECT_EQ(0.8, CurveManager::CurveValue(2, 10.0, 15.0)); // result of using minimum X1 and X2 table data limits, Curve Minimum Output > result - EXPECT_EQ(0.87, CurveManager::CurveValue(2, 40.0, 50.0)); // result of using maximum X1 and X2 table data limits, Curve Maximum Output < result - - // artificially change CurveMin And CurveMax to be below min and above max table data and repeat limit test - CurveManager::PerfCurve(2).CurveMin = 0.5; // 0.5 is same as entering 12500 for Minimum Table Output - CurveManager::PerfCurve(2).CurveMax = 1.2; // 1.2 is same as entering 30000 for Maximum Table Output - // result is lower than before when using 0.8 as Minimum Table Output - EXPECT_LT( - 0.5, CurveManager::CurveValue(2, 10.0, 15.0)); // new result is lower than 0.8 but not lower than 0.5 since output is limited by X1 X2 min/max - EXPECT_GT(0.8, CurveManager::CurveValue(2, 10.0, 15.0)); - EXPECT_NEAR(0.780966, CurveManager::CurveValue(2, 10.0, 15.0), 0.000001); - // result is higher than before when using 0.87 as Maximum Table Output - EXPECT_LT(0.87, CurveManager::CurveValue( - 2, 40.0, 50.0)); // new result is higher than 0.87 but not higher than 1.2 since output is limited by X1 X2 min/max - EXPECT_GT(1.2, CurveManager::CurveValue(2, 40.0, 50.0)); - EXPECT_NEAR(0.8799342, CurveManager::CurveValue(2, 40.0, 50.0), 0.0000001); - - // if CurveMin And CurveMax are blank, result should be same as above - CurveManager::PerfCurve(2).CurveMinPresent = false; // as if user did not enter input data - CurveManager::PerfCurve(2).CurveMaxPresent = false; // as if user did not enter input data - EXPECT_LT(0.5, CurveManager::CurveValue(2, 10.0, 15.0)); // curve extrapolates up to - EXPECT_GT(1.2, CurveManager::CurveValue(2, 40.0, 50.0)); // result of using maximum X and Y limits when maximum output < result - - // if user actually enters min/max values to extrapolate curve, then allow extrapolation - CurveManager::PerfCurve(2).Var1Min = 10.0; - CurveManager::PerfCurve(2).Var1Max = 40.0; - CurveManager::PerfCurve(2).Var2Min = 15.0; - CurveManager::PerfCurve(2).Var2Max = 50.0; - Real64 extrapolatedCapacity = CurveManager::CurveValue(2, 10.0, 15.0) * 25000.0; - EXPECT_LT(extrapolatedCapacity, 16810.36004); // curve extrapolates lower than minimum Y based on table data - - extrapolatedCapacity = CurveManager::CurveValue(2, 40.0, 50.0) * 25000.0; - Real64 minY = 16810.36004 / 25000.0; - Real64 maxY = 23375.08713 / 25000.0; - - EXPECT_LT(CurveManager::CurveValue(2, 40.0, 50.0), - maxY); // results show dangers of extrapolation, large X1 and X2 gives output lower than max Y table data - EXPECT_LT(CurveManager::CurveValue(2, 40.0, 50.0), - minY); // results show dangers of extrapolation, large X1 and X2 gives output lower than min Y table data - Coeff1 = CurveManager::PerfCurve(2).Coeff1; - Coeff2 = CurveManager::PerfCurve(2).Coeff2; - Coeff3 = CurveManager::PerfCurve(2).Coeff3; - Coeff4 = CurveManager::PerfCurve(2).Coeff4; - Coeff5 = CurveManager::PerfCurve(2).Coeff5; - Coeff6 = CurveManager::PerfCurve(2).Coeff6; - curveOutActual = Coeff1 + (Coeff2 * 40.0) + (Coeff3 * 40.0 * 40.0) + (Coeff4 * 50.0) + (Coeff5 * 50.0 * 50.0) + (Coeff6 * 40.0 * 50.0); - EXPECT_NEAR((curveOutActual * 25000.0), extrapolatedCapacity, 0.001); // result of extrapolation is value less than minimum table data - EXPECT_NEAR(9358.378, (curveOutActual * 25000.0), 0.001); // result of extrapolation is value less than minimum table data -} - -TEST_F(EnergyPlusFixture, Tables_TwoIndependentVariable_Linear_UserDidNotEnterMinMaxXY) -{ - - std::string const idf_objects = delimited_string({"Table:TwoIndependentVariables,", - "TestTableMinMax, !- Name", - "QuadraticLinear, !- Curve Type", - "LinearInterpolationOfTable, !- Interpolation Method", - ", !- Minimum Value of X", - ", !- Maximum Value of X", - ", !- Minimum Value of Y", - ", !- Maximum Value of Y", - ", !- Minimum Table Output", - ", !- Maximum Table Output", - "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Input Unit Type for Y", - "Dimensionless, !- Output Unit Type", - ", !- Normalization Reference", - " , !- External File Name", - "0, !- X Value #1", - "1, !- Y Value #1", - "0, !- Output Value #1", - "1, !- X Value #2", - "1, !- Y Value #2", - "2, !- Output Value #2", - "2, !- X Value #3", - "1, !- Y Value #3", - "2, !- Output Value #3", - "3, !- X Value #4", - "1, !- Y Value #4", - "3, !- Output Value #4", - "4, !- X Value #5", - "1, !- Y Value #5", - "4, !- Output Value #5", - "5, !- X Value #6", - "1, !- Y Value #6", - "2, !- Output Value #6", - "0, !- X Value #7", - "2, !- Y Value #7", - "0, !- Output Value #7", - "1, !- X Value #8", - "2, !- Y Value #8", - "2, !- Output Value #8", - "2, !- X Value #9", - "2, !- Y Value #9", - "2, !- Output Value #9", - "3, !- X Value #10", - "2, !- Y Value #10", - "3, !- Output Value #10", - "4, !- X Value #11", - "2, !- Y Value #11", - "4, !- Output Value #11", - "5, !- X Value #12", - "2, !- Y Value #12", - "2; !- Output Value #12"}); - - ASSERT_TRUE(process_idf(idf_objects)); - - EXPECT_EQ(0, CurveManager::NumCurves); - CurveManager::GetCurveInput(); - CurveManager::GetCurvesInputFlag = false; - ASSERT_EQ(1, CurveManager::NumCurves); - - // QuadraticLinear curve type, no min/max for IVs - EXPECT_EQ(2, CurveManager::PerfCurve(1).NumDims); - EXPECT_EQ("TESTTABLEMINMAX", CurveManager::GetCurveName(1)); - EXPECT_EQ(1, CurveManager::GetCurveIndex("TESTTABLEMINMAX")); - bool error = false; - int index = CurveManager::GetCurveCheck("TESTTABLEMINMAX", error, "TEST"); - EXPECT_FALSE(error); - EXPECT_EQ(1, index); - Real64 min1, max1, min2, max2; - CurveManager::GetCurveMinMaxValues(1, min1, max1, min2, max2); - EXPECT_EQ(0.0, min1); // CurveValue will test against lower boundary and use aray minimum - EXPECT_EQ(5.0, max1); // CurveValue will test against upper boundary and use aray maximum - EXPECT_EQ(1.0, min2); // CurveValue will test against lower boundary and use aray minimum - EXPECT_EQ(2.0, max2); // CurveValue will test against upper boundary and use aray maximum - EXPECT_EQ("Table:TwoIndependentVariables", CurveManager::PerfCurve(1).ObjectType); - - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(1, 0, 1.5)); // In-range value - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(1, 0.5, 1.5)); // In-range value - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(1, -10.0)); // value less than Minimum x - EXPECT_DOUBLE_EQ(2.0, CurveManager::CurveValue(1, 5000)); // value greater than Maximum x - - CurveManager::SetCurveOutputMinMaxValues(1, error, 0.5, 1.0); - EXPECT_FALSE(error); - EXPECT_DOUBLE_EQ(0.5, CurveManager::CurveValue(1, 0, 1.5)); // In-range value - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(1, 5, 1.5)); // In-range value - - EXPECT_FALSE(has_err_output()); -} - -TEST_F(EnergyPlusFixture, Tables_TwoIndependentVariable_Linear_UserEntersInAndOutOfBoundsMinMaxXY) -{ - - std::string const idf_objects = - delimited_string({"Table:TwoIndependentVariables,", - "TestTableMinMax, !- Name", - "QuadraticLinear, !- Curve Type", - "LinearInterpolationOfTable, !- Interpolation Method", - "-1.0, !- Minimum Value of X", // these values exceed the values in the data set - "6.0, !- Maximum Value of X", - "-0.5, !- Minimum Value of Y", - "4.5, !- Maximum Value of Y", - ", !- Minimum Table Output", - ", !- Maximum Table Output", - "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Input Unit Type for Y", - "Dimensionless, !- Output Unit Type", - ", !- Normalization Reference", - " , !- External File Name", - "0, !- X Value #1", - "1, !- Y Value #1", - "0, !- Output Value #1", - "1, !- X Value #2", - "1, !- Y Value #2", - "2, !- Output Value #2", - "2, !- X Value #3", - "1, !- Y Value #3", - "2, !- Output Value #3", - "3, !- X Value #4", - "1, !- Y Value #4", - "3, !- Output Value #4", - "4, !- X Value #5", - "1, !- Y Value #5", - "4, !- Output Value #5", - "5, !- X Value #6", - "1, !- Y Value #6", - "2, !- Output Value #6", - "0, !- X Value #7", - "2, !- Y Value #7", - "0, !- Output Value #7", - "1, !- X Value #8", - "2, !- Y Value #8", - "2, !- Output Value #8", - "2, !- X Value #9", - "2, !- Y Value #9", - "2, !- Output Value #9", - "3, !- X Value #10", - "2, !- Y Value #10", - "3, !- Output Value #10", - "4, !- X Value #11", - "2, !- Y Value #11", - "4, !- Output Value #11", - "5, !- X Value #12", - "2, !- Y Value #12", - "2; !- Output Value #12", - - "Table:TwoIndependentVariables,", - "TestTableMinMax2, !- Name", - "QuadraticLinear, !- Curve Type", - "LinearInterpolationOfTable, !- Interpolation Method", - "1.0, !- Minimum Value of X", // these values are within the values in the data set - "4.0, !- Maximum Value of X", - "1.5, !- Minimum Value of Y", - "3.5, !- Maximum Value of Y", - ", !- Minimum Table Output", - ", !- Maximum Table Output", - "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Input Unit Type for Y", - "Dimensionless, !- Output Unit Type", - ", !- Normalization Reference", - " , !- External File Name", - "0, !- X Value #1", - "1, !- Y Value #1", - "0, !- Output Value #1", - "1, !- X Value #2", - "1, !- Y Value #2", - "2, !- Output Value #2", - "2, !- X Value #3", - "1, !- Y Value #3", - "2, !- Output Value #3", - "3, !- X Value #4", - "1, !- Y Value #4", - "3, !- Output Value #4", - "4, !- X Value #5", - "1, !- Y Value #5", - "4, !- Output Value #5", - "5, !- X Value #6", - "1, !- Y Value #6", - "2, !- Output Value #6", - "0, !- X Value #7", - "2, !- Y Value #7", - "0, !- Output Value #7", - "1, !- X Value #8", - "2, !- Y Value #8", - "2, !- Output Value #8", - "2, !- X Value #9", - "2, !- Y Value #9", - "2, !- Output Value #9", - "3, !- X Value #10", - "2, !- Y Value #10", - "3, !- Output Value #10", - "4, !- X Value #11", - "2, !- Y Value #11", - "4, !- Output Value #11", - "5, !- X Value #12", - "2, !- Y Value #12", - "2; !- Output Value #12"}); - - ASSERT_TRUE(process_idf(idf_objects)); - - EXPECT_EQ(0, CurveManager::NumCurves); - CurveManager::GetCurveInput(); - CurveManager::GetCurvesInputFlag = false; - ASSERT_EQ(2, CurveManager::NumCurves); - - // QuadraticLinear curve type - EXPECT_EQ(2, CurveManager::PerfCurve(1).NumDims); - EXPECT_EQ("TESTTABLEMINMAX", CurveManager::GetCurveName(1)); - EXPECT_EQ(1, CurveManager::GetCurveIndex("TESTTABLEMINMAX")); - bool error = false; - int index = CurveManager::GetCurveCheck("TESTTABLEMINMAX", error, "TEST"); - EXPECT_FALSE(error); - EXPECT_EQ(1, index); - Real64 min1, max1, min2, max2; - CurveManager::GetCurveMinMaxValues(1, min1, max1, min2, max2); - EXPECT_EQ(0.0, min1); // user entered value is retained, however, CurveValue will test against lower array boundary and use aray minimum - EXPECT_EQ(5.0, max1); // user entered value is retained, however, CurveValue will test against upper array boundary and use aray maximum - EXPECT_EQ(1.0, min2); // user entered value is retained, however, CurveValue will test against lower array boundary and use aray minimum - EXPECT_EQ(2, max2); // user entered value is retained, however, CurveValue will test against upper array boundary and use aray maximum - EXPECT_EQ("Table:TwoIndependentVariables", CurveManager::PerfCurve(1).ObjectType); - - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(1, 0, 1.5)); // In-range value - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(1, 0.5, 1.5)); // In-range value - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(1, -10.0)); // value less than Minimum x - EXPECT_DOUBLE_EQ(2.0, CurveManager::CurveValue(1, 5000)); // value greater than Maximum x - - CurveManager::SetCurveOutputMinMaxValues(1, error, 0.5, 1.0); - EXPECT_FALSE(error); - EXPECT_DOUBLE_EQ(0.5, CurveManager::CurveValue(1, 0, 1.5)); // In-range value - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(1, 5, 1.5)); // In-range value - - EXPECT_TRUE(has_err_output()); - - // Test 2nd table with tighter min/max X Y limits than data set - - // QuadraticLinear curve type - EXPECT_EQ(2, CurveManager::PerfCurve(2).NumDims); - EXPECT_EQ("TESTTABLEMINMAX2", CurveManager::GetCurveName(2)); - EXPECT_EQ(2, CurveManager::GetCurveIndex("TESTTABLEMINMAX2")); - error = false; - index = CurveManager::GetCurveCheck("TESTTABLEMINMAX2", error, "TEST"); - EXPECT_FALSE(error); - EXPECT_EQ(2, index); - - CurveManager::GetCurveMinMaxValues(2, min1, max1, min2, max2); - EXPECT_EQ(1.0, min1); // user entered value is retained and used since it's greater than lower array boundary - EXPECT_EQ(4.0, max1); // user entered value is retained and used since it's less than upper array boundary - EXPECT_EQ(1.5, min2); // user entered value is retained and used since it's greater than lower array boundary - EXPECT_EQ(2.0, max2); // user entered value is NOT retained since it's greater than upper array boundary - EXPECT_EQ("Table:TwoIndependentVariables", CurveManager::PerfCurve(2).ObjectType); - - EXPECT_DOUBLE_EQ(2.0, CurveManager::CurveValue(2, 0, 1.5)); // In-range value, result is based on tighten Minimum X Value limit - EXPECT_DOUBLE_EQ(2.0, CurveManager::CurveValue(2, 0.5, 1.5)); // In-range value, result is based on tighten Maximum X Value limit - EXPECT_DOUBLE_EQ(2.0, CurveManager::CurveValue(2, -10.0, 1.5)); // value less than Minimum x, y value in range - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(2, 5000, 1.5)); // value greater than Maximum x, y value in range - - CurveManager::SetCurveOutputMinMaxValues(2, error, 0.5, 1.0); - EXPECT_FALSE(error); - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(2, 0, 1.5)); // In-range value - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(2, 5, 1.5)); // In-range value - - EXPECT_FALSE(has_err_output()); -} - -TEST_F(EnergyPlusFixture, Tables_OneIndependentVariable_Linear_EvaluateCurveTypes) -{ - std::string const idf_objects = delimited_string({ - - "Table:OneIndependentVariable,", - "TestTableMinMax, !- Name", - "Linear, !- Curve Type", - "LinearInterpolationOfTable, !- Interpolation Method", - ", !- Minimum Value of X", - ", !- Maximum Value of X", - ", !- Minimum Table Output", - ", !- Maximum Table Output", - "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Output Unit Type", - ", !- Normalization Reference", - "0, !- X Value #1", - "0, !- Output Value #1", - "4, !- X Value #2", - "4; !- Output Value #2", - - "Table:OneIndependentVariable,", - "TestTableMinMax2, !- Name", - "Quadratic, !- Curve Type", - "LinearInterpolationOfTable, !- Interpolation Method", - ", !- Minimum Value of X", - ", !- Maximum Value of X", - ", !- Minimum Table Output", - ", !- Maximum Table Output", - "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Output Unit Type", - ", !- Normalization Reference", - "0, !- X Value #1", - "0, !- Output Value #1", - "1, !- X Value #2", - "1, !- Output Value #2", - "4, !- X Value #3", - "4; !- Output Value #3", - - "Table:OneIndependentVariable,", - "TestTableMinMax3, !- Name", - "Cubic, !- Curve Type", - "LinearInterpolationOfTable, !- Interpolation Method", - ", !- Minimum Value of X", - ", !- Maximum Value of X", - ", !- Minimum Table Output", - ", !- Maximum Table Output", - "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Output Unit Type", - ", !- Normalization Reference", - "0, !- X Value #1", - "0, !- Output Value #1", - "1, !- X Value #2", - "1, !- Output Value #2", - "3, !- X Value #3", - "3, !- Output Value #3", - "4, !- X Value #4", - "4; !- Output Value #4", - - "Table:OneIndependentVariable,", - "TestTableMinMax4, !- Name", - "Quartic, !- Curve Type", - "LinearInterpolationOfTable, !- Interpolation Method", - ", !- Minimum Value of X", - ", !- Maximum Value of X", - ", !- Minimum Table Output", - ", !- Maximum Table Output", - "Dimensionless, !- Input Unit Type for X", - "Dimensionless, !- Output Unit Type", - ", !- Normalization Reference", - "0, !- X Value #1", - "0, !- Output Value #1", - "1, !- X Value #2", - "1, !- Output Value #2", - "2, !- X Value #3", - "2, !- Output Value #3", - "3, !- X Value #4", - "3, !- Output Value #4", - "4, !- X Value #5", - "4; !- Output Value #5"}); - - ASSERT_TRUE(process_idf(idf_objects)); - EXPECT_EQ(0, CurveManager::NumCurves); - CurveManager::GetCurveInput(); - CurveManager::GetCurvesInputFlag = false; - ASSERT_EQ(4, CurveManager::NumCurves); - - // all curve types should show linear output (higher order coefficients should = 0) - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(1, 0)); // In-range value - EXPECT_DOUBLE_EQ(0.5, CurveManager::CurveValue(1, 0.5)); // In-range value - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(1, 1)); // In-range value - EXPECT_DOUBLE_EQ(1.75, CurveManager::CurveValue(1, 1.75)); // In-range value - EXPECT_DOUBLE_EQ(2.25, CurveManager::CurveValue(1, 2.25)); // In-range value - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(1, 4)); // In-range value - - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(2, 0)); // In-range value - EXPECT_DOUBLE_EQ(0.5, CurveManager::CurveValue(2, 0.5)); // In-range value - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(2, 1)); // In-range value - EXPECT_DOUBLE_EQ(1.75, CurveManager::CurveValue(2, 1.75)); // In-range value - EXPECT_DOUBLE_EQ(2.25, CurveManager::CurveValue(2, 2.25)); // In-range value - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(2, 4)); // In-range value - - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(3, 0)); // In-range value - EXPECT_DOUBLE_EQ(0.5, CurveManager::CurveValue(3, 0.5)); // In-range value - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(3, 1)); // In-range value - EXPECT_DOUBLE_EQ(1.75, CurveManager::CurveValue(3, 1.75)); // In-range value - EXPECT_DOUBLE_EQ(2.25, CurveManager::CurveValue(3, 2.25)); // In-range value - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(3, 4)); // In-range value - - EXPECT_DOUBLE_EQ(0.0, CurveManager::CurveValue(4, 0)); // In-range value - EXPECT_DOUBLE_EQ(0.5, CurveManager::CurveValue(4, 0.5)); // In-range value - EXPECT_DOUBLE_EQ(1.0, CurveManager::CurveValue(4, 1)); // In-range value - EXPECT_DOUBLE_EQ(1.75, CurveManager::CurveValue(4, 1.75)); // In-range value - EXPECT_DOUBLE_EQ(2.25, CurveManager::CurveValue(4, 2.25)); // In-range value - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(4, 4)); // In-range value - - // curves should not extrapolate - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(1, 6)); // Out-of-range value - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(2, 6)); // Out-of-range value - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(3, 6)); // Out-of-range value - EXPECT_DOUBLE_EQ(4.0, CurveManager::CurveValue(4, 6)); // Out-of-range value - - EXPECT_FALSE(has_err_output()); -} - -TEST_F(EnergyPlusFixture, TableLookupObject_ExcessArguments_WarningTest) -{ - - int NumOfTables = 5; - - PerfCurve.allocate(NumOfTables); - TableLookup.allocate(NumOfTables); - - // Table 1 One ind variable - PerfCurve(1).TableIndex = 1; - PerfCurve(1).Var1Max = 20.0; - PerfCurve(1).Var1Min = 0.0; - PerfCurve(1).Var2Max = 0.0; - PerfCurve(1).Var2Min = 0.0; - PerfCurve(1).CurveType = Linear; - PerfCurve(1).NumDims = 1; - PerfCurve(1).ObjectType = "Table:OneIndependentVariable"; - PerfCurve(1).Name = "Table 1"; - TableLookup(1).NumX1Vars = 2; - TableLookup(1).InterpolationOrder = 2; - TableLookup(1).NumX1Vars = 2; - TableLookup(1).X1Var.allocate(TableLookup(1).NumX1Vars); - TableLookup(1).X1Var(1) = 0.0; - TableLookup(1).X1Var(2) = 1.0; - TableLookup(1).TableLookupZData.allocate(1, 1, 1, 1, 1, 2); - TableLookup(1).TableLookupZData(1, 1, 1, 1, 1, 1) = 0.0; - TableLookup(1).TableLookupZData(1, 1, 1, 1, 1, 2) = 1.0; - - TableLookupObject(1, 1.0, 0.0); - - std::string const error_string = delimited_string({ - " ** Warning ** TableLookupObject: Table:OneIndependentVariable\"Table 1\"", - " ** ~~~ ** ...Excess number of independent variables (2) passed to subroutine when only 1 is required. The excess arguments are " - "ignored.", - }); - - EXPECT_TRUE(compare_err_stream(error_string, true)); - - // Table 2 Two ind variable - PerfCurve(2).TableIndex = 2; - PerfCurve(2).Var1Max = 20.0; - PerfCurve(2).Var1Min = 0.0; - PerfCurve(2).Var2Max = 20.0; - PerfCurve(2).Var2Min = 0.0; - PerfCurve(2).Var3Max = 0.0; - PerfCurve(2).Var3Min = 0.0; - PerfCurve(2).CurveType = Linear; - PerfCurve(2).NumDims = 2; - PerfCurve(2).ObjectType = "Table:TwoIndependentVariables"; - PerfCurve(2).Name = "Table 2"; - TableLookup(2).NumX1Vars = 2; - TableLookup(2).NumX2Vars = 1; - TableLookup(2).InterpolationOrder = 2; - TableLookup(2).X1Var.allocate(TableLookup(2).NumX1Vars); - TableLookup(2).X2Var.allocate(TableLookup(2).NumX2Vars); - TableLookup(2).X1Var(1) = 0.0; - TableLookup(2).X1Var(2) = 1.0; - TableLookup(2).X2Var(1) = 1.0; - TableLookup(2).TableLookupZData.allocate(1, 1, 1, 1, 1, 2); - TableLookup(2).TableLookupZData(1, 1, 1, 1, 1, 1) = 0.0; - TableLookup(2).TableLookupZData(1, 1, 1, 1, 1, 2) = 1.0; - - TableLookupObject(2, 1.0, 1.0, 0.0); - - std::string const error_string1 = delimited_string({ - " ** Warning ** TableLookupObject: Table:TwoIndependentVariables\"Table 2\"", - " ** ~~~ ** ...Excess number of independent variables (3) passed to subroutine when 2 or less are required. The excess arguments are " - "ignored.", - }); - - EXPECT_TRUE(compare_err_stream(error_string1, true)); - - // Table 3 Three ind variable - int Index = 3; - PerfCurve(Index).TableIndex = 3; - PerfCurve(Index).Var1Max = 20.0; - PerfCurve(Index).Var1Min = 0.0; - PerfCurve(Index).Var2Max = 20.0; - PerfCurve(Index).Var2Min = 0.0; - PerfCurve(Index).Var3Max = 0.0; - PerfCurve(Index).Var3Min = 0.0; - PerfCurve(Index).CurveType = Linear; - PerfCurve(Index).NumDims = 3; - PerfCurve(Index).ObjectType = "Table:MultiVariableLookup"; - PerfCurve(Index).Name = "Table 3"; - TableLookup(Index).NumX1Vars = 2; - TableLookup(Index).NumX2Vars = 1; - TableLookup(Index).NumX3Vars = 1; - TableLookup(Index).InterpolationOrder = 2; - TableLookup(Index).X1Var.allocate(TableLookup(Index).NumX1Vars); - TableLookup(Index).X2Var.allocate(TableLookup(Index).NumX2Vars); - TableLookup(Index).X3Var.allocate(TableLookup(Index).NumX3Vars); - TableLookup(Index).X1Var(1) = 0.0; - TableLookup(Index).X1Var(2) = 1.0; - TableLookup(Index).X2Var(1) = 1.0; - TableLookup(Index).X3Var(1) = 1.0; - TableLookup(Index).TableLookupZData.allocate(1, 1, 1, 1, 1, 2); - TableLookup(Index).TableLookupZData(1, 1, 1, 1, 1, 1) = 0.0; - TableLookup(Index).TableLookupZData(1, 1, 1, 1, 1, 2) = 1.0; - - TableLookupObject(Index, 1.0, 1.0, 1.0, 0.0); - - std::string const error_string2 = delimited_string({ - " ** Warning ** TableLookupObject: Table:MultiVariableLookup\"Table 3\"", - " ** ~~~ ** ...Excess number of independent variables (4) passed to subroutine when 3 or less are required. The excess arguments are " - "ignored.", - }); - - EXPECT_TRUE(compare_err_stream(error_string2, true)); - - // Table 4 Four ind variable - Index = 4; - PerfCurve(Index).TableIndex = Index; - PerfCurve(Index).Var1Max = 20.0; - PerfCurve(Index).Var1Min = 0.0; - PerfCurve(Index).Var2Max = 20.0; - PerfCurve(Index).Var2Min = 0.0; - PerfCurve(Index).Var3Max = 20.0; - PerfCurve(Index).Var3Min = 0.0; - PerfCurve(Index).Var4Max = 0.0; - PerfCurve(Index).Var4Min = 0.0; - PerfCurve(Index).CurveType = Linear; - PerfCurve(Index).NumDims = 4; - PerfCurve(Index).ObjectType = "Table:MultiVariableLookup"; - PerfCurve(Index).Name = "Table 4"; - TableLookup(Index).NumX1Vars = 2; - TableLookup(Index).NumX2Vars = 1; - TableLookup(Index).NumX3Vars = 1; - TableLookup(Index).NumX4Vars = 1; - TableLookup(Index).InterpolationOrder = 2; - TableLookup(Index).X1Var.allocate(TableLookup(Index).NumX1Vars); - TableLookup(Index).X2Var.allocate(TableLookup(Index).NumX2Vars); - TableLookup(Index).X3Var.allocate(TableLookup(Index).NumX3Vars); - TableLookup(Index).X4Var.allocate(TableLookup(Index).NumX4Vars); - TableLookup(Index).X1Var(1) = 0.0; - TableLookup(Index).X1Var(2) = 1.0; - TableLookup(Index).X2Var(1) = 1.0; - TableLookup(Index).X3Var(1) = 1.0; - TableLookup(Index).X4Var(1) = 1.0; - TableLookup(Index).TableLookupZData.allocate(1, 1, 1, 1, 1, 2); - TableLookup(Index).TableLookupZData(1, 1, 1, 1, 1, 1) = 0.0; - TableLookup(Index).TableLookupZData(1, 1, 1, 1, 1, 2) = 1.0; - - TableLookupObject(Index, 1.0, 1.0, 1.0, 1.0, 0.0); - - std::string const error_string3 = delimited_string({ - " ** Warning ** TableLookupObject: Table:MultiVariableLookup\"Table 4\"", - " ** ~~~ ** ...Excess number of independent variables (5) passed to subroutine when 4 or less are required. The excess arguments are " - "ignored.", - }); - - EXPECT_TRUE(compare_err_stream(error_string3, true)); - - PerfCurve.deallocate(); - TableLookup.deallocate(); -} - TEST_F(EnergyPlusFixture, CurveExponentialSkewNormal_MaximumCurveOutputTest) { std::string const idf_objects = delimited_string({ @@ -1181,7 +82,7 @@ TEST_F(EnergyPlusFixture, CurveExponentialSkewNormal_MaximumCurveOutputTest) CurveManager::GetCurvesInputFlag = false; ASSERT_EQ(1, CurveManager::NumCurves); - EXPECT_EQ(1.0, PerfCurve(1).CurveMax); + EXPECT_EQ(1.0, PerfCurve(1).CurveMax); EXPECT_TRUE(PerfCurve(1).CurveMaxPresent); } diff --git a/tst/EnergyPlus/unit/DXCoils.unit.cc b/tst/EnergyPlus/unit/DXCoils.unit.cc index bade1eeff12..1fbe890ebd7 100644 --- a/tst/EnergyPlus/unit/DXCoils.unit.cc +++ b/tst/EnergyPlus/unit/DXCoils.unit.cc @@ -222,7 +222,7 @@ TEST_F(EnergyPlusFixture, DXCoils_Test1) // Temperature Heating (net) Rating Capacity {W}, HSPF {Btu/W-h}, Region Number", " DX Heating Coil Standard Rating Information, , DX Heating // coil, 6414.3, 6414.3, 6.58, 4" } ) ) ); - // set up coil operating conditions (replicates first occurance of RH > 1 warning in HVACTemplate_UnitarySytsem annual run) + // set up coil operating conditions (replicates first occurrence of RH > 1 warning in HVACTemplate_UnitarySytsem annual run) OutDryBulbTemp = 16.1; OutHumRat = 0.0114507065; OutBaroPress = 98200.0; diff --git a/tst/EnergyPlus/unit/DataHeatBalance.unit.cc b/tst/EnergyPlus/unit/DataHeatBalance.unit.cc index 635cc4ee0fa..30ed5e38af7 100644 --- a/tst/EnergyPlus/unit/DataHeatBalance.unit.cc +++ b/tst/EnergyPlus/unit/DataHeatBalance.unit.cc @@ -798,7 +798,7 @@ TEST_F(EnergyPlusFixture, DataHeatBalance_CheckConstructLayers) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); ScheduleManager::ProcessScheduleInput(); // read schedules diff --git a/tst/EnergyPlus/unit/DesiccantDehumidifiers.unit.cc b/tst/EnergyPlus/unit/DesiccantDehumidifiers.unit.cc index 963e5e2d7d1..6f60a748896 100644 --- a/tst/EnergyPlus/unit/DesiccantDehumidifiers.unit.cc +++ b/tst/EnergyPlus/unit/DesiccantDehumidifiers.unit.cc @@ -2810,7 +2810,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnOASystemTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; SimulationManager::GetProjectData(); @@ -3990,7 +3990,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_OnPrimaryAirSystemTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; SimulationManager::GetProjectData(); @@ -5408,7 +5408,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_RegenAirHeaterHWCoilSizingTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; SimulationManager::GetProjectData(); @@ -6653,7 +6653,7 @@ TEST_F(EnergyPlusFixture, DesiccantDehum_VSCoolingCoilOnPrimaryAirSystemTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; SimulationManager::GetProjectData(); diff --git a/tst/EnergyPlus/unit/FanCoilUnits.unit.cc b/tst/EnergyPlus/unit/FanCoilUnits.unit.cc index 66db7d78b88..30c7d59920c 100644 --- a/tst/EnergyPlus/unit/FanCoilUnits.unit.cc +++ b/tst/EnergyPlus/unit/FanCoilUnits.unit.cc @@ -2266,7 +2266,7 @@ TEST_F(EnergyPlusFixture, Test_TightenWaterFlowLimits) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); GetZoneData(ErrorsFound); GetZoneEquipmentData1(); diff --git a/tst/EnergyPlus/unit/Fixtures/EnergyPlusFixture.cc b/tst/EnergyPlus/unit/Fixtures/EnergyPlusFixture.cc index 1f00e699b0d..90dd509e950 100644 --- a/tst/EnergyPlus/unit/Fixtures/EnergyPlusFixture.cc +++ b/tst/EnergyPlus/unit/Fixtures/EnergyPlusFixture.cc @@ -102,6 +102,7 @@ #include #include #include +#include #include #include #include @@ -347,6 +348,7 @@ void EnergyPlusFixture::clear_all_states() DataSurfaces::clear_state(); DataSystemVariables::clear_state(); DataUCSDSharedData::clear_state(); + DataViewFactorInformation::clear_state(); DataZoneControls::clear_state(); DataZoneEnergyDemands::clear_state(); DataZoneEquipment::clear_state(); diff --git a/tst/EnergyPlus/unit/FluidCoolers.unit.cc b/tst/EnergyPlus/unit/FluidCoolers.unit.cc index 1287a6f11f2..efcb4e951b7 100644 --- a/tst/EnergyPlus/unit/FluidCoolers.unit.cc +++ b/tst/EnergyPlus/unit/FluidCoolers.unit.cc @@ -244,3 +244,78 @@ TEST_F(EnergyPlusFixture, SingleSpeedFluidCoolerInput_Test3) testResult = SimpleFluidCooler(1).validateSingleSpeedInputs(cCurrentModuleObject, AlphArray, cNumericFieldNames, cAlphaFieldNames); EXPECT_TRUE(testResult); // error message triggered } + +TEST_F(EnergyPlusFixture, SingleSpeedFluidCoolerInput_Test4) +{ + int FluidCoolerNum(1); + + std::string const idf_objects = delimited_string({ + " FluidCooler:SingleSpeed,", + " FluidCooler_SingleSpeed, !- Name", + " FluidCooler_SingleSpeed Water Inlet, !- Water Inlet Node Name", + " FluidCooler_SingleSpeed Water Outlet, !- Water Outlet Node Name", + " UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method", + " autosize, !- Design Air Flow Rate U-factor Times Area Value {W/K}", + " , !- Nominal Capacity {W}", + " 46.0, !- Design Entering Water Temperature {C}", + " 35.0, !- Design Entering Air Temperature {C}", + " 25.5, !- Design Entering Air Wetbulb Temperature {C}", + " 5.05-03, !- Design Water Flow Rate {m3/s}", + " autosize, !- Design Air Flow Rate {m3/s}", + " autosize; !- Design Air Flow Rate Fan Power {W}", + }); + + ASSERT_TRUE(process_idf(idf_objects)); + + GetFluidCoolerInput(); + auto &thisFluidCooler = FluidCoolers::SimpleFluidCooler(FluidCoolerNum); + EXPECT_TRUE(thisFluidCooler.HighSpeedFluidCoolerUAWasAutoSized); + EXPECT_EQ(thisFluidCooler.HighSpeedFluidCoolerUA, DataSizing::AutoSize); + EXPECT_EQ(thisFluidCooler.FluidCoolerNominalCapacity, 0.0); +} + +TEST_F(EnergyPlusFixture, SingleSpeedFluidCoolerInput_Test5) +{ + using DataSizing::AutoSize; + int StringArraySize = 20; + Array1D_string cNumericFieldNames; + cNumericFieldNames.allocate(StringArraySize); + Array1D_string cAlphaFieldNames; + cAlphaFieldNames.allocate(StringArraySize); + Array1D_string AlphArray; + AlphArray.allocate(StringArraySize); + for (int i = 1; i <= StringArraySize; ++i) { + cAlphaFieldNames(i) = "AlphaField"; + cNumericFieldNames(i) = "NumerField"; + AlphArray(i) = "FieldValues"; + } + std::string const cCurrentModuleObject("FluidCooler:SingleSpeed"); + int FluidCoolerNum(1); + FluidCoolers::SimpleFluidCooler.allocate(FluidCoolerNum); + auto &thisFluidCooler = FluidCoolers::SimpleFluidCooler(FluidCoolerNum); + + thisFluidCooler.Name = "Test"; + thisFluidCooler.FluidCoolerMassFlowRateMultiplier = 2.5; + thisFluidCooler.WaterInletNodeNum = 1; + thisFluidCooler.WaterOutletNodeNum = 1; + thisFluidCooler.DesignEnteringWaterTemp = 52; + thisFluidCooler.DesignEnteringAirTemp = 35; + thisFluidCooler.DesignEnteringAirWetBulbTemp = 25; + thisFluidCooler.HighSpeedAirFlowRate = AutoSize; + thisFluidCooler.HighSpeedAirFlowRateWasAutoSized = true; + thisFluidCooler.HighSpeedFanPower = AutoSize; + thisFluidCooler.HighSpeedFanPowerWasAutoSized = true; + thisFluidCooler.DesignWaterFlowRateWasAutoSized = true; + thisFluidCooler.DesignWaterFlowRate = 1; + // test nominal capacity specified hard value + AlphArray(4) = "NominalCapacity"; + thisFluidCooler.FluidCoolerNominalCapacity = 5000.0; + thisFluidCooler.HighSpeedFluidCoolerUA = 500.0; + thisFluidCooler.HighSpeedFluidCoolerUAWasAutoSized = false; + // test input error check, if the nominal capacity specified and UA value is not zero, then it does not fatal out + bool testResult = thisFluidCooler.validateSingleSpeedInputs(cCurrentModuleObject, AlphArray, cNumericFieldNames, cAlphaFieldNames); + EXPECT_FALSE(testResult); // no error message triggered + EXPECT_EQ(thisFluidCooler.PerformanceInputMethod_Num, PerfInputMethod::NOMINAL_CAPACITY); + // UA value is reset to zero if nominal capacity is specified and input method is "NOMINAL_CAPACITY" + EXPECT_EQ(thisFluidCooler.HighSpeedFluidCoolerUA, 0.0); +} diff --git a/tst/EnergyPlus/unit/Furnaces.unit.cc b/tst/EnergyPlus/unit/Furnaces.unit.cc index 8d271d9114d..824361a3937 100644 --- a/tst/EnergyPlus/unit/Furnaces.unit.cc +++ b/tst/EnergyPlus/unit/Furnaces.unit.cc @@ -1071,7 +1071,7 @@ TEST_F(EnergyPlusFixture, UnitaryHeatPumpAirToAir_MaxSuppAirTempTest) int AirLoopNum(1); bool FirstHVACIteration(false); - OutputProcessor::TimeValue.allocate(2); // + // OutputProcessor::TimeValue.allocate(2); ManageSimulation(); // check the design max air outlet temperature EXPECT_DOUBLE_EQ(45.0, Furnace(1).DesignMaxOutletTemp); diff --git a/tst/EnergyPlus/unit/HVACFourPipeBeam.unit.cc b/tst/EnergyPlus/unit/HVACFourPipeBeam.unit.cc index 0b0864504ed..051642652a0 100644 --- a/tst/EnergyPlus/unit/HVACFourPipeBeam.unit.cc +++ b/tst/EnergyPlus/unit/HVACFourPipeBeam.unit.cc @@ -113,53 +113,100 @@ TEST_F(EnergyPlusFixture, Beam_FactoryAllAutosize) " 1.5, !- max x", " 0.0 , !- min y", " 1.5; ! max y", - " Table:OneIndependentVariable,", - " CoolCapModFuncOfSAFlow, !- Name", - " quadratic,!- Curve Type", - " EvaluateCurveToLimits,!- Interpolation Method", - " 0.714,!- min x", - " 1.2857,!- max x", - " 0.8234,!- min y", - " 1.1256,!- max y", - " dimensionless, !-", - " dimensionless, !- ", - " , !- normalization ref", - " 0.714286, 0.823403,", - " 1.0, 1.0,", - " 1.2857, 1.1256;", - " Table:OneIndependentVariable,", - " CapModFuncOfWaterFlow, !- Name", - " quadratic,!- Curve Type", - " EvaluateCurveToLimits,!- Interpolation Method", - " 0.0,!- min x", - " 1.333333,!- max x", - " 0.0,!- min y", - " 1.04,!- max y", - " dimensionless, !-", - " dimensionless, !- ", - " , !- normalization ref", - " 0.0, 0.0,", - " 0.05, 0.001,", - " 0.33333, 0.71,", - " 0.5, 0.85,", - " 0.666667, 0.92,", - " 0.833333, 0.97,", - " 1.0, 1.0,", - " 1.333333, 1.04;", - " Table:OneIndependentVariable,", - " HeatCapModFuncOfSAFlow, !- Name", - " quadratic,!- Curve Type", - " EvaluateCurveToLimits,!- Interpolation Method", - " 0.714,!- min x", - " 1.2857,!- max x", - " 0.8554,!- min y", - " 1.0778,!- max y", - " dimensionless, !-", - " dimensionless, !- ", - " , !- normalization ref", - " 0.714286, 0.8554,", - " 1.0, 1.0,", - " 1.2857, 1.0778; ", + + "Table:IndependentVariable,", + " SAFlow, !- Name", + " Cubic, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0.714, !- Minimum Value", + " 1.2857, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.714286, !- Value 1", + " 1.0,", + " 1.2857;", + + "Table:IndependentVariableList,", + " SAFlow_Variables, !- Name", + " SAFlow; !- Independent Variable 1 Name", + + "Table:Lookup,", + " CoolCapModFuncOfSAFlow, !- Name", + " SAFlow_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.8234, !- Minimum Output", + " 1.1256, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.823403, !- Output Value 1", + " 1.0,", + " 1.1256;", + + "Table:Lookup,", + " HeatCapModFuncOfSAFlow, !- Name", + " SAFlow_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.8554, !- Minimum Output", + " 1.0778, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.8554, !- Output Value 1", + " 1.0,", + " 1.0778;", + + "Table:IndependentVariable,", + " WaterFlow, !- Name", + " Cubic, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0.0, !- Minimum Value", + " 1.333333, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.0, !- Value 1,", + " 0.05,", + " 0.33333,", + " 0.5,", + " 0.666667,", + " 0.833333,", + " 1.0,", + " 1.333333;", + + "Table:IndependentVariableList,", + " WaterFlow_Variables, !- Name", + " WaterFlow; !- Independent Variable 1 Name", + + "Table:Lookup,", + " CapModFuncOfWaterFlow, !- Name", + " WaterFlow_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.0, !- Minimum Output", + " 1.04, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.0, !- Output Value 1", + " 0.001,", + " 0.71,", + " 0.85,", + " 0.92,", + " 0.97,", + " 1.0,", + " 1.04;" + }); ASSERT_TRUE(process_idf(idf_objects)); @@ -1571,55 +1618,98 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) " 0.0 , !- min y", " 1.5; ! max y", - " Table:OneIndependentVariable,", - " CoolCapModFuncOfSAFlow, !- Name", - " quadratic,!- Curve Type", - " EvaluateCurveToLimits,!- Interpolation Method", - " 0.714,!- min x", - " 1.2857,!- max x", - " 0.8234,!- min y", - " 1.1256,!- max y", - " dimensionless, !-", - " dimensionless, !- ", - " , !- normalization ref", - " 0.714286, 0.823403,", - " 1.0, 1.0,", - " 1.2857, 1.1256;", - - " Table:OneIndependentVariable,", - " CapModFuncOfWaterFlow, !- Name", - " quadratic,!- Curve ", - " EvaluateCurveToLimits,!- Interpolation Method", - " 0.0,!- min x", - " 1.333333,!- max x", - " 0.0,!- min y", - " 1.04,!- max y", - " dimensionless, !-", - " dimensionless, !- ", - " , !- normalization ref", - " 0.0, 0.0,", - " 0.05, 0.001,", - " 0.33333, 0.71,", - " 0.5, 0.85,", - " 0.666667, 0.92,", - " 0.833333, 0.97,", - " 1.0, 1.0,", - " 1.333333, 1.04;", - - " Table:OneIndependentVariable,", - " HeatCapModFuncOfSAFlow, !- Name", - " quadratic,!- Curve Type", - " EvaluateCurveToLimits,!- Interpolation Method", - " 0.714,!- min x", - " 1.2857,!- max x", - " 0.8554,!- min y", - " 1.0778,!- max y", - " dimensionless, !-", - " dimensionless, !- ", - " , !- normalization ref", - " 0.714286, 0.8554,", - " 1.0, 1.0,", - " 1.2857, 1.0778; ", + "Table:IndependentVariable,", + " SAFlow, !- Name", + " Cubic, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0.714, !- Minimum Value", + " 1.2857, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.714286, !- Value 1", + " 1.0,", + " 1.2857;", + + "Table:IndependentVariableList,", + " SAFlow_Variables, !- Name", + " SAFlow; !- Independent Variable 1 Name", + + "Table:Lookup,", + " CoolCapModFuncOfSAFlow, !- Name", + " SAFlow_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.8234, !- Minimum Output", + " 1.1256, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.823403, !- Output Value 1", + " 1.0,", + " 1.1256;", + + "Table:Lookup,", + " HeatCapModFuncOfSAFlow, !- Name", + " SAFlow_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.8554, !- Minimum Output", + " 1.0778, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.8554, !- Output Value 1", + " 1.0,", + " 1.0778;", + + "Table:IndependentVariable,", + " WaterFlow, !- Name", + " Cubic, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0.0, !- Minimum Value", + " 1.333333, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.0, !- Value 1,", + " 0.05,", + " 0.33333,", + " 0.5,", + " 0.666667,", + " 0.833333,", + " 1.0,", + " 1.333333;", + + "Table:IndependentVariableList,", + " WaterFlow_Variables, !- Name", + " WaterFlow; !- Independent Variable 1 Name", + + "Table:Lookup,", + " CapModFuncOfWaterFlow, !- Name", + " WaterFlow_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.0, !- Minimum Output", + " 1.04, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.0, !- Output Value 1", + " 0.001,", + " 0.71,", + " 0.85,", + " 0.92,", + " 0.97,", + " 1.0,", + " 1.04;" }); ASSERT_TRUE(process_idf(idf_objects)); @@ -1632,7 +1722,7 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) OutputReportPredefined::SetPredefinedTables(); HeatBalanceManager::SetPreConstructionInputParameters(); // establish array bounds for constructions early - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); PlantManager::CheckIfAnyPlant(); @@ -1677,13 +1767,13 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) Real64 NonAirSysOutput = 0.0; DataDefineEquip::AirDistUnit(1).airTerminalPtr->simulate(FirstHVACIteration, NonAirSysOutput); - EXPECT_NEAR(DataLoopNode::Node(1).MassFlowRate, 0.35251094469529615, 0.00001); - EXPECT_NEAR(DataLoopNode::Node(15).Temp, 19.191879243000013, 0.00001); - EXPECT_NEAR(DataLoopNode::Node(15).MassFlowRate, 0.046012222387687624, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(1).MassFlowRate, 0.36165246721684446, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(15).Temp, 17.835648923740127, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(15).MassFlowRate, 0.053404403026239548, 0.00001); EXPECT_DOUBLE_EQ(DataLoopNode::Node(39).Temp, 45.0); EXPECT_DOUBLE_EQ(DataLoopNode::Node(39).MassFlowRate, 0.0); - EXPECT_NEAR(NonAirSysOutput, -1000.0409091712534, 0.01); + EXPECT_NEAR(NonAirSysOutput, -857.50347269476481, 0.01); // next run with a sensible heating load of 5000 W and cold supply air DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputRequired = 5000.0; @@ -1695,10 +1785,10 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) EXPECT_DOUBLE_EQ(DataLoopNode::Node(15).Temp, 14.0); EXPECT_DOUBLE_EQ(DataLoopNode::Node(15).MassFlowRate, 0.0); - EXPECT_NEAR(DataLoopNode::Node(39).Temp, 34.893552713525501, 0.00001); - EXPECT_NEAR(DataLoopNode::Node(39).MassFlowRate, 0.18999690807019429, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(39).Temp, 31.815031821344689, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(39).MassFlowRate, 0.14660727634539222, 0.00001); - EXPECT_NEAR(NonAirSysOutput, 8026.4098164990628, 0.01); + EXPECT_NEAR(NonAirSysOutput, 8079.991302700485, 0.01); // next run with cooling load and neutral supply air DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputRequired = -5000.0; @@ -1715,8 +1805,8 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) NonAirSysOutput = 0.0; DataDefineEquip::AirDistUnit(1).airTerminalPtr->simulate(FirstHVACIteration, NonAirSysOutput); - EXPECT_NEAR(DataLoopNode::Node(15).Temp, 18.030236752882026, 0.00001); - EXPECT_NEAR(DataLoopNode::Node(15).MassFlowRate, 0.25590950750675651, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(15).Temp, 18.549803918626715, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(15).MassFlowRate, 0.22613768427540518, 0.00001); EXPECT_DOUBLE_EQ(DataLoopNode::Node(39).Temp, 45.0); EXPECT_DOUBLE_EQ(DataLoopNode::Node(39).MassFlowRate, 0.0); // EXPECT_NEAR( DataLoopNode::Node( 15 ).Temp, 18.027306264618733, 0.00001 ); @@ -1724,7 +1814,7 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) // EXPECT_DOUBLE_EQ( DataLoopNode::Node( 39 ).Temp, 45.0 ); // EXPECT_DOUBLE_EQ( DataLoopNode::Node( 39 ).MassFlowRate, 0.0 ); - EXPECT_NEAR(NonAirSysOutput, -4317.5458033204004, 0.01); + EXPECT_NEAR(NonAirSysOutput, -4307.106339390215, 0.01); // next run with heating load and neutral supply air DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputRequired = 5000.0; @@ -1738,14 +1828,14 @@ TEST_F(EnergyPlusFixture, Beam_sizeandSimulateOneZone) EXPECT_DOUBLE_EQ(DataLoopNode::Node(15).Temp, 14.0); EXPECT_DOUBLE_EQ(DataLoopNode::Node(15).MassFlowRate, 0.0); - EXPECT_NEAR(DataLoopNode::Node(39).Temp, 33.64526551877691, 0.00001); - EXPECT_NEAR(DataLoopNode::Node(39).MassFlowRate, 0.098707980876250004, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(39).Temp, 32.784497823408309, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(39).MassFlowRate, 0.091412175315718339, 0.00001); // EXPECT_DOUBLE_EQ( DataLoopNode::Node( 15 ).Temp, 14.0 ); // EXPECT_DOUBLE_EQ( DataLoopNode::Node( 15 ).MassFlowRate, 0.0 ); // EXPECT_NEAR( DataLoopNode::Node( 39 ).Temp, 33.836239364981424, 0.00001 ); // EXPECT_NEAR( DataLoopNode::Node( 39 ).MassFlowRate, 0.10040605035467959, 0.00001 ); - EXPECT_NEAR(NonAirSysOutput, 4684.9561806348047, 0.01); + EXPECT_NEAR(NonAirSysOutput, 4667.5787189210605, 0.01); } TEST_F(EnergyPlusFixture, Beam_fatalWhenSysSizingOff) @@ -3101,55 +3191,98 @@ TEST_F(EnergyPlusFixture, Beam_fatalWhenSysSizingOff) " 0.0 , !- min y", " 1.5; ! max y", - " Table:OneIndependentVariable,", - " CoolCapModFuncOfSAFlow, !- Name", - " quadratic,!- Curve Type", - " EvaluateCurveToLimits,!- Interpolation Method", - " 0.714,!- min x", - " 1.2857,!- max x", - " 0.8234,!- min y", - " 1.1256,!- max y", - " dimensionless, !-", - " dimensionless, !- ", - " , !- normalization ref", - " 0.714286, 0.823403,", - " 1.0, 1.0,", - " 1.2857, 1.1256;", - - " Table:OneIndependentVariable,", - " CapModFuncOfWaterFlow, !- Name", - " quadratic,!- Curve ", - " EvaluateCurveToLimits,!- Interpolation Method", - " 0.0,!- min x", - " 1.333333,!- max x", - " 0.0,!- min y", - " 1.04,!- max y", - " dimensionless, !-", - " dimensionless, !- ", - " , !- normalization ref", - " 0.0, 0.0,", - " 0.05, 0.001,", - " 0.33333, 0.71,", - " 0.5, 0.85,", - " 0.666667, 0.92,", - " 0.833333, 0.97,", - " 1.0, 1.0,", - " 1.333333, 1.04;", - - " Table:OneIndependentVariable,", - " HeatCapModFuncOfSAFlow, !- Name", - " quadratic,!- Curve Type", - " EvaluateCurveToLimits,!- Interpolation Method", - " 0.714,!- min x", - " 1.2857,!- max x", - " 0.8554,!- min y", - " 1.0778,!- max y", - " dimensionless, !-", - " dimensionless, !- ", - " , !- normalization ref", - " 0.714286, 0.8554,", - " 1.0, 1.0,", - " 1.2857, 1.0778; ", + "Table:IndependentVariable,", + " SAFlow, !- Name", + " Cubic, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0.714, !- Minimum Value", + " 1.2857, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.714286, !- Value 1", + " 1.0,", + " 1.2857;", + + "Table:IndependentVariableList,", + " SAFlow_Variables, !- Name", + " SAFlow; !- Independent Variable 1 Name", + + "Table:Lookup,", + " CoolCapModFuncOfSAFlow, !- Name", + " SAFlow_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.8234, !- Minimum Output", + " 1.1256, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.823403, !- Output Value 1", + " 1.0,", + " 1.1256;", + + "Table:Lookup,", + " HeatCapModFuncOfSAFlow, !- Name", + " SAFlow_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.8554, !- Minimum Output", + " 1.0778, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.8554, !- Output Value 1", + " 1.0,", + " 1.0778;", + + "Table:IndependentVariable,", + " WaterFlow, !- Name", + " Cubic, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0.0, !- Minimum Value", + " 1.333333, !- Maximum Value", + " , !- Normalization Reference Value", + " Dimensionless, !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.0, !- Value 1,", + " 0.05,", + " 0.33333,", + " 0.5,", + " 0.666667,", + " 0.833333,", + " 1.0,", + " 1.333333;", + + "Table:IndependentVariableList,", + " WaterFlow_Variables, !- Name", + " WaterFlow; !- Independent Variable 1 Name", + + "Table:Lookup,", + " CapModFuncOfWaterFlow, !- Name", + " WaterFlow_Variables, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.0, !- Minimum Output", + " 1.04, !- Maximum Output", + " Dimensionless, !- Output Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.0, !- Output Value 1", + " 0.001,", + " 0.71,", + " 0.85,", + " 0.92,", + " 0.97,", + " 1.0,", + " 1.04;" }); ASSERT_TRUE(process_idf(idf_objects)); @@ -3162,7 +3295,7 @@ TEST_F(EnergyPlusFixture, Beam_fatalWhenSysSizingOff) OutputReportPredefined::SetPredefinedTables(); HeatBalanceManager::SetPreConstructionInputParameters(); // establish array bounds for constructions early - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); PlantManager::CheckIfAnyPlant(); diff --git a/tst/EnergyPlus/unit/HVACSizingSimulationManager.unit.cc b/tst/EnergyPlus/unit/HVACSizingSimulationManager.unit.cc index 64dffade458..613526a6fda 100644 --- a/tst/EnergyPlus/unit/HVACSizingSimulationManager.unit.cc +++ b/tst/EnergyPlus/unit/HVACSizingSimulationManager.unit.cc @@ -124,7 +124,7 @@ class HVACSizingSimulationManagerTest : public EnergyPlusFixture // need a node to log mass flow rate from Node.allocate(1); - TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); // set up time related SetupTimePointers("Zone", TimeStepZone); // Set up Time pointer for HB/Zone Simulation SetupTimePointers("HVAC", TimeStepSys); @@ -132,10 +132,10 @@ class HVACSizingSimulationManagerTest : public EnergyPlusFixture NumOfTimeStepInHour = 4; TimeStepFraction = 1.0 / double(NumOfTimeStepInHour); - TimeValue(1).TimeStep >>= TimeStepZone; - TimeValue(1).CurMinute = 0; // init - TimeValue(2).TimeStep >>= TimeStepSys; - TimeValue(2).CurMinute = 0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep >>= TimeStepZone; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0; // init + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep >>= TimeStepSys; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0; } virtual void TearDown() @@ -194,18 +194,18 @@ TEST_F(HVACSizingSimulationManagerTest, WeatherFileDaysTest3) testSizeSimManagerObj.sizingLogger.SetupSizingLogsNewEnvironment(); for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; PlantReport(1).HeatingDemand = HourOfDay * 10.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // ... End hour loop. @@ -218,11 +218,11 @@ TEST_F(HVACSizingSimulationManagerTest, WeatherFileDaysTest3) Environment(Envrn).DesignDayNum = 2; testSizeSimManagerObj.sizingLogger.SetupSizingLogsNewEnvironment(); for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; @@ -230,7 +230,7 @@ TEST_F(HVACSizingSimulationManagerTest, WeatherFileDaysTest3) testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // End hour loop. @@ -244,18 +244,18 @@ TEST_F(HVACSizingSimulationManagerTest, WeatherFileDaysTest3) while (DayOfSim < NumOfDayInEnvrn) { ++DayOfSim; for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; PlantReport(1).HeatingDemand = HourOfDay * 10.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // ... End hour loop. @@ -270,18 +270,18 @@ TEST_F(HVACSizingSimulationManagerTest, WeatherFileDaysTest3) while (DayOfSim < NumOfDayInEnvrn) { ++DayOfSim; for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; PlantReport(1).HeatingDemand = HourOfDay * 10.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // ... End hour loop. @@ -387,18 +387,18 @@ TEST_F(HVACSizingSimulationManagerTest, TopDownTestSysTimestep3) Environment(Envrn).DesignDayNum = 1; testSizeSimManagerObj.sizingLogger.SetupSizingLogsNewEnvironment(); for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; PlantReport(1).HeatingDemand = HourOfDay * 10.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // ... End hour loop. @@ -410,11 +410,11 @@ TEST_F(HVACSizingSimulationManagerTest, TopDownTestSysTimestep3) Environment(Envrn).DesignDayNum = 2; testSizeSimManagerObj.sizingLogger.SetupSizingLogsNewEnvironment(); for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; @@ -422,7 +422,7 @@ TEST_F(HVACSizingSimulationManagerTest, TopDownTestSysTimestep3) testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // End hour loop. @@ -519,12 +519,12 @@ TEST_F(HVACSizingSimulationManagerTest, TopDownTestSysTimestep1) Environment(Envrn).DesignDayNum = 1; testSizeSimManagerObj.sizingLogger.SetupSizingLogsNewEnvironment(); for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; @@ -532,7 +532,7 @@ TEST_F(HVACSizingSimulationManagerTest, TopDownTestSysTimestep1) testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } // E+ doesn't really update zone step data until system steps are done - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // ... End hour loop. @@ -544,12 +544,12 @@ TEST_F(HVACSizingSimulationManagerTest, TopDownTestSysTimestep1) Environment(Envrn).DesignDayNum = 2; testSizeSimManagerObj.sizingLogger.SetupSizingLogsNewEnvironment(); for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; @@ -557,7 +557,7 @@ TEST_F(HVACSizingSimulationManagerTest, TopDownTestSysTimestep1) testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // End hour loop. @@ -603,15 +603,15 @@ TEST_F(HVACSizingSimulationManagerTest, VarySysTimesteps) Environment(Envrn).DesignDayNum = 1; testSizeSimManagerObj.sizingLogger.SetupSizingLogsNewEnvironment(); for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { NumOfSysTimeSteps = TimeStep; TimeStepSys = TimeStepZone / NumOfSysTimeSteps; for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; @@ -619,7 +619,7 @@ TEST_F(HVACSizingSimulationManagerTest, VarySysTimesteps) testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } // E+ doesn't really update zone step data until system steps are done - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // ... End hour loop. @@ -631,14 +631,14 @@ TEST_F(HVACSizingSimulationManagerTest, VarySysTimesteps) Environment(Envrn).DesignDayNum = 2; testSizeSimManagerObj.sizingLogger.SetupSizingLogsNewEnvironment(); for (HourOfDay = 1; HourOfDay <= 24; ++HourOfDay) { // Begin hour loop ... - TimeValue(1).CurMinute = 0.0; - TimeValue(2).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 0.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 0.0; for (TimeStep = 1; TimeStep <= NumOfTimeStepInHour; ++TimeStep) { NumOfSysTimeSteps = TimeStep; TimeStepSys = TimeStepZone / NumOfSysTimeSteps; for (int SysTimestepLoop = 1; SysTimestepLoop <= NumOfSysTimeSteps; ++SysTimestepLoop) { - TimeValue(2).CurMinute += TimeValue(2).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * 60.0; Node(1).MassFlowRate = HourOfDay * 0.1; Node(1).Temp = 10.0; @@ -646,7 +646,7 @@ TEST_F(HVACSizingSimulationManagerTest, VarySysTimesteps) testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesSystemStep(); } - TimeValue(1).CurMinute += TimeValue(1).TimeStep * 60.0; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute += TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep * 60.0; testSizeSimManagerObj.sizingLogger.UpdateSizingLogValuesZoneStep(); } // TimeStep loop } // End hour loop. diff --git a/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc b/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc index cd963d2fb5f..c98688712bd 100644 --- a/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc +++ b/tst/EnergyPlus/unit/HVACUnitaryBypassVAV.unit.cc @@ -51,10 +51,23 @@ // EnergyPlus Headers #include "Fixtures/EnergyPlusFixture.hh" +#include +#include +#include +#include +#include +#include #include -#include +#include +#include +#include +#include #include #include +#include +#include +#include +#include #include #include #include @@ -64,6 +77,235 @@ using namespace EnergyPlus; +class CBVAVSys : public EnergyPlusFixture +{ +public: + int cbvavNum = 1; + bool FirstHVACIteration = true; + int AirLoopNum = 1; + Real64 OnOffAirFlowRatio = 1.0; + bool HXUnitOn = true; + int NumNodes = 1; // number of zone inlet and zone exhaust nodes + bool ErrorsFound = false; + +protected: + virtual void SetUp() + { + EnergyPlusFixture::SetUp(); // Sets up the base fixture first. + + DataGlobals::DayOfSim = 1; + DataGlobals::HourOfDay = 1; + + DataEnvironment::StdRhoAir = Psychrometrics::PsyRhoAirFnPbTdbW(101325.0, 20.0, 0.0); // initialize StdRhoAir + DataEnvironment::OutBaroPress = 101325.0; + DataGlobals::NumOfZones = 1; + DataHeatBalance::Zone.allocate(DataGlobals::NumOfZones); + DataZoneEquipment::ZoneEquipConfig.allocate(DataGlobals::NumOfZones); + DataZoneEquipment::ZoneEquipList.allocate(DataGlobals::NumOfZones); + DataZoneEquipment::ZoneEquipAvail.dimension(DataGlobals::NumOfZones, DataHVACGlobals::NoAction); + DataHeatBalance::Zone(1).Name = "EAST ZONE"; + DataZoneEquipment::NumOfZoneEquipLists = 1; + DataHeatBalance::Zone(1).IsControlled = true; + DataZoneEquipment::ZoneEquipConfig(1).IsControlled = true; + DataZoneEquipment::ZoneEquipConfig(1).ActualZoneNum = 1; + DataZoneEquipment::ZoneEquipConfig(1).ZoneName = "EAST ZONE"; + DataZoneEquipment::ZoneEquipConfig(1).EquipListName = "ZONEEQUIPMENT"; + DataZoneEquipment::ZoneEquipConfig(1).ZoneNode = 20; + DataZoneEquipment::ZoneEquipConfig(1).NumReturnNodes = 1; + DataZoneEquipment::ZoneEquipConfig(1).ReturnNode.allocate(1); + DataZoneEquipment::ZoneEquipConfig(1).ReturnNode(1) = 21; + DataZoneEquipment::ZoneEquipConfig(1).FixedReturnFlow.allocate(1); + DataHeatBalance::Zone(DataZoneEquipment::ZoneEquipConfig(1).ActualZoneNum).SystemZoneNodeNumber = + DataZoneEquipment::ZoneEquipConfig(1).ZoneNode; + DataZoneEquipment::ZoneEquipConfig(1).ReturnFlowSchedPtrNum = DataGlobals::ScheduleAlwaysOn; + DataZoneEquipment::ZoneEquipList(1).Name = "ZONEEQUIPMENT"; + int maxEquipCount = 1; + DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes = maxEquipCount; + DataZoneEquipment::ZoneEquipList(1).EquipType.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipType_Num.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipName.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipIndex.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipIndex = 1; + DataZoneEquipment::ZoneEquipList(1).EquipData.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).CoolingPriority.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).HeatingPriority.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipType(1) = "ZONEHVAC:AIRDISTRIBUTIONUNIT"; + DataZoneEquipment::ZoneEquipList(1).EquipName(1) = "ZONEREHEATTU"; + DataZoneEquipment::ZoneEquipList(1).CoolingPriority(1) = 1; + DataZoneEquipment::ZoneEquipList(1).HeatingPriority(1) = 1; + DataZoneEquipment::ZoneEquipList(1).EquipType_Num(1) = DataZoneEquipment::AirDistUnit_Num; + DataZoneEquipment::ZoneEquipConfig(1).NumInletNodes = NumNodes; + DataZoneEquipment::ZoneEquipConfig(1).InletNode.allocate(NumNodes); + DataZoneEquipment::ZoneEquipConfig(1).AirDistUnitCool.allocate(NumNodes); + DataZoneEquipment::ZoneEquipConfig(1).AirDistUnitHeat.allocate(NumNodes); + DataZoneEquipment::ZoneEquipConfig(1).InletNode(1) = 2; + DataZoneEquipment::ZoneEquipConfig(1).NumExhaustNodes = NumNodes; + DataZoneEquipment::ZoneEquipConfig(1).ExhaustNode.allocate(NumNodes); + DataZoneEquipment::ZoneEquipConfig(1).ExhaustNode(1) = 1; + DataZoneEquipment::ZoneEquipConfig(1).EquipListIndex = 1; + + DataSizing::CurSysNum = 1; + DataSizing::CurZoneEqNum = 0; + DataSizing::CurOASysNum = 0; + + DataSizing::FinalSysSizing.allocate(1); + DataSizing::FinalSysSizing(DataSizing::CurSysNum).DesMainVolFlow = 1.5; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).DesCoolVolFlow = 1.5; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).DesHeatVolFlow = 1.2; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).DesOutAirVolFlow = 0.3; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).MixTempAtCoolPeak = 25.0; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).MixHumRatAtCoolPeak = 0.009; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).CoolSupTemp = 15.0; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).CoolSupHumRat = 0.006; + + DataSizing::FinalSysSizing(DataSizing::CurSysNum).HeatSupTemp = 35.0; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).HeatRetTemp = 20.0; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).HeatRetHumRat = 0.007; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).HeatOutTemp = 10.0; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).HeatOutHumRat = 0.004; + DataSizing::FinalSysSizing(DataSizing::CurSysNum).CoolDDNum = 1; + DataSizing::DesDayWeath.allocate(1); + DataSizing::DesDayWeath(1).Temp.allocate(1); + DataSizing::DesDayWeath(1).Temp(1) = 35.0; + + DataSizing::ZoneEqSizing.allocate(1); + DataSizing::ZoneEqSizing(DataSizing::CurSysNum).SizingMethod.allocate(25); + DataSizing::ZoneSizingRunDone = true; + + DataZoneEnergyDemands::ZoneSysEnergyDemand.allocate(1); + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP.allocate(1); + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP.allocate(1); + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP = 0.0; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP = 0.0; + DataZoneEnergyDemands::CurDeadBandOrSetback.allocate(1); + DataZoneEnergyDemands::CurDeadBandOrSetback = false; + DataLoopNode::Node.allocate(50); + + // note no fan used for these tests + HVACUnitaryBypassVAV::NumCBVAV = 1; + HVACUnitaryBypassVAV::CBVAV.allocate(1); + auto &cbvav(HVACUnitaryBypassVAV::CBVAV(1)); + cbvav.Name = "CBVAVAirLoop"; + cbvav.UnitType = "AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass"; + cbvav.SchedPtr = -1; + cbvav.ActualZoneNodeNum.allocate(1); + cbvav.ActualZoneNodeNum(1) = 1; + cbvav.DXCoolCoilIndexNum = 1; + DXCoils::DXCoil.allocate(1); + DXCoils::DXCoilNumericFields.allocate(1); + DXCoils::DXCoilNumericFields(1).PerfMode.allocate(1); + DXCoils::DXCoilNumericFields(1).PerfMode(1).FieldNames.allocate(20); + DXCoils::DXCoil(1).Name = "MyDXCoolCoil"; + DXCoils::DXCoil(1).DXCoilType = "COIL:COOLING:DX:SINGLESPEED"; + DXCoils::NumDXCoils = 1; + DXCoils::CheckEquipName.dimension(1, true); + DXCoils::GetCoilsInputFlag = false; + DXCoils::DXCoil(1).CCapFFlow.allocate(1); + DXCoils::DXCoil(1).CCapFFlow(1) = 1; + DXCoils::DXCoil(1).CCapFTemp.allocate(1); + DXCoils::DXCoil(1).CCapFTemp(1) = 1; + DXCoils::DXCoil(1).EIRFFlow.allocate(1); + DXCoils::DXCoil(1).EIRFFlow(1) = 1; + DXCoils::DXCoil(1).EIRFTemp.allocate(1); + DXCoils::DXCoil(1).EIRFTemp(1) = 1; + DXCoils::DXCoil(1).PLFFPLR.allocate(1); + DXCoils::DXCoil(1).PLFFPLR(1) = 1; + DXCoils::DXCoilFullLoadOutAirTemp.allocate(1); + DXCoils::DXCoilFullLoadOutAirHumRat.allocate(1); + DXCoils::DXCoil(1).RatedAirVolFlowRate.allocate(1); + DXCoils::DXCoil(1).RatedAirVolFlowRate(1) = 0.5; + DXCoils::DXCoil(1).RatedTotCap.allocate(1); + DXCoils::DXCoil(1).RatedTotCap(1) = 10000.0; + DXCoils::DXCoil(1).RatedCOP(1) = 3.3333; + DXCoils::DXCoil(1).RatedEIR.allocate(1); + DXCoils::DXCoil(1).RatedEIR(1) = 0.3; + DXCoils::DXCoil(1).RatedSHR.allocate(1); + DXCoils::DXCoil(1).RatedSHR(1) = 0.7; + DXCoils::DXCoil(1).SchedPtr = -1; + DXCoils::DXCoilOutletTemp.allocate(1); + DXCoils::DXCoilOutletHumRat.allocate(1); + DXCoils::DXCoilPartLoadRatio.allocate(1); + DXCoils::DXCoilFanOpMode.allocate(1); + DataHeatBalance::HeatReclaimDXCoil.allocate(1); + + cbvav.DXCoolCoilName = "MyDXCoolCoil"; + DXCoils::DXCoil(1).DXCoilType_Num = DataHVACGlobals::CoilDX_CoolingSingleSpeed; + HeatingCoils::HeatingCoil.allocate(1); + HeatingCoils::HeatingCoilNumericFields.allocate(1); + HeatingCoils::HeatingCoilNumericFields(1).FieldNames.allocate(20); + HeatingCoils::HeatingCoil(1).Name = "MyHeatingCoil"; + HeatingCoils::HeatingCoil(1).HCoilType_Num = DataHVACGlobals::Coil_HeatingElectric; + HeatingCoils::NumHeatingCoils = 1; + HeatingCoils::ValidSourceType.dimension(HeatingCoils::NumHeatingCoils, false); + HeatingCoils::GetCoilsInputFlag = false; + DataSizing::UnitarySysEqSizing.allocate(1); + cbvav.HeatCoilName = "MyHeatingCoil"; + cbvav.DXCoolCoilType_Num = DataHVACGlobals::CoilDX_CoolingSingleSpeed; + cbvav.HeatCoilType_Num = DataHVACGlobals::Coil_HeatingElectric; + cbvav.minModeChangeTime = 0.0; + cbvav.AirInNode = 1; + cbvav.AirOutNode = 2; + cbvav.MixerOutsideAirNode = 3; + cbvav.MixerReliefAirNode = 4; + cbvav.MixerMixedAirNode = 5; + cbvav.MixerInletAirNode = 6; + cbvav.HeatingCoilOutletNode = 9; + cbvav.SplitterOutletAirNode = 9; + cbvav.NumControlledZones = 1; + cbvav.ControlledZoneNum.allocate(1); + cbvav.ControlledZoneNum = 1; + cbvav.MinLATCooling = 7.0; + cbvav.MaxLATHeating = 40.0; + cbvav.ZoneSequenceCoolingNum.allocate(1); + cbvav.ZoneSequenceHeatingNum.allocate(1); + cbvav.ZoneSequenceCoolingNum = 1; + cbvav.ZoneSequenceHeatingNum = 1; + cbvav.OAMixName = "MyOAMixer"; + MixedAir::OAMixer.allocate(1); + MixedAir::OAMixer(1).Name = "MyOAMixer"; + MixedAir::OAMixer(1).InletNode = 3; + MixedAir::OAMixer(1).RelNode = 4; + MixedAir::OAMixer(1).RetNode = 6; + MixedAir::OAMixer(1).MixNode = 7; + DXCoils::DXCoil(1).AirInNode = 7; + cbvav.DXCoilInletNode = DXCoils::DXCoil(1).AirInNode; + DXCoils::DXCoil(1).AirOutNode = 8; + cbvav.DXCoilOutletNode = DXCoils::DXCoil(1).AirOutNode; + HeatingCoils::HeatingCoil(1).AirInletNodeNum = 8; + cbvav.HeatingCoilInletNode = HeatingCoils::HeatingCoil(1).AirInletNodeNum; + HeatingCoils::HeatingCoil(1).AirOutletNodeNum = 9; + HeatingCoils::HeatingCoil(1).TempSetPointNodeNum = 9; + cbvav.HeatingCoilOutletNode = HeatingCoils::HeatingCoil(1).AirOutletNodeNum; + HeatingCoils::HeatingCoil(1).NominalCapacity = 10000.0; + HeatingCoils::HeatingCoil(1).Efficiency = 1.0; + HeatingCoils::HeatingCoil(1).SchedPtr = -1; + + cbvav.CBVAVBoxOutletNode.allocate(1); + cbvav.CBVAVBoxOutletNode(1) = 11; + + CurveManager::PerfCurve.allocate(1); + CurveManager::NumCurves = 1; + CurveManager::PerfCurve(1).InterpolationType = CurveManager::EvaluateCurveToLimits; + CurveManager::PerfCurve(1).CurveType = CurveManager::Linear; + CurveManager::PerfCurve(1).Coeff1 = 1.0; + + DataEnvironment::OutDryBulbTemp = 35.0; + DataEnvironment::OutHumRat = 0.0141066; + DataEnvironment::OutWetBulbTemp = 23.9; + DataEnvironment::OutBaroPress = 101325.0; + + DataAirLoop::AirLoopFlow.allocate(1); + DataAirSystems::PrimaryAirSystem.allocate(1); + DataAirLoop::AirLoopControlInfo.allocate(1); + OutputReportPredefined::SetPredefinedTables(); + } + + virtual void TearDown() + { + EnergyPlusFixture::TearDown(); // Remember to tear down the base fixture after cleaning up derived fixture! + } +}; + TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) { @@ -73,6 +315,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " Zone 2; !- Name", "Zone,", " Zone 1; !- Name", + "BuildingSurface:Detailed,", " Surface_1, !- Name", " WALL, !- Surface Type", @@ -88,6 +331,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}", " 0,0,0, !- X,Y,Z ==> Vertex 3 {m}", " 0,0,3.048000; !- X,Y,Z ==> Vertex 4 {m}", + "BuildingSurface:Detailed,", " Surface_2, !- Name", " WALL, !- Surface Type", @@ -106,6 +350,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) "Construction,", " EXTWALL80, !- Name", " C10 - 8 IN HW CONCRETE; !- Outside Layer", + "Material,", " C10 - 8 IN HW CONCRETE, !- Name", " MediumRough, !- Roughness", @@ -116,6 +361,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 0.9000000, !- Thermal Absorptance", " 0.6500000, !- Solar Absorptance", " 0.6500000; !- Visible Absorptance", + " ZoneControl:Thermostat,", " Zone Thermostat, !- Name", " Zone 1, !- Zone or ZoneList Name", @@ -127,6 +373,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " Setpoints, !- Name", " Dual Heating Setpoints, !- Heating Setpoint Temperature Schedule Name", " Dual Cooling Setpoints; !- Cooling Setpoint Temperature Schedule Name", + " Schedule:Compact,", " Dual Heating Setpoints, !- Name", " Temperature, !- Schedule Type Limits Name", @@ -150,6 +397,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " For: AllDays, !- Field 2", " Until: 24:00, !- Field 3", " 4; !- Field 4", + "ZoneHVAC:EquipmentConnections,", " Zone 1, !- Zone Name", " Zone 1 Equipment List, !- Zone Conditioning Equipment List Name", @@ -157,18 +405,18 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " , !- Zone Air Exhaust Node or NodeList Name", " Zone 1 Zone Air Node, !- Zone Air Node Name", " Zone 1 Zone Return Air Node; !- Zone Return Air Node or NodeList Name", - "", + "NodeList,", " Zone 1 Inlet Node List, !- Name", " Zone 1 Dummy Inlet Node,", " Zone 1 ATU VAVHeatAndCoolNoReheat Outlet Node; !- Node Name 1", - "", + "ZoneHVAC:AirDistributionUnit,", " ADU Zone 1 ATU VAVHeatAndCoolNoReheat, !- Name", " Zone 1 ATU VAVHeatAndCoolNoReheat Outlet Node, !- Air Distribution Unit Outlet Node Name", " AirTerminal:SingleDuct:VAV:HeatAndCool:NoReheat, !- Air Terminal Object Type", " Zone 1 ATU VAVHeatAndCoolNoReheat; !- Air Terminal Name", - "", + "AirTerminal:SingleDuct:VAV:HeatAndCool:NoReheat,", " Zone 1 ATU VAVHeatAndCoolNoReheat, !- Name", " , !- Availability Schedule Name", @@ -176,7 +424,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " Zone 1 ATU VAVHeatAndCoolNoReheat Inlet Node, !- Air Inlet Node Name", " 0.02, !- Maximum Air Flow Rate {m3/s}", " 0; !- Zone Minimum Air Flow Fraction", - "", + "ZoneHVAC:EquipmentList,", " Zone 1 Equipment List, !- Name", " , !- Load Distribution Scheme", @@ -184,9 +432,10 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " ADU Zone 1 ATU VAVHeatAndCoolNoReheat, !- Zone Equipment Name 1", " 1, !- Zone Equipment Cooling Sequence 1", " 1; !- Zone Equipment Heating or No-Load Sequence 1", + "OutdoorAir:Node,", " Model Outdoor Air Node; !- Name", - "", + "AirLoopHVAC,", " UnitaryHeatCoolVAVChangeoverBypass Loop, !- Name", " , !- Controller List Name", @@ -198,19 +447,19 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Outlet Node, !- Demand Side Outlet Node Name", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Inlet Nodes, !- Demand Side Inlet Node Names", " UnitaryHeatCoolVAVChangeoverBypass Loop Supply Outlet Nodes; !- Supply Side Outlet Node Names", - "", + "NodeList,", " UnitaryHeatCoolVAVChangeoverBypass Loop Supply Outlet Nodes, !- Name", " UnitaryHeatCoolVAVChangeoverBypass Loop Supply Outlet Node; !- Node Name 1", - "", + "NodeList,", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Inlet Nodes, !- Name", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Inlet Node; !- Node Name 1", - "", + "BranchList,", " UnitaryHeatCoolVAVChangeoverBypass Loop Supply Branches, !- Name", " UnitaryHeatCoolVAVChangeoverBypass Loop Main Branch; !- Branch Name 1", - "", + "Branch,", " UnitaryHeatCoolVAVChangeoverBypass Loop Main Branch, !- Name", " , !- Pressure Drop Curve Name", @@ -218,7 +467,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1, !- Component Name 1", " UnitaryHeatCoolVAVChangeoverBypass Loop Supply Inlet Node, !- Component Inlet Node Name 1", " UnitaryHeatCoolVAVChangeoverBypass Loop Supply Outlet Node; !- Component Outlet Node Name 1", - "", + "AirLoopHVAC:UnitaryHeatCool:VAVChangeoverBypass,", " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1, !- Name", " , !- Availability Schedule Name", @@ -247,7 +496,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 8, !- Minimum Outlet Air Temperature During Cooling Operation {C}", " 50, !- Maximum Outlet Air Temperature During Heating Operation {C}", " None; !- Dehumidification Control Type", - "", + "Fan:ConstantVolume,", " Fan Constant Volume 1, !- Name", " , !- Availability Schedule Name", @@ -258,7 +507,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 1, !- Motor In Airstream Fraction", " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1 Heating Coil Outlet Node, !- Air Inlet Node Name", " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1 Bypass Duct Splitter Node; !- Air Outlet Node Name", - "", + "Coil:Heating:Fuel,", " Coil Heating Gas 1, !- Name", " , !- Availability Schedule Name", @@ -271,7 +520,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 0, !- Parasitic Electric Load {W}", " , !- Part Load Fraction Correlation Curve Name", " 0; !- Parasitic Fuel Load {W}", - "", + "Curve:Biquadratic,", " Curve Biquadratic 1, !- Name", " 0.942587793, !- Coefficient1 Constant", @@ -284,7 +533,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 22, !- Maximum Value of x {BasedOnField A2}", " 13, !- Minimum Value of y {BasedOnField A3}", " 46; !- Maximum Value of y {BasedOnField A3}", - "", + "Curve:Quadratic,", " Curve Quadratic 1, !- Name", " 0.8, !- Coefficient1 Constant", @@ -292,7 +541,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 0, !- Coefficient3 x**2", " 0.5, !- Minimum Value of x {BasedOnField A2}", " 1.5; !- Maximum Value of x {BasedOnField A2}", - "", + "Curve:Biquadratic,", " Curve Biquadratic 2, !- Name", " 0.342414409, !- Coefficient1 Constant", @@ -305,7 +554,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 22, !- Maximum Value of x {BasedOnField A2}", " 13, !- Minimum Value of y {BasedOnField A3}", " 46; !- Maximum Value of y {BasedOnField A3}", - "", + "Curve:Quadratic,", " Curve Quadratic 2, !- Name", " 1.1552, !- Coefficient1 Constant", @@ -313,7 +562,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 0.0256, !- Coefficient3 x**2", " 0.5, !- Minimum Value of x {BasedOnField A2}", " 1.5; !- Maximum Value of x {BasedOnField A2}", - "", + "Curve:Quadratic,", " Curve Quadratic 3, !- Name", " 0.85, !- Coefficient1 Constant", @@ -321,7 +570,7 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " 0, !- Coefficient3 x**2", " 0, !- Minimum Value of x {BasedOnField A2}", " 1; !- Maximum Value of x {BasedOnField A2}", - "", + "Coil:Cooling:DX:SingleSpeed,", " Coil Cooling DX Single Speed 1, !- Name", " , !- Availability Schedule Name", @@ -353,34 +602,34 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) " , !- Condensate Collection Water Storage Tank Name", " 0, !- Basin Heater Capacity {W/K}", " 10; !- Basin Heater Setpoint Temperature {C}", - "", + "OutdoorAir:Mixer,", " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1 Outdoor Air Mixer, !- Name", " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1 Mixed Air Node, !- Mixed Air Node Name", " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1 OA Node, !- Outdoor Air Stream Node Name", " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1 Relief Air Node, !- Relief Air Stream Node Name", " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1 Bypass Duct Mixer Node; !- Return Air Stream Node Name", - "", + "OutdoorAir:NodeList,", " Air Loop HVAC Unitary Heat Cool VAVChangeover Bypass 1 OA Node; !- Node or NodeList Name 1", - "", + "AirLoopHVAC:SupplyPath,", " UnitaryHeatCoolVAVChangeoverBypass Loop UnitaryHeatCoolVAVChangeoverBypass Loop Demand Inlet Node Supply Path, !- Name", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Inlet Node, !- Supply Air Path Inlet Node Name", " AirLoopHVAC:ZoneSplitter, !- Component Object Type 1", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Splitter; !- Component Name 1", - "", + "AirLoopHVAC:ZoneSplitter,", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Splitter, !- Name", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Inlet Node, !- Inlet Node Name", " Zone 1 ATU VAVHeatAndCoolNoReheat Inlet Node; !- Outlet Node Name 1", - "", + "AirLoopHVAC:ReturnPath,", " UnitaryHeatCoolVAVChangeoverBypass Loop Return Path, !- Name", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Outlet Node, !- Return Air Path Outlet Node Name", " AirLoopHVAC:ZoneMixer, !- Component Object Type 1", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Mixer; !- Component Name 1", - "", + "AirLoopHVAC:ZoneMixer,", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Mixer, !- Name", " UnitaryHeatCoolVAVChangeoverBypass Loop Demand Outlet Node, !- Outlet Node Name", @@ -450,13 +699,355 @@ TEST_F(EnergyPlusFixture, UnitaryBypassVAV_GetInputZoneEquipment) EXPECT_EQ(0.023, cbvav.MaxNoCoolHeatAirVolFlow); EXPECT_EQ(0.023, cbvav.FanVolFlow); - // test zone indexing for loads - Real64 QZoneReq = 0.0; - HVACUnitaryBypassVAV::GetZoneLoads(CBVAVNum, QZoneReq); - // should return cooling load for zone 2 - EXPECT_EQ(-1000.0, QZoneReq); + // set time so that time is greater than CBVAV.changeOverTimer (-1.0) and GetZoneLoads executes + // First time through GetZoneLoads CBVAV.HeatCoolMode gets set and won't exectute again until the simulation time increases + // If Init or GetZoneLoads is called again, with a different load (i.e., was cooling and now is heating) then changeOverTimer must be reset + // if the loads do not change then there is no need to reset the timer, resetting here as an example. + cbvav.changeOverTimer = -1.0; // reset timer so GetZoneLoads executes + DataGlobals::DayOfSim = 1; + DataGlobals::HourOfDay = 1; + // test zone indexing for loads + HVACUnitaryBypassVAV::GetZoneLoads(CBVAVNum); // only 1 conditioned zone EXPECT_EQ(1, cbvav.NumZonesCooled); EXPECT_EQ(HVACUnitaryBypassVAV::CoolingMode, cbvav.HeatCoolMode); +} + +TEST_F(CBVAVSys, UnitaryBypassVAV_AutoSize) +{ + + // reference CBVAV and FinalSysSizing data + auto &cbvav(HVACUnitaryBypassVAV::CBVAV(1)); + auto &finalSysSizing(DataSizing::FinalSysSizing(DataSizing::CurSysNum)); + + DataSizing::SysSizingRunDone = true; // inform sizing that system sizing run is done + // override CBVAVSys fixture set up of hard sized inputs to AutoSize + cbvav.FanVolFlow = DataSizing::AutoSize; + cbvav.MaxCoolAirVolFlow = DataSizing::AutoSize; + cbvav.MaxHeatAirVolFlow = DataSizing::AutoSize; + cbvav.MaxNoCoolHeatAirVolFlow = DataSizing::AutoSize; + cbvav.CoolOutAirVolFlow = DataSizing::AutoSize; + cbvav.HeatOutAirVolFlow = DataSizing::AutoSize; + cbvav.NoCoolHeatOutAirVolFlow = DataSizing::AutoSize; + HeatingCoils::HeatingCoil(1).NominalCapacity = DataSizing::AutoSize; + DXCoils::DXCoil(1).RatedAirVolFlowRate(1) = DataSizing::AutoSize; + DXCoils::DXCoil(1).RatedTotCap(1) = DataSizing::AutoSize; + + cbvav.OpMode = DataHVACGlobals::CycFanCycCoil; // must set one type of fan operating mode to initialize CalcSetPointTempTarget + DataLoopNode::Node(cbvav.AirInNode).Temp = 24.0; // initialize inlet node temp used to initialize CalcSetPointTempTarget + + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + + // expect CBVAV air flow to match FinalSysSizing info + EXPECT_EQ(cbvav.MaxCoolAirVolFlow, finalSysSizing.DesMainVolFlow); + EXPECT_EQ(cbvav.MaxHeatAirVolFlow, finalSysSizing.DesMainVolFlow); + EXPECT_EQ(cbvav.MaxNoCoolHeatAirVolFlow, finalSysSizing.DesMainVolFlow); + + EXPECT_EQ(cbvav.CoolOutAirVolFlow, finalSysSizing.DesOutAirVolFlow); + EXPECT_EQ(cbvav.HeatOutAirVolFlow, finalSysSizing.DesOutAirVolFlow); + EXPECT_EQ(cbvav.NoCoolHeatOutAirVolFlow, finalSysSizing.DesOutAirVolFlow); + + // expect coils to size appropriately based on sizing inputs + EXPECT_EQ(DXCoils::DXCoil(1).RatedAirVolFlowRate(1), finalSysSizing.DesMainVolFlow); + EXPECT_GT(DXCoils::DXCoil(1).RatedTotCap(1), 30000.0); + EXPECT_GT(HeatingCoils::HeatingCoil(1).NominalCapacity, 45000.0); +} + +TEST_F(CBVAVSys, UnitaryBypassVAV_NoOASys) +{ + + // reference CBVAV data + auto &cbvav(HVACUnitaryBypassVAV::CBVAV(1)); + cbvav.FanVolFlow = 0.5; + cbvav.MaxCoolAirVolFlow = 0.5; + cbvav.MaxHeatAirVolFlow = 0.5; + cbvav.MaxNoCoolHeatAirVolFlow = 0.0; + cbvav.CoolOutAirVolFlow = 0.0; + cbvav.HeatOutAirVolFlow = 0.0; + cbvav.NoCoolHeatOutAirVolFlow = 0.0; + + // initialize node data + DataLoopNode::Node(cbvav.AirInNode).Temp = 24.0; // sugartech.co.za using 24C db and 17 wb + DataLoopNode::Node(cbvav.AirInNode).HumRat = 0.009222; + DataLoopNode::Node(cbvav.AirInNode).Enthalpy = 47591.3; + DataLoopNode::Node(cbvav.AirInNode).MassFlowRate = 0.57; + + DataLoopNode::Node(MixedAir::OAMixer(1).InletNode).Temp = DataEnvironment::OutDryBulbTemp; + DataLoopNode::Node(MixedAir::OAMixer(1).InletNode).HumRat = DataEnvironment::OutHumRat; + DataLoopNode::Node(MixedAir::OAMixer(1).InletNode).Enthalpy = 71299.267; + + DataLoopNode::Node(cbvav.CBVAVBoxOutletNode(1)).MassFlowRateMax = 0.61; + + cbvav.OpMode = DataHVACGlobals::CycFanCycCoil; // set fan operating mode + + // First time through GetZoneLoads CBVAV.HeatCoolMode gets set IF there is a load and won't exectute again until the simulation time increases + // There is no load here and CBVAV.HeatCoolMode did not change so cbvav.changeOverTimer also did not get set (change) in previous call + // so there is no need to reset cbvav.changeOverTimer here but it wouldn't hurt if it was reset to -1.0 + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(cbvav.HeatCoolMode, 0); + EXPECT_EQ(cbvav.NumZonesCooled, 0); + EXPECT_EQ(cbvav.NumZonesHeated, 0); + EXPECT_NEAR(DataLoopNode::Node(cbvav.AirInNode).Temp, DataLoopNode::Node(cbvav.AirOutNode).Temp, 0.0001); + EXPECT_NEAR(DataLoopNode::Node(cbvav.AirInNode).HumRat, DataLoopNode::Node(cbvav.AirOutNode).HumRat, 0.000001); + EXPECT_NEAR(DataLoopNode::Node(cbvav.AirInNode).Enthalpy, DataLoopNode::Node(cbvav.AirOutNode).Enthalpy, 0.1); + EXPECT_EQ(cbvav.changeOverTimer, -1.0); // expect no change in timer, remains at default value + + // initialize priority control + cbvav.PriorityControl = HVACUnitaryBypassVAV::CoolingPriority; + + // initialize cooling load + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP(1) = -9000.0; // load to cooling set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP(1) = -15000.0; // more load to heating set point + // No need to reset changeOverTimer since previous load was not cooling or heating and changeOverTimer DID NOT get set + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + // Now changeOverTimer = 0 and GetZoneLoads will not execute again unless changeOverTimer is reset, but only needs to occur when load changes + EXPECT_EQ(cbvav.changeOverTimer, 0.0); // expect timer now set to current time (0.0) plus minModeChangeTime(0.0), so = 0.0 + EXPECT_EQ(cbvav.HeatCoolMode, HVACUnitaryBypassVAV::CoolingMode); + EXPECT_EQ(cbvav.NumZonesCooled, 1); + EXPECT_EQ(cbvav.NumZonesHeated, 0); + EXPECT_GE(cbvav.OutletTempSetPoint, cbvav.MinLATCooling); + EXPECT_LE(cbvav.OutletTempSetPoint, cbvav.MaxLATHeating); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 9.56, 0.01); + + Real64 PartLoadFrac = 0.0; + HVACUnitaryBypassVAV::ControlCBVAVOutput(cbvavNum, FirstHVACIteration, PartLoadFrac, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(PartLoadFrac, 1.0); // load = -9000 W, coil capacity = 10,000 W, SHR = 0.7 so max sensible is around 7,000 W + + // reduce load and check that outlet temp meets set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP(1) = -7000.0; // load to cooling set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP(1) = -15000.0; // more load to heating set point + // No need to reset changeOverTimer since load did not change + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + Real64 FullOutput = 0.0; + HVACUnitaryBypassVAV::CalcCBVAV(cbvavNum, FirstHVACIteration, PartLoadFrac, FullOutput, OnOffAirFlowRatio, HXUnitOn); + EXPECT_NEAR(PartLoadFrac, 0.935, 0.001); // load = -7000 W, coil capacity = 10,000 W, SHR = 0.7 so max sensible is just over 7,000 W + EXPECT_NEAR(cbvav.OutletTempSetPoint, DataLoopNode::Node(cbvav.AirOutNode).Temp, 0.0001); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 12.771, 0.001); + + // switch to heating load and check that outlet temp meets set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP(1) = 15000.0; // more load to cooling set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP(1) = 7000.0; // load to heating set point + cbvav.changeOverTimer = -1.0; // The load switched to heating so reset timer so GetZoneLoads executes + // test timer function by setting minModeChangeTime to 2 hrs + cbvav.minModeChangeTime = 2.0; + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(cbvav.changeOverTimer, 2.0); // expect timer now set to current time (0.0) plus minModeChangeTime(2.0), so = 2.0 + EXPECT_EQ(cbvav.HeatCoolMode, HVACUnitaryBypassVAV::HeatingMode); + EXPECT_EQ(cbvav.NumZonesCooled, 0); + EXPECT_EQ(cbvav.NumZonesHeated, 1); + EXPECT_GE(cbvav.OutletTempSetPoint, cbvav.MinLATCooling); + EXPECT_LE(cbvav.OutletTempSetPoint, cbvav.MaxLATHeating); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 35.23, 0.01); + FullOutput = 0.0; + HVACUnitaryBypassVAV::CalcCBVAV(cbvavNum, FirstHVACIteration, PartLoadFrac, FullOutput, OnOffAirFlowRatio, HXUnitOn); + EXPECT_LT(PartLoadFrac, 1.0); // load = 7000 W, coil capacity = 10,000 W + EXPECT_NEAR(cbvav.OutletTempSetPoint, DataLoopNode::Node(cbvav.AirOutNode).Temp, 0.0001); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 35.228, 0.001); +} + +TEST_F(CBVAVSys, UnitaryBypassVAV_InternalOAMixer) +{ + + // reference CBVAV data + auto &cbvav(HVACUnitaryBypassVAV::CBVAV(1)); + cbvav.FanVolFlow = 0.5; + cbvav.MaxCoolAirVolFlow = 0.5; + cbvav.MaxHeatAirVolFlow = 0.5; + cbvav.MaxNoCoolHeatAirVolFlow = 0.0; + cbvav.CoolOutAirVolFlow = 0.1; + cbvav.HeatOutAirVolFlow = 0.1; + cbvav.NoCoolHeatOutAirVolFlow = 0.1; + + // initialize node data + DataLoopNode::Node(cbvav.AirInNode).Temp = 24.0; // sugartech.co.za using 24C db and 17 wb + DataLoopNode::Node(cbvav.AirInNode).HumRat = 0.009222; + DataLoopNode::Node(cbvav.AirInNode).Enthalpy = 47591.3; + DataLoopNode::Node(cbvav.AirInNode).MassFlowRate = 0.57; + + DataLoopNode::Node(MixedAir::OAMixer(1).InletNode).Temp = DataEnvironment::OutDryBulbTemp; + DataLoopNode::Node(MixedAir::OAMixer(1).InletNode).HumRat = DataEnvironment::OutHumRat; + DataLoopNode::Node(MixedAir::OAMixer(1).InletNode).Enthalpy = 71299.267; + + DataLoopNode::Node(cbvav.CBVAVBoxOutletNode(1)).MassFlowRateMax = 0.61; + + cbvav.OpMode = DataHVACGlobals::CycFanCycCoil; // set fan operating mode + + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(cbvav.HeatCoolMode, 0); + EXPECT_EQ(cbvav.NumZonesCooled, 0); + EXPECT_EQ(cbvav.NumZonesHeated, 0); + // coil off outlet condition is affected by outdoor air therefore inlet/outlet conditions are different + EXPECT_NE(DataLoopNode::Node(cbvav.AirInNode).Temp, DataLoopNode::Node(cbvav.AirOutNode).Temp); + EXPECT_NE(DataLoopNode::Node(cbvav.AirInNode).HumRat, DataLoopNode::Node(cbvav.AirOutNode).HumRat); + EXPECT_NE(DataLoopNode::Node(cbvav.AirInNode).Enthalpy, DataLoopNode::Node(cbvav.AirOutNode).Enthalpy); + + // initialize priority control + cbvav.PriorityControl = HVACUnitaryBypassVAV::CoolingPriority; + + // initialize cooling load + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP(1) = -9000.0; // load to cooling set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP(1) = -15000.0; // more load to heating set point + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(cbvav.HeatCoolMode, HVACUnitaryBypassVAV::CoolingMode); + EXPECT_EQ(cbvav.NumZonesCooled, 1); + EXPECT_EQ(cbvav.NumZonesHeated, 0); + EXPECT_GE(cbvav.OutletTempSetPoint, cbvav.MinLATCooling); + EXPECT_LE(cbvav.OutletTempSetPoint, cbvav.MaxLATHeating); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 9.59, 0.01); + + Real64 PartLoadFrac = 0.0; + HVACUnitaryBypassVAV::ControlCBVAVOutput(cbvavNum, FirstHVACIteration, PartLoadFrac, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(PartLoadFrac, 1.0); // load = -9000 W, coil capacity = 10,000 W, SHR = 0.7 so max sensible is around 7,000 W + + // reduce load and check that outlet temp meets set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP(1) = -6000.0; // load to cooling set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP(1) = -15000.0; // more load to heating set point + cbvav.changeOverTimer = -1.0; // reset timer so GetZoneLoads executes + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + Real64 FullOutput = 0.0; + HVACUnitaryBypassVAV::CalcCBVAV(cbvavNum, FirstHVACIteration, PartLoadFrac, FullOutput, OnOffAirFlowRatio, HXUnitOn); + EXPECT_LT(PartLoadFrac, 1.0); // load = -6000 W, coil capacity = 10,000 W, SHR = 0.7 so max sensible is around 7,000 W + EXPECT_NEAR(cbvav.OutletTempSetPoint, DataLoopNode::Node(cbvav.AirOutNode).Temp, 0.0001); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 14.392, 0.001); + + // switch to heating load and check that outlet temp meets set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP(1) = 15000.0; // more capacity needed to get to cooling set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP(1) = 7000.0; // load to heating set point + cbvav.changeOverTimer = -1.0; // reset timer so GetZoneLoads executes + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(cbvav.HeatCoolMode, HVACUnitaryBypassVAV::HeatingMode); + EXPECT_EQ(cbvav.NumZonesCooled, 0); + EXPECT_EQ(cbvav.NumZonesHeated, 1); + EXPECT_GE(cbvav.OutletTempSetPoint, cbvav.MinLATCooling); + EXPECT_LE(cbvav.OutletTempSetPoint, cbvav.MaxLATHeating); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 35.21, 0.01); + FullOutput = 0.0; + HVACUnitaryBypassVAV::CalcCBVAV(cbvavNum, FirstHVACIteration, PartLoadFrac, FullOutput, OnOffAirFlowRatio, HXUnitOn); + EXPECT_LT(PartLoadFrac, 1.0); // load = 7000 W, coil capacity = 10,000 W + EXPECT_NEAR(cbvav.OutletTempSetPoint, DataLoopNode::Node(cbvav.AirOutNode).Temp, 0.0001); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 35.208, 0.001); +} + +TEST_F(CBVAVSys, UnitaryBypassVAV_Mixerconnected) +{ + + // reference CBVAV data + auto &cbvav(HVACUnitaryBypassVAV::CBVAV(1)); + cbvav.FanVolFlow = 0.5; + cbvav.MaxCoolAirVolFlow = 0.5; + cbvav.MaxHeatAirVolFlow = 0.5; + cbvav.MaxNoCoolHeatAirVolFlow = 0.0; + cbvav.CoolOutAirVolFlow = 0.0; + cbvav.HeatOutAirVolFlow = 0.0; + cbvav.NoCoolHeatOutAirVolFlow = 0.0; + cbvav.mixerIndex = 1; // denotes CBVAV is connected to mixer inlet node + cbvav.PlenumMixerInletAirNode = 10; // mixer inlet node different than splitter outlet air node + cbvav.AirLoopNumber = 1; + + // initialize node data + DataLoopNode::Node(cbvav.AirInNode).Temp = 24.0; // sugartech.co.za using 24C db and 17 wb + DataLoopNode::Node(cbvav.AirInNode).HumRat = 0.009222; + DataLoopNode::Node(cbvav.AirInNode).Enthalpy = 47591.3; + DataLoopNode::Node(cbvav.AirInNode).MassFlowRate = 0.57; + + DataLoopNode::Node(MixedAir::OAMixer(1).InletNode).Temp = DataEnvironment::OutDryBulbTemp; + DataLoopNode::Node(MixedAir::OAMixer(1).InletNode).HumRat = DataEnvironment::OutHumRat; + DataLoopNode::Node(MixedAir::OAMixer(1).InletNode).Enthalpy = 71299.267; + + DataLoopNode::Node(cbvav.CBVAVBoxOutletNode(1)).MassFlowRateMax = 0.61; + + cbvav.OpMode = DataHVACGlobals::CycFanCycCoil; // set fan operating mode + + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(cbvav.HeatCoolMode, 0); + EXPECT_EQ(cbvav.NumZonesCooled, 0); + EXPECT_EQ(cbvav.NumZonesHeated, 0); + EXPECT_NEAR(DataLoopNode::Node(cbvav.AirInNode).Temp, DataLoopNode::Node(cbvav.AirOutNode).Temp, 0.0001); + EXPECT_NEAR(DataLoopNode::Node(cbvav.AirInNode).HumRat, DataLoopNode::Node(cbvav.AirOutNode).HumRat, 0.000001); + EXPECT_NEAR(DataLoopNode::Node(cbvav.AirInNode).Enthalpy, DataLoopNode::Node(cbvav.AirOutNode).Enthalpy, 0.1); + + // initialize priority control + cbvav.PriorityControl = HVACUnitaryBypassVAV::CoolingPriority; + + // initialize cooling load + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP(1) = -9000.0; // load to cooling set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP(1) = -15000.0; // more load to heating set point + cbvav.changeOverTimer = -1.0; // reset timer so GetZoneLoads executes + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(cbvav.HeatCoolMode, HVACUnitaryBypassVAV::CoolingMode); + EXPECT_EQ(cbvav.NumZonesCooled, 1); + EXPECT_EQ(cbvav.NumZonesHeated, 0); + EXPECT_GE(cbvav.OutletTempSetPoint, cbvav.MinLATCooling); + EXPECT_LE(cbvav.OutletTempSetPoint, cbvav.MaxLATHeating); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 9.56, 0.01); + + Real64 PartLoadFrac = 0.0; + HVACUnitaryBypassVAV::ControlCBVAVOutput(cbvavNum, FirstHVACIteration, PartLoadFrac, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(PartLoadFrac, 1.0); // load = -9000 W, coil capacity = 10,000 W, SHR = 0.7 so max sensible is around 7,000 W + + // set FirstHVACIteration = false and use box outlet mass flow rate to set bypass flow + FirstHVACIteration = false; + DataLoopNode::Node(cbvav.CBVAVBoxOutletNode(1)).MassFlowRate = 0.3; + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + HVACUnitaryBypassVAV::ControlCBVAVOutput(cbvavNum, FirstHVACIteration, PartLoadFrac, OnOffAirFlowRatio, HXUnitOn); + EXPECT_NEAR(DataLoopNode::Node(cbvav.AirOutNode).MassFlowRate, DataLoopNode::Node(cbvav.CBVAVBoxOutletNode(1)).MassFlowRate, 0.000001); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 9.56, 0.01); + EXPECT_NEAR( + DataAirLoop::AirLoopFlow(cbvav.AirLoopNumber).BypassMassFlow, DataLoopNode::Node(cbvav.PlenumMixerInletAirNode).MassFlowRate, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(cbvav.PlenumMixerInletAirNode).MassFlowRate, 0.302, 0.001); + + // reduce load and check that outlet temp meets set point + FirstHVACIteration = true; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP(1) = -7000.0; // load to cooling set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP(1) = -15000.0; // more load to heating set point + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + Real64 FullOutput = 0.0; + HVACUnitaryBypassVAV::CalcCBVAV(cbvavNum, FirstHVACIteration, PartLoadFrac, FullOutput, OnOffAirFlowRatio, HXUnitOn); + EXPECT_LT(PartLoadFrac, 1.0); // load = -7000 W, coil capacity = 10,000 W, SHR = 0.7 so max sensible is around 7,000 W + EXPECT_NEAR(cbvav.OutletTempSetPoint, DataLoopNode::Node(cbvav.AirOutNode).Temp, 0.0001); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 12.771, 0.001); + + // set FirstHVACIteration = false and use box outlet mass flow rate to set bypass flow + FirstHVACIteration = false; + DataLoopNode::Node(cbvav.CBVAVBoxOutletNode(1)).MassFlowRate = 0.3; + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + HVACUnitaryBypassVAV::ControlCBVAVOutput(cbvavNum, FirstHVACIteration, PartLoadFrac, OnOffAirFlowRatio, HXUnitOn); + EXPECT_NEAR(DataLoopNode::Node(cbvav.AirOutNode).MassFlowRate, DataLoopNode::Node(cbvav.CBVAVBoxOutletNode(1)).MassFlowRate, 0.000001); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 12.771, 0.01); + EXPECT_NEAR( + DataAirLoop::AirLoopFlow(cbvav.AirLoopNumber).BypassMassFlow, DataLoopNode::Node(cbvav.PlenumMixerInletAirNode).MassFlowRate, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(cbvav.PlenumMixerInletAirNode).MassFlowRate, 0.302, 0.001); + Real64 systemFlow = DataLoopNode::Node(cbvav.PlenumMixerInletAirNode).MassFlowRate + DataLoopNode::Node(cbvav.AirOutNode).MassFlowRate; + EXPECT_NEAR(systemFlow, cbvav.MaxCoolAirMassFlow, 0.0001); + + // switch to heating load and check that outlet temp meets set point + FirstHVACIteration = true; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToCoolingSP(1) = 15000.0; // more capacity needed to get to cooling set point + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).SequencedOutputRequiredToHeatingSP(1) = 7000.0; // load to heating set point + cbvav.changeOverTimer = -1.0; // reset timer so GetZoneLoads executes + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + EXPECT_EQ(cbvav.HeatCoolMode, HVACUnitaryBypassVAV::HeatingMode); + EXPECT_EQ(cbvav.NumZonesCooled, 0); + EXPECT_EQ(cbvav.NumZonesHeated, 1); + EXPECT_GE(cbvav.OutletTempSetPoint, cbvav.MinLATCooling); + EXPECT_LE(cbvav.OutletTempSetPoint, cbvav.MaxLATHeating); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 35.23, 0.01); + FullOutput = 0.0; + HVACUnitaryBypassVAV::CalcCBVAV(cbvavNum, FirstHVACIteration, PartLoadFrac, FullOutput, OnOffAirFlowRatio, HXUnitOn); + EXPECT_LT(PartLoadFrac, 1.0); // load = 7000 W, coil capacity = 10,000 W + EXPECT_NEAR(cbvav.OutletTempSetPoint, DataLoopNode::Node(cbvav.AirOutNode).Temp, 0.0001); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 35.228, 0.001); + // set FirstHVACIteration = false and use box outlet mass flow rate to set bypass flow + FirstHVACIteration = false; + DataLoopNode::Node(cbvav.CBVAVBoxOutletNode(1)).MassFlowRate = 0.2; + HVACUnitaryBypassVAV::InitCBVAV(cbvavNum, FirstHVACIteration, AirLoopNum, OnOffAirFlowRatio, HXUnitOn); + HVACUnitaryBypassVAV::ControlCBVAVOutput(cbvavNum, FirstHVACIteration, PartLoadFrac, OnOffAirFlowRatio, HXUnitOn); + EXPECT_NEAR(DataLoopNode::Node(cbvav.AirOutNode).MassFlowRate, DataLoopNode::Node(cbvav.CBVAVBoxOutletNode(1)).MassFlowRate, 0.000001); + EXPECT_NEAR(cbvav.OutletTempSetPoint, 35.228, 0.01); + EXPECT_NEAR( + DataAirLoop::AirLoopFlow(cbvav.AirLoopNumber).BypassMassFlow, DataLoopNode::Node(cbvav.PlenumMixerInletAirNode).MassFlowRate, 0.00001); + EXPECT_NEAR(DataLoopNode::Node(cbvav.PlenumMixerInletAirNode).MassFlowRate, 0.402, 0.001); + systemFlow = DataLoopNode::Node(cbvav.PlenumMixerInletAirNode).MassFlowRate + DataLoopNode::Node(cbvav.AirOutNode).MassFlowRate; + EXPECT_NEAR(systemFlow, cbvav.MaxHeatAirMassFlow, 0.0001); } diff --git a/tst/EnergyPlus/unit/HVACVariableRefrigerantFlow.unit.cc b/tst/EnergyPlus/unit/HVACVariableRefrigerantFlow.unit.cc index 8604a4fad57..90b96b56d41 100644 --- a/tst/EnergyPlus/unit/HVACVariableRefrigerantFlow.unit.cc +++ b/tst/EnergyPlus/unit/HVACVariableRefrigerantFlow.unit.cc @@ -87,6 +87,7 @@ #include #include #include +#include #include #include #include @@ -120,6 +121,7 @@ using namespace EnergyPlus::OutputReportPredefined; using namespace EnergyPlus::PlantManager; using namespace EnergyPlus::Psychrometrics; using namespace EnergyPlus::ScheduleManager; +using namespace EnergyPlus::SimulationManager; using namespace EnergyPlus::SizingManager; namespace EnergyPlus { @@ -3482,16 +3484,17 @@ TEST_F(EnergyPlusFixture, VRFTest_SysCurve) SimulateVRF( VRFTU(VRFTUNum).Name, CurZoneNum, FirstHVACIteration, SysOutputProvided, LatOutputProvided, ZoneEquipList(CurZoneEqNum).EquipIndex(EquipPtr)); EXPECT_EQ(VRF(VRFCond).VRFCondPLR, 0.0); // system should be off - EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUInletNodeNum).MassFlowRate, 0.0); // flow should be = 0 at no load flow rate for constant fan mode in this example - EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUOutletNodeNum).MassFlowRate, 0.0); // flow should be = 0 at no load flow rate for constant fan mode in this example + EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUInletNodeNum).MassFlowRate, + 0.0); // flow should be = 0 at no load flow rate for constant fan mode in this example + EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUOutletNodeNum).MassFlowRate, + 0.0); // flow should be = 0 at no load flow rate for constant fan mode in this example Schedule(VRFTU(VRFTUNum).FanOpModeSchedPtr).CurrentValue = 0.0; // set cycling fan operating mode SimulateVRF( VRFTU(VRFTUNum).Name, CurZoneNum, FirstHVACIteration, SysOutputProvided, LatOutputProvided, ZoneEquipList(CurZoneEqNum).EquipIndex(EquipPtr)); - EXPECT_EQ(VRF(VRFCond).VRFCondPLR, 0.0); // system should also be off - EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUInletNodeNum).MassFlowRate, 0.0); // flow should be = 0 for cycling fan mode + EXPECT_EQ(VRF(VRFCond).VRFCondPLR, 0.0); // system should also be off + EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUInletNodeNum).MassFlowRate, 0.0); // flow should be = 0 for cycling fan mode EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUOutletNodeNum).MassFlowRate, 0.0); // flow should be = 0 for cycling fan mode - } TEST_F(EnergyPlusFixture, VRFTest_SysCurve_GetInputFailers) @@ -5064,8 +5067,8 @@ TEST_F(EnergyPlusFixture, VRFTest_SysCurve_WaterCooled) Node(VRFTU(VRFTUNum).VRFTUOAMixerOANodeNum).Temp = 21.0; SimulateVRF( VRFTU(VRFTUNum).Name, CurZoneNum, FirstHVACIteration, SysOutputProvided, LatOutputProvided, ZoneEquipList(CurZoneEqNum).EquipIndex(EquipPtr)); - EXPECT_EQ(VRF(VRFCond).VRFCondPLR, 0.0); // system should be off - EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUInletNodeNum).MassFlowRate, 0.0); // flow should be = 0 for cycling fan mode + EXPECT_EQ(VRF(VRFCond).VRFCondPLR, 0.0); // system should be off + EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUInletNodeNum).MassFlowRate, 0.0); // flow should be = 0 for cycling fan mode EXPECT_EQ(Node(VRFTU(VRFTUNum).VRFTUOutletNodeNum).MassFlowRate, 0.0); // flow should be = 0 for cycling fan mode DataHeatBalFanSys::TempControlType.allocate(1); @@ -5075,9 +5078,10 @@ TEST_F(EnergyPlusFixture, VRFTest_SysCurve_WaterCooled) SimulateVRF( VRFTU(VRFTUNum).Name, CurZoneNum, FirstHVACIteration, SysOutputProvided, LatOutputProvided, ZoneEquipList(CurZoneEqNum).EquipIndex(EquipPtr)); EXPECT_EQ(VRF(VRFCond).VRFCondPLR, 0.0); // system should also be off - EXPECT_GT(Node(VRFTU(VRFTUNum).VRFTUInletNodeNum).MassFlowRate, 0.0); // flow should be > 0 at no load flow rate for constant fan mode in this example - EXPECT_GT(Node(VRFTU(VRFTUNum).VRFTUOutletNodeNum).MassFlowRate, 0.0); // flow should be > 0 at no load flow rate for constant fan mode in this example - + EXPECT_GT(Node(VRFTU(VRFTUNum).VRFTUInletNodeNum).MassFlowRate, + 0.0); // flow should be > 0 at no load flow rate for constant fan mode in this example + EXPECT_GT(Node(VRFTU(VRFTUNum).VRFTUOutletNodeNum).MassFlowRate, + 0.0); // flow should be > 0 at no load flow rate for constant fan mode in this example } TEST_F(EnergyPlusFixture, VRFTest_TU_NoLoad_OAMassFlowRateTest) @@ -7604,4 +7608,2315 @@ TEST_F(EnergyPlusFixture, VRFTU_SupplementalHeatingCoilCapacityLimitTest) EXPECT_EQ(ExpectedResult, SuppHeatCoilCapMax); } + +TEST_F(EnergyPlusFixture, VRFFluidControl_FanSysModel_OnOffModeTest) +{ + + std::string const idf_objects = delimited_string({ + + " Version,9.1;", + + " !- =========== ALL OBJECTS IN CLASS: BUILDING ===========", + + " Building,", + " Building 1, !- Name", + " , !- North Axis {deg}", + " , !- Terrain", + " , !- Loads Convergence Tolerance Value", + " , !- Temperature Convergence Tolerance Value {deltaC}", + " MinimalShadowing, !- Solar Distribution", + " , !- Maximum Number of Warmup Days", + " ; !- Minimum Number of Warmup Days", + + " !- =========== ALL OBJECTS IN CLASS: SHADOWCALCULATION ===========", + + " ShadowCalculation,", + " AverageOverDaysInFrequency, !- Calculation Method", + " 20, !- Calculation Frequency", + " 15000; !- Maximum Figures in Shadow Overlap Calculations", + + " !- =========== ALL OBJECTS IN CLASS: ZONEAIRHEATBALANCEALGORITHM ===========", + + " ZoneAirHeatBalanceAlgorithm,", + " AnalyticalSolution; !- Algorithm", + + " !- =========== ALL OBJECTS IN CLASS: TIMESTEP ===========", + + " Timestep,", + " 6; !- Number of Timesteps per Hour", + + " !- =========== ALL OBJECTS IN CLASS: CONVERGENCELIMITS ===========", + + " ConvergenceLimits,", + " 1; !- Minimum System Timestep {minutes}", + + " !- =========== ALL OBJECTS IN CLASS: SITE:GROUNDTEMPERATURE:BUILDINGSURFACE ===========", + + " Site:GroundTemperature:BuildingSurface,", + " 19.195, !- January Ground Temperature {C}", + " 19.191, !- February Ground Temperature {C}", + " 19.215, !- March Ground Temperature {C}", + " 19.250, !- April Ground Temperature {C}", + " 19.367, !- May Ground Temperature {C}", + " 20.429, !- June Ground Temperature {C}", + " 21.511, !- July Ground Temperature {C}", + " 21.776, !- August Ground Temperature {C}", + " 20.440, !- September Ground Temperature {C}", + " 19.538, !- October Ground Temperature {C}", + " 19.333, !- November Ground Temperature {C}", + " 19.237; !- December Ground Temperature {C}", + + " !- =========== ALL OBJECTS IN CLASS: SITE:WATERMAINSTEMPERATURE ===========", + + " Site:WaterMainsTemperature,", + " CORRELATION, !- Calculation Method", + " , !- Temperature Schedule Name", + " 9.84, !- Annual Average Outdoor Air Temperature {C}", + " 24.70; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC}", + + " SimulationControl,", + " Yes, !- Do Zone Sizing Calculation", + " Yes, !- Do System Sizing Calculation", + " No, !- Do Plant Sizing Calculation", + " Yes, !- Run Simulation for Sizing Periods", + " No; !- Run Simulation for Weather File Run Periods", + + " Site:Location,", + " Miami Intl Ap FL USA TMY3 WMO=722020, !- Name", + " 25.82, !- Latitude {deg}", + " -80.30, !- Longitude {deg}", + " -5.00, !- Time Zone {hr}", + " 11.00; !- Elevation {m}", + + " SizingPeriod:DesignDay,", + " Miami Intl Ap Ann Htg 99.6% Condns DB, !- Name", + " 1, !- Month", + " 21, !- Day of Month", + " WinterDesignDay, !- Day Type", + " 8.7, !- Maximum Dry-Bulb Temperature {C}", + " 0.0, !- Daily Dry-Bulb Temperature Range {deltaC}", + " , !- Dry-Bulb Temperature Range Modifier Type", + " , !- Dry-Bulb Temperature Range Modifier Day Schedule Name", + " Wetbulb, !- Humidity Condition Type", + " 8.7, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C}", + " , !- Humidity Condition Day Schedule Name", + " , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}", + " , !- Enthalpy at Maximum Dry-Bulb {J/kg}", + " , !- Daily Wet-Bulb Temperature Range {deltaC}", + " 101217., !- Barometric Pressure {Pa}", + " 3.8, !- Wind Speed {m/s}", + " 340, !- Wind Direction {deg}", + " No, !- Rain Indicator", + " No, !- Snow Indicator", + " No, !- Daylight Saving Time Indicator", + " ASHRAEClearSky, !- Solar Model Indicator", + " , !- Beam Solar Day Schedule Name", + " , !- Diffuse Solar Day Schedule Name", + " , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}", + " , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}", + " 0.00; !- Sky Clearness", + + " SizingPeriod:DesignDay,", + " Miami Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name", + " 7, !- Month", + " 21, !- Day of Month", + " SummerDesignDay, !- Day Type", + " 33.2, !- Maximum Dry-Bulb Temperature {C}", + " 6.7, !- Daily Dry-Bulb Temperature Range {deltaC}", + " , !- Dry-Bulb Temperature Range Modifier Type", + " , !- Dry-Bulb Temperature Range Modifier Day Schedule Name", + " Wetbulb, !- Humidity Condition Type", + " 25.3, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C}", + " , !- Humidity Condition Day Schedule Name", + " , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}", + " , !- Enthalpy at Maximum Dry-Bulb {J/kg}", + " , !- Daily Wet-Bulb Temperature Range {deltaC}", + " 101217., !- Barometric Pressure {Pa}", + " 4.5, !- Wind Speed {m/s}", + " 140, !- Wind Direction {deg}", + " No, !- Rain Indicator", + " No, !- Snow Indicator", + " No, !- Daylight Saving Time Indicator", + " ASHRAEClearSky, !- Solar Model Indicator", + " , !- Beam Solar Day Schedule Name", + " , !- Diffuse Solar Day Schedule Name", + " , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}", + " , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}", + " 1.00; !- Sky Clearness", + + " !- =========== ALL OBJECTS IN CLASS: SCHEDULETYPELIMITS ===========", + + " ScheduleTypeLimits,", + " Any Number; !- Name", + + " ScheduleTypeLimits,", + " Temperature, !- Name", + " -60, !- Lower Limit Value", + " 200, !- Upper Limit Value", + " CONTINUOUS; !- Numeric Type", + + " ScheduleTypeLimits,", + " Control Type, !- Name", + " 0, !- Lower Limit Value", + " 4, !- Upper Limit Value", + " DISCRETE; !- Numeric Type", + + " !- =========== ALL OBJECTS IN CLASS: MATERIAL ===========", + + " Material,", + " 1/2IN Gypsum, !- Name", + " Smooth, !- Roughness", + " 0.0127, !- Thickness {m}", + " 0.16, !- Conductivity {W/m-K}", + " 784.9, !- Density {kg/m3}", + " 830.000000000001, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.4, !- Solar Absorptance", + " 0.4; !- Visible Absorptance", + + " Material,", + " 8IN Concrete HW, !- Name", + " MediumRough, !- Roughness", + " 0.2033, !- Thickness {m}", + " 1.72959999999999, !- Conductivity {W/m-K}", + " 2242.99999999999, !- Density {kg/m3}", + " 836.999999999999, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.65, !- Solar Absorptance", + " 0.65; !- Visible Absorptance", + + " Material,", + " F08 Metal surface, !- Name", + " Smooth, !- Roughness", + " 0.0008, !- Thickness {m}", + " 45.2800000000001, !- Conductivity {W/m-K}", + " 7823.99999999999, !- Density {kg/m3}", + " 500, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.7, !- Solar Absorptance", + " 0.7; !- Visible Absorptance", + + " Material,", + " F16 Acoustic tile, !- Name", + " MediumSmooth, !- Roughness", + " 0.0191, !- Thickness {m}", + " 0.06, !- Conductivity {W/m-K}", + " 368, !- Density {kg/m3}", + " 590.000000000002, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.3, !- Solar Absorptance", + " 0.3; !- Visible Absorptance", + + " Material,", + " I01 25mm insulation board, !- Name", + " MediumRough, !- Roughness", + " 0.0254, !- Thickness {m}", + " 0.03, !- Conductivity {W/m-K}", + " 43, !- Density {kg/m3}", + " 1210, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.6, !- Solar Absorptance", + " 0.6; !- Visible Absorptance", + + " Material,", + " M11 100mm lightweight concrete, !- Name", + " MediumRough, !- Roughness", + " 0.1016, !- Thickness {m}", + " 0.53, !- Conductivity {W/m-K}", + " 1280, !- Density {kg/m3}", + " 840.000000000002, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.5, !- Solar Absorptance", + " 0.5; !- Visible Absorptance", + + " Material,", + " MAT-CC05 4 HW CONCRETE, !- Name", + " Rough, !- Roughness", + " 0.1016, !- Thickness {m}", + " 1.311, !- Conductivity {W/m-K}", + " 2240, !- Density {kg/m3}", + " 836.800000000001, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.85, !- Solar Absorptance", + " 0.85; !- Visible Absorptance", + + " Material,", + " Metal Decking, !- Name", + " MediumSmooth, !- Roughness", + " 0.0015, !- Thickness {m}", + " 45.006, !- Conductivity {W/m-K}", + " 7680, !- Density {kg/m3}", + " 418.4, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.6, !- Solar Absorptance", + " 0.6; !- Visible Absorptance", + + " Material,", + " Roof Insulation [18], !- Name", + " MediumRough, !- Roughness", + " 0.1693, !- Thickness {m}", + " 0.049, !- Conductivity {W/m-K}", + " 265, !- Density {kg/m3}", + " 836.800000000001, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.7, !- Solar Absorptance", + " 0.7; !- Visible Absorptance", + + " Material,", + " Roof Membrane, !- Name", + " VeryRough, !- Roughness", + " 0.0095, !- Thickness {m}", + " 0.16, !- Conductivity {W/m-K}", + " 1121.29, !- Density {kg/m3}", + " 1460, !- Specific Heat {J/kg-K}", + " 0.9, !- Thermal Absorptance", + " 0.7, !- Solar Absorptance", + " 0.7; !- Visible Absorptance", + + " Material,", + " Air Wall Material, !- Name", + " MediumSmooth, !- Roughness", + " 0.01, !- Thickness {m}", + " 0.6, !- Conductivity {W/m-K}", + " 800, !- Density {kg/m3}", + " 1000, !- Specific Heat {J/kg-K}", + " 0.95, !- Thermal Absorptance", + " 0.7, !- Solar Absorptance", + " 0.7; !- Visible Absorptance", + + " !- =========== ALL OBJECTS IN CLASS: MATERIAL:NOMASS ===========", + + " Material:NoMass,", + " CP02 CARPET PAD, !- Name", + " Smooth, !- Roughness", + " 0.1, !- Thermal Resistance {m2-K/W}", + " 0.9, !- Thermal Absorptance", + " 0.8, !- Solar Absorptance", + " 0.8; !- Visible Absorptance", + + " !- =========== ALL OBJECTS IN CLASS: CONSTRUCTION ===========", + + " Construction,", + " ExtRoof IEAD ClimateZone 1, !- Name", + " Roof Membrane, !- Outside Layer", + " Roof Insulation [18], !- Layer 2", + " Metal Decking; !- Layer 3", + + " Construction,", + " ExtSlabCarpet 4in ClimateZone 1-8 1, !- Name", + " MAT-CC05 4 HW CONCRETE, !- Outside Layer", + " CP02 CARPET PAD; !- Layer 2", + + " Construction,", + " ExtWall Mass ClimateZone 1, !- Name", + " 8IN Concrete HW, !- Outside Layer", + " 1/2IN Gypsum; !- Layer 2", + + " !- =========== ALL OBJECTS IN CLASS: GLOBALGEOMETRYRULES ===========", + + " GlobalGeometryRules,", + " UpperLeftCorner, !- Starting Vertex Position", + " Counterclockwise, !- Vertex Entry Direction", + " Relative, !- Coordinate System", + " Relative, !- Daylighting Reference Point Coordinate System", + " Relative; !- Rectangular Surface Coordinate System", + + " !- =========== ALL OBJECTS IN CLASS: ZONE ===========", + + " Zone,", + " Zone 1, !- Name", + " , !- Direction of Relative North {deg}", + " 0, !- X Origin {m}", + " 10, !- Y Origin {m}", + " 0; !- Z Origin {m}", + + " !- =========== ALL OBJECTS IN CLASS: BUILDINGSURFACE:DETAILED ===========", + + " BuildingSurface:Detailed,", + " Surface 1, !- Name", + " Floor, !- Surface Type", + " ExtSlabCarpet 4in ClimateZone 1-8 1, !- Construction Name", + " Zone 1, !- Zone Name", + " Adiabatic, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " NoSun, !- Sun Exposure", + " NoWind, !- Wind Exposure", + " , !- View Factor to Ground", + " , !- Number of Vertices", + " 10, !- Vertex 1 X-coordinate {m}", + " 0, !- Vertex 1 Y-coordinate {m}", + " 0, !- Vertex 1 Z-coordinate {m}", + " 10, !- Vertex 2 X-coordinate {m}", + " -10, !- Vertex 2 Y-coordinate {m}", + " 0, !- Vertex 2 Z-coordinate {m}", + " 0, !- Vertex 3 X-coordinate {m}", + " -10, !- Vertex 3 Y-coordinate {m}", + " 0, !- Vertex 3 Z-coordinate {m}", + " 0, !- Vertex 4 X-coordinate {m}", + " 0, !- Vertex 4 Y-coordinate {m}", + " 0; !- Vertex 4 Z-coordinate {m}", + + " BuildingSurface:Detailed,", + " Surface 2, !- Name", + " Wall, !- Surface Type", + " ExtWall Mass ClimateZone 1, !- Construction Name", + " Zone 1, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " , !- View Factor to Ground", + " , !- Number of Vertices", + " 10, !- Vertex 1 X-coordinate {m}", + " 0, !- Vertex 1 Y-coordinate {m}", + " 3.048, !- Vertex 1 Z-coordinate {m}", + " 10, !- Vertex 2 X-coordinate {m}", + " 0, !- Vertex 2 Y-coordinate {m}", + " 0, !- Vertex 2 Z-coordinate {m}", + " 0, !- Vertex 3 X-coordinate {m}", + " 0, !- Vertex 3 Y-coordinate {m}", + " 0, !- Vertex 3 Z-coordinate {m}", + " 0, !- Vertex 4 X-coordinate {m}", + " 0, !- Vertex 4 Y-coordinate {m}", + " 3.048; !- Vertex 4 Z-coordinate {m}", + + " BuildingSurface:Detailed,", + " Surface 3, !- Name", + " Wall, !- Surface Type", + " ExtWall Mass ClimateZone 1, !- Construction Name", + " Zone 1, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " , !- View Factor to Ground", + " , !- Number of Vertices", + " 10, !- Vertex 1 X-coordinate {m}", + " -10, !- Vertex 1 Y-coordinate {m}", + " 3.048, !- Vertex 1 Z-coordinate {m}", + " 10, !- Vertex 2 X-coordinate {m}", + " -10, !- Vertex 2 Y-coordinate {m}", + " 0, !- Vertex 2 Z-coordinate {m}", + " 10, !- Vertex 3 X-coordinate {m}", + " 0, !- Vertex 3 Y-coordinate {m}", + " 0, !- Vertex 3 Z-coordinate {m}", + " 10, !- Vertex 4 X-coordinate {m}", + " 0, !- Vertex 4 Y-coordinate {m}", + " 3.048; !- Vertex 4 Z-coordinate {m}", + + " BuildingSurface:Detailed,", + " Surface 4, !- Name", + " Wall, !- Surface Type", + " ExtWall Mass ClimateZone 1, !- Construction Name", + " Zone 1, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " , !- View Factor to Ground", + " , !- Number of Vertices", + " 0, !- Vertex 1 X-coordinate {m}", + " -10, !- Vertex 1 Y-coordinate {m}", + " 3.048, !- Vertex 1 Z-coordinate {m}", + " 0, !- Vertex 2 X-coordinate {m}", + " -10, !- Vertex 2 Y-coordinate {m}", + " 0, !- Vertex 2 Z-coordinate {m}", + " 10, !- Vertex 3 X-coordinate {m}", + " -10, !- Vertex 3 Y-coordinate {m}", + " 0, !- Vertex 3 Z-coordinate {m}", + " 10, !- Vertex 4 X-coordinate {m}", + " -10, !- Vertex 4 Y-coordinate {m}", + " 3.048; !- Vertex 4 Z-coordinate {m}", + + " BuildingSurface:Detailed,", + " Surface 5, !- Name", + " Wall, !- Surface Type", + " ExtWall Mass ClimateZone 1, !- Construction Name", + " Zone 1, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " , !- View Factor to Ground", + " , !- Number of Vertices", + " 0, !- Vertex 1 X-coordinate {m}", + " 0, !- Vertex 1 Y-coordinate {m}", + " 3.048, !- Vertex 1 Z-coordinate {m}", + " 0, !- Vertex 2 X-coordinate {m}", + " 0, !- Vertex 2 Y-coordinate {m}", + " 0, !- Vertex 2 Z-coordinate {m}", + " 0, !- Vertex 3 X-coordinate {m}", + " -10, !- Vertex 3 Y-coordinate {m}", + " 0, !- Vertex 3 Z-coordinate {m}", + " 0, !- Vertex 4 X-coordinate {m}", + " -10, !- Vertex 4 Y-coordinate {m}", + " 3.048; !- Vertex 4 Z-coordinate {m}", + + " BuildingSurface:Detailed,", + " Surface 6, !- Name", + " Roof, !- Surface Type", + " ExtRoof IEAD ClimateZone 1, !- Construction Name", + " Zone 1, !- Zone Name", + " Outdoors, !- Outside Boundary Condition", + " , !- Outside Boundary Condition Object", + " SunExposed, !- Sun Exposure", + " WindExposed, !- Wind Exposure", + " , !- View Factor to Ground", + " , !- Number of Vertices", + " 10, !- Vertex 1 X-coordinate {m}", + " -10, !- Vertex 1 Y-coordinate {m}", + " 3.048, !- Vertex 1 Z-coordinate {m}", + " 10, !- Vertex 2 X-coordinate {m}", + " 0, !- Vertex 2 Y-coordinate {m}", + " 3.048, !- Vertex 2 Z-coordinate {m}", + " 0, !- Vertex 3 X-coordinate {m}", + " 0, !- Vertex 3 Y-coordinate {m}", + " 3.048, !- Vertex 3 Z-coordinate {m}", + " 0, !- Vertex 4 X-coordinate {m}", + " -10, !- Vertex 4 Y-coordinate {m}", + " 3.048; !- Vertex 4 Z-coordinate {m}", + + " !- =========== ALL OBJECTS IN CLASS: AIRCONDITIONER:VARIABLEREFRIGERANTFLOW ===========", + + " AirConditioner:VariableRefrigerantFlow:FluidTemperatureControl,", + " VRF Heat Pump, !- Heat Pump Name", + " , !- Availability Schedule Name", + " VRF Heat Pump TU List, !- Zone Terminal Unit List Name", + " R410A, !- Refrigerant Type", + " 6000.0, !- Rated Evaporative Capacity {W}", + " 0.344, !- Rated Compressor Power Per Unit of Rated Evaporative Capacity {dimensionless}", + " -5, !- Minimum Outdoor Air Temperature in Cooling Mode {C}", + " 43, !- Maximum Outdoor Air Temperature in Cooling Mode {C}", + " -20, !- Minimum Outdoor Air Temperature in Heating Mode {C}", + " 22, !- Maximum Outdoor Air Temperature in Heating Mode {C}", + " 3, !- Reference Outdoor Unit Superheating {deltaC}", + " 3, !- Reference Outdoor Unit Subcooling {deltaC}", + " ConstantTemp, !- Refrigerant Temperature Control Algorithm for Indoor Unit", + " 6, !- Reference Evaporating Temperature for Indoor Unit {C}", + " 44, !- Reference Condensing Temperature for Indoor Unit {C}", + " 6, !- Variable Evaporating Temperature Minimum for Indoor Unit {C}", + " 13, !- Variable Evaporating Temperature Maximum for Indoor Unit {C}", + " 42, !- Variable Condensing Temperature Minimum for Indoor Unit {C}", + " 46, !- Variable Condensing Temperature Maximum for Indoor Unit {C}", + " 4.12E-3, !- Outdoor Unit Fan Power Per Unit of Rated Evaporative Capacity {dimensionless}", + " 7.26E-5, !- Outdoor Unit Fan Flow Rate Per Unit of Rated Evaporative Capacity {m3/s-W}", + " OUEvapTempCurve, !- Outdoor Unit Evaporating Temperature Function of Superheating Curve Name", + " OUCondTempCurve, !- Outdoor Unit Condensing Temperature Function of Subcooling Curve Name", + " 0.0508, !- Diameter of Main Pipe Connecting Outdoor Unit to the First Branch Joint {m}", + " 30, !- Length of Main Pipe Connecting Outdoor Unit to the First Branch Joint {m}", + " 36, !- Equivalent Length of Main Pipe Connecting Outdoor Unit to the First Branch Joint {m}", + " 5, !- Height Difference Between Outdoor Unit and Indoor Units {m}", + " 0.02, !- Main Pipe Insulation Thickness {m}", + " 0.032, !- Main Pipe Insulation Thermal Conductivity {W/m-K}", + " 33, !- Crankcase Heater Power per Compressor {W}", + " 1, !- Number of Compressors {dimensionless}", + " 0.33, !- Ratio of Compressor Size to Total Compressor Capacity {W/W}", + " 7, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater {C}", + " , !- Defrost Strategy", + " , !- Defrost Control", + " , !- Defrost Energy Input Ratio Modifier Function of Temperature Curve Name", + " , !- Defrost Time Period Fraction", + " , !- Resistive Defrost Heater Capacity {W}", + " , !- Maximum Outdoor Dry-bulb Temperature for Defrost Operation {C}", + " 4500000, !- Compressor maximum delta Pressure {Pa}", + " 3, !- Number of Compressor Loading Index Entries", + " 1500, !- Compressor Speed at Loading Index 1 {rev/min}", + " MinSpdCooling, !- Loading Index 1 Evaporative Capacity Multiplier Function of Temperature Curve Name", + " MinSpdPower, !- Loading Index 1 Compressor Power Multiplier Function of Temperature Curve Name", + " 3600, !- Compressor Speed at Loading Index 2 {rev/min}", + " Spd1Cooling, !- Loading Index 2 Evaporative Capacity Multiplier Function of Temperature Curve Name", + " Spd1Power, !- Loading Index 2 Compressor Power Multiplier Function of Temperature Curve Name", + " 6000, !- Compressor Speed at Loading Index 3 {rev/min}", + " Spd2Cooling, !- Loading Index 3 Evaporative Capacity Multiplier Function of Temperature Curve Name", + " Spd2Power; !- Loading Index 3 Compressor Power Multiplier Function of Temperature Curve Name", + + " Curve:Quadratic,", + " OUEvapTempCurve, !- Name", + " 0, !- Coefficient1 Constant", + " 6.05E-1, !- Coefficient2 x", + " 2.50E-2, !- Coefficient3 x**2", + " 0, !- Minimum Value of x", + " 15, !- Maximum Value of x", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature; !- Output Unit Type", + + " Curve:Quadratic,", + " OUCondTempCurve, !- Name", + " 0, !- Coefficient1 Constant", + " -2.91, !- Coefficient2 x", + " 1.180, !- Coefficient3 x**2", + " 0, !- Minimum Value of x", + " 20, !- Maximum Value of x", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature; !- Output Unit Type", + + " Curve:Biquadratic,", + " MinSpdCooling, !- Name", + " 3.19E-01, !- Coefficient1 Constant", + " -1.26E-03, !- Coefficient2 x", + " -2.15E-05, !- Coefficient3 x**2", + " 1.20E-02, !- Coefficient4 y", + " 1.05E-04, !- Coefficient5 y**2", + " -8.66E-05, !- Coefficient6 x*y", + " 15, !- Minimum Value of x", + " 65, !- Maximum Value of x", + " -30, !- Minimum Value of y", + " 15, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " Curve:Biquadratic,", + " MinSpdPower, !- Name", + " 8.79E-02, !- Coefficient1 Constant", + " -1.72E-04, !- Coefficient2 x", + " 6.93E-05, !- Coefficient3 x**2", + " -3.38E-05, !- Coefficient4 y", + " -8.10E-06, !- Coefficient5 y**2", + " -1.04E-05, !- Coefficient6 x*y", + " 15, !- Minimum Value of x", + " 65, !- Maximum Value of x", + " -30, !- Minimum Value of y", + " 15, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " Curve:Biquadratic,", + " Spd1Cooling, !- Name", + " 8.12E-01, !- Coefficient1 Constant", + " -4.23E-03, !- Coefficient2 x", + " -4.11E-05, !- Coefficient3 x**2", + " 2.97E-02, !- Coefficient4 y", + " 2.67E-04, !- Coefficient5 y**2", + " -2.23E-04, !- Coefficient6 x*y", + " 15, !- Minimum Value of x", + " 65, !- Maximum Value of x", + " -30, !- Minimum Value of y", + " 15, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " Curve:Biquadratic,", + " Spd1Power, !- Name", + " 3.26E-01, !- Coefficient1 Constant", + " -2.20E-03, !- Coefficient2 x", + " 1.42E-04, !- Coefficient3 x**2", + " 2.82E-03, !- Coefficient4 y", + " 2.86E-05, !- Coefficient5 y**2", + " -3.50E-05, !- Coefficient6 x*y", + " 15, !- Minimum Value of x", + " 65, !- Maximum Value of x", + " -30, !- Minimum Value of y", + " 15, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " Curve:Biquadratic,", + " Spd2Cooling, !- Name", + " 1.32E+00, !- Coefficient1 Constant", + " -6.20E-03, !- Coefficient2 x", + " -7.10E-05, !- Coefficient3 x**2", + " 4.89E-02, !- Coefficient4 y", + " 4.59E-04, !- Coefficient5 y**2", + " -3.67E-04, !- Coefficient6 x*y", + " 15, !- Minimum Value of x", + " 65, !- Maximum Value of x", + " -30, !- Minimum Value of y", + " 15, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " Curve:Biquadratic,", + " Spd2Power, !- Name", + " 6.56E-01, !- Coefficient1 Constant", + " -3.71E-03, !- Coefficient2 x", + " 2.07E-04, !- Coefficient3 x**2", + " 1.05E-02, !- Coefficient4 y", + " 7.36E-05, !- Coefficient5 y**2", + " -1.57E-04, !- Coefficient6 x*y", + " 15, !- Minimum Value of x", + " 65, !- Maximum Value of x", + " -30, !- Minimum Value of y", + " 15, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " !- =========== ALL OBJECTS IN CLASS: ZONETERMINALUNITLIST ===========", + + " ZoneTerminalUnitList,", + " VRF Heat Pump TU List, !- Zone Terminal Unit List Name", + " TU1; !- Zone Terminal Unit Name 5", + + " !- =========== ALL OBJECTS IN CLASS: ZoneHVAC:TerminalUnit:VariableRefrigerantFlow ===========", + + " ZoneHVAC:TerminalUnit:VariableRefrigerantFlow,", + " TU1, !- Zone Terminal Unit Name", + " , !- Terminal Unit Availability Schedule", + " TU1 Inlet Node, !- Terminal Unit Air Inlet Node Name", + " TU1 Outlet Node, !- Terminal Unit Air Outlet Node Name", + " autosize, !- Cooling Supply Air Flow Rate {m3/s}", + " autosize, !- No Cooling Supply Air Flow Rate {m3/s}", + " autosize, !- Heating Supply Air Flow Rate {m3/s}", + " autosize, !- No Heating Supply Air Flow Rate {m3/s}", + " autosize, !- Cooling Outdoor Air Flow Rate {m3/s}", + " autosize, !- Heating Outdoor Air Flow Rate {m3/s}", + " autosize, !- No Load Outdoor Air Flow Rate {m3/s}", + " VRFFanScheduleCycle, !- Supply Air Fan Operating Mode Schedule Name", + " drawthrough, !- Supply Air Fan Placement", + " Fan:SystemModel, !- Supply Air Fan Object Type", + " TU1 VRF Supply Fan, !- Supply Air Fan Object Name", + " OutdoorAir:Mixer, !- Outside Air Mixer Object Type", + " TU1 OA Mixer, !- Outside Air Mixer Object Name", + " Coil:Cooling:DX:VariableRefrigerantFlow:FluidTemperatureControl, !- Cooling Coil Object Type", + " TU1 VRF DX Cooling Coil, !- Cooling Coil Object Name", + " COIL:HEATING:DX:VARIABLEREFRIGERANTFLOW:FluidTemperatureControl, !- Heating Coil Object Type", + " TU1 VRF DX Heating Coil, !- Heating Coil Object Name", + " 30, !- Zone Terminal Unit On Parasitic Electric Energy Use {W}", + " 20; !- Zone Terminal Unit Off Parasitic Electric Energy Use {W}", + + " Schedule:Compact,", + " VRFFanScheduleCycle, !- Name", + " Any Number, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,0; !- Field 3", + + " OutdoorAir:Mixer,", + " TU1 OA Mixer, !- Name", + " TU1 VRF DX CCoil Inlet Node, !- Mixed Air Node Name", + " Outside Air Inlet Node 1,!- Outdoor Air Stream Node Name", + " Relief Air Outlet Node 1,!- Relief Air Stream Node Name", + " TU1 Inlet Node; !- Return Air Stream Node Name", + + " Fan:SystemModel,", + " TU1 VRF Supply Fan, !- Name", + " , !- Availability Schedule Name", + " TU1 VRF DX HCoil Outlet Node, !- Air Inlet Node Name", + " TU1 Outlet Node, !- Air Outlet Node Name", + " autosize, !- Design Maximum Air Flow Rate {m3/s}", + " Discrete, !- Speed Control Method", + " 1.0, !- Electric Power Minimum Flow Rate Fraction", + " 100.0, !- Design Pressure Rise {Pa}", + " 0.9, !- Motor Efficiency", + " 1, !- Motor In Air Stream Fraction", + " autosize, !- Design Electric Power Consumption {W}", + " TotalEfficiencyAndPressure, !- Design Power Sizing Method", + " , !- Electric Power Per Unit Flow Rate {W/(m3/s)}", + " , !- Electric Power Per Unit Flow Rate Per Unit Pressure {W/((m3/s)-Pa)}", + " 0.70, !- Fan Total Efficiency", + " , !- Electric Power Function of Flow Fraction Curve Name", + " , !- Night Ventilation Mode Pressure Rise {Pa}", + " , !- Night Ventilation Mode Flow Fraction", + " , !- Motor Loss Zone Name", + " , !- Motor Loss Radiative Fraction", + " General, !- End-Use Subcategory", + " 1, !- Number of Speeds", + " 1, !- Speed 1 Flow Fraction", + " 1; !- Speed 1 Electric Power Fraction", + + " !- =========== ALL OBJECTS IN CLASS: COIL:COOLING:DX:VARIABLEREFRIGERANTFLOW:FLUIDTEMPERATURECONTROL ===========", + + " Coil:Cooling:DX:VariableRefrigerantFlow:FluidTemperatureControl,", + " TU1 VRF DX Cooling Coil, !- Name", + " , !- Availability Schedule Name", + " TU1 VRF DX CCoil Inlet Node, !- Coil Air Inlet Node", + " TU1 VRF DX CCoil Outlet Node, !- Coil Air Outlet Node", + " autosize, !- Rated Total Cooling Capacity {W}", + " autosize, !- Rated Sensible Heat Ratio", + " 3, !- Indoor Unit Reference Superheating {deltaC}", + " IUEvapTempCurve, !- Indoor Unit Evaporating Temperature Function of Superheating Curve Name", + " ; !- Name of Water Storage Tank for Condensate Collection", + + " Curve:Quadratic,", + " IUEvapTempCurve, !- Name", + " 0, !- Coefficient1 Constant", + " 0.843, !- Coefficient2 x", + " 0, !- Coefficient3 x**2", + " 0, !- Minimum Value of x", + " 15, !- Maximum Value of x", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature; !- Output Unit Type", + + " !- =========== ALL OBJECTS IN CLASS: COIL:HEATING:DX:VARIABLEREFRIGERANTFLOW ===========", + + " Coil:Heating:DX:VariableRefrigerantFlow:FluidTemperatureControl,", + " TU1 VRF DX Heating Coil, !- Name", + " , !- Availability Schedule", + " TU1 VRF DX CCoil Outlet Node, !- Coil Air Inlet Node", + " TU1 VRF DX HCoil Outlet Node, !- Coil Air Outlet Node", + " autosize, !- Rated Total Heating Capacity {W}", + " 5, !- Indoor Unit Reference Subcooling {deltaC}", + " IUCondTempCurve; !- Indoor Unit Condensing Temperature Function of Subcooling Curve Name", + + " Curve:Quadratic,", + " IUCondTempCurve, !- Name", + " -1.85, !- Coefficient1 Constant", + " 0.411, !- Coefficient2 x", + " 0.0196, !- Coefficient3 x**2", + " 0, !- Minimum Value of x", + " 20, !- Maximum Value of x", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature; !- Output Unit Type", + + " !- =========== ALL OBJECTS IN CLASS: FLUIDPROPERTIES:NAME ===========", + + " FluidProperties:Name,", + " R410a, !- Fluid Name", + " Refrigerant; !- Fluid Type", + + " !- =========== ALL OBJECTS IN CLASS: FLUIDPROPERTIES:TEMPERATURES ===========", + + " FluidProperties:Temperatures,", + " R410aSaturatedTemperatures, !- Name", + " -72.000,-69.000,-66.000,-63.000,-60.000,-57.000,-54.000,", + " -51.000,-48.000,-45.000,-42.000,-39.000,-36.000,-33.000,", + " -30.000,-27.000,-24.000,-21.000,-18.000,-15.000,-12.000,", + " -9.000,-6.000,-3.000,0.000,3.000,6.000,9.000,", + " 12.000,15.000,18.000,21.000,24.000,27.000,30.000,", + " 33.000,36.000,39.000,42.000,45.000,48.000,51.000,", + " 54.000,57.000,60.000,63.000,66.000,69.000;", + + " FluidProperties:Temperatures,", + " R410aSuperHeatTemperatures, !- Name", + " -72.000,-66.000,-60.000,-54.000,-48.000,-45.000,-42.000,", + " -39.000,-36.000,-33.000,-30.000,-27.000,-24.000,-21.000,", + " -18.000,-15.000,-12.000,-9.000,-6.000,-3.000,0.000,", + " 3.000,6.000,9.000,12.000,15.000,18.000,21.000,", + " 24.000,27.000,30.000,33.000,36.000,39.000,42.000,", + " 45.000,48.000,51.000,54.000,57.000,60.000,63.000,", + " 66.000,69.000;", + + " !- =========== ALL OBJECTS IN CLASS: FLUIDPROPERTIES:SATURATED ===========", + + " FluidProperties:Saturated,", + " R410a, !- Fluid Name", + " Pressure, !- Fluid Property Type", + " FluidGas, !- Fluid Phase", + " R410aSaturatedTemperatures, !- Temperature Values Name", + " 3.1238E+04,3.7717E+04,4.5248E+04,5.3954E+04,6.3963E+04,7.5412E+04,8.8445E+04,", + " 1.0321E+05,1.1988E+05,1.3860E+05,1.5955E+05,1.8292E+05,2.0888E+05,2.3762E+05,", + " 2.6935E+05,3.0426E+05,3.4257E+05,3.8449E+05,4.3024E+05,4.8004E+05,5.3412E+05,", + " 5.9273E+05,6.5609E+05,7.2446E+05,7.9808E+05,8.7722E+05,9.6214E+05,1.0531E+06,", + " 1.1504E+06,1.2543E+06,1.3651E+06,1.4831E+06,1.6086E+06,1.7419E+06,1.8834E+06,", + " 2.0334E+06,2.1923E+06,2.3604E+06,2.5382E+06,2.7261E+06,2.9246E+06,3.1341E+06,", + " 3.3552E+06,3.5886E+06,3.8348E+06,4.0949E+06,4.3697E+06,4.6607E+06;", + + " FluidProperties:Saturated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " Fluid, !- Fluid Phase", + " R410aSaturatedTemperatures, !- Temperature Values Name", + " 9.8535E+04,1.0259E+05,1.0665E+05,1.1072E+05,1.1479E+05,1.1888E+05,1.2297E+05,", + " 1.2707E+05,1.3119E+05,1.3532E+05,1.3947E+05,1.4363E+05,1.4782E+05,1.5202E+05,", + " 1.5624E+05,1.6048E+05,1.6475E+05,1.6904E+05,1.7337E+05,1.7772E+05,1.8210E+05,", + " 1.8652E+05,1.9097E+05,1.9547E+05,2.0000E+05,2.0458E+05,2.0920E+05,2.1388E+05,", + " 2.1861E+05,2.2340E+05,2.2825E+05,2.3316E+05,2.3815E+05,2.4322E+05,2.4838E+05,", + " 2.5363E+05,2.5899E+05,2.6447E+05,2.7008E+05,2.7585E+05,2.8180E+05,2.8797E+05,", + " 2.9441E+05,3.0120E+05,3.0848E+05,3.1650E+05,3.2578E+05,3.3815E+05;", + + " FluidProperties:Saturated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " FluidGas, !- Fluid Phase", + " R410aSaturatedTemperatures, !- Temperature Values Name", + " 3.8813E+05,3.8981E+05,3.9148E+05,3.9313E+05,3.9476E+05,3.9637E+05,3.9796E+05,", + " 3.9953E+05,4.0108E+05,4.0260E+05,4.0410E+05,4.0557E+05,4.0701E+05,4.0842E+05,", + " 4.0980E+05,4.1114E+05,4.1245E+05,4.1373E+05,4.1496E+05,4.1615E+05,4.1730E+05,", + " 4.1840E+05,4.1945E+05,4.2045E+05,4.2139E+05,4.2227E+05,4.2308E+05,4.2382E+05,", + " 4.2448E+05,4.2507E+05,4.2556E+05,4.2595E+05,4.2624E+05,4.2641E+05,4.2646E+05,", + " 4.2635E+05,4.2609E+05,4.2564E+05,4.2498E+05,4.2408E+05,4.2290E+05,4.2137E+05,", + " 4.1941E+05,4.1692E+05,4.1370E+05,4.0942E+05,4.0343E+05,3.9373E+05;", + + " FluidProperties:Saturated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " Fluid, !- Fluid Phase", + " R410aSaturatedTemperatures, !- Temperature Values Name", + " 1.4127E+03,1.4036E+03,1.3946E+03,1.3854E+03,1.3762E+03,1.3669E+03,1.3576E+03,", + " 1.3482E+03,1.3387E+03,1.3291E+03,1.3194E+03,1.3097E+03,1.2998E+03,1.2898E+03,", + " 1.2797E+03,1.2694E+03,1.2591E+03,1.2486E+03,1.2379E+03,1.2271E+03,1.2160E+03,", + " 1.2048E+03,1.1934E+03,1.1818E+03,1.1699E+03,1.1578E+03,1.1454E+03,1.1328E+03,", + " 1.1197E+03,1.1064E+03,1.0927E+03,1.0785E+03,1.0639E+03,1.0488E+03,1.0331E+03,", + " 1.0167E+03,9.9971E+02,9.8187E+02,9.6308E+02,9.4319E+02,9.2198E+02,8.9916E+02,", + " 8.7429E+02,8.4672E+02,8.1537E+02,7.7825E+02,7.3095E+02,6.5903E+02;", + + " FluidProperties:Saturated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " FluidGas, !- Fluid Phase", + " R410aSaturatedTemperatures, !- Temperature Values Name", + " 1.3845E+00,1.6517E+00,1.9588E+00,2.3100E+00,2.7097E+00,3.1627E+00,3.6737E+00,", + " 4.2482E+00,4.8916E+00,5.6098E+00,6.4088E+00,7.2952E+00,8.2758E+00,9.3578E+00,", + " 1.0549E+01,1.1857E+01,1.3292E+01,1.4861E+01,1.6576E+01,1.8447E+01,2.0485E+01,", + " 2.2702E+01,2.5113E+01,2.7732E+01,3.0575E+01,3.3659E+01,3.7005E+01,4.0634E+01,", + " 4.4571E+01,4.8844E+01,5.3483E+01,5.8525E+01,6.4012E+01,6.9991E+01,7.6520E+01,", + " 8.3666E+01,9.1511E+01,1.0016E+02,1.0973E+02,1.2038E+02,1.3233E+02,1.4585E+02,", + " 1.6135E+02,1.7940E+02,2.0095E+02,2.2766E+02,2.6301E+02,3.1759E+02;", + + " FluidProperties:Saturated,", + " R410a, !- Fluid Name", + " SpecificHeat, !- Fluid Property Type", + " Fluid, !- Fluid Phase", + " R410aSaturatedTemperatures, !- Temperature Values Name", + " 1.3499E+03,1.3515E+03,1.3534E+03,1.3557E+03,1.3584E+03,1.3614E+03,1.3648E+03,", + " 1.3686E+03,1.3728E+03,1.3774E+03,1.3825E+03,1.3881E+03,1.3941E+03,1.4007E+03,", + " 1.4078E+03,1.4155E+03,1.4238E+03,1.4327E+03,1.4424E+03,1.4527E+03,1.4639E+03,", + " 1.4759E+03,1.4888E+03,1.5027E+03,1.5177E+03,1.5340E+03,1.5515E+03,1.5706E+03,", + " 1.5914E+03,1.6141E+03,1.6390E+03,1.6664E+03,1.6968E+03,1.7307E+03,1.7689E+03,", + " 1.8123E+03,1.8622E+03,1.9204E+03,1.9895E+03,2.0732E+03,2.1774E+03,2.3116E+03,", + " 2.4924E+03,2.7507E+03,3.1534E+03,3.8723E+03,5.5190E+03,1.2701E+04;", + + " FluidProperties:Saturated,", + " R410a, !- Fluid Name", + " SpecificHeat, !- Fluid Property Type", + " FluidGas, !- Fluid Phase", + " R410aSaturatedTemperatures, !- Temperature Values Name", + " 7.2387E+02,7.3519E+02,7.4693E+02,7.5910E+02,7.7167E+02,7.8465E+02,7.9802E+02,", + " 8.1178E+02,8.2594E+02,8.4050E+02,8.5546E+02,8.7085E+02,8.8668E+02,9.0298E+02,", + " 9.1979E+02,9.3715E+02,9.5511E+02,9.7372E+02,9.9307E+02,1.0132E+03,1.0343E+03,", + " 1.0564E+03,1.0796E+03,1.1042E+03,1.1302E+03,1.1580E+03,1.1877E+03,1.2196E+03,", + " 1.2541E+03,1.2917E+03,1.3329E+03,1.3783E+03,1.4287E+03,1.4853E+03,1.5494E+03,", + " 1.6228E+03,1.7078E+03,1.8078E+03,1.9274E+03,2.0735E+03,2.2562E+03,2.4922E+03,", + " 2.8094E+03,3.2596E+03,3.9504E+03,5.1465E+03,7.7185E+03,1.7076E+04;", + + " !- =========== ALL OBJECTS IN CLASS: FLUIDPROPERTIES:SUPERHEATED ===========", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.1238E+04, !- Pressure {Pa}", + " 3.8813E+05,3.9245E+05,3.9675E+05,4.0105E+05,4.0536E+05,4.0753E+05,4.0970E+05,", + " 4.1189E+05,4.1408E+05,4.1628E+05,4.1849E+05,4.2071E+05,4.2294E+05,4.2518E+05,", + " 4.2743E+05,4.2969E+05,4.3196E+05,4.3425E+05,4.3655E+05,4.3885E+05,4.4118E+05,", + " 4.4351E+05,4.4586E+05,4.4821E+05,4.5058E+05,4.5297E+05,4.5536E+05,4.5777E+05,", + " 4.6020E+05,4.6263E+05,4.6508E+05,4.6754E+05,4.7002E+05,4.7251E+05,4.7501E+05,", + " 4.7752E+05,4.8005E+05,4.8259E+05,4.8515E+05,4.8772E+05,4.9030E+05,4.9290E+05,", + " 4.9551E+05,4.9813E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.1238E+04, !- Pressure {Pa}", + " 1.3845E+00,1.3404E+00,1.2997E+00,1.2617E+00,1.2262E+00,1.2092E+00,1.1928E+00,", + " 1.1768E+00,1.1613E+00,1.1462E+00,1.1316E+00,1.1173E+00,1.1034E+00,1.0898E+00,", + " 1.0766E+00,1.0638E+00,1.0512E+00,1.0390E+00,1.0271E+00,1.0154E+00,1.0040E+00,", + " 9.9285E-01,9.8197E-01,9.7133E-01,9.6093E-01,9.5075E-01,9.4079E-01,9.3104E-01,", + " 9.2150E-01,9.1215E-01,9.0299E-01,8.9403E-01,8.8524E-01,8.7662E-01,8.6817E-01,", + " 8.5989E-01,8.5177E-01,8.4380E-01,8.3598E-01,8.2831E-01,8.2077E-01,8.1338E-01,", + " 8.0612E-01,7.9899E-01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.5248E+04, !- Pressure {Pa}", + " 0.0000E+00,3.9148E+05,3.9593E+05,4.0034E+05,4.0474E+05,4.0694E+05,4.0915E+05,", + " 4.1136E+05,4.1358E+05,4.1580E+05,4.1803E+05,4.2027E+05,4.2252E+05,4.2478E+05,", + " 4.2705E+05,4.2933E+05,4.3161E+05,4.3391E+05,4.3622E+05,4.3854E+05,4.4088E+05,", + " 4.4322E+05,4.4558E+05,4.4794E+05,4.5032E+05,4.5272E+05,4.5512E+05,4.5754E+05,", + " 4.5997E+05,4.6241E+05,4.6486E+05,4.6733E+05,4.6981E+05,4.7231E+05,4.7481E+05,", + " 4.7733E+05,4.7987E+05,4.8241E+05,4.8497E+05,4.8755E+05,4.9013E+05,4.9273E+05,", + " 4.9535E+05,4.9797E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.5248E+04, !- Pressure {Pa}", + " 0.0000E+00,1.9588E+00,1.8968E+00,1.8395E+00,1.7863E+00,1.7610E+00,1.7365E+00,", + " 1.7128E+00,1.6898E+00,1.6674E+00,1.6457E+00,1.6246E+00,1.6041E+00,1.5842E+00,", + " 1.5647E+00,1.5458E+00,1.5273E+00,1.5093E+00,1.4918E+00,1.4747E+00,1.4580E+00,", + " 1.4416E+00,1.4257E+00,1.4101E+00,1.3949E+00,1.3800E+00,1.3654E+00,1.3512E+00,", + " 1.3372E+00,1.3236E+00,1.3102E+00,1.2971E+00,1.2843E+00,1.2717E+00,1.2594E+00,", + " 1.2473E+00,1.2355E+00,1.2239E+00,1.2125E+00,1.2013E+00,1.1903E+00,1.1796E+00,", + " 1.1690E+00,1.1586E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 6.3963E+04, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,3.9476E+05,3.9935E+05,4.0388E+05,4.0614E+05,4.0839E+05,", + " 4.1064E+05,4.1290E+05,4.1516E+05,4.1742E+05,4.1969E+05,4.2196E+05,4.2425E+05,", + " 4.2654E+05,4.2884E+05,4.3114E+05,4.3346E+05,4.3579E+05,4.3813E+05,4.4047E+05,", + " 4.4283E+05,4.4520E+05,4.4758E+05,4.4997E+05,4.5238E+05,4.5479E+05,4.5722E+05,", + " 4.5966E+05,4.6211E+05,4.6457E+05,4.6705E+05,4.6954E+05,4.7204E+05,4.7455E+05,", + " 4.7708E+05,4.7962E+05,4.8217E+05,4.8474E+05,4.8732E+05,4.8991E+05,4.9252E+05,", + " 4.9513E+05,4.9777E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 6.3963E+04, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,2.7097E+00,2.6240E+00,2.5451E+00,2.5078E+00,2.4718E+00,", + " 2.4370E+00,2.4034E+00,2.3708E+00,2.3393E+00,2.3086E+00,2.2789E+00,2.2500E+00,", + " 2.2219E+00,2.1945E+00,2.1679E+00,2.1420E+00,2.1167E+00,2.0921E+00,2.0681E+00,", + " 2.0446E+00,2.0217E+00,1.9994E+00,1.9776E+00,1.9562E+00,1.9354E+00,1.9150E+00,", + " 1.8950E+00,1.8755E+00,1.8564E+00,1.8377E+00,1.8194E+00,1.8014E+00,1.7839E+00,", + " 1.7666E+00,1.7497E+00,1.7332E+00,1.7169E+00,1.7010E+00,1.6854E+00,1.6700E+00,", + " 1.6550E+00,1.6402E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 8.8445E+04, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,3.9796E+05,4.0270E+05,4.0503E+05,4.0736E+05,", + " 4.0967E+05,4.1198E+05,4.1429E+05,4.1660E+05,4.1891E+05,4.2122E+05,4.2354E+05,", + " 4.2586E+05,4.2819E+05,4.3052E+05,4.3286E+05,4.3521E+05,4.3757E+05,4.3994E+05,", + " 4.4232E+05,4.4470E+05,4.4710E+05,4.4951E+05,4.5193E+05,4.5436E+05,4.5680E+05,", + " 4.5925E+05,4.6171E+05,4.6419E+05,4.6668E+05,4.6918E+05,4.7169E+05,4.7421E+05,", + " 4.7675E+05,4.7930E+05,4.8186E+05,4.8443E+05,4.8702E+05,4.8962E+05,4.9223E+05,", + " 4.9486E+05,4.9749E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 8.8445E+04, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,3.6737E+00,3.5570E+00,3.5024E+00,3.4500E+00,", + " 3.3995E+00,3.3509E+00,3.3039E+00,3.2585E+00,3.2146E+00,3.1720E+00,3.1308E+00,", + " 3.0907E+00,3.0518E+00,3.0140E+00,2.9772E+00,2.9414E+00,2.9065E+00,2.8726E+00,", + " 2.8395E+00,2.8072E+00,2.7757E+00,2.7449E+00,2.7149E+00,2.6856E+00,2.6569E+00,", + " 2.6289E+00,2.6015E+00,2.5747E+00,2.5485E+00,2.5228E+00,2.4977E+00,2.4731E+00,", + " 2.4490E+00,2.4254E+00,2.4022E+00,2.3795E+00,2.3573E+00,2.3354E+00,2.3140E+00,", + " 2.2930E+00,2.2724E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.1988E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.0108E+05,4.0354E+05,4.0597E+05,", + " 4.0838E+05,4.1077E+05,4.1315E+05,4.1552E+05,4.1788E+05,4.2025E+05,4.2261E+05,", + " 4.2497E+05,4.2734E+05,4.2971E+05,4.3209E+05,4.3447E+05,4.3685E+05,4.3925E+05,", + " 4.4165E+05,4.4406E+05,4.4648E+05,4.4891E+05,4.5135E+05,4.5380E+05,4.5626E+05,", + " 4.5873E+05,4.6121E+05,4.6370E+05,4.6620E+05,4.6871E+05,4.7124E+05,4.7377E+05,", + " 4.7632E+05,4.7888E+05,4.8145E+05,4.8404E+05,4.8663E+05,4.8924E+05,4.9186E+05,", + " 4.9450E+05,4.9715E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.1988E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.8918E+00,4.8116E+00,4.7352E+00,", + " 4.6621E+00,4.5920E+00,4.5247E+00,4.4599E+00,4.3974E+00,4.3370E+00,4.2787E+00,", + " 4.2221E+00,4.1674E+00,4.1143E+00,4.0627E+00,4.0126E+00,3.9639E+00,3.9165E+00,", + " 3.8704E+00,3.8255E+00,3.7817E+00,3.7390E+00,3.6974E+00,3.6567E+00,3.6171E+00,", + " 3.5783E+00,3.5405E+00,3.5035E+00,3.4673E+00,3.4319E+00,3.3973E+00,3.3634E+00,", + " 3.3302E+00,3.2977E+00,3.2659E+00,3.2347E+00,3.2041E+00,3.1742E+00,3.1448E+00,", + " 3.1160E+00,3.0877E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.3860E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.0260E+05,4.0510E+05,", + " 4.0757E+05,4.1002E+05,4.1244E+05,4.1485E+05,4.1726E+05,4.1965E+05,4.2204E+05,", + " 4.2444E+05,4.2683E+05,4.2922E+05,4.3162E+05,4.3402E+05,4.3642E+05,4.3883E+05,", + " 4.4125E+05,4.4368E+05,4.4611E+05,4.4855E+05,4.5100E+05,4.5346E+05,4.5593E+05,", + " 4.5841E+05,4.6090E+05,4.6340E+05,4.6591E+05,4.6843E+05,4.7097E+05,4.7351E+05,", + " 4.7606E+05,4.7863E+05,4.8121E+05,4.8380E+05,4.8640E+05,4.8902E+05,4.9165E+05,", + " 4.9428E+05,4.9694E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.3860E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,5.6098E+00,5.5173E+00,", + " 5.4293E+00,5.3451E+00,5.2645E+00,5.1871E+00,5.1127E+00,5.0409E+00,4.9717E+00,", + " 4.9047E+00,4.8399E+00,4.7772E+00,4.7163E+00,4.6573E+00,4.5999E+00,4.5442E+00,", + " 4.4900E+00,4.4372E+00,4.3859E+00,4.3358E+00,4.2870E+00,4.2394E+00,4.1930E+00,", + " 4.1476E+00,4.1033E+00,4.0601E+00,4.0178E+00,3.9765E+00,3.9360E+00,3.8965E+00,", + " 3.8578E+00,3.8199E+00,3.7828E+00,3.7464E+00,3.7108E+00,3.6759E+00,3.6417E+00,", + " 3.6081E+00,3.5752E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.5955E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.0410E+05,", + " 4.0664E+05,4.0915E+05,4.1163E+05,4.1409E+05,4.1654E+05,4.1898E+05,4.2140E+05,", + " 4.2383E+05,4.2625E+05,4.2867E+05,4.3109E+05,4.3351E+05,4.3593E+05,4.3836E+05,", + " 4.4080E+05,4.4324E+05,4.4569E+05,4.4815E+05,4.5061E+05,4.5309E+05,4.5557E+05,", + " 4.5806E+05,4.6056E+05,4.6307E+05,4.6559E+05,4.6812E+05,4.7066E+05,4.7321E+05,", + " 4.7578E+05,4.7835E+05,4.8094E+05,4.8354E+05,4.8615E+05,4.8877E+05,4.9140E+05,", + " 4.9404E+05,4.9670E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.5955E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,6.4087E+00,", + " 6.3023E+00,6.2010E+00,6.1045E+00,6.0120E+00,5.9233E+00,5.8380E+00,5.7559E+00,", + " 5.6767E+00,5.6001E+00,5.5261E+00,5.4544E+00,5.3850E+00,5.3176E+00,5.2521E+00,", + " 5.1885E+00,5.1267E+00,5.0666E+00,5.0080E+00,4.9509E+00,4.8953E+00,4.8411E+00,", + " 4.7882E+00,4.7366E+00,4.6862E+00,4.6369E+00,4.5888E+00,4.5417E+00,4.4957E+00,", + " 4.4507E+00,4.4066E+00,4.3635E+00,4.3212E+00,4.2799E+00,4.2393E+00,4.1996E+00,", + " 4.1607E+00,4.1225E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.8292E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 4.0557E+05,4.0816E+05,4.1071E+05,4.1323E+05,4.1573E+05,4.1821E+05,4.2068E+05,", + " 4.2313E+05,4.2559E+05,4.2804E+05,4.3049E+05,4.3293E+05,4.3538E+05,4.3784E+05,", + " 4.4029E+05,4.4275E+05,4.4522E+05,4.4769E+05,4.5017E+05,4.5266E+05,4.5516E+05,", + " 4.5766E+05,4.6017E+05,4.6270E+05,4.6523E+05,4.6777E+05,4.7032E+05,4.7288E+05,", + " 4.7546E+05,4.7804E+05,4.8063E+05,4.8324E+05,4.8586E+05,4.8848E+05,4.9112E+05,", + " 4.9378E+05,4.9644E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.8292E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 7.2953E+00,7.1732E+00,7.0571E+00,6.9465E+00,6.8408E+00,6.7394E+00,6.6420E+00,", + " 6.5482E+00,6.4578E+00,6.3706E+00,6.2862E+00,6.2046E+00,6.1255E+00,6.0488E+00,", + " 5.9743E+00,5.9020E+00,5.8317E+00,5.7633E+00,5.6968E+00,5.6320E+00,5.5688E+00,", + " 5.5072E+00,5.4472E+00,5.3885E+00,5.3313E+00,5.2754E+00,5.2208E+00,5.1674E+00,", + " 5.1152E+00,5.0641E+00,5.0141E+00,4.9652E+00,4.9173E+00,4.8703E+00,4.8244E+00,", + " 4.7793E+00,4.7352E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.0888E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,4.0701E+05,4.0964E+05,4.1224E+05,4.1480E+05,4.1733E+05,4.1985E+05,", + " 4.2235E+05,4.2485E+05,4.2733E+05,4.2981E+05,4.3229E+05,4.3477E+05,4.3724E+05,", + " 4.3972E+05,4.4221E+05,4.4469E+05,4.4719E+05,4.4968E+05,4.5219E+05,4.5470E+05,", + " 4.5722E+05,4.5974E+05,4.6228E+05,4.6482E+05,4.6738E+05,4.6994E+05,4.7251E+05,", + " 4.7510E+05,4.7769E+05,4.8029E+05,4.8291E+05,4.8553E+05,4.8817E+05,4.9082E+05,", + " 4.9348E+05,4.9615E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.0888E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,8.2759E+00,8.1361E+00,8.0034E+00,7.8770E+00,7.7563E+00,7.6407E+00,", + " 7.5297E+00,7.4230E+00,7.3201E+00,7.2209E+00,7.1251E+00,7.0323E+00,6.9425E+00,", + " 6.8555E+00,6.7710E+00,6.6890E+00,6.6093E+00,6.5318E+00,6.4564E+00,6.3830E+00,", + " 6.3115E+00,6.2417E+00,6.1738E+00,6.1074E+00,6.0426E+00,5.9794E+00,5.9176E+00,", + " 5.8572E+00,5.7981E+00,5.7404E+00,5.6839E+00,5.6286E+00,5.5744E+00,5.5214E+00,", + " 5.4694E+00,5.4185E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.3762E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,4.0842E+05,4.1110E+05,4.1374E+05,4.1634E+05,4.1892E+05,", + " 4.2147E+05,4.2401E+05,4.2654E+05,4.2905E+05,4.3157E+05,4.3407E+05,4.3658E+05,", + " 4.3909E+05,4.4159E+05,4.4410E+05,4.4662E+05,4.4914E+05,4.5166E+05,4.5419E+05,", + " 4.5672E+05,4.5927E+05,4.6182E+05,4.6437E+05,4.6694E+05,4.6952E+05,4.7210E+05,", + " 4.7470E+05,4.7730E+05,4.7992E+05,4.8254E+05,4.8517E+05,4.8782E+05,4.9048E+05,", + " 4.9315E+05,4.9582E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.3762E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,9.3578E+00,9.1979E+00,9.0465E+00,8.9024E+00,8.7650E+00,", + " 8.6335E+00,8.5073E+00,8.3861E+00,8.2694E+00,8.1569E+00,8.0482E+00,7.9431E+00,", + " 7.8414E+00,7.7429E+00,7.6473E+00,7.5546E+00,7.4645E+00,7.3769E+00,7.2917E+00,", + " 7.2088E+00,7.1280E+00,7.0493E+00,6.9726E+00,6.8977E+00,6.8246E+00,6.7533E+00,", + " 6.6836E+00,6.6155E+00,6.5489E+00,6.4838E+00,6.4200E+00,6.3577E+00,6.2967E+00,", + " 6.2369E+00,6.1783E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.6935E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,4.0980E+05,4.1253E+05,4.1521E+05,4.1786E+05,", + " 4.2047E+05,4.2307E+05,4.2564E+05,4.2820E+05,4.3075E+05,4.3330E+05,4.3584E+05,", + " 4.3837E+05,4.4091E+05,4.4345E+05,4.4599E+05,4.4853E+05,4.5107E+05,4.5362E+05,", + " 4.5617E+05,4.5873E+05,4.6130E+05,4.6388E+05,4.6646E+05,4.6905E+05,4.7165E+05,", + " 4.7425E+05,4.7687E+05,4.7950E+05,4.8213E+05,4.8478E+05,4.8743E+05,4.9010E+05,", + " 4.9278E+05,4.9546E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.6935E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,1.0549E+01,1.0367E+01,1.0194E+01,1.0030E+01,", + " 9.8741E+00,9.7248E+00,9.5817E+00,9.4443E+00,9.3122E+00,9.1848E+00,9.0619E+00,", + " 8.9431E+00,8.8282E+00,8.7170E+00,8.6091E+00,8.5045E+00,8.4029E+00,8.3042E+00,", + " 8.2081E+00,8.1147E+00,8.0237E+00,7.9351E+00,7.8487E+00,7.7644E+00,7.6822E+00,", + " 7.6019E+00,7.5235E+00,7.4469E+00,7.3721E+00,7.2989E+00,7.2273E+00,7.1572E+00,", + " 7.0886E+00,7.0214E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.0426E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.1114E+05,4.1392E+05,4.1665E+05,", + " 4.1934E+05,4.2200E+05,4.2463E+05,4.2725E+05,4.2984E+05,4.3243E+05,4.3501E+05,", + " 4.3758E+05,4.4015E+05,4.4272E+05,4.4528E+05,4.4785E+05,4.5042E+05,4.5299E+05,", + " 4.5556E+05,4.5814E+05,4.6073E+05,4.6332E+05,4.6592E+05,4.6853E+05,4.7114E+05,", + " 4.7376E+05,4.7639E+05,4.7903E+05,4.8168E+05,4.8434E+05,4.8701E+05,4.8968E+05,", + " 4.9237E+05,4.9507E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.0426E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,1.1857E+01,1.1650E+01,1.1453E+01,", + " 1.1267E+01,1.1090E+01,1.0921E+01,1.0759E+01,1.0604E+01,1.0454E+01,1.0310E+01,", + " 1.0172E+01,1.0038E+01,9.9083E+00,9.7830E+00,9.6615E+00,9.5438E+00,9.4294E+00,", + " 9.3184E+00,9.2104E+00,9.1054E+00,9.0032E+00,8.9037E+00,8.8067E+00,8.7121E+00,", + " 8.6198E+00,8.5297E+00,8.4418E+00,8.3559E+00,8.2719E+00,8.1898E+00,8.1095E+00,", + " 8.0310E+00,7.9541E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.4257E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.1245E+05,4.1529E+05,", + " 4.1807E+05,4.2080E+05,4.2350E+05,4.2617E+05,4.2883E+05,4.3146E+05,4.3408E+05,", + " 4.3670E+05,4.3930E+05,4.4190E+05,4.4450E+05,4.4709E+05,4.4969E+05,4.5229E+05,", + " 4.5489E+05,4.5749E+05,4.6010E+05,4.6271E+05,4.6533E+05,4.6795E+05,4.7058E+05,", + " 4.7322E+05,4.7587E+05,4.7852E+05,4.8118E+05,4.8385E+05,4.8653E+05,4.8922E+05,", + " 4.9192E+05,4.9463E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.4257E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,1.3292E+01,1.3056E+01,", + " 1.2833E+01,1.2622E+01,1.2421E+01,1.2230E+01,1.2047E+01,1.1871E+01,1.1703E+01,", + " 1.1541E+01,1.1385E+01,1.1234E+01,1.1088E+01,1.0947E+01,1.0811E+01,1.0678E+01,", + " 1.0550E+01,1.0425E+01,1.0304E+01,1.0187E+01,1.0072E+01,9.9605E+00,9.8518E+00,", + " 9.7459E+00,9.6426E+00,9.5417E+00,9.4433E+00,9.3472E+00,9.2533E+00,9.1615E+00,", + " 9.0717E+00,8.9839E+00;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.8449E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.1373E+05,", + " 4.1661E+05,4.1944E+05,4.2222E+05,4.2497E+05,4.2768E+05,4.3038E+05,4.3305E+05,", + " 4.3571E+05,4.3836E+05,4.4100E+05,4.4363E+05,4.4626E+05,4.4889E+05,4.5151E+05,", + " 4.5414E+05,4.5677E+05,4.5940E+05,4.6203E+05,4.6467E+05,4.6732E+05,4.6997E+05,", + " 4.7262E+05,4.7529E+05,4.7796E+05,4.8063E+05,4.8332E+05,4.8601E+05,4.8872E+05,", + " 4.9143E+05,4.9415E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.8449E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,1.4861E+01,", + " 1.4593E+01,1.4341E+01,1.4102E+01,1.3875E+01,1.3659E+01,1.3452E+01,1.3255E+01,", + " 1.3065E+01,1.2882E+01,1.2707E+01,1.2537E+01,1.2374E+01,1.2216E+01,1.2063E+01,", + " 1.1914E+01,1.1771E+01,1.1631E+01,1.1495E+01,1.1364E+01,1.1236E+01,1.1111E+01,", + " 1.0989E+01,1.0871E+01,1.0755E+01,1.0643E+01,1.0533E+01,1.0426E+01,1.0321E+01,", + " 1.0218E+01,1.0118E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.3024E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 4.1496E+05,4.1790E+05,4.2078E+05,4.2361E+05,4.2641E+05,4.2916E+05,4.3190E+05,", + " 4.3461E+05,4.3731E+05,4.3999E+05,4.4267E+05,4.4533E+05,4.4800E+05,4.5066E+05,", + " 4.5331E+05,4.5597E+05,4.5863E+05,4.6129E+05,4.6395E+05,4.6662E+05,4.6929E+05,", + " 4.7197E+05,4.7465E+05,4.7734E+05,4.8003E+05,4.8273E+05,4.8544E+05,4.8816E+05,", + " 4.9089E+05,4.9362E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.3024E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 1.6576E+01,1.6272E+01,1.5986E+01,1.5716E+01,1.5460E+01,1.5216E+01,1.4983E+01,", + " 1.4761E+01,1.4547E+01,1.4343E+01,1.4145E+01,1.3955E+01,1.3772E+01,1.3595E+01,", + " 1.3424E+01,1.3258E+01,1.3097E+01,1.2941E+01,1.2789E+01,1.2642E+01,1.2499E+01,", + " 1.2360E+01,1.2224E+01,1.2092E+01,1.1964E+01,1.1838E+01,1.1716E+01,1.1596E+01,", + " 1.1480E+01,1.1365E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.8004E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,4.1615E+05,4.1915E+05,4.2209E+05,4.2497E+05,4.2781E+05,4.3061E+05,", + " 4.3339E+05,4.3614E+05,4.3888E+05,4.4160E+05,4.4431E+05,4.4701E+05,4.4971E+05,", + " 4.5240E+05,4.5509E+05,4.5778E+05,4.6047E+05,4.6316E+05,4.6585E+05,4.6855E+05,", + " 4.7124E+05,4.7395E+05,4.7666E+05,4.7937E+05,4.8209E+05,4.8482E+05,4.8755E+05,", + " 4.9029E+05,4.9304E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.8004E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,1.8447E+01,1.8102E+01,1.7778E+01,1.7473E+01,1.7184E+01,1.6910E+01,", + " 1.6648E+01,1.6398E+01,1.6158E+01,1.5928E+01,1.5707E+01,1.5495E+01,1.5289E+01,", + " 1.5091E+01,1.4900E+01,1.4715E+01,1.4535E+01,1.4361E+01,1.4192E+01,1.4028E+01,", + " 1.3869E+01,1.3714E+01,1.3563E+01,1.3416E+01,1.3273E+01,1.3133E+01,1.2997E+01,", + " 1.2864E+01,1.2734E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 5.3412E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,4.1730E+05,4.2036E+05,4.2335E+05,4.2629E+05,4.2917E+05,", + " 4.3202E+05,4.3485E+05,4.3764E+05,4.4042E+05,4.4318E+05,4.4593E+05,4.4867E+05,", + " 4.5140E+05,4.5413E+05,4.5685E+05,4.5957E+05,4.6229E+05,4.6501E+05,4.6773E+05,", + " 4.7045E+05,4.7318E+05,4.7591E+05,4.7865E+05,4.8139E+05,4.8413E+05,4.8689E+05,", + " 4.8965E+05,4.9241E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 5.3412E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,2.0485E+01,2.0094E+01,1.9728E+01,1.9383E+01,1.9058E+01,", + " 1.8749E+01,1.8455E+01,1.8174E+01,1.7905E+01,1.7648E+01,1.7400E+01,1.7162E+01,", + " 1.6933E+01,1.6712E+01,1.6498E+01,1.6292E+01,1.6092E+01,1.5898E+01,1.5710E+01,", + " 1.5527E+01,1.5350E+01,1.5178E+01,1.5010E+01,1.4847E+01,1.4688E+01,1.4533E+01,", + " 1.4382E+01,1.4234E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 5.9273E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,4.1840E+05,4.2153E+05,4.2458E+05,4.2756E+05,", + " 4.3050E+05,4.3340E+05,4.3627E+05,4.3911E+05,4.4193E+05,4.4473E+05,4.4752E+05,", + " 4.5029E+05,4.5306E+05,4.5582E+05,4.5858E+05,4.6133E+05,4.6408E+05,4.6683E+05,", + " 4.6959E+05,4.7234E+05,4.7509E+05,4.7785E+05,4.8062E+05,4.8338E+05,4.8616E+05,", + " 4.8894E+05,4.9172E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 5.9273E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,2.2703E+01,2.2260E+01,2.1846E+01,2.1458E+01,", + " 2.1091E+01,2.0744E+01,2.0413E+01,2.0098E+01,1.9798E+01,1.9509E+01,1.9233E+01,", + " 1.8967E+01,1.8711E+01,1.8465E+01,1.8227E+01,1.7996E+01,1.7774E+01,1.7558E+01,", + " 1.7349E+01,1.7146E+01,1.6950E+01,1.6758E+01,1.6572E+01,1.6391E+01,1.6215E+01,", + " 1.6043E+01,1.5876E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 6.5609E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.1945E+05,4.2264E+05,4.2575E+05,", + " 4.2880E+05,4.3179E+05,4.3474E+05,4.3765E+05,4.4054E+05,4.4340E+05,4.4625E+05,", + " 4.4907E+05,4.5189E+05,4.5469E+05,4.5749E+05,4.6028E+05,4.6307E+05,4.6585E+05,", + " 4.6864E+05,4.7142E+05,4.7420E+05,4.7699E+05,4.7978E+05,4.8257E+05,4.8536E+05,", + " 4.8816E+05,4.9097E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 6.5609E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,2.5113E+01,2.4612E+01,2.4145E+01,", + " 2.3707E+01,2.3294E+01,2.2904E+01,2.2533E+01,2.2180E+01,2.1844E+01,2.1522E+01,", + " 2.1213E+01,2.0916E+01,2.0631E+01,2.0356E+01,2.0091E+01,1.9836E+01,1.9588E+01,", + " 1.9349E+01,1.9117E+01,1.8892E+01,1.8673E+01,1.8461E+01,1.8255E+01,1.8055E+01,", + " 1.7860E+01,1.7670E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 7.2446E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.2045E+05,4.2371E+05,", + " 4.2688E+05,4.2999E+05,4.3304E+05,4.3604E+05,4.3900E+05,4.4194E+05,4.4484E+05,", + " 4.4773E+05,4.5060E+05,4.5345E+05,4.5630E+05,4.5913E+05,4.6196E+05,4.6478E+05,", + " 4.6760E+05,4.7041E+05,4.7323E+05,4.7604E+05,4.7886E+05,4.8168E+05,4.8450E+05,", + " 4.8732E+05,4.9015E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 7.2446E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,2.7732E+01,2.7164E+01,", + " 2.6636E+01,2.6143E+01,2.5678E+01,2.5240E+01,2.4825E+01,2.4430E+01,2.4053E+01,", + " 2.3694E+01,2.3349E+01,2.3019E+01,2.2701E+01,2.2396E+01,2.2101E+01,2.1817E+01,", + " 2.1542E+01,2.1277E+01,2.1019E+01,2.0770E+01,2.0529E+01,2.0294E+01,2.0066E+01,", + " 1.9844E+01,1.9629E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 7.9808E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.2139E+05,", + " 4.2472E+05,4.2797E+05,4.3113E+05,4.3424E+05,4.3730E+05,4.4031E+05,4.4329E+05,", + " 4.4625E+05,4.4918E+05,4.5209E+05,4.5499E+05,4.5787E+05,4.6074E+05,4.6361E+05,", + " 4.6646E+05,4.6932E+05,4.7217E+05,4.7502E+05,4.7786E+05,4.8071E+05,4.8356E+05,", + " 4.8641E+05,4.8926E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 7.9808E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,3.0574E+01,", + " 2.9931E+01,2.9335E+01,2.8779E+01,2.8257E+01,2.7765E+01,2.7299E+01,2.6857E+01,", + " 2.6436E+01,2.6035E+01,2.5651E+01,2.5283E+01,2.4930E+01,2.4590E+01,2.4263E+01,", + " 2.3948E+01,2.3644E+01,2.3349E+01,2.3065E+01,2.2789E+01,2.2521E+01,2.2262E+01,", + " 2.2010E+01,2.1766E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 8.7722E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 4.2227E+05,4.2568E+05,4.2899E+05,4.3223E+05,4.3540E+05,4.3851E+05,4.4158E+05,", + " 4.4461E+05,4.4761E+05,4.5059E+05,4.5355E+05,4.5649E+05,4.5941E+05,4.6232E+05,", + " 4.6523E+05,4.6812E+05,4.7101E+05,4.7389E+05,4.7678E+05,4.7966E+05,4.8254E+05,", + " 4.8542E+05,4.8830E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 8.7722E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 3.3659E+01,3.2930E+01,3.2256E+01,3.1629E+01,3.1042E+01,3.0490E+01,2.9968E+01,", + " 2.9474E+01,2.9004E+01,2.8557E+01,2.8129E+01,2.7720E+01,2.7327E+01,2.6950E+01,", + " 2.6587E+01,2.6238E+01,2.5900E+01,2.5575E+01,2.5260E+01,2.4955E+01,2.4660E+01,", + " 2.4374E+01,2.4096E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 9.6214E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,4.2308E+05,4.2658E+05,4.2997E+05,4.3327E+05,4.3650E+05,4.3968E+05,", + " 4.4280E+05,4.4589E+05,4.4894E+05,4.5197E+05,4.5497E+05,4.5795E+05,4.6092E+05,", + " 4.6387E+05,4.6681E+05,4.6975E+05,4.7267E+05,4.7559E+05,4.7851E+05,4.8142E+05,", + " 4.8434E+05,4.8725E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 9.6214E+05, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,3.7005E+01,3.6178E+01,3.5416E+01,3.4709E+01,3.4049E+01,3.3429E+01,", + " 3.2845E+01,3.2292E+01,3.1768E+01,3.1269E+01,3.0793E+01,3.0338E+01,2.9902E+01,", + " 2.9484E+01,2.9082E+01,2.8694E+01,2.8321E+01,2.7961E+01,2.7613E+01,2.7277E+01,", + " 2.6951E+01,2.6636E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.0531E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,4.2382E+05,4.2741E+05,4.3088E+05,4.3426E+05,4.3756E+05,", + " 4.4079E+05,4.4398E+05,4.4712E+05,4.5023E+05,4.5330E+05,4.5635E+05,4.5938E+05,", + " 4.6239E+05,4.6539E+05,4.6837E+05,4.7134E+05,4.7430E+05,4.7726E+05,4.8021E+05,", + " 4.8316E+05,4.8611E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.0531E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,4.0634E+01,3.9695E+01,3.8832E+01,3.8035E+01,3.7292E+01,", + " 3.6597E+01,3.5943E+01,3.5325E+01,3.4740E+01,3.4184E+01,3.3654E+01,3.3149E+01,", + " 3.2665E+01,3.2201E+01,3.1755E+01,3.1327E+01,3.0915E+01,3.0517E+01,3.0133E+01,", + " 2.9762E+01,2.9403E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.1504E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,4.2448E+05,4.2817E+05,4.3173E+05,4.3518E+05,", + " 4.3855E+05,4.4186E+05,4.4511E+05,4.4831E+05,4.5147E+05,4.5459E+05,4.5769E+05,", + " 4.6077E+05,4.6383E+05,4.6686E+05,4.6989E+05,4.7290E+05,4.7591E+05,4.7890E+05,", + " 4.8189E+05,4.8488E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.1504E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,4.4572E+01,4.3503E+01,4.2527E+01,4.1626E+01,", + " 4.0790E+01,4.0010E+01,3.9277E+01,3.8587E+01,3.7934E+01,3.7314E+01,3.6725E+01,", + " 3.6164E+01,3.5627E+01,3.5113E+01,3.4620E+01,3.4146E+01,3.3691E+01,3.3252E+01,", + " 3.2828E+01,3.2419E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.2543E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.2507E+05,4.2886E+05,4.3251E+05,", + " 4.3605E+05,4.3949E+05,4.4287E+05,4.4618E+05,4.4944E+05,4.5266E+05,4.5584E+05,", + " 4.5899E+05,4.6212E+05,4.6522E+05,4.6831E+05,4.7138E+05,4.7443E+05,4.7748E+05,", + " 4.8051E+05,4.8354E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.2543E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.8844E+01,4.7627E+01,4.6519E+01,", + " 4.5502E+01,4.4560E+01,4.3684E+01,4.2863E+01,4.2091E+01,4.1363E+01,4.0673E+01,", + " 4.0018E+01,3.9394E+01,3.8799E+01,3.8230E+01,3.7685E+01,3.7161E+01,3.6658E+01,", + " 3.6174E+01,3.5708E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.3651E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.2556E+05,4.2947E+05,", + " 4.3322E+05,4.3684E+05,4.4037E+05,4.4382E+05,4.4720E+05,4.5053E+05,4.5381E+05,", + " 4.5705E+05,4.6025E+05,4.6343E+05,4.6658E+05,4.6971E+05,4.7283E+05,4.7592E+05,", + " 4.7901E+05,4.8209E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.3651E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,5.3484E+01,5.2094E+01,", + " 5.0835E+01,4.9684E+01,4.8623E+01,4.7638E+01,4.6718E+01,4.5855E+01,4.5042E+01,", + " 4.4274E+01,4.3546E+01,4.2854E+01,4.2194E+01,4.1564E+01,4.0961E+01,4.0383E+01,", + " 3.9828E+01,3.9294E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.4831E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.2595E+05,", + " 4.2999E+05,4.3385E+05,4.3757E+05,4.4119E+05,4.4471E+05,4.4817E+05,4.5156E+05,", + " 4.5490E+05,4.5820E+05,4.6146E+05,4.6469E+05,4.6790E+05,4.7108E+05,4.7424E+05,", + " 4.7738E+05,4.8051E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.4831E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,5.8526E+01,", + " 5.6935E+01,5.5502E+01,5.4199E+01,5.3001E+01,5.1893E+01,5.0861E+01,4.9896E+01,", + " 4.8989E+01,4.8133E+01,4.7324E+01,4.6555E+01,4.5824E+01,4.5127E+01,4.4461E+01,", + " 4.3823E+01,4.3211E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.6086E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 4.2624E+05,4.3041E+05,4.3439E+05,4.3822E+05,4.4193E+05,4.4554E+05,4.4907E+05,", + " 4.5254E+05,4.5595E+05,4.5931E+05,4.6263E+05,4.6591E+05,4.6917E+05,4.7240E+05,", + " 4.7561E+05,4.7880E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.6086E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 6.4013E+01,6.2185E+01,6.0551E+01,5.9071E+01,5.7718E+01,5.6470E+01,5.5313E+01,", + " 5.4232E+01,5.3220E+01,5.2267E+01,5.1367E+01,5.0514E+01,4.9704E+01,4.8933E+01,", + " 4.8196E+01,4.7492E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.7419E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,4.2642E+05,4.3074E+05,4.3485E+05,4.3879E+05,4.4260E+05,4.4630E+05,", + " 4.4991E+05,4.5345E+05,4.5693E+05,4.6036E+05,4.6374E+05,4.6709E+05,4.7040E+05,", + " 4.7368E+05,4.7694E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.7419E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,6.9990E+01,6.7883E+01,6.6014E+01,6.4331E+01,6.2800E+01,6.1394E+01,", + " 6.0094E+01,5.8884E+01,5.7753E+01,5.6691E+01,5.5691E+01,5.4744E+01,5.3847E+01,", + " 5.2994E+01,5.2181E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.8834E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,4.2646E+05,4.3096E+05,4.3521E+05,4.3927E+05,4.4319E+05,", + " 4.4699E+05,4.5069E+05,4.5431E+05,4.5786E+05,4.6136E+05,4.6481E+05,4.6821E+05,", + " 4.7158E+05,4.7492E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 1.8834E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,7.6519E+01,7.4080E+01,7.1935E+01,7.0017E+01,6.8281E+01,", + " 6.6694E+01,6.5232E+01,6.3876E+01,6.2613E+01,6.1429E+01,6.0316E+01,5.9266E+01,", + " 5.8272E+01,5.7328E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.0334E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,4.2635E+05,4.3105E+05,4.3546E+05,4.3966E+05,", + " 4.4369E+05,4.4760E+05,4.5139E+05,4.5510E+05,4.5873E+05,4.6230E+05,4.6582E+05,", + " 4.6929E+05,4.7272E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.0334E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,8.3665E+01,8.0827E+01,7.8356E+01,7.6164E+01,", + " 7.4192E+01,7.2398E+01,7.0753E+01,6.9232E+01,6.7819E+01,6.6499E+01,6.5261E+01,", + " 6.4095E+01,6.2993E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.1923E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.2609E+05,4.3101E+05,4.3560E+05,", + " 4.3995E+05,4.4411E+05,4.4812E+05,4.5202E+05,4.5582E+05,4.5953E+05,4.6318E+05,", + " 4.6677E+05,4.7030E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.1923E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,9.1511E+01,8.8190E+01,8.5332E+01,", + " 8.2819E+01,8.0573E+01,7.8542E+01,7.6687E+01,7.4980E+01,7.3398E+01,7.1925E+01,", + " 7.0547E+01,6.9252E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.3604E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.2564E+05,4.3082E+05,", + " 4.3561E+05,4.4013E+05,4.4443E+05,4.4856E+05,4.5257E+05,4.5646E+05,4.6027E+05,", + " 4.6400E+05,4.6766E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.3604E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,1.0015E+02,9.6239E+01,", + " 9.2918E+01,9.0027E+01,8.7463E+01,8.5159E+01,8.3065E+01,8.1145E+01,7.9374E+01,", + " 7.7729E+01,7.6195E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.5382E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.2498E+05,", + " 4.3047E+05,4.3549E+05,4.4019E+05,4.4464E+05,4.4891E+05,4.5303E+05,4.5703E+05,", + " 4.6093E+05,4.6475E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.5382E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,1.0972E+02,", + " 1.0507E+02,1.0119E+02,9.7851E+01,9.4915E+01,9.2295E+01,8.9926E+01,8.7766E+01,", + " 8.5780E+01,8.3942E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.7261E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 4.2408E+05,4.2993E+05,4.3522E+05,4.4012E+05,4.4475E+05,4.4916E+05,4.5341E+05,", + " 4.5752E+05,4.6152E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.7261E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 1.2038E+02,1.1479E+02,1.1023E+02,1.0635E+02,1.0298E+02,9.9995E+01,9.7312E+01,", + " 9.4877E+01,9.2647E+01;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.9246E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,4.2290E+05,4.2918E+05,4.3478E+05,4.3992E+05,4.4473E+05,4.4931E+05,", + " 4.5369E+05,4.5792E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 2.9246E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,1.3233E+02,1.2554E+02,1.2013E+02,1.1562E+02,1.1173E+02,1.0831E+02,", + " 1.0527E+02,1.0252E+02;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.1341E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,4.2137E+05,4.2820E+05,4.3416E+05,4.3957E+05,4.4459E+05,", + " 4.4934E+05,4.5387E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.1341E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,1.4585E+02,1.3748E+02,1.3102E+02,1.2572E+02,1.2122E+02,", + " 1.1731E+02,1.1384E+02;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.3552E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,4.1941E+05,4.2695E+05,4.3334E+05,4.3905E+05,", + " 4.4432E+05,4.4926E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.3552E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,1.6135E+02,1.5082E+02,1.4302E+02,1.3677E+02,", + " 1.3154E+02,1.2704E+02;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.5886E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.1692E+05,4.2539E+05,4.3229E+05,", + " 4.3836E+05,4.4389E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.5886E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,1.7941E+02,1.6585E+02,1.5632E+02,", + " 1.4890E+02,1.4279E+02;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.8348E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.1370E+05,4.2346E+05,", + " 4.3100E+05,4.3748E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 3.8348E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,2.0095E+02,1.8289E+02,", + " 1.7111E+02,1.6223E+02;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.0949E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,4.0942E+05,", + " 4.2109E+05,4.2943E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.0949E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,2.2766E+02,", + " 2.0246E+02,1.8765E+02;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.3697E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 4.0343E+05,4.1823E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.3697E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 2.6302E+02,2.2513E+02;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Enthalpy, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.6607E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,3.9373E+05;", + + " FluidProperties:Superheated,", + " R410a, !- Fluid Name", + " Density, !- Fluid Property Type", + " R410aSuperHeatTemperatures, !- Temperature Values Name", + " 4.6607E+06, !- Pressure {Pa}", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,", + " 0.0000E+00,3.1758E+02;", + + " Sizing:Zone,", + " Zone 1, !- Zone or ZoneList Name", + " SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method", + " 13.5, !- Zone Cooling Design Supply Air Temperature {C}", + " , !- Zone Cooling Design Supply Air Temperature Difference {deltaC}", + " SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method", + " 50., !- Zone Heating Design Supply Air Temperature {C}", + " , !- Zone Heating Design Supply Air Temperature Difference {deltaC}", + " 0.009, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " 0.004, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir}", + " SZ DSOA SPACE1-1, !- Design Specification Outdoor Air Object Name", + " 0.0, !- Zone Heating Sizing Factor", + " 0.0, !- Zone Cooling Sizing Factor", + " DesignDay, !- Cooling Design Air Flow Method", + " 0, !- Cooling Design Air Flow Rate {m3/s}", + " , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Cooling Minimum Air Flow {m3/s}", + " , !- Cooling Minimum Air Flow Fraction", + " DesignDay, !- Heating Design Air Flow Method", + " 0, !- Heating Design Air Flow Rate {m3/s}", + " , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}", + " , !- Heating Maximum Air Flow {m3/s}", + " ; !- Heating Maximum Air Flow Fraction", + + " DesignSpecification:OutdoorAir,", + " SZ DSOA SPACE1-1, !- Name", + " Sum, !- Outdoor Air Method", + " 0.00472, !- Outdoor Air Flow per Person {m3/s-person}", + " 0.000508, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2}", + " 0.0; !- Outdoor Air Flow per Zone {m3/s}", + + " Schedule:Compact,", + " Htg-SetP-Sch, !- Name", + " Temperature, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,21.1; !- Field 27", + + " Schedule:Compact,", + " Clg-SetP-Sch, !- Name", + " Temperature, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,23.9; !- Field 3", + + " Schedule:Compact,", + " Zone Control Type Sched, !- Name", + " Control Type, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: SummerDesignDay, !- Field 2", + " Until: 24:00,4, !- Field 3", + " For: WinterDesignDay, !- Field 5", + " Until: 24:00,4, !- Field 6", + " For: AllOtherDays, !- Field 8", + " Until: 24:00,4; !- Field 9", + + " Curve:Biquadratic,", + " VarSpeedCoolCapFT, !- Name", + " 0.476428E+00, !- Coefficient1 Constant", + " 0.401147E-01, !- Coefficient2 x", + " 0.226411E-03, !- Coefficient3 x**2", + " -0.827136E-03, !- Coefficient4 y", + " -0.732240E-05, !- Coefficient5 y**2", + " -0.446278E-03, !- Coefficient6 x*y", + " 12.77778, !- Minimum Value of x", + " 23.88889, !- Maximum Value of x", + " 23.88889, !- Minimum Value of y", + " 46.11111, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " Curve:Biquadratic,", + " VarSpeedCoolEIRFT, !- Name", + " 0.632475E+00, !- Coefficient1 Constant", + " -0.121321E-01, !- Coefficient2 x", + " 0.507773E-03, !- Coefficient3 x**2", + " 0.155377E-01, !- Coefficient4 y", + " 0.272840E-03, !- Coefficient5 y**2", + " -0.679201E-03, !- Coefficient6 x*y", + " 12.77778, !- Minimum Value of x", + " 23.88889, !- Maximum Value of x", + " 23.88889, !- Minimum Value of y", + " 46.11111, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " Curve:Biquadratic,", + " VarSpeedCoolCapLSFT, !- Name", + " 0.476428E+00, !- Coefficient1 Constant", + " 0.401147E-01, !- Coefficient2 x", + " 0.226411E-03, !- Coefficient3 x**2", + " -0.827136E-03, !- Coefficient4 y", + " -0.732240E-05, !- Coefficient5 y**2", + " -0.446278E-03, !- Coefficient6 x*y", + " 12.77778, !- Minimum Value of x", + " 23.88889, !- Maximum Value of x", + " 23.88889, !- Minimum Value of y", + " 46.11111, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " Curve:Biquadratic,", + " VarSpeedCoolEIRLSFT, !- Name", + " 0.774645E+00, !- Coefficient1 Constant", + " -0.343731E-01, !- Coefficient2 x", + " 0.783173E-03, !- Coefficient3 x**2", + " 0.146596E-01, !- Coefficient4 y", + " 0.488851E-03, !- Coefficient5 y**2", + " -0.752036E-03, !- Coefficient6 x*y", + " 12.77778, !- Minimum Value of x", + " 23.88889, !- Maximum Value of x", + " 23.88889, !- Minimum Value of y", + " 46.11111, !- Maximum Value of y", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Temperature, !- Input Unit Type for X", + " Temperature, !- Input Unit Type for Y", + " Dimensionless; !- Output Unit Type", + + " ! same as Doe-2 SDL-C78", + + " Curve:Cubic,", + " PackagedRatedCoolCapFFlow, !- Name", + " 0.47278589, !- Coefficient1 Constant", + " 1.2433415, !- Coefficient2 x", + " -1.0387055, !- Coefficient3 x**2", + " 0.32257813, !- Coefficient4 x**3", + " 0.5, !- Minimum Value of x", + " 1.5, !- Maximum Value of x", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Dimensionless, !- Input Unit Type for X", + " Dimensionless; !- Output Unit Type", + + " Curve:Cubic,", + " PackagedRatedCoolEIRFFlow, !- Name", + " 1.0079484, !- Coefficient1 Constant", + " 0.34544129, !- Coefficient2 x", + " -.6922891, !- Coefficient3 x**2", + " 0.33889943, !- Coefficient4 x**3", + " 0.5, !- Minimum Value of x", + " 1.5, !- Maximum Value of x", + " , !- Minimum Curve Output", + " , !- Maximum Curve Output", + " Dimensionless, !- Input Unit Type for X", + " Dimensionless; !- Output Unit Type", + + " Curve:Quadratic,", + " VarSpeedCyclingPLFFPLR, !- Name", + " 0.85, !- Coefficient1 Constant", + " 0.15, !- Coefficient2 x", + " 0.0, !- Coefficient3 x**2", + " 0.0, !- Minimum Value of x", + " 1.0; !- Maximum Value of x", + + " OutdoorAir:NodeList,", + " OutsideAirInletNodes; !- Node or NodeList Name 1", + + " NodeList,", + " OutsideAirInletNodes, !- Name", + " Outside Air Inlet Node 1,!- Node 1 Name", + " VRFOUInletNode; !- Node 6 Name", + + " NodeList,", + " SPACE1-1 In Nodes, !- Name", + " TU1 Outlet Node; !- Node 1 Name", + + " NodeList,", + " SPACE1-1 Out Nodes, !- Name", + " TU1 Inlet Node; !- Node 1 Name", + + " ZoneHVAC:EquipmentConnections,", + " Zone 1, !- Zone Name", + " SPACE1-1 Eq, !- Zone Conditioning Equipment List Name", + " SPACE1-1 In Nodes, !- Zone Air Inlet Node or NodeList Name", + " SPACE1-1 Out Nodes, !- Zone Air Exhaust Node or NodeList Name", + " SPACE1-1 Node, !- Zone Air Node Name", + " SPACE1-1 Out Node; !- Zone Return Air Node or NodeList Name", + + " ZoneControl:Thermostat,", + " SPACE1-1 Control, !- Name", + " Zone 1, !- Zone or ZoneList Name", + " Zone Control Type Sched, !- Control Type Schedule Name", + " ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type", + " DualSetPoint; !- Control 1 Name", + + " ThermostatSetpoint:SingleHeating,", + " HeatingSetpoint, !- Name", + " Htg-SetP-Sch; !- Setpoint Temperature Schedule Name", + + " ThermostatSetpoint:SingleCooling,", + " CoolingSetpoint, !- Name", + " Clg-SetP-Sch; !- Setpoint Temperature Schedule Name", + + " ThermostatSetpoint:DualSetpoint,", + " DualSetPoint, !- Name", + " Htg-SetP-Sch, !- Heating Setpoint Temperature Schedule Name", + " Clg-SetP-Sch; !- Cooling Setpoint Temperature Schedule Name", + + " ZoneHVAC:EquipmentList,", + " SPACE1-1 Eq, !- Name", + " SequentialLoad, !- Load Distribution Scheme", + " ZoneHVAC:TerminalUnit:VariableRefrigerantFlow, !- Zone Equipment 1 Object Type", + " TU1, !- Zone Equipment 1 Name", + " 1, !- Zone Equipment 1 Cooling Sequence", + " 1, !- Zone Equipment 1 Heating or No-Load Sequence", + " , !- Zone Equipment 1 Sequential Cooling Load Fraction", + " ; !- Zone Equipment 1 Sequential Heating Load Fraction", + + }); + ASSERT_TRUE(process_idf(idf_objects)); + + SimulationManager::ManageSimulation(); + + int VRFCond(1); + int ZoneNum(1); + int VRFTUNum(1); + bool FirstHVACIteration(true); + Real64 OnOffAirFlowRatio = 1.0; + Real64 SysOutputProvided = 0.0; + Real64 LatOutputProvided = 0.0; + Real64 QZnReq = 0.0; + + // set to cooling mode + CoolingLoad(VRFCond) = true; + HeatingLoad(VRFCond) = false; + LastModeCooling(VRFCond) = true; + LastModeHeating(VRFCond) = false; + + // test cooling mode fan operation + ZoneSysEnergyDemand(1).RemainingOutputRequired = -5000.0; + ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = -5000.0; + ZoneSysEnergyDemand(1).RemainingOutputReqToHeatSP = -7000.0; + InitVRF(VRFTUNum, ZoneNum, FirstHVACIteration, OnOffAirFlowRatio, QZnReq); + EXPECT_EQ(QZnReq, -5000.0); + SimVRF(VRFTUNum, FirstHVACIteration, OnOffAirFlowRatio, SysOutputProvided, LatOutputProvided, QZnReq); + // check fan operation for cooling mode + Real64 Result_AirMassFlowRateDesign = HVACFan::fanObjs[0]->maxAirMassFlowRate(); + EXPECT_NEAR(Result_AirMassFlowRateDesign, 0.347046, 0.000001); + Real64 Result_AirMassFlowRate = DataLoopNode::Node(HVACFan::fanObjs[0]->outletNodeNum).MassFlowRate; + EXPECT_NEAR(Result_AirMassFlowRate, 0.347046, 0.000001); + Real64 Result_FanPower = HVACFan::fanObjs[0]->fanPower(); + EXPECT_NEAR(Result_FanPower, 41.22, 0.001); + + // test no load mode fan operation + ZoneSysEnergyDemand(1).RemainingOutputRequired = 0.0; + ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = 0.0; + ZoneSysEnergyDemand(1).RemainingOutputReqToHeatSP = 0.0; + QZnReq = ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP; + InitVRF(VRFTUNum, ZoneNum, FirstHVACIteration, OnOffAirFlowRatio, QZnReq); + EXPECT_EQ(QZnReq, 0.0); + SimVRF(VRFTUNum, FirstHVACIteration, OnOffAirFlowRatio, SysOutputProvided, LatOutputProvided, QZnReq); + // check no load fan operation + Result_AirMassFlowRateDesign = HVACFan::fanObjs[0]->maxAirMassFlowRate(); + EXPECT_NEAR(Result_AirMassFlowRateDesign, 0.347046, 0.00001); + Result_AirMassFlowRate = DataLoopNode::Node(HVACFan::fanObjs[0]->outletNodeNum).MassFlowRate; + EXPECT_EQ(Result_AirMassFlowRate, 0.0); + Result_FanPower = HVACFan::fanObjs[0]->fanPower(); + EXPECT_EQ(Result_FanPower, 0.0); +} } diff --git a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc index 18be4bc5e22..5603768dd69 100644 --- a/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceIntRadExchange.unit.cc @@ -56,7 +56,10 @@ #include #include #include +#include #include +#include +#include using namespace EnergyPlus::HeatBalanceIntRadExchange; @@ -98,11 +101,23 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) DataHeatBalance::Zone.allocate(ZoneNum); DataHeatBalance::Zone(ZoneNum).Name = "Test"; - - FixViewFactors(N, A, F, ZoneNum, OriginalCheckValue, FixedCheckValue, FinalCheckValue, NumIterations, RowSum); + DataViewFactorInformation::ZoneRadiantInfo.allocate(ZoneNum); + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).Name = DataHeatBalance::Zone(ZoneNum).Name; + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).ZoneNums.push_back(ZoneNum); + + FixViewFactors(N, + A, + F, + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).Name, + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).ZoneNums, + OriginalCheckValue, + FixedCheckValue, + FinalCheckValue, + NumIterations, + RowSum); std::string const error_string = delimited_string({ - " ** Warning ** Surfaces in Zone=\"Test\" do not define an enclosure.", + " ** Warning ** Surfaces in Zone/Enclosure=\"Test\" do not define an enclosure.", " ** ~~~ ** Number of surfaces <= 3, view factors are set to force reciprocity but may not fulfill completeness.", " ** ~~~ ** Reciprocity means that radiant exchange between two surfaces will match and not lead to an energy loss.", " ** ~~~ ** Completeness means that all of the view factors between a surface and the other surfaces in a zone add up to unity.", @@ -128,7 +143,17 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) F(3, 2) = 0.9; F(3, 3) = 0.0; - FixViewFactors(N, A, F, ZoneNum, OriginalCheckValue, FixedCheckValue, FinalCheckValue, NumIterations, RowSum); + FixViewFactors(N, + A, + F, + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).Name, + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).ZoneNums, + OriginalCheckValue, + FixedCheckValue, + FinalCheckValue, + NumIterations, + RowSum); + EXPECT_NEAR(F(1, 2), 0.07986, 0.001); EXPECT_NEAR(F(2, 1), 0.71875, 0.001); EXPECT_NEAR(F(3, 2), 0.28125, 0.001); @@ -146,7 +171,17 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) F(3, 2) = 0.5; F(3, 3) = 0.0; - FixViewFactors(N, A, F, ZoneNum, OriginalCheckValue, FixedCheckValue, FinalCheckValue, NumIterations, RowSum); + FixViewFactors(N, + A, + F, + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).Name, + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).ZoneNums, + OriginalCheckValue, + FixedCheckValue, + FinalCheckValue, + NumIterations, + RowSum); + EXPECT_NEAR(F(1, 2), 0.181818, 0.001); EXPECT_NEAR(F(2, 3), 0.25, 0.001); EXPECT_NEAR(F(3, 2), 0.5, 0.001); @@ -164,7 +199,17 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_FixViewFactorsTest) F(3, 2) = 0.6; F(3, 3) = 0.0; - FixViewFactors(N, A, F, ZoneNum, OriginalCheckValue, FixedCheckValue, FinalCheckValue, NumIterations, RowSum); + FixViewFactors(N, + A, + F, + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).Name, + DataViewFactorInformation::ZoneRadiantInfo(ZoneNum).ZoneNums, + OriginalCheckValue, + FixedCheckValue, + FinalCheckValue, + NumIterations, + RowSum); + EXPECT_NEAR(F(1, 2), 0.21466, 0.001); EXPECT_NEAR(F(1, 3), 0.25445, 0.001); EXPECT_NEAR(F(2, 1), 0.32199, 0.001); @@ -216,4 +261,167 @@ TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_UpdateMovableInsulationFlagT EXPECT_TRUE(!DidMIChange); } +TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest) +{ + + std::string const idf_objects = delimited_string({ + "Zone,", + "Zone 1; !- Name", + + "Zone,", + "Zone 2; !- Name", + + "Zone,", + "Zone 3; !- Name", + + "Zone,", + "Zone 4; !- Name", + + "Zone,", + "Zone 5; !- Name", + + "ZoneProperty:UserViewFactors:bySurfaceName,", + "Zone 3,", + "SB51,SB51,0.000000,", + "SB51,SB52,2.672021E-002,", + "SB51,SB53,8.311358E-002,", + "SB51,SB54,2.672021E-002;", + + "ZoneProperty:UserViewFactors:bySurfaceName,", + "Perimeter Zones,", + "SB51,SB51,0.000000,", + "SB51,SB52,2.672021E-002,", + "SB51,SB53,8.311358E-002,", + "SB51,SB54,2.672021E-002;", + + "ZoneList,", + "Perimeter Zones, !- Name", + "Zone 5, !- Zone 1 Name", + "Zone 2; !- Zone 2 Name", + + "ZoneProperty:UserViewFactors:bySurfaceName,", + "Zone 6,", + "SB51,SB51,0.000000,", + "SB51,SB52,2.672021E-002,", + "SB51,SB53,8.311358E-002,", + "SB51,SB54,2.672021E-002;", + }); + ASSERT_TRUE(process_idf(idf_objects)); + bool ErrorsFound = false; + //auto numZones = inputProcessor->getNumObjectsFound("Zone"); + //DataHeatBalFanSys::ZoneReOrder.allocate(numZones); + HeatBalanceManager::GetZoneData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + + DataViewFactorInformation::NumOfRadiantEnclosures = 3; + DataViewFactorInformation::ZoneRadiantInfo.allocate(3); + DataViewFactorInformation::ZoneRadiantInfo(1).Name = "Enclosure 1"; + DataViewFactorInformation::ZoneRadiantInfo(1).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 2"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + DataViewFactorInformation::ZoneRadiantInfo(1).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 1"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + DataViewFactorInformation::ZoneRadiantInfo(2).Name = "Enclosure 2"; + DataViewFactorInformation::ZoneRadiantInfo(2).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 4"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + DataViewFactorInformation::ZoneRadiantInfo(2).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 5"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + DataViewFactorInformation::ZoneRadiantInfo(3).Name = "Zone 3"; + DataViewFactorInformation::ZoneRadiantInfo(3).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 3"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + + ErrorsFound = false; + HeatBalanceIntRadExchange::AlignInputViewFactors("ZoneProperty:UserViewFactors:bySurfaceName", ErrorsFound); + EXPECT_TRUE(ErrorsFound); + std::string const error_string = delimited_string({ + " ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:bySurfaceName=\"Perimeter Zones\" found a matching ZoneList, but did not find a matching radiant or solar enclosure with the same zones.", + " ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:bySurfaceName=\"Zone 6\" did not find a matching radiant or solar enclosure name." + }); + EXPECT_TRUE(compare_err_stream(error_string, true)); + + EXPECT_EQ(DataViewFactorInformation::ZoneRadiantInfo(1).Name, "Enclosure 1"); + EXPECT_EQ(DataViewFactorInformation::ZoneRadiantInfo(2).Name, "Enclosure 2"); + EXPECT_EQ(DataViewFactorInformation::ZoneRadiantInfo(3).Name, "Zone 3"); +} + +TEST_F(EnergyPlusFixture, HeatBalanceIntRadExchange_AlignInputViewFactorsTest2) +{ + + std::string const idf_objects = delimited_string({ + "Zone,", + "Zone 1; !- Name", + + "Zone,", + "Zone 2; !- Name", + + "Zone,", + "Zone 3; !- Name", + + "Zone,", + "Zone 4; !- Name", + + "Zone,", + "Zone 5; !- Name", + + "ZoneProperty:UserViewFactors:bySurfaceName,", + "Zone 3,", + "SB51,SB51,0.000000,", + "SB51,SB52,2.672021E-002,", + "SB51,SB53,8.311358E-002,", + "SB51,SB54,2.672021E-002;", + + "ZoneProperty:UserViewFactors:bySurfaceName,", + "Perimeter Zones,", + "SB51,SB51,0.000000,", + "SB51,SB52,2.672021E-002,", + "SB51,SB53,8.311358E-002,", + "SB51,SB54,2.672021E-002;", + + "ZoneList,", + "Perimeter Zones, !- Name", + "Zone 5, !- Zone 1 Name", + "Zone 2; !- Zone 2 Name", + + "ZoneProperty:UserViewFactors:bySurfaceName,", + "Zone 6,", + "SB51,SB51,0.000000,", + "SB51,SB52,2.672021E-002,", + "SB51,SB53,8.311358E-002,", + "SB51,SB54,2.672021E-002;", + }); + ASSERT_TRUE(process_idf(idf_objects)); + bool ErrorsFound = false; + //auto numZones = inputProcessor->getNumObjectsFound("Zone"); + //DataHeatBalFanSys::ZoneReOrder.allocate(numZones); + HeatBalanceManager::GetZoneData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + + DataViewFactorInformation::NumOfSolarEnclosures = 3; + DataViewFactorInformation::ZoneSolarInfo.allocate(3); + DataViewFactorInformation::ZoneSolarInfo(1).Name = "Enclosure 1"; + DataViewFactorInformation::ZoneSolarInfo(1).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 2"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + DataViewFactorInformation::ZoneSolarInfo(1).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 5"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + DataViewFactorInformation::ZoneSolarInfo(2).Name = "Enclosure 2"; + DataViewFactorInformation::ZoneSolarInfo(2).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 4"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + DataViewFactorInformation::ZoneSolarInfo(2).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 5"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + DataViewFactorInformation::ZoneSolarInfo(3).Name = "Zone 3"; + DataViewFactorInformation::ZoneSolarInfo(3).ZoneNums.push_back(UtilityRoutines::FindItemInList( + UtilityRoutines::MakeUPPERCase("Zone 3"), DataHeatBalance::Zone, DataGlobals::NumOfZones)); + + ErrorsFound = false; + HeatBalanceIntRadExchange::AlignInputViewFactors("ZoneProperty:UserViewFactors:bySurfaceName", ErrorsFound); + EXPECT_TRUE(ErrorsFound); + std::string const error_string = delimited_string({ + " ** Severe ** AlignInputViewFactors: ZoneProperty:UserViewFactors:bySurfaceName=\"Zone 6\" did not find a matching radiant or solar enclosure name." + }); + EXPECT_TRUE(compare_err_stream(error_string, true)); + + EXPECT_EQ(DataViewFactorInformation::ZoneSolarInfo(1).Name, "Perimeter Zones"); + EXPECT_EQ(DataViewFactorInformation::ZoneSolarInfo(2).Name, "Enclosure 2"); + EXPECT_EQ(DataViewFactorInformation::ZoneSolarInfo(3).Name, "Zone 3"); +} + } // namespace EnergyPlus diff --git a/tst/EnergyPlus/unit/HeatBalanceKivaManager.unit.cc b/tst/EnergyPlus/unit/HeatBalanceKivaManager.unit.cc new file mode 100644 index 00000000000..affcc069bec --- /dev/null +++ b/tst/EnergyPlus/unit/HeatBalanceKivaManager.unit.cc @@ -0,0 +1,261 @@ +// EnergyPlus, Copyright (c) 1996-2019, The Board of Trustees of the University of Illinois, +// The Regents of the University of California, through Lawrence Berkeley National Laboratory +// (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge +// National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other +// contributors. All rights reserved. +// +// NOTICE: This Software was developed under funding from the U.S. Department of Energy and the +// U.S. Government consequently retains certain rights. As such, the U.S. Government has been +// granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, +// worldwide license in the Software to reproduce, distribute copies to the public, prepare +// derivative works, and perform publicly and display publicly, and to permit others to do so. +// +// Redistribution and use in source and binary forms, with or without modification, are permitted +// provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, this list of +// conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, this list of +// conditions and the following disclaimer in the documentation and/or other materials +// provided with the distribution. +// +// (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, +// the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be +// used to endorse or promote products derived from this software without specific prior +// written permission. +// +// (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form +// without changes from the version obtained under this License, or (ii) Licensee makes a +// reference solely to the software portion of its product, Licensee must refer to the +// software as "EnergyPlus version X" software, where "X" is the version number Licensee +// obtained under this License and may not use a different name for the software. Except as +// specifically required in this Section (4), Licensee shall not use in a company name, a +// product name, in advertising, publicity, or other promotional activities any name, trade +// name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly +// similar designation, without the U.S. Department of Energy's prior written consent. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR +// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. + +// EnergyPlus::HeatBalanceKivaManager Unit Tests + +// Google Test Headers +#include + +// EnergyPlus Headers +#include "Fixtures/EnergyPlusFixture.hh" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace EnergyPlus { + +TEST_F(EnergyPlusFixture, HeatBalanceKiva_SetInitialBCs) +{ + + // Unit test for Issue #7291 - Kiva initialization indoor temperature assumptions + + // Create Kiva foundation and set parameters + Kiva::Foundation fnd; + + fnd.reductionStrategy = Kiva::Foundation::RS_AP; + + Kiva::Material concrete(1.95, 2400.0, 900.0); + + Kiva::Layer tempLayer; + tempLayer.thickness = 0.10; + tempLayer.material = concrete; + + fnd.slab.interior.emissivity = 0.8; + fnd.slab.layers.push_back(tempLayer); + + tempLayer.thickness = 0.2; + tempLayer.material = concrete; + + fnd.wall.layers.push_back(tempLayer); + + fnd.wall.heightAboveGrade = 0.1; + fnd.wall.depthBelowSlab = 0.2; + fnd.wall.interior.emissivity = 0.8; + fnd.wall.exterior.emissivity = 0.8; + fnd.wall.interior.absorptivity = 0.8; + fnd.wall.exterior.absorptivity = 0.8; + + fnd.foundationDepth = 0.0; + fnd.numericalScheme = Kiva::Foundation::NS_ADI; + + fnd.polygon.outer().push_back(Kiva::Point(-6.0, -6.0)); + fnd.polygon.outer().push_back(Kiva::Point(-6.0, 6.0)); + fnd.polygon.outer().push_back(Kiva::Point(6.0, 6.0)); + fnd.polygon.outer().push_back(Kiva::Point(6.0, -6.0)); + + // Create Kiva weather data + HeatBalanceKivaManager::KivaWeatherData kivaweather; + kivaweather.annualAverageDrybulbTemp = 10.0; + kivaweather.intervalsPerHour = 1; + kivaweather.dryBulb = {10.0}; + kivaweather.windSpeed = {0.0}; + kivaweather.skyEmissivity = {0.0}; + + HeatBalanceKivaManager::KivaManager km; + + std::string const idf_objects = delimited_string({ + "Version,9.2;", + " ", + "Zone,", + " Core_bottom, !- Name", + " 0.0000, !- Direction of Relative North {deg}", + " 0.0000, !- X Origin {m}", + " 0.0000, !- Y Origin {m}", + " 0.0000, !- Z Origin {m}", + " 1, !- Type", + " 1, !- Multiplier", + " , !- Ceiling Height {m}", + " , !- Volume {m3}", + " autocalculate, !- Floor Area {m2}", + " , !- Zone Inside Convection Algorithm", + " , !- Zone Outside Convection Algorithm", + " Yes; !- Part of Total Floor Area", + " ", + "ZoneControl:Thermostat,", + " Core_bottom Thermostat, !- Name", + " Core_bottom, !- Zone or ZoneList Name", + " Dual Zone Control Type Sched, !- Control Type Schedule Name", + " ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type", + " Core_bottom DualSPSched; !- Control 1 Name", + " ", + "Schedule:Constant,", + " Dual Zone Control Type Sched, !- Name", + " Control Type, !- Schedule Type Limits Name", + " 4; !- Field 1", + " ", + "ThermostatSetpoint:DualSetpoint,", + " Core_bottom DualSPSched, !- Name", + " HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name", + " CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name", + " ", + "Schedule:Constant,", + " CLGSETP_SCH, !- Name", + " Temperature, !- Schedule Type Limits Name", + " 24.0; !- Field 1", + " ", + "Schedule:Constant,", + " HTGSETP_SCH, !- Name", + " Temperature, !- Schedule Type Limits Name", + " 20.0; !- Field 1", + " ", + "Schedule:Constant,", + " CLGSETP_SCH_EXTREME, !- Name", + " Temperature, !- Schedule Type Limits Name", + " 100.0; !- Field 1", + " ", + "Schedule:Constant,", + " HTGSETP_SCH_EXTREME, !- Name", + " Temperature, !- Schedule Type Limits Name", + " -100.0; !- Field 1", + " ", + }); + + ASSERT_TRUE(process_idf(idf_objects)); + + bool ErrorsFound(false); // If errors detected in input + HeatBalanceManager::GetZoneData(ErrorsFound); + ASSERT_FALSE(ErrorsFound); + + int DualZoneNum(1); + + DataEnvironment::DayOfYear_Schedule = 1; // must initialize this to get schedules initialized + DataEnvironment::DayOfWeek = 1; // must initialize this to get schedules initialized + DataGlobals::HourOfDay = 1; // must initialize this to get schedules initialized + DataGlobals::TimeStep = 1; // must initialize this to get schedules initialized + DataGlobals::NumOfTimeStepInHour = 1; // must initialize this to get schedules initialized + DataGlobals::MinutesPerTimeStep = 60; // must initialize this to get schedules initialized + ScheduleManager::ProcessScheduleInput(); // read schedules + + ZoneTempPredictorCorrector::GetZoneAirSetPoints(); + + ScheduleManager::Schedule(DataZoneControls::TempControlledZone(DualZoneNum).CTSchedIndex).CurrentValue = DataHVACGlobals::DualSetPointWithDeadBand; + + // Test Initial Indoor Temperature input of 15C with Cooling/Heating Setpoints of 24C/20C + + Real64 zoneAssumedTemperature1 = 15.0; + HeatBalanceKivaManager::KivaInstanceMap kv1(fnd, 0, {}, 0, zoneAssumedTemperature1, 1.0, 0, &km); + + kv1.zoneControlNum = 1; + kv1.zoneControlType = 1; // Temperature + + kv1.setInitialBoundaryConditions(kivaweather, 1, 1, 1); + + Real64 expectedResult1 = kv1.instance.bcs->slabConvectiveTemp; + + EXPECT_NEAR(expectedResult1, zoneAssumedTemperature1 + DataGlobals::KelvinConv, 0.001); + + // Test using default Initial Indoor Temperature with Cooling/Heating Setpoints of 24C/20C + + Real64 coolingSetpoint2 = 24.0; + Real64 zoneAssumedTemperature2 = -9999; + HeatBalanceKivaManager::KivaInstanceMap kv2(fnd, 0, {}, 0, zoneAssumedTemperature2, 1.0, 0, &km); + + kv2.zoneControlNum = 1; + kv2.zoneControlType = 1; // Temperature + + kv2.setInitialBoundaryConditions(kivaweather, 1, 1, 1); + + Real64 expectedResult2 = kv2.instance.bcs->slabConvectiveTemp; + + EXPECT_NEAR(expectedResult2, coolingSetpoint2 + DataGlobals::KelvinConv, 0.001); + + // Test using default Initial Indoor Temperature with Cooling/Heating Setpoints of 100C/-100C + + ZoneTempPredictorCorrector::SetPointDualHeatCool(1).CoolTempSchedIndex = 4; + ZoneTempPredictorCorrector::SetPointDualHeatCool(1).HeatTempSchedIndex = 5; + + Real64 coolingSetpoint3 = 100.0; + Real64 zoneAssumedTemperature3 = -9999; + HeatBalanceKivaManager::KivaInstanceMap kv3(fnd, 0, {}, 0, zoneAssumedTemperature3, 1.0, 0, &km); + + kv3.zoneControlNum = 1; + kv3.zoneControlType = 1; // Temperature + + kv3.setInitialBoundaryConditions(kivaweather, 1, 1, 1); + + Real64 expectedResult3 = kv3.instance.bcs->slabConvectiveTemp; + + EXPECT_NEAR(expectedResult3, coolingSetpoint3 + DataGlobals::KelvinConv, 0.001); + + // Test Initial Indoor Temperature input of 15C with Cooling/Heating Setpoints of 100C/-100C + + ZoneTempPredictorCorrector::SetPointDualHeatCool(1).CoolTempSchedIndex = 4; + ZoneTempPredictorCorrector::SetPointDualHeatCool(1).HeatTempSchedIndex = 5; + + Real64 zoneAssumedTemperature4 = 15.0; + HeatBalanceKivaManager::KivaInstanceMap kv4(fnd, 0, {}, 0, zoneAssumedTemperature4, 1.0, 0, &km); + + kv4.zoneControlNum = 1; + kv4.zoneControlType = 1; // Temperature + + kv4.setInitialBoundaryConditions(kivaweather, 1, 1, 1); + + Real64 expectedResult4 = kv4.instance.bcs->slabConvectiveTemp; + + EXPECT_NEAR(expectedResult4, zoneAssumedTemperature4 + DataGlobals::KelvinConv, 0.001); +} + +} // namespace EnergyPlus diff --git a/tst/EnergyPlus/unit/HeatBalanceManager.unit.cc b/tst/EnergyPlus/unit/HeatBalanceManager.unit.cc index 0af7d51ece3..6148b523807 100644 --- a/tst/EnergyPlus/unit/HeatBalanceManager.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceManager.unit.cc @@ -1546,7 +1546,7 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_EMSConstructionTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); SimulationManager::ManageSimulation(); DataGlobals::DayOfSim = 2; // avoid array bounds problem in RecKeepHeatBalance WeatherManager::Envrn = 1; @@ -1706,4 +1706,130 @@ TEST_F(EnergyPlusFixture, HeatBalanceManager_HeatBalanceAlgorithm_HAMT) EXPECT_EQ(DataHeatBalance::OverallHeatTransferSolutionAlgo, DataSurfaces::HeatTransferModel_HAMT); } +TEST_F(EnergyPlusFixture, HeatBalanceManager_GlazingEquivalentLayer_RValue) +{ + + bool errorsfound = false; + + std::string const idf_objects = delimited_string({ + " Building, My Building;", + "WindowMaterial:Glazing:EquivalentLayer,", + "GLZCLR, !- Name", + "SpectralAverage, !- Optical Data Type", + ", !- Window Glass Spectral Data Set Name", + "0.77, !- Front Side Beam-Beam Solar Transmittance {dimensionless}", + "0.77, !- Back Side Beam-Beam Solar Transmittance {dimensionless}", + "0.07, !- Front Side Beam-Beam Solar Reflectance {dimensionless}", + "0.07, !- Back Side Beam-Beam Solar Reflectance {dimensionless}", + "0.0, !- Front Side Beam-Beam Visible Solar Transmittance {dimensionless}", + "0.0, !- Back Side Beam-Beam Visible Solar Transmittance {dimensionless}", + "0.0, !- Front Side Beam-Beam Visible Solar Reflectance {dimensionless}", + "0.0, !- Back Side Beam-Beam Visible Solar Reflectance {dimensionless}", + "0.0, !- Front Side Beam-Diffuse Solar Transmittance {dimensionless}", + "0.0, !- Back Side Beam-Diffuse Solar Transmittance {dimensionless}", + "0.0, !- Front Side Beam-Diffuse Solar Reflectance {dimensionless}", + "0.0, !- Back Side Beam-Diffuse Solar Reflectance {dimensionless}", + "0.0, !- Front Side Beam-Diffuse Visible Solar Transmittance {dimensionless}", + "0.0, !- Back Side Beam-Diffuse Visible Solar Transmittance {dimensionless}", + "0.0, !- Front Side Beam-Diffuse Visible Solar Reflectance {dimensionless}", + "0.0, !- Back Side Beam-Diffuse Visible Solar Reflectance {dimensionless}", + "0.695, !- Diffuse-Diffuse Solar Transmittance {dimensionless}", + "0.16, !- Front Side Diffuse-Diffuse Solar Reflectance {dimensionless}", + "0.16, !- Back Side Diffuse-Diffuse Solar Reflectance {dimensionless}", + "0.0, !- Diffuse-Diffuse Visible Solar Transmittance {dimensionless}", + "0.0, !- Front Side Diffuse-Diffuse Visible Solar Reflectance {dimensionless}", + "0.0, !- Back Side Diffuse-Diffuse Visible Solar Reflectance {dimensionless}", + "0.0, !- Infrared Transmittance (applies to front and back) {dimensionless}", + "0.84, !- Front Side Infrared Emissivity {dimensionless}", + "0.84; !- Back Side Infrared Emissivity {dimensionless}", + }); + + EXPECT_TRUE(process_idf(idf_objects)); + + HeatBalanceManager::GetMaterialData(errorsfound); + + EXPECT_FALSE(errorsfound); + EXPECT_NEAR(DataHeatBalance::Material(1).Resistance,0.158,0.0001); + +} + +TEST_F(EnergyPlusFixture, HeatBalanceManager_GetAirBoundaryConstructData) +{ + + std::string const idf_objects = delimited_string({ + + "Construction:AirBoundary,", + "Grouped Air Boundary, !- Name", + "GroupedZones, !- Solar and Daylighting Method", + "GroupedZones, !- Radiant Exchange Method", + "None; !- Air Exchange Method", + + "Construction:AirBoundary,", + "Non-Grouped Air Boundary, !- Name", + "InteriorWindow, !- Solar and Daylighting Method", + "IRTSurface, !- Radiant Exchange Method", + "SimpleMixing, !- Air Exchange Method", + ", !- Simple Mixing Air Changes per Hour {1 / hr}", + "; !- Simple Mixing Schedule Name" + + }); + + ASSERT_TRUE(process_idf(idf_objects)); + + bool ErrorsFound(false); + + // call get material data to auto-generate IRTSurface material + ErrorsFound = false; + HeatBalanceManager::GetMaterialData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + EXPECT_EQ(DataHeatBalance::TotMaterials, 1); + int MaterNum = 1; + EXPECT_EQ(DataHeatBalance::Material(MaterNum).Group, DataHeatBalance::IRTMaterial); + EXPECT_EQ(DataHeatBalance::Material(MaterNum).Name, "~AirBoundary-IRTMaterial"); + EXPECT_EQ(DataHeatBalance::Material(MaterNum).ROnly, true); + EXPECT_EQ(DataHeatBalance::Material(MaterNum).Resistance, 0.01); + EXPECT_EQ(DataHeatBalance::Material(MaterNum).AbsorpThermal, 0.9999); + EXPECT_EQ(DataHeatBalance::Material(MaterNum).AbsorpThermalInput, 0.9999); + EXPECT_EQ(DataHeatBalance::Material(MaterNum).AbsorpSolar, 0.0); + EXPECT_EQ(DataHeatBalance::Material(MaterNum).AbsorpSolarInput, 0.0); + EXPECT_EQ(DataHeatBalance::Material(MaterNum).AbsorpVisible, 0.0); + EXPECT_EQ(DataHeatBalance::Material(MaterNum).AbsorpVisibleInput, 0.0); + EXPECT_EQ(DataHeatBalance::NominalR(MaterNum), Material(MaterNum).Resistance); + + // get constructions + ErrorsFound = false; + GetConstructData(ErrorsFound); + EXPECT_FALSE(ErrorsFound); + EXPECT_EQ(DataHeatBalance::TotConstructs, 2); + + int constrNum = UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Non-Grouped Air Boundary"), DataHeatBalance::Construct); + EXPECT_TRUE(UtilityRoutines::SameString(DataHeatBalance::Construct(constrNum).Name, "Non-Grouped Air Boundary")); + EXPECT_TRUE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundary); + EXPECT_FALSE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundaryGroupedRadiant); + EXPECT_FALSE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundarySolar); + EXPECT_TRUE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundaryInteriorWindow); + EXPECT_TRUE(DataHeatBalance::Construct(constrNum).IsUsedCTF); + EXPECT_TRUE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundaryIRTSurface); + EXPECT_TRUE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundaryMixing); + EXPECT_EQ(DataHeatBalance::Construct(constrNum).TotLayers, 1); + EXPECT_TRUE(UtilityRoutines::SameString(DataHeatBalance::Material(DataHeatBalance::Construct(constrNum).LayerPoint(1)).Name, "~AirBoundary-IRTMaterial")); + EXPECT_EQ(DataHeatBalance::Construct(constrNum).AirBoundaryACH, 0.5); // Default value from IDD + EXPECT_EQ(DataHeatBalance::Construct(constrNum).AirBoundaryMixingSched, -1); + EXPECT_EQ(DataHeatBalance::NominalRforNominalUCalculation(constrNum), 0.01); + + constrNum = UtilityRoutines::FindItemInList(UtilityRoutines::MakeUPPERCase("Grouped Air Boundary"), DataHeatBalance::Construct); + EXPECT_TRUE(UtilityRoutines::SameString(DataHeatBalance::Construct(constrNum).Name, "Grouped Air Boundary")); + EXPECT_TRUE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundary); + EXPECT_TRUE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundaryGroupedRadiant); + EXPECT_TRUE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundarySolar); + EXPECT_FALSE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundaryInteriorWindow); + EXPECT_FALSE(DataHeatBalance::Construct(constrNum).IsUsedCTF); + EXPECT_FALSE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundaryIRTSurface); + EXPECT_FALSE(DataHeatBalance::Construct(constrNum).TypeIsAirBoundaryMixing); + EXPECT_EQ(DataHeatBalance::Construct(constrNum).TotLayers, 0); + EXPECT_EQ(DataHeatBalance::Construct(constrNum).AirBoundaryACH, 0.0); // Not processed for GroupedZone mixing option + EXPECT_EQ(DataHeatBalance::Construct(constrNum).AirBoundaryMixingSched, 0); + EXPECT_EQ(DataHeatBalance::NominalRforNominalUCalculation(constrNum), 0.0); +} + } // namespace EnergyPlus diff --git a/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc b/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc index 8b4e93d5ae6..cf5b7484471 100644 --- a/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc +++ b/tst/EnergyPlus/unit/HeatBalanceSurfaceManager.unit.cc @@ -66,6 +66,7 @@ #include #include #include +#include #include #include #include @@ -1236,9 +1237,12 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertyLocalEnv) SurfaceGeometry::CosBldgRotAppGonly = 1.0; SurfaceGeometry::SinBldgRotAppGonly = 0.0; - SurfaceGeometry::GetSurfaceData(ErrorsFound); + SurfaceGeometry::SetupZoneGeometry(ErrorsFound); EXPECT_FALSE(ErrorsFound); + HeatBalanceIntRadExchange::InitSolarViewFactors(); + EXPECT_FALSE(has_err_output(true)); + EXPECT_TRUE(DataGlobals::AnyLocalEnvironmentsInModel); DataZoneEquipment::ZoneEquipConfig.allocate(1); @@ -1812,9 +1816,12 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfPropertySrdSurfLWR) SurfaceGeometry::CosBldgRotAppGonly = 1.0; SurfaceGeometry::SinBldgRotAppGonly = 0.0; - SurfaceGeometry::GetSurfaceData(ErrorsFound); + SurfaceGeometry::SetupZoneGeometry(ErrorsFound); EXPECT_FALSE(ErrorsFound); + HeatBalanceIntRadExchange::InitSolarViewFactors(); + EXPECT_FALSE(has_err_output(true)); + EXPECT_TRUE(DataGlobals::AnyLocalEnvironmentsInModel); DataZoneEquipment::ZoneEquipConfig.allocate(1); @@ -2372,9 +2379,16 @@ TEST_F(EnergyPlusFixture, HeatBalanceSurfaceManager_TestSurfTempCalcHeatBalanceA SurfaceGeometry::CosBldgRotAppGonly = 1.0; SurfaceGeometry::SinBldgRotAppGonly = 0.0; - SurfaceGeometry::GetSurfaceData(ErrorsFound); + SurfaceGeometry::SetupZoneGeometry(ErrorsFound); EXPECT_FALSE(ErrorsFound); + // Clear schedule type warnings + EXPECT_TRUE(has_err_output(true)); + + HeatBalanceIntRadExchange::InitSolarViewFactors(); + EXPECT_TRUE(compare_err_stream("")); + EXPECT_FALSE(has_err_output(true)); + DataZoneEquipment::ZoneEquipConfig.allocate(1); DataZoneEquipment::ZoneEquipConfig(1).ZoneName = "LIVING ZONE"; DataZoneEquipment::ZoneEquipConfig(1).ActualZoneNum = 1; diff --git a/tst/EnergyPlus/unit/HeatPumpWaterToWaterSimple.unit.cc b/tst/EnergyPlus/unit/HeatPumpWaterToWaterSimple.unit.cc index d583fff2751..648aa8857e5 100644 --- a/tst/EnergyPlus/unit/HeatPumpWaterToWaterSimple.unit.cc +++ b/tst/EnergyPlus/unit/HeatPumpWaterToWaterSimple.unit.cc @@ -712,7 +712,7 @@ TEST_F(EnergyPlusFixture, PlantLoopSourceSideTest) OutputReportPredefined::SetPredefinedTables(); HeatBalanceManager::SetPreConstructionInputParameters(); // establish array bounds for constructions early - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); @@ -1462,7 +1462,7 @@ TEST_F(EnergyPlusFixture, WWHP_AutosizeTest1) OutputReportPredefined::SetPredefinedTables(); HeatBalanceManager::SetPreConstructionInputParameters(); // establish array bounds for constructions early - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); createFacilityElectricPowerServiceObject(); diff --git a/tst/EnergyPlus/unit/HeatRecovery.unit.cc b/tst/EnergyPlus/unit/HeatRecovery.unit.cc index d430a8fdb3e..158bc55040c 100644 --- a/tst/EnergyPlus/unit/HeatRecovery.unit.cc +++ b/tst/EnergyPlus/unit/HeatRecovery.unit.cc @@ -3811,7 +3811,7 @@ TEST_F(EnergyPlusFixture, HeatRecoveryHXOnMainBranch_SimHeatRecoveryTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); // + // OutputProcessor::TimeValue.allocate(2); // ManageSimulation(); // run the design day ASSERT_EQ("DOAS HEAT RECOVERY", ExchCond(1).Name); // Name of Heat Recovery Exchange On Main Air Loop diff --git a/tst/EnergyPlus/unit/HighTempRadiantSystem.unit.cc b/tst/EnergyPlus/unit/HighTempRadiantSystem.unit.cc index 075f831d0da..08666f9c537 100644 --- a/tst/EnergyPlus/unit/HighTempRadiantSystem.unit.cc +++ b/tst/EnergyPlus/unit/HighTempRadiantSystem.unit.cc @@ -113,6 +113,8 @@ TEST_F(EnergyPlusFixture, HighTempRadiantSystemTest_GetHighTempRadiantSystem) std::string const error_string01 = delimited_string({" ** Severe ** Heating Setpoint Temperature Schedule Name not found: RADIANT HEATING SETPOINTS", " ** ~~~ ** Occurs for ZoneHVAC:HighTemperatureRadiant = ZONERADHEATER", + " ** Severe ** GetRadiantSystemSurface: Somehow the radiant system enclosure number is zero " + "forZoneHVAC:HighTemperatureRadiant = ZONERADHEATER", " ** Severe ** Fraction of radiation distributed to surfaces and people sums up to less than 1 for ZONERADHEATER", " ** ~~~ ** This would result in some of the radiant energy delivered by the high temp radiant heater being lost.", " ** ~~~ ** The sum of all radiation fractions to surfaces = 0.80000", diff --git a/tst/EnergyPlus/unit/JsonOutput.unit.cc b/tst/EnergyPlus/unit/JsonOutput.unit.cc index 2bff726d97a..a1f090d7731 100644 --- a/tst/EnergyPlus/unit/JsonOutput.unit.cc +++ b/tst/EnergyPlus/unit/JsonOutput.unit.cc @@ -169,7 +169,7 @@ TEST_F(EnergyPlusFixture, JsonOutput_VariableInfo) // EXPECT_EQ( "SALESFLOOR INLET NODE:System Node Mass Flow Rate", OutputProcessor::RVariableTypes( 2 ).VarName ); // EXPECT_EQ( 1, OutputProcessor::RVariableTypes( 1 ).ReportID ); // EXPECT_EQ( 2, OutputProcessor::RVariableTypes( 2 ).ReportID ); - int indexType = 1; + OutputProcessor::TimeStepType indexType = OutputProcessor::TimeStepType::TimeStepZone; int repordId = 1; Variable var("SALESFLOOR INLET NODE:System Node Temperature", ReportingFrequency::TimeStep, indexType, repordId, Unit::C); @@ -191,7 +191,7 @@ TEST_F(EnergyPlusFixture, JsonOutput_DataFrameInfo1) { json OutputVars; - int indexType = 1; + OutputProcessor::TimeStepType indexType = OutputProcessor::TimeStepType::TimeStepZone; int reportId = 1; Variable var0("SALESFLOOR INLET NODE:System Node Temperature", ReportingFrequency::TimeStep, indexType, reportId, Unit::C); @@ -225,7 +225,7 @@ TEST_F(EnergyPlusFixture, JsonOutput_DataFrameInfo2) { json OutputData; - int indexType = 1; + OutputProcessor::TimeStepType indexType = OutputProcessor::TimeStepType::TimeStepZone; int reportId = 1; Variable var0("SALESFLOOR INLET NODE:System Node Temperature", ReportingFrequency::TimeStep, indexType, reportId, Unit::C); diff --git a/tst/EnergyPlus/unit/OASystemHWPreheatCoil.unit.cc b/tst/EnergyPlus/unit/OASystemHWPreheatCoil.unit.cc index 708c82118d7..1729e7a3aa9 100644 --- a/tst/EnergyPlus/unit/OASystemHWPreheatCoil.unit.cc +++ b/tst/EnergyPlus/unit/OASystemHWPreheatCoil.unit.cc @@ -1039,7 +1039,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOffSim) }); ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); SimulationManager::ManageSimulation(); EXPECT_EQ(1, NumOASystems); @@ -2017,7 +2017,7 @@ TEST_F(EnergyPlusFixture, OASystem_HotWaterPreheatCoilScheduledOnSim) }); ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); SimulationManager::ManageSimulation(); EXPECT_EQ(1, NumOASystems); diff --git a/tst/EnergyPlus/unit/OutputProcessor.unit.cc b/tst/EnergyPlus/unit/OutputProcessor.unit.cc index d68beed2652..b1d6213558c 100644 --- a/tst/EnergyPlus/unit/OutputProcessor.unit.cc +++ b/tst/EnergyPlus/unit/OutputProcessor.unit.cc @@ -75,7 +75,7 @@ namespace OutputProcessor { int const NumVariables = 2; Array1D_int VarIndexes(NumVariables); // Variable Numbers Array1D_int VarTypes(NumVariables); // Variable Types (1=integer, 2=real, 3=meter) - Array1D_int IndexTypes(NumVariables); // Variable Index Types (1=Zone,2=HVAC) + Array1D IndexTypes(NumVariables); // Variable Index Types (1=Zone,2=HVAC) Array1D unitsForVar(NumVariables); // units from enum for each variable Array1D_int ResourceTypes(NumVariables); // ResourceTypes for each variable Array1D_string EndUses(NumVariables); // EndUses for each variable @@ -1082,31 +1082,41 @@ namespace OutputProcessor { } } - TEST_F(SQLiteFixture, OutputProcessor_validateIndexType) + TEST_F(SQLiteFixture, OutputProcessor_validateTimeStepType) { - std::map const resource_map = {{"ZONE", 1}, {"HEATBALANCE", 1}, {"HEAT BALANCE", 1}, - {"HVAC", 2}, {"SYSTEM", 2}, {"PLANT", 2}}; + std::map const resource_map = { + // Zone + {"ZONE", OutputProcessor::TimeStepType::TimeStepZone}, + {"HEATBALANCE", OutputProcessor::TimeStepType::TimeStepZone}, + {"HEAT BALANCE", OutputProcessor::TimeStepType::TimeStepZone}, + // System + {"HVAC", OutputProcessor::TimeStepType::TimeStepSystem}, + {"SYSTEM", OutputProcessor::TimeStepType::TimeStepSystem}, + {"PLANT", OutputProcessor::TimeStepType::TimeStepSystem} + }; auto const calledFrom = "UnitTest"; for (auto const &indexGroup : resource_map) { - EXPECT_EQ(indexGroup.second, ValidateIndexType(indexGroup.first, calledFrom)) << "where indexTypeKey is " << indexGroup.first; + EXPECT_EQ(indexGroup.second, ValidateTimeStepType(indexGroup.first, calledFrom)) << "where indexTypeKey is " << indexGroup.first; } } - TEST_F(SQLiteFixture, OutputProcessor_DeathTest_validateIndexType) + TEST_F(SQLiteFixture, OutputProcessor_DeathTest_validateTimeStepType) { auto const calledFrom = "UnitTest"; - EXPECT_ANY_THROW(ValidateIndexType("BAD INPUT", calledFrom)); + EXPECT_ANY_THROW(ValidateTimeStepType("BAD INPUT", calledFrom)); } TEST_F(SQLiteFixture, OutputProcessor_standardIndexTypeKey) { - EXPECT_EQ("Zone", StandardIndexTypeKey(1)); - EXPECT_EQ("HVAC", StandardIndexTypeKey(2)); - EXPECT_EQ("UNKW", StandardIndexTypeKey(0)); - EXPECT_EQ("UNKW", StandardIndexTypeKey(-1)); - EXPECT_EQ("UNKW", StandardIndexTypeKey(3)); + EXPECT_EQ("Zone", StandardTimeStepTypeKey(OutputProcessor::TimeStepType::TimeStepZone)); + EXPECT_EQ("HVAC", StandardTimeStepTypeKey(OutputProcessor::TimeStepType::TimeStepSystem)); + + // It's no longer possible to pass something that isn't part of the enum, that's kind of the point of using an enum! + //EXPECT_EQ("UNKW", StandardTimeStepTypeKey(0)); + //EXPECT_EQ("UNKW", StandardTimeStepTypeKey(-1)); + //EXPECT_EQ("UNKW", StandardTimeStepTypeKey(3)); } TEST_F(SQLiteFixture, OutputProcessor_validateVariableType) @@ -1378,37 +1388,43 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); + // TODO: Double check my determination of correct behavior + // Before it was internally calling createSQLiteReportDictionaryRecord with indexType = 1 which in SQLiteProcedures means "HVAC System" + // but in OutputProcessor domain it means Zone... + // According to the I/O ref guide: Output:Meter is supposed to have the "Zone Timestep interval" for its resolution + std::string timeStepTypeString = "Zone"; + std::vector> reportDataDictionary( - {{"1", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Zone Timestep", "", "J"}, - {"2", "1", "Sum", "indexGroup", "HVAC System", "", "meterName", "Zone Timestep", "", "W"}, - {"3", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Zone Timestep", "", "J"}, - {"4", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Zone Timestep", "", "W"}, - {"5", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Zone Timestep", "", "W"}, - {"6", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "HVAC System Timestep", "", "J"}, - {"7", "1", "Sum", "indexGroup", "HVAC System", "", "meterName", "HVAC System Timestep", "", "J"}, - {"8", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "HVAC System Timestep", "", "J"}, - {"9", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "HVAC System Timestep", "", "J"}, - {"10", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "HVAC System Timestep", "", "J"}, - {"11", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Hourly", "", "J"}, - {"12", "1", "Sum", "indexGroup", "HVAC System", "", "meterName", "Hourly", "", ""}, - {"13", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Hourly", "", ""}, - {"14", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Hourly", "", ""}, - {"15", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Hourly", "", ""}, - {"16", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Daily", "", ""}, - {"17", "1", "Sum", "indexGroup", "HVAC System", "", "meterName", "Daily", "", ""}, - {"18", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Daily", "", "deltaC"}, - {"19", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Daily", "", "deltaC"}, - {"20", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Daily", "", "deltaC"}, - {"21", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Monthly", "", "deltaC"}, - {"22", "1", "Sum", "indexGroup", "HVAC System", "", "meterName", "Monthly", "", "deltaC"}, - {"23", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Monthly", "", "deltaC"}, - {"24", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Monthly", "", "deltaC"}, - {"25", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Monthly", "", "deltaC"}, - {"26", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Run Period", "", "deltaC"}, - {"27", "1", "Sum", "indexGroup", "HVAC System", "", "meterName", "Run Period", "", "deltaC"}, - {"28", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Run Period", "", "deltaC"}, - {"29", "1", "Avg", "indexGroup", "HVAC System", "", "meterName", "Run Period", "", "deltaC"}, - {"30", "1", "Avg", "indexGroup", "HVAC System", "Cumulative ", "meterName", "Run Period", "", "deltaC"}}); + {{"1", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Zone Timestep", "", "J"}, + {"2", "1", "Sum", "indexGroup", timeStepTypeString, "", "meterName", "Zone Timestep", "", "W"}, + {"3", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Zone Timestep", "", "J"}, + {"4", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Zone Timestep", "", "W"}, + {"5", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Zone Timestep", "", "W"}, + {"6", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "HVAC System Timestep", "", "J"}, + {"7", "1", "Sum", "indexGroup", timeStepTypeString, "", "meterName", "HVAC System Timestep", "", "J"}, + {"8", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "HVAC System Timestep", "", "J"}, + {"9", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "HVAC System Timestep", "", "J"}, + {"10", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "HVAC System Timestep", "", "J"}, + {"11", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Hourly", "", "J"}, + {"12", "1", "Sum", "indexGroup", timeStepTypeString, "", "meterName", "Hourly", "", ""}, + {"13", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Hourly", "", ""}, + {"14", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Hourly", "", ""}, + {"15", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Hourly", "", ""}, + {"16", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Daily", "", ""}, + {"17", "1", "Sum", "indexGroup", timeStepTypeString, "", "meterName", "Daily", "", ""}, + {"18", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Daily", "", "deltaC"}, + {"19", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Daily", "", "deltaC"}, + {"20", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Daily", "", "deltaC"}, + {"21", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Monthly", "", "deltaC"}, + {"22", "1", "Sum", "indexGroup", timeStepTypeString, "", "meterName", "Monthly", "", "deltaC"}, + {"23", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Monthly", "", "deltaC"}, + {"24", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Monthly", "", "deltaC"}, + {"25", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Monthly", "", "deltaC"}, + {"26", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Run Period", "", "deltaC"}, + {"27", "1", "Sum", "indexGroup", timeStepTypeString, "", "meterName", "Run Period", "", "deltaC"}, + {"28", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Run Period", "", "deltaC"}, + {"29", "1", "Avg", "indexGroup", timeStepTypeString, "", "meterName", "Run Period", "", "deltaC"}, + {"30", "1", "Avg", "indexGroup", timeStepTypeString, "Cumulative ", "meterName", "Run Period", "", "deltaC"}}); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); } @@ -1418,172 +1434,184 @@ namespace OutputProcessor { EnergyPlus::sqlite->createSQLiteTimeIndexRecord(4, 1, 1, 0, 2017); + // Store expected results + std::vector> expectedReportDataDictionary; + + std::string timeStepZoneString = "Zone"; + std::string timeStepSystemString = "HVAC System"; + + // For now I don't accept anything else than TimeStepZone or TimeStepSystem, but to make it easier if we need to change that later + // and to preserve the original test (passing int=3 before should have defaulted to Zone...) + OutputProcessor::TimeStepType aThirdTimeStepType = OutputProcessor::TimeStepType::TimeStepZone; + std::string aThirdTimeStepString = timeStepZoneString; + WriteReportVariableDictionaryItem(ReportingFrequency::TimeStep, StoreType::Averaged, 1, -999, "indexGroup", "1", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(compare_eso_stream(delimited_string({"1,1,keyedValue,variableName [m3/s] !TimeStep"}))); WriteReportVariableDictionaryItem(ReportingFrequency::TimeStep, StoreType::Summed, 2, -999, "indexGroup", "2", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(compare_eso_stream(delimited_string({"2,1,keyedValue,variableName [m3/s] !TimeStep"}))); WriteReportVariableDictionaryItem(ReportingFrequency::TimeStep, StoreType::Averaged, 3, -999, "indexGroup", "3", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, "scheduleName"); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, "scheduleName"); EXPECT_TRUE(compare_eso_stream(delimited_string({"3,1,keyedValue,variableName [m3/s] !TimeStep,scheduleName"}))); WriteReportVariableDictionaryItem(ReportingFrequency::TimeStep, StoreType::Averaged, 4, -999, "indexGroup", "4", "keyedValue", "variableName", - 2, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepSystem, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(compare_eso_stream(delimited_string({"4,1,keyedValue,variableName [m3/s] !TimeStep"}))); + // Hum, can no longer pass Something else than what's in the enum... WriteReportVariableDictionaryItem(ReportingFrequency::TimeStep, StoreType::Averaged, 5, -999, "indexGroup", "5", "keyedValue", "variableName", - 3, OutputProcessor::Unit::m3_s, _, _); + aThirdTimeStepType, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(compare_eso_stream(delimited_string({"5,1,keyedValue,variableName [m3/s] !TimeStep"}))); WriteReportVariableDictionaryItem(ReportingFrequency::EachCall, StoreType::Averaged, 6, -999, "indexGroup", "6", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(compare_eso_stream(delimited_string({"6,1,keyedValue,variableName [m3/s] !Each Call"}))); WriteReportVariableDictionaryItem(ReportingFrequency::EachCall, StoreType::Summed, 7, -999, "indexGroup", "7", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(compare_eso_stream(delimited_string({"7,1,keyedValue,variableName [m3/s] !Each Call"}))); WriteReportVariableDictionaryItem(ReportingFrequency::EachCall, StoreType::Averaged, 8, -999, "indexGroup", "8", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, "scheduleName"); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, "scheduleName"); EXPECT_TRUE(compare_eso_stream(delimited_string({"8,1,keyedValue,variableName [m3/s] !Each Call,scheduleName"}))); WriteReportVariableDictionaryItem(ReportingFrequency::EachCall, StoreType::Averaged, 9, -999, "indexGroup", "9", "keyedValue", "variableName", - 2, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepSystem, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(compare_eso_stream(delimited_string({"9,1,keyedValue,variableName [m3/s] !Each Call"}))); WriteReportVariableDictionaryItem(ReportingFrequency::EachCall, StoreType::Averaged, 10, -999, "indexGroup", "10", "keyedValue", - "variableName", 3, OutputProcessor::Unit::m3_s, _, _); + "variableName", aThirdTimeStepType, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(compare_eso_stream(delimited_string({"10,1,keyedValue,variableName [m3/s] !Each Call"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Hourly, StoreType::Averaged, 11, -999, "indexGroup", "11", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingHourlyVariables); TrackingHourlyVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string({"11,1,keyedValue,variableName [m3/s] !Hourly"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Hourly, StoreType::Summed, 12, -999, "indexGroup", "12", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingHourlyVariables); TrackingHourlyVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string({"12,1,keyedValue,variableName [m3/s] !Hourly"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Hourly, StoreType::Averaged, 13, -999, "indexGroup", "13", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, "scheduleName"); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, "scheduleName"); EXPECT_TRUE(TrackingHourlyVariables); TrackingHourlyVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string({"13,1,keyedValue,variableName [m3/s] !Hourly,scheduleName"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Hourly, StoreType::Averaged, 14, -999, "indexGroup", "14", "keyedValue", "variableName", - 2, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepSystem, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingHourlyVariables); TrackingHourlyVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string({"14,1,keyedValue,variableName [m3/s] !Hourly"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Hourly, StoreType::Averaged, 15, -999, "indexGroup", "15", "keyedValue", "variableName", - 3, OutputProcessor::Unit::m3_s, _, _); + aThirdTimeStepType, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingHourlyVariables); TrackingHourlyVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string({"15,1,keyedValue,variableName [m3/s] !Hourly"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Daily, StoreType::Averaged, 16, -999, "indexGroup", "16", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingDailyVariables); TrackingDailyVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string({"16,7,keyedValue,variableName [m3/s] !Daily [Value,Min,Hour,Minute,Max,Hour,Minute]"}))); - WriteReportVariableDictionaryItem(ReportingFrequency::Daily, StoreType::Summed, 17, -999, "indexGroup", "17", "keyedValue", "variableName", 1, - OutputProcessor::Unit::m3_s, _, _); + WriteReportVariableDictionaryItem(ReportingFrequency::Daily, StoreType::Summed, 17, -999, "indexGroup", "17", "keyedValue", "variableName", + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingDailyVariables); TrackingDailyVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string({"17,7,keyedValue,variableName [m3/s] !Daily [Value,Min,Hour,Minute,Max,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Daily, StoreType::Averaged, 18, -999, "indexGroup", "18", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, "scheduleName"); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, "scheduleName"); EXPECT_TRUE(TrackingDailyVariables); TrackingDailyVariables = false; EXPECT_TRUE(compare_eso_stream( delimited_string({"18,7,keyedValue,variableName [m3/s] !Daily [Value,Min,Hour,Minute,Max,Hour,Minute],scheduleName"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Daily, StoreType::Averaged, 19, -999, "indexGroup", "19", "keyedValue", "variableName", - 2, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepSystem, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingDailyVariables); TrackingDailyVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string({"19,7,keyedValue,variableName [m3/s] !Daily [Value,Min,Hour,Minute,Max,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Daily, StoreType::Averaged, 20, -999, "indexGroup", "20", "keyedValue", "variableName", - 3, OutputProcessor::Unit::m3_s, _, _); + aThirdTimeStepType, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingDailyVariables); TrackingDailyVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string({"20,7,keyedValue,variableName [m3/s] !Daily [Value,Min,Hour,Minute,Max,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Monthly, StoreType::Averaged, 21, -999, "indexGroup", "21", "keyedValue", - "variableName", 1, OutputProcessor::Unit::m3_s, _, _); + "variableName", OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingMonthlyVariables); TrackingMonthlyVariables = false; EXPECT_TRUE( compare_eso_stream(delimited_string({"21,9,keyedValue,variableName [m3/s] !Monthly [Value,Min,Day,Hour,Minute,Max,Day,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Monthly, StoreType::Summed, 22, -999, "indexGroup", "22", "keyedValue", "variableName", - 1, OutputProcessor::Unit::m3_s, _, _); + OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingMonthlyVariables); TrackingMonthlyVariables = false; EXPECT_TRUE( compare_eso_stream(delimited_string({"22,9,keyedValue,variableName [m3/s] !Monthly [Value,Min,Day,Hour,Minute,Max,Day,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Monthly, StoreType::Averaged, 23, -999, "indexGroup", "23", "keyedValue", - "variableName", 1, OutputProcessor::Unit::m3_s, _, "scheduleName"); + "variableName", OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, "scheduleName"); EXPECT_TRUE(TrackingMonthlyVariables); TrackingMonthlyVariables = false; EXPECT_TRUE(compare_eso_stream( delimited_string({"23,9,keyedValue,variableName [m3/s] !Monthly [Value,Min,Day,Hour,Minute,Max,Day,Hour,Minute],scheduleName"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Monthly, StoreType::Averaged, 24, -999, "indexGroup", "24", "keyedValue", - "variableName", 2, OutputProcessor::Unit::m3_s, _, _); + "variableName", OutputProcessor::TimeStepType::TimeStepSystem, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingMonthlyVariables); TrackingMonthlyVariables = false; EXPECT_TRUE( compare_eso_stream(delimited_string({"24,9,keyedValue,variableName [m3/s] !Monthly [Value,Min,Day,Hour,Minute,Max,Day,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Monthly, StoreType::Averaged, 25, -999, "indexGroup", "25", "keyedValue", - "variableName", 3, OutputProcessor::Unit::m3_s, _, _); + "variableName", aThirdTimeStepType, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingMonthlyVariables); TrackingMonthlyVariables = false; EXPECT_TRUE( compare_eso_stream(delimited_string({"25,9,keyedValue,variableName [m3/s] !Monthly [Value,Min,Day,Hour,Minute,Max,Day,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Simulation, StoreType::Averaged, 26, -999, "indexGroup", "26", "keyedValue", - "variableName", 1, OutputProcessor::Unit::m3_s, _, _); + "variableName", OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingRunPeriodVariables); TrackingRunPeriodVariables = false; EXPECT_TRUE(compare_eso_stream( delimited_string({"26,11,keyedValue,variableName [m3/s] !RunPeriod [Value,Min,Month,Day,Hour,Minute,Max,Month,Day,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Simulation, StoreType::Summed, 27, -999, "indexGroup", "27", "keyedValue", - "variableName", 1, OutputProcessor::Unit::m3_s, _, _); + "variableName", OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingRunPeriodVariables); TrackingRunPeriodVariables = false; EXPECT_TRUE(compare_eso_stream( delimited_string({"27,11,keyedValue,variableName [m3/s] !RunPeriod [Value,Min,Month,Day,Hour,Minute,Max,Month,Day,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Simulation, StoreType::Averaged, 28, -999, "indexGroup", "28", "keyedValue", - "variableName", 1, OutputProcessor::Unit::m3_s, _, "scheduleName"); + "variableName", OutputProcessor::TimeStepType::TimeStepZone, OutputProcessor::Unit::m3_s, _, "scheduleName"); EXPECT_TRUE(TrackingRunPeriodVariables); TrackingRunPeriodVariables = false; EXPECT_TRUE(compare_eso_stream(delimited_string( {"28,11,keyedValue,variableName [m3/s] !RunPeriod [Value,Min,Month,Day,Hour,Minute,Max,Month,Day,Hour,Minute],scheduleName"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Simulation, StoreType::Averaged, 29, -999, "indexGroup", "29", "keyedValue", - "variableName", 2, OutputProcessor::Unit::m3_s, _, _); + "variableName", OutputProcessor::TimeStepType::TimeStepSystem, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingRunPeriodVariables); TrackingRunPeriodVariables = false; EXPECT_TRUE(compare_eso_stream( delimited_string({"29,11,keyedValue,variableName [m3/s] !RunPeriod [Value,Min,Month,Day,Hour,Minute,Max,Month,Day,Hour,Minute]"}))); WriteReportVariableDictionaryItem(ReportingFrequency::Simulation, StoreType::Averaged, 30, -999, "indexGroup", "30", "keyedValue", - "variableName", 3, OutputProcessor::Unit::m3_s, _, _); + "variableName", aThirdTimeStepType, OutputProcessor::Unit::m3_s, _, _); EXPECT_TRUE(TrackingRunPeriodVariables); TrackingRunPeriodVariables = false; EXPECT_TRUE(compare_eso_stream( @@ -1591,37 +1619,38 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); - std::vector> reportDataDictionary( - {{"1", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Zone Timestep", "", "m3/s"}, - {"2", "0", "Sum", "indexGroup", "HVAC System", "keyedValue", "variableName", "Zone Timestep", "", "m3/s"}, - {"3", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Zone Timestep", "scheduleName", "m3/s"}, - {"4", "0", "Avg", "indexGroup", "Zone", "keyedValue", "variableName", "Zone Timestep", "", "m3/s"}, - {"5", "0", "Avg", "indexGroup", "Unknown!!!", "keyedValue", "variableName", "Zone Timestep", "", "m3/s"}, - {"6", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "HVAC System Timestep", "", "m3/s"}, - {"7", "0", "Sum", "indexGroup", "HVAC System", "keyedValue", "variableName", "HVAC System Timestep", "", "m3/s"}, - {"8", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "HVAC System Timestep", "scheduleName", "m3/s"}, - {"9", "0", "Avg", "indexGroup", "Zone", "keyedValue", "variableName", "HVAC System Timestep", "", "m3/s"}, - {"10", "0", "Avg", "indexGroup", "Unknown!!!", "keyedValue", "variableName", "HVAC System Timestep", "", "m3/s"}, - {"11", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Hourly", "", "m3/s"}, - {"12", "0", "Sum", "indexGroup", "HVAC System", "keyedValue", "variableName", "Hourly", "", "m3/s"}, - {"13", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Hourly", "scheduleName", "m3/s"}, - {"14", "0", "Avg", "indexGroup", "Zone", "keyedValue", "variableName", "Hourly", "", "m3/s"}, - {"15", "0", "Avg", "indexGroup", "Unknown!!!", "keyedValue", "variableName", "Hourly", "", "m3/s"}, - {"16", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Daily", "", "m3/s"}, - {"17", "0", "Sum", "indexGroup", "HVAC System", "keyedValue", "variableName", "Daily", "", "m3/s"}, - {"18", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Daily", "scheduleName", "m3/s"}, - {"19", "0", "Avg", "indexGroup", "Zone", "keyedValue", "variableName", "Daily", "", "m3/s"}, - {"20", "0", "Avg", "indexGroup", "Unknown!!!", "keyedValue", "variableName", "Daily", "", "m3/s"}, - {"21", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Monthly", "", "m3/s"}, - {"22", "0", "Sum", "indexGroup", "HVAC System", "keyedValue", "variableName", "Monthly", "", "m3/s"}, - {"23", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Monthly", "scheduleName", "m3/s"}, - {"24", "0", "Avg", "indexGroup", "Zone", "keyedValue", "variableName", "Monthly", "", "m3/s"}, - {"25", "0", "Avg", "indexGroup", "Unknown!!!", "keyedValue", "variableName", "Monthly", "", "m3/s"}, - {"26", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Run Period", "", "m3/s"}, - {"27", "0", "Sum", "indexGroup", "HVAC System", "keyedValue", "variableName", "Run Period", "", "m3/s"}, - {"28", "0", "Avg", "indexGroup", "HVAC System", "keyedValue", "variableName", "Run Period", "scheduleName", "m3/s"}, - {"29", "0", "Avg", "indexGroup", "Zone", "keyedValue", "variableName", "Run Period", "", "m3/s"}, - {"30", "0", "Avg", "indexGroup", "Unknown!!!", "keyedValue", "variableName", "Run Period", "", "m3/s"}}); + std::vector> reportDataDictionary({ + {"1", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Zone Timestep", "", "m3/s"}, + {"2", "0", "Sum", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Zone Timestep", "", "m3/s"}, + {"3", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Zone Timestep", "scheduleName", "m3/s"}, + {"4", "0", "Avg", "indexGroup", timeStepSystemString, "keyedValue", "variableName", "Zone Timestep", "", "m3/s"}, + {"5", "0", "Avg", "indexGroup", aThirdTimeStepString, "keyedValue", "variableName", "Zone Timestep", "", "m3/s"}, + {"6", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "HVAC System Timestep", "", "m3/s"}, + {"7", "0", "Sum", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "HVAC System Timestep", "", "m3/s"}, + {"8", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "HVAC System Timestep", "scheduleName", "m3/s"}, + {"9", "0", "Avg", "indexGroup", timeStepSystemString, "keyedValue", "variableName", "HVAC System Timestep", "", "m3/s"}, + {"10", "0", "Avg", "indexGroup", aThirdTimeStepString, "keyedValue", "variableName", "HVAC System Timestep", "", "m3/s"}, + {"11", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Hourly", "", "m3/s"}, + {"12", "0", "Sum", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Hourly", "", "m3/s"}, + {"13", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Hourly", "scheduleName", "m3/s"}, + {"14", "0", "Avg", "indexGroup", timeStepSystemString, "keyedValue", "variableName", "Hourly", "", "m3/s"}, + {"15", "0", "Avg", "indexGroup", aThirdTimeStepString, "keyedValue", "variableName", "Hourly", "", "m3/s"}, + {"16", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Daily", "", "m3/s"}, + {"17", "0", "Sum", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Daily", "", "m3/s"}, + {"18", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Daily", "scheduleName", "m3/s"}, + {"19", "0", "Avg", "indexGroup", timeStepSystemString, "keyedValue", "variableName", "Daily", "", "m3/s"}, + {"20", "0", "Avg", "indexGroup", aThirdTimeStepString, "keyedValue", "variableName", "Daily", "", "m3/s"}, + {"21", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Monthly", "", "m3/s"}, + {"22", "0", "Sum", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Monthly", "", "m3/s"}, + {"23", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Monthly", "scheduleName", "m3/s"}, + {"24", "0", "Avg", "indexGroup", timeStepSystemString, "keyedValue", "variableName", "Monthly", "", "m3/s"}, + {"25", "0", "Avg", "indexGroup", aThirdTimeStepString, "keyedValue", "variableName", "Monthly", "", "m3/s"}, + {"26", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Run Period", "", "m3/s"}, + {"27", "0", "Sum", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Run Period", "", "m3/s"}, + {"28", "0", "Avg", "indexGroup", timeStepZoneString, "keyedValue", "variableName", "Run Period", "scheduleName", "m3/s"}, + {"29", "0", "Avg", "indexGroup", timeStepSystemString, "keyedValue", "variableName", "Run Period", "", "m3/s"}, + {"30", "0", "Avg", "indexGroup", aThirdTimeStepString, "keyedValue", "variableName", "Run Period", "", "m3/s"} + }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); } @@ -2243,21 +2272,21 @@ namespace OutputProcessor { TEST_F(SQLiteFixture, OutputProcessor_setupTimePointers) { - TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); auto timeStep = 1.0; SetupTimePointers("Zone", timeStep); - EXPECT_DOUBLE_EQ(timeStep, TimeValue(1).TimeStep); - EXPECT_DOUBLE_EQ(0.0, TimeValue(1).CurMinute); + EXPECT_DOUBLE_EQ(timeStep, TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep); + EXPECT_DOUBLE_EQ(0.0, TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute); timeStep = 2.0; SetupTimePointers("HVAC", timeStep); - EXPECT_DOUBLE_EQ(timeStep, TimeValue(2).TimeStep); - EXPECT_DOUBLE_EQ(0.0, TimeValue(2).CurMinute); + EXPECT_DOUBLE_EQ(timeStep, TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep); + EXPECT_DOUBLE_EQ(0.0, TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute); } TEST_F(SQLiteFixture, OutputProcessor_getReportVariableInput) @@ -2584,12 +2613,16 @@ namespace OutputProcessor { ASSERT_TRUE(process_idf(idf_objects)); - AddToOutputVariableList("Site Outdoor Air Drybulb Temperature", 1, StoreType::Averaged, 2, OutputProcessor::Unit::C); - AddToOutputVariableList("Site Outdoor Air Wetbulb Temperature", 1, StoreType::Averaged, 2, OutputProcessor::Unit::C); - AddToOutputVariableList("Site Outdoor Air Humidity Ratio", 1, StoreType::Averaged, 2, OutputProcessor::Unit::kgWater_kgDryAir); - AddToOutputVariableList("Site Outdoor Air Relative Humidity", 1, StoreType::Averaged, 2, OutputProcessor::Unit::Perc); + AddToOutputVariableList("Site Outdoor Air Drybulb Temperature", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 2, OutputProcessor::Unit::C); + AddToOutputVariableList("Site Outdoor Air Wetbulb Temperature", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 2, OutputProcessor::Unit::C); + AddToOutputVariableList("Site Outdoor Air Humidity Ratio", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 2, OutputProcessor::Unit::kgWater_kgDryAir); + AddToOutputVariableList("Site Outdoor Air Relative Humidity", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 2, OutputProcessor::Unit::Perc); - EXPECT_EQ(1, DDVariableTypes(1).IndexType); + EXPECT_EQ(OutputProcessor::TimeStepType::TimeStepZone, DDVariableTypes(1).timeStepType); EXPECT_EQ(StoreType::Averaged, DDVariableTypes(1).storeType); EXPECT_EQ(2, DDVariableTypes(1).VariableType); EXPECT_EQ(0, DDVariableTypes(1).Next); @@ -2597,7 +2630,7 @@ namespace OutputProcessor { EXPECT_EQ("Site Outdoor Air Drybulb Temperature", DDVariableTypes(1).VarNameOnly); EXPECT_EQ(OutputProcessor::Unit::C, DDVariableTypes(1).units); - EXPECT_EQ(1, DDVariableTypes(2).IndexType); + EXPECT_EQ(OutputProcessor::TimeStepType::TimeStepZone, DDVariableTypes(2).timeStepType); EXPECT_EQ(StoreType::Averaged, DDVariableTypes(2).storeType); EXPECT_EQ(2, DDVariableTypes(2).VariableType); EXPECT_EQ(0, DDVariableTypes(2).Next); @@ -2605,7 +2638,7 @@ namespace OutputProcessor { EXPECT_EQ("Site Outdoor Air Wetbulb Temperature", DDVariableTypes(2).VarNameOnly); EXPECT_EQ(OutputProcessor::Unit::C, DDVariableTypes(2).units); - EXPECT_EQ(1, DDVariableTypes(3).IndexType); + EXPECT_EQ(OutputProcessor::TimeStepType::TimeStepZone, DDVariableTypes(3).timeStepType); EXPECT_EQ(StoreType::Averaged, DDVariableTypes(3).storeType); EXPECT_EQ(2, DDVariableTypes(3).VariableType); EXPECT_EQ(0, DDVariableTypes(3).Next); @@ -2613,7 +2646,7 @@ namespace OutputProcessor { EXPECT_EQ("Site Outdoor Air Humidity Ratio", DDVariableTypes(3).VarNameOnly); EXPECT_EQ(OutputProcessor::Unit::kgWater_kgDryAir, DDVariableTypes(3).units); - EXPECT_EQ(1, DDVariableTypes(4).IndexType); + EXPECT_EQ(OutputProcessor::TimeStepType::TimeStepZone, DDVariableTypes(4).timeStepType); EXPECT_EQ(StoreType::Averaged, DDVariableTypes(4).storeType); EXPECT_EQ(2, DDVariableTypes(4).VariableType); EXPECT_EQ(0, DDVariableTypes(4).Next); @@ -2637,7 +2670,7 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); std::vector> reportDataDictionary( - {{"1", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Run Period", "", "C"}}); + {{"1", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Run Period", "", "C"}}); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); EXPECT_EQ(1, NumExtraVars); @@ -2649,7 +2682,7 @@ namespace OutputProcessor { EXPECT_EQ("", ReqRepVars(1).SchedName); EXPECT_EQ(true, ReqRepVars(1).Used); - EXPECT_EQ(1, DDVariableTypes(1).IndexType); + EXPECT_EQ(OutputProcessor::TimeStepType::TimeStepZone, DDVariableTypes(1).timeStepType); EXPECT_EQ(StoreType::Averaged, DDVariableTypes(1).storeType); EXPECT_EQ(2, DDVariableTypes(1).VariableType); EXPECT_EQ(0, DDVariableTypes(1).Next); @@ -2672,9 +2705,9 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); std::vector> reportDataDictionary({ - {"1", "0", "Avg", "System", "Zone", "Boiler1", "Boiler Gas Rate", "Run Period", "", "W"}, - {"2", "0", "Avg", "System", "Zone", "Boiler2", "Boiler Gas Rate", "Run Period", "", "W"}, - {"3", "0", "Avg", "System", "Zone", "Boiler3", "Boiler Gas Rate", "Run Period", "", "W"}, + {"1", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Gas Rate", "Run Period", "", "W"}, + {"2", "0", "Avg", "System", "HVAC System", "Boiler2", "Boiler Gas Rate", "Run Period", "", "W"}, + {"3", "0", "Avg", "System", "HVAC System", "Boiler3", "Boiler Gas Rate", "Run Period", "", "W"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -2703,8 +2736,8 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); std::vector> reportDataDictionary({ - {"1", "0", "Avg", "System", "Zone", "Boiler1", "Boiler Gas Rate", "Run Period", "", "W"}, - {"2", "0", "Avg", "System", "Zone", "Boiler3", "Boiler Gas Rate", "Run Period", "", "W"}, + {"1", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Gas Rate", "Run Period", "", "W"}, + {"2", "0", "Avg", "System", "HVAC System", "Boiler3", "Boiler Gas Rate", "Run Period", "", "W"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -2732,9 +2765,9 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); std::vector> reportDataDictionary({ - {"1", "0", "Avg", "System", "Zone", "Boiler1", "Boiler Gas Rate", "Run Period", "", "W"}, - {"2", "0", "Avg", "System", "Zone", "Boiler2", "Boiler Gas Rate", "Run Period", "", "W"}, - {"3", "0", "Avg", "System", "Zone", "Boiler3", "Boiler Gas Rate", "Run Period", "", "W"}, + {"1", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Gas Rate", "Run Period", "", "W"}, + {"2", "0", "Avg", "System", "HVAC System", "Boiler2", "Boiler Gas Rate", "Run Period", "", "W"}, + {"3", "0", "Avg", "System", "HVAC System", "Boiler3", "Boiler Gas Rate", "Run Period", "", "W"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -2768,10 +2801,10 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); std::vector> reportDataDictionary({ - {"1", "0", "Avg", "System", "Zone", "Zn003:Wall001", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, - {"2", "0", "Avg", "System", "Zone", "Zn003:Wall002", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, - {"3", "0", "Avg", "System", "Zone", "Zn003:Wall002:Win001", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, - {"4", "0", "Avg", "System", "Zone", "Zn003:Wall003", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, + {"1", "0", "Avg", "System", "HVAC System", "Zn003:Wall001", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, + {"2", "0", "Avg", "System", "HVAC System", "Zn003:Wall002", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, + {"3", "0", "Avg", "System", "HVAC System", "Zn003:Wall002:Win001", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, + {"4", "0", "Avg", "System", "HVAC System", "Zn003:Wall003", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -2809,10 +2842,10 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); std::vector> reportDataDictionary({ - {"1", "0", "Avg", "System", "Zone", "ZN003:WALL001", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, - {"2", "0", "Avg", "System", "Zone", "ZN003:WALL002", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, - {"3", "0", "Avg", "System", "Zone", "ZN003:WALL002:WIN001", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, - {"4", "0", "Avg", "System", "Zone", "ZN003:WALL003", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, + {"1", "0", "Avg", "System", "HVAC System", "ZN003:WALL001", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, + {"2", "0", "Avg", "System", "HVAC System", "ZN003:WALL002", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, + {"3", "0", "Avg", "System", "HVAC System", "ZN003:WALL002:WIN001", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, + {"4", "0", "Avg", "System", "HVAC System", "ZN003:WALL003", "AFN Linkage Node 1 to Node 2 Volume Flow Rate", "Zone Timestep", "", "m3/s"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -3072,15 +3105,15 @@ namespace OutputProcessor { DataEnvironment::EndMonthFlag = true; } - TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); auto timeStep = 1.0 / 6; SetupTimePointers("Zone", timeStep); SetupTimePointers("HVAC", timeStep); - TimeValue(1).CurMinute = 50; - TimeValue(2).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 50; GetReportVariableInput(); SetupOutputVariable("Site Outdoor Air Drybulb Temperature", OutputProcessor::Unit::C, DataEnvironment::OutDryBulbTemp, "Zone", "Average", @@ -3105,7 +3138,7 @@ namespace OutputProcessor { UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::ZoneTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); auto timeResults = queryResult("SELECT * FROM Time;", "Time"); @@ -3122,16 +3155,16 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); std::vector> reportDataDictionary({ - {"1", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Zone Timestep", "", "C"}, - {"2", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Hourly", "", "C"}, - {"3", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Daily", "", "C"}, - {"4", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Monthly", "", "C"}, - {"5", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Run Period", "", "C"}, - {"7", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Zone Timestep", "", "J"}, - {"8", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Hourly", "", "J"}, - {"9", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Daily", "", "J"}, - {"10", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Monthly", "", "J"}, - {"12", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Run Period", "", "J"}, + {"1", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Zone Timestep", "", "C"}, + {"2", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Hourly", "", "C"}, + {"3", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Daily", "", "C"}, + {"4", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Monthly", "", "C"}, + {"5", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Run Period", "", "C"}, + {"7", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Zone Timestep", "", "J"}, + {"8", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Hourly", "", "J"}, + {"9", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Daily", "", "J"}, + {"10", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Monthly", "", "J"}, + {"12", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Run Period", "", "J"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -3256,15 +3289,15 @@ namespace OutputProcessor { DataEnvironment::EndMonthFlag = true; } - TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); auto timeStep = 1.0 / 6; SetupTimePointers("Zone", timeStep); SetupTimePointers("HVAC", timeStep); - TimeValue(1).CurMinute = 50; - TimeValue(2).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 50; GetReportVariableInput(); SetupOutputVariable("Site Outdoor Air Drybulb Temperature", OutputProcessor::Unit::C, DataEnvironment::OutDryBulbTemp, "Zone", "Average", @@ -3293,7 +3326,7 @@ namespace OutputProcessor { UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::ZoneTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); auto timeResults = queryResult("SELECT * FROM Time;", "Time"); @@ -3310,19 +3343,19 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); std::vector> reportDataDictionary({ - {"1", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "HVAC System Timestep", "", "C"}, - {"2", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Zone Timestep", "", "C"}, - {"3", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Hourly", "", "C"}, - {"4", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Daily", "", "C"}, - {"5", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Monthly", "", "C"}, - {"6", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Run Period", "", "C"}, - {"8", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "HVAC System Timestep", "", "J"}, - {"9", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Hourly", "", "J"}, - {"10", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Daily", "", "J"}, - {"11", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Monthly", "", "J"}, - {"13", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Run Period", "", "J"}, - {"180", "0", "Avg", "System", "Zone", "Boiler1", "Boiler Heating Rate", "HVAC System Timestep", "", "W"}, - {"181", "0", "Avg", "System", "Zone", "Boiler1", "Boiler Gas Rate", "HVAC System Timestep", "", "W"}, + {"1", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "HVAC System Timestep", "", "C"}, + {"2", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Zone Timestep", "", "C"}, + {"3", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Hourly", "", "C"}, + {"4", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Daily", "", "C"}, + {"5", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Monthly", "", "C"}, + {"6", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Run Period", "", "C"}, + {"8", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "HVAC System Timestep", "", "J"}, + {"9", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Hourly", "", "J"}, + {"10", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Daily", "", "J"}, + {"11", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Monthly", "", "J"}, + {"13", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Run Period", "", "J"}, + {"180", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Heating Rate", "HVAC System Timestep", "", "W"}, + {"181", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Gas Rate", "HVAC System Timestep", "", "W"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -3453,15 +3486,15 @@ namespace OutputProcessor { DataEnvironment::EndMonthFlag = true; } - TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); auto timeStep = 1.0 / 6; SetupTimePointers("Zone", timeStep); SetupTimePointers("HVAC", timeStep); - TimeValue(1).CurMinute = 50; - TimeValue(2).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 50; GetReportVariableInput(); SetupOutputVariable("Site Outdoor Air Drybulb Temperature", OutputProcessor::Unit::C, DataEnvironment::OutDryBulbTemp, "Zone", "Average", @@ -3490,7 +3523,7 @@ namespace OutputProcessor { UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); auto timeResults = queryResult("SELECT * FROM Time;", "Time"); @@ -3503,19 +3536,19 @@ namespace OutputProcessor { auto reportDataDictionaryResults = queryResult("SELECT * FROM ReportDataDictionary;", "ReportDataDictionary"); std::vector> reportDataDictionary({ - {"1", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "HVAC System Timestep", "", "C"}, - {"2", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Zone Timestep", "", "C"}, - {"3", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Hourly", "", "C"}, - {"4", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Daily", "", "C"}, - {"5", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Monthly", "", "C"}, - {"6", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", "Run Period", "", "C"}, - {"8", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "HVAC System Timestep", "", "J"}, - {"9", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Hourly", "", "J"}, - {"10", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Daily", "", "J"}, - {"11", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Monthly", "", "J"}, - {"13", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Electricity:Facility", "Run Period", "", "J"}, - {"180", "0", "Avg", "System", "Zone", "Boiler1", "Boiler Heating Rate", "HVAC System Timestep", "", "W"}, - {"181", "0", "Avg", "System", "Zone", "Boiler1", "Boiler Gas Rate", "HVAC System Timestep", "", "W"}, + {"1", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "HVAC System Timestep", "", "C"}, + {"2", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Zone Timestep", "", "C"}, + {"3", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Hourly", "", "C"}, + {"4", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Daily", "", "C"}, + {"5", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Monthly", "", "C"}, + {"6", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Run Period", "", "C"}, + {"8", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "HVAC System Timestep", "", "J"}, + {"9", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Hourly", "", "J"}, + {"10", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Daily", "", "J"}, + {"11", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Monthly", "", "J"}, + {"13", "1", "Sum", "Facility:Electricity", "Zone", "", "Electricity:Facility", "Run Period", "", "J"}, + {"180", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Heating Rate", "HVAC System Timestep", "", "W"}, + {"181", "0", "Avg", "System", "HVAC System", "Boiler1", "Boiler Gas Rate", "HVAC System Timestep", "", "W"}, }); EXPECT_EQ(reportDataDictionary, reportDataDictionaryResults); @@ -3597,13 +3630,13 @@ namespace OutputProcessor { if (DataEnvironment::DayOfMonth == WeatherManager::EndDayOfMonth(DataEnvironment::Month)) { DataEnvironment::EndMonthFlag = true; } - TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); auto timeStep = 1.0 / 6; SetupTimePointers("Zone", timeStep); SetupTimePointers("HVAC", timeStep); - TimeValue(1).CurMinute = 10; - TimeValue(2).CurMinute = 10; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 10; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 10; DataGlobals::WarmupFlag = true; @@ -3617,33 +3650,33 @@ namespace OutputProcessor { PurchAir(1).TotHeatEnergy = 1.1; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); PurchAir(1).TotHeatEnergy = 1.3; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); PurchAir(1).TotHeatEnergy = 1.5; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); PurchAir(1).TotHeatEnergy = 1.7; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); PurchAir(1).TotHeatEnergy = 1.9; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); PurchAir(1).TotHeatEnergy = 2.2; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); DataGlobals::WarmupFlag = false; PurchAir(1).TotHeatEnergy = 2.4; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::ZoneTSReporting); // zone timestep + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); // zone timestep compare_eso_stream(delimited_string({ "7,1,,Zone Ideal Loads Supply Air Total Heating Energy [J] !Each Call", @@ -3668,15 +3701,15 @@ namespace OutputProcessor { PurchAir(1).TotHeatEnergy = 100.0; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); PurchAir(1).TotHeatEnergy = 200.0; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::HVACTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepSystem); PurchAir(1).TotHeatEnergy = 300.0; UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::ZoneTSReporting); // zone timestep + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); // zone timestep compare_eso_stream(delimited_string({ "2,365,12,31, 0,24, 0.00,10.00,Tuesday", @@ -3723,15 +3756,15 @@ namespace OutputProcessor { DataEnvironment::EndMonthFlag = true; } - TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); auto timeStep = 1.0 / 6; SetupTimePointers("Zone", timeStep); SetupTimePointers("HVAC", timeStep); - TimeValue(1).CurMinute = 50; - TimeValue(2).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 50; GetReportVariableInput(); SetupOutputVariable("Site Outdoor Air Drybulb Temperature", OutputProcessor::Unit::C, DataEnvironment::OutDryBulbTemp, "Zone", "Average", @@ -3740,7 +3773,7 @@ namespace OutputProcessor { SetupOutputVariable("Lights Electric Energy", OutputProcessor::Unit::J, light_consumption, "Zone", "Sum", "SPACE1-1 LIGHTS 1", _, "Electricity", "InteriorLights", "GeneralLights", "Building", "SPACE1-1", 1, 1); UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::ZoneTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); GenOutputVariablesAuditReport(); @@ -3789,15 +3822,15 @@ namespace OutputProcessor { DataEnvironment::EndMonthFlag = true; } - TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); auto timeStep = 1.0 / 6; SetupTimePointers("Zone", timeStep); SetupTimePointers("HVAC", timeStep); - TimeValue(1).CurMinute = 50; - TimeValue(2).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).CurMinute = 50; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).CurMinute = 50; OutputReportTabular::GetInputTabularMonthly(); OutputReportTabular::InitializeTabularMonthly(); @@ -3809,7 +3842,7 @@ namespace OutputProcessor { SetupOutputVariable("Lights Electric Energy", OutputProcessor::Unit::J, light_consumption, "Zone", "Sum", "SPACE1-1 LIGHTS 1", _, "Electricity", "InteriorLights", "GeneralLights", "Building", "SPACE1-1", 1, 1); UpdateMeterReporting(); - UpdateDataandReport(DataGlobals::ZoneTSReporting); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); NumExtraVars = 0; BuildKeyVarList("Air Loop 1|AirSupply InletNode", "SYSTEM NODE SETPOINT TEMPERATURE", 1, 2); @@ -3888,18 +3921,27 @@ namespace OutputProcessor { TEST_F(EnergyPlusFixture, OutputProcessor_unitStringFromDDitem) { - AddToOutputVariableList("energy variable 1", 1, StoreType::Averaged, 1, OutputProcessor::Unit::J); - AddToOutputVariableList("energy variable 2", 1, StoreType::Averaged, 1, OutputProcessor::Unit::J); - AddToOutputVariableList("energy variable 3", 1, StoreType::Averaged, 1, OutputProcessor::Unit::J); - - AddToOutputVariableList("humidity ratio variable 1", 1, StoreType::Averaged, 1, OutputProcessor::Unit::kgWater_kgDryAir); - AddToOutputVariableList("humidity ratio variable 2", 1, StoreType::Averaged, 1, OutputProcessor::Unit::kgWater_kgDryAir); - - AddToOutputVariableList("flow variable 1", 1, StoreType::Averaged, 1, OutputProcessor::Unit::kgWater_s); - AddToOutputVariableList("flow variable 2", 1, StoreType::Averaged, 1, OutputProcessor::Unit::kgWater_s); - - AddToOutputVariableList("user defined EMS variable 1", 1, StoreType::Averaged, 1, OutputProcessor::Unit::customEMS, "ergs/century"); - AddToOutputVariableList("user defined EMS variable 2", 1, StoreType::Averaged, 1, OutputProcessor::Unit::customEMS, "swamps/county"); + AddToOutputVariableList("energy variable 1", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 1, OutputProcessor::Unit::J); + AddToOutputVariableList("energy variable 2", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 1, OutputProcessor::Unit::J); + AddToOutputVariableList("energy variable 3", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 1, OutputProcessor::Unit::J); + + AddToOutputVariableList("humidity ratio variable 1", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 1, OutputProcessor::Unit::kgWater_kgDryAir); + AddToOutputVariableList("humidity ratio variable 2", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 1, OutputProcessor::Unit::kgWater_kgDryAir); + + AddToOutputVariableList("flow variable 1", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 1, OutputProcessor::Unit::kgWater_s); + AddToOutputVariableList("flow variable 2", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 1, OutputProcessor::Unit::kgWater_s); + + AddToOutputVariableList("user defined EMS variable 1", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 1, OutputProcessor::Unit::customEMS, "ergs/century"); + AddToOutputVariableList("user defined EMS variable 2", OutputProcessor::TimeStepType::TimeStepZone, + StoreType::Averaged, 1, OutputProcessor::Unit::customEMS, "swamps/county"); EXPECT_EQ(" [J]", unitStringFromDDitem(3)); diff --git a/tst/EnergyPlus/unit/OutputReportData.unit.cc b/tst/EnergyPlus/unit/OutputReportData.unit.cc index 84678d6f1b0..48f7bf05dbd 100644 --- a/tst/EnergyPlus/unit/OutputReportData.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportData.unit.cc @@ -96,7 +96,7 @@ TEST_F(EnergyPlusFixture, OutputReportData_getVariableKeys) int keyCount = 0; int typeVar = 0; OutputProcessor::StoreType avgSumVar; - int stepTypeVar = 0; + OutputProcessor::TimeStepType stepTypeVar; OutputProcessor::Unit unitsVar = OutputProcessor::Unit::None; fldStTest.m_variMeter = "EXTERIOR LIGHTS ELECTRIC ENERGY"; diff --git a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc index 850e3727a8f..01932cbb40c 100644 --- a/tst/EnergyPlus/unit/OutputReportTabular.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabular.unit.cc @@ -518,9 +518,6 @@ TEST_F(EnergyPlusFixture, OutputReportTabularTest_AllocateLoadComponentArraysTes AllocateLoadComponentArrays(); - // radiantPulseUsed.allocate( { 0, TotDesDays + TotRunDesPersDays }, NumOfZones ); - EXPECT_EQ(radiantPulseUsed.size(), 24u); - // radiantPulseTimestep.allocate( { 0, TotDesDays + TotRunDesPersDays }, NumOfZones ); EXPECT_EQ(radiantPulseTimestep.size(), 24u); @@ -1455,7 +1452,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); ManageSimulation(); // run the design day over the warmup period (24 hrs, 25 days) @@ -1470,7 +1467,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ZoneMultiplierTest) DataGlobals::DoWeathSim = true; // flag to trick tabular reports to scan meters DataGlobals::KindOfSim = DataGlobals::ksRunPeriodWeather; // fake a weather run since a weather file can't be used (could it?) - UpdateTabularReports(OutputReportTabular::stepTypeHVAC); + UpdateTabularReports(OutputProcessor::TimeStepType::TimeStepSystem); // zone equipment should report single zone magnitude, multipliers do not apply, should be > 0 or what's the point EXPECT_EQ(DataHeatBalance::ZnRpt(1).PeopleRadGain, DataHeatBalance::ZnRpt(2).PeopleRadGain); @@ -2492,7 +2489,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); // DataGlobals::DDOnlySimulation = true; ManageSimulation(); // run the design day over the warmup period (24 hrs, 25 days) @@ -2501,7 +2498,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) DataGlobals::DoWeathSim = true; // flag to trick tabular reports to scan meters DataGlobals::KindOfSim = DataGlobals::ksRunPeriodWeather; // fake a weather run since a weather file can't be used (could it?) - UpdateTabularReports(OutputReportTabular::stepTypeHVAC); + UpdateTabularReports(OutputProcessor::TimeStepType::TimeStepSystem); EXPECT_NEAR(1.86168, DataSizing::FinalSysSizing(1).DesOutAirVolFlow, 0.0001); } @@ -3466,7 +3463,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) // ASSERT_TRUE( process_idf( idf_objects ) ); -// OutputProcessor::TimeValue.allocate( 2 ); +// OutputProcessor::TimeValue.allocate(2); ////DataGlobals::DDOnlySimulation = true; // ManageSimulation(); // run the design day over the warmup period (24 hrs, 25 days) @@ -3476,7 +3473,7 @@ TEST_F(EnergyPlusFixture, AirloopHVAC_ZoneSumTest) // DataGlobals::DoWeathSim = true; // flag to trick tabular reports to scan meters // DataGlobals::KindOfSim = DataGlobals::ksRunPeriodWeather; // fake a weather run since a weather file can't be used (could it?) -// UpdateTabularReports( OutputReportTabular::stepTypeHVAC ); +// UpdateTabularReports( OutputProcessor::TimeStepType::TimeStepSystem ); // EXPECT_NEAR( 1.86168, DataSizing::FinalSysSizing( 1 ).DesOutAirVolFlow, 0.0001 ); @@ -3542,20 +3539,20 @@ TEST_F(EnergyPlusFixture, OutputReportTabularMonthly_ResetMonthlyGathering) DataEnvironment::Month = 12; - GatherMonthlyResultsForTimestep(1); + GatherMonthlyResultsForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(extLitUse * 1, MonthlyColumns(1).reslt(12)); - GatherMonthlyResultsForTimestep(1); + GatherMonthlyResultsForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(extLitUse * 2, MonthlyColumns(1).reslt(12)); - GatherMonthlyResultsForTimestep(1); + GatherMonthlyResultsForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(extLitUse * 3, MonthlyColumns(1).reslt(12)); ResetMonthlyGathering(); EXPECT_EQ(0., MonthlyColumns(1).reslt(12)); - GatherMonthlyResultsForTimestep(1); + GatherMonthlyResultsForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(extLitUse * 1, MonthlyColumns(1).reslt(12)); } @@ -3598,15 +3595,15 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ConfirmResetBEPSGathering) DataGlobals::DoWeathSim = true; DataGlobals::TimeStepZone = 1.0; displayTabularBEPS = true; - TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); auto timeStep = 1.0; SetupTimePointers("Zone", timeStep); SetupTimePointers("HVAC", timeStep); - TimeValue(1).TimeStep = 60; - TimeValue(2).TimeStep = 60; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepZone).TimeStep = 60; + TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep = 60; GetInputOutputTableSummaryReports(); @@ -3615,18 +3612,18 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ConfirmResetBEPSGathering) DataEnvironment::Month = 12; UpdateMeterReporting(); - UpdateDataandReport(1); - GatherBEPSResultsForTimestep(1); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); + GatherBEPSResultsForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(extLitUse * 3, gatherEndUseBEPS(1, endUseExteriorLights)); UpdateMeterReporting(); - UpdateDataandReport(1); - GatherBEPSResultsForTimestep(1); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); + GatherBEPSResultsForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(extLitUse * 6, gatherEndUseBEPS(1, endUseExteriorLights)); UpdateMeterReporting(); - UpdateDataandReport(1); - GatherBEPSResultsForTimestep(1); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); + GatherBEPSResultsForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(extLitUse * 9, gatherEndUseBEPS(1, endUseExteriorLights)); ResetBEPSGathering(); @@ -3634,8 +3631,8 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_ConfirmResetBEPSGathering) EXPECT_EQ(0., gatherEndUseBEPS(1, endUseExteriorLights)); UpdateMeterReporting(); - UpdateDataandReport(1); - GatherBEPSResultsForTimestep(1); + UpdateDataandReport(OutputProcessor::TimeStepType::TimeStepZone); + GatherBEPSResultsForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(extLitUse * 3, gatherEndUseBEPS(1, endUseExteriorLights)); } @@ -3680,7 +3677,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_GatherPeakDemandForTimestep) EnergyMeters(endUseMeterNum).CurTSValue = 47.0 * DataGlobals::TimeStepZoneSec; // create the current value for the end use meter EnergyMeters(subEndUseMeterNum).CurTSValue = 28.0 * DataGlobals::TimeStepZoneSec; // create the current value for the sub end use meter - GatherPeakDemandForTimestep(ZoneTSReporting); + GatherPeakDemandForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(123., gatherDemandTotal(resourceNum)); @@ -3696,7 +3693,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_GatherPeakDemandForTimestep) EnergyMeters(endUseMeterNum).CurTSValue = 57.0 * DataGlobals::TimeStepZoneSec; // create the current value for the end use meter EnergyMeters(subEndUseMeterNum).CurTSValue = 38.0 * DataGlobals::TimeStepZoneSec; // create the current value for the sub end use meter - GatherPeakDemandForTimestep(ZoneTSReporting); + GatherPeakDemandForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(133., gatherDemandTotal(resourceNum)); @@ -3712,7 +3709,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_GatherPeakDemandForTimestep) EnergyMeters(endUseMeterNum).CurTSValue = 61.0 * DataGlobals::TimeStepZoneSec; // create the current value for the end use meter EnergyMeters(subEndUseMeterNum).CurTSValue = 42.0 * DataGlobals::TimeStepZoneSec; // create the current value for the sub end use meter - GatherPeakDemandForTimestep(ZoneTSReporting); + GatherPeakDemandForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(133., gatherDemandTotal(resourceNum)); @@ -3728,7 +3725,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_GatherPeakDemandForTimestep) EnergyMeters(endUseMeterNum).CurTSValue = 59.0 * DataGlobals::TimeStepZoneSec; // create the current value for the end use meter EnergyMeters(subEndUseMeterNum).CurTSValue = 39.0 * DataGlobals::TimeStepZoneSec; // create the current value for the sub end use meter - GatherPeakDemandForTimestep(ZoneTSReporting); + GatherPeakDemandForTimestep(OutputProcessor::TimeStepType::TimeStepZone); EXPECT_EQ(143., gatherDemandTotal(resourceNum)); @@ -3765,7 +3762,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_GatherHeatEmissionReport) Real64 reliefEnergy = 2.0 * TimeStepSysSec; Real64 condenserReject = 1.0 * TimeStepSysSec + 50.0; - GatherHeatEmissionReport(HVACTSReporting); + GatherHeatEmissionReport(OutputProcessor::TimeStepType::TimeStepSystem); EXPECT_EQ(reliefEnergy, DataHeatBalance::SysTotalHVACReliefHeatLoss); EXPECT_EQ(reliefEnergy * DataGlobals::convertJtoGJ, BuildingPreDefRep.emiHVACRelief); @@ -3791,7 +3788,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabular_GatherHeatEmissionReport) Real64 coilReject = 1.0 * TimeStepSysSec + 200.0 + 10.0; - GatherHeatEmissionReport(HVACTSReporting); + GatherHeatEmissionReport(OutputProcessor::TimeStepType::TimeStepSystem); EXPECT_EQ(reliefEnergy, DataHeatBalance::SysTotalHVACReliefHeatLoss); EXPECT_EQ(2 * reliefEnergy * DataGlobals::convertJtoGJ, BuildingPreDefRep.emiHVACRelief); EXPECT_EQ(condenserReject + coilReject, DataHeatBalance::SysTotalHVACRejectHeatLoss); @@ -4945,7 +4942,7 @@ TEST_F(EnergyPlusFixture, OutputTableTimeBins_GetInput) // ASSERT_TRUE( process_idf( idf_objects ) ); -// OutputProcessor::TimeValue.allocate( 2 ); +// OutputProcessor::TimeValue.allocate(2); ////DataGlobals::DDOnlySimulation = true; // ManageSimulation(); @@ -6039,7 +6036,7 @@ TEST_F(EnergyPlusFixture, OutputTableTimeBins_GetInput) // ASSERT_TRUE( process_idf( idf_objects ) ); -// OutputProcessor::TimeValue.allocate( 2 ); +// OutputProcessor::TimeValue.allocate(2); ////DataGlobals::DDOnlySimulation = true; // ManageSimulation(); @@ -6841,6 +6838,7 @@ TEST(OutputReportTabularTest, GetDelaySequencesTwice_test) Zone(iZone).SurfaceFirst = 1; Zone(iZone).SurfaceLast = 1; + Zone(iZone).RadiantEnclosureNum = 1; TotSurfaces = 4; Surface.allocate(TotSurfaces); diff --git a/tst/EnergyPlus/unit/OutputReportTabularAnnual.unit.cc b/tst/EnergyPlus/unit/OutputReportTabularAnnual.unit.cc index 1b73b53c944..bd0d6df5469 100644 --- a/tst/EnergyPlus/unit/OutputReportTabularAnnual.unit.cc +++ b/tst/EnergyPlus/unit/OutputReportTabularAnnual.unit.cc @@ -196,7 +196,7 @@ TEST_F(EnergyPlusFixture, OutputReportTabularAnnual_GatherResults) extLitUse = 1.01; // UpdateDataandReport( 1 ); not sure if this is needed - GatherAnnualResultsForTimeStep(1); + GatherAnnualResultsForTimeStep(OutputProcessor::TimeStepType::TimeStepZone); // STOPPPED HERE. NOT SEEING THE POWER VARIABLE SHOWING UP diff --git a/tst/EnergyPlus/unit/PlantHeatExchangerFluidToFluid.unit.cc b/tst/EnergyPlus/unit/PlantHeatExchangerFluidToFluid.unit.cc index 65b6982afa9..b8677337f6c 100644 --- a/tst/EnergyPlus/unit/PlantHeatExchangerFluidToFluid.unit.cc +++ b/tst/EnergyPlus/unit/PlantHeatExchangerFluidToFluid.unit.cc @@ -1068,7 +1068,7 @@ TEST_F(EnergyPlusFixture, PlantHXModulatedDualDeadDefectFileHi) OutputReportPredefined::SetPredefinedTables(); HeatBalanceManager::SetPreConstructionInputParameters(); // establish array bounds for constructions early - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); PlantManager::CheckIfAnyPlant(); @@ -2159,7 +2159,7 @@ TEST_F(EnergyPlusFixture, PlantHXModulatedDualDeadDefectFileLo) OutputReportPredefined::SetPredefinedTables(); HeatBalanceManager::SetPreConstructionInputParameters(); // establish array bounds for constructions early - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); OutputProcessor::SetupTimePointers("Zone", DataGlobals::TimeStepZone); // Set up Time pointer for HB/Zone Simulation OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); PlantManager::CheckIfAnyPlant(); diff --git a/tst/EnergyPlus/unit/SQLite.unit.cc b/tst/EnergyPlus/unit/SQLite.unit.cc index aa523b66e3c..385c3fad6f6 100644 --- a/tst/EnergyPlus/unit/SQLite.unit.cc +++ b/tst/EnergyPlus/unit/SQLite.unit.cc @@ -52,6 +52,7 @@ // EnergyPlus Headers #include "Fixtures/SQLiteFixture.hh" +#include "OutputProcessor.hh" namespace EnergyPlus { @@ -232,12 +233,12 @@ TEST_F(SQLiteFixture, SQLiteProcedures_createSQLiteReportDictionaryRecord) EnergyPlus::sqlite->sqliteCommit(); ASSERT_EQ(5ul, result.size()); - std::vector testResult0{"1", "0", "Avg", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", + std::vector testResult0{"1", "0", "Avg", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Hourly", "", "C"}; - std::vector testResult1{"2", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Facility:Electricity", "Hourly", "", "J"}; - std::vector testResult2{"3", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Facility:Electricity", "Monthly", "", "J"}; - std::vector testResult3{"4", "0", "Avg", "HVAC", "Zone", "", "AHU-1", "Hourly", "", ""}; - std::vector testResult4{"5", "0", "Avg", "HVAC", "Zone", "", "AHU-1", "Hourly", "test schedule", ""}; + std::vector testResult1{"2", "1", "Sum", "Facility:Electricity", "Zone", "", "Facility:Electricity", "Hourly", "", "J"}; + std::vector testResult2{"3", "1", "Sum", "Facility:Electricity", "Zone", "", "Facility:Electricity", "Monthly", "", "J"}; + std::vector testResult3{"4", "0", "Avg", "HVAC", "HVAC System", "", "AHU-1", "Hourly", "", ""}; + std::vector testResult4{"5", "0", "Avg", "HVAC", "HVAC System", "", "AHU-1", "Hourly", "test schedule", ""}; EXPECT_EQ(testResult0, result[0]); EXPECT_EQ(testResult1, result[1]); EXPECT_EQ(testResult2, result[2]); @@ -253,11 +254,11 @@ TEST_F(SQLiteFixture, SQLiteProcedures_createSQLiteReportDictionaryRecord) EnergyPlus::sqlite->sqliteCommit(); ASSERT_EQ(9ul, result.size()); - std::vector testResult5{"6", "0", "Unknown!!!", "Zone", "HVAC System", "Environment", "Site Outdoor Air Drybulb Temperature", + std::vector testResult5{"6", "0", "Unknown!!!", "Zone", "Zone", "Environment", "Site Outdoor Air Drybulb Temperature", "Hourly", "", "C"}; std::vector testResult6{"7", "1", "Sum", "Facility:Electricity", "Unknown!!!", "", "Facility:Electricity", "Hourly", "", "J"}; - std::vector testResult7{"8", "1", "Sum", "Facility:Electricity", "HVAC System", "", "Facility:Electricity", "Unknown!!!", "", "J"}; - std::vector testResult8{"9", "0", "Avg", "HVAC", "Zone", "", "AHU-1", "Unknown!!!", "", ""}; + std::vector testResult7{"8", "1", "Sum", "Facility:Electricity", "Zone", "", "Facility:Electricity", "Unknown!!!", "", "J"}; + std::vector testResult8{"9", "0", "Avg", "HVAC", "HVAC System", "", "AHU-1", "Unknown!!!", "", ""}; EXPECT_EQ(testResult5, result[5]); EXPECT_EQ(testResult6, result[6]); EXPECT_EQ(testResult7, result[7]); @@ -433,10 +434,13 @@ TEST_F(SQLiteFixture, SQLiteProcedures_privateMethods) EXPECT_EQ("Unknown!!!", storageType(-1)); // test timestepTypeName - EXPECT_EQ("HVAC System", timestepTypeName(1)); - EXPECT_EQ("Zone", timestepTypeName(2)); + EXPECT_EQ("Zone", timestepTypeName(1)); + EXPECT_EQ("HVAC System", timestepTypeName(2)); EXPECT_EQ("Unknown!!!", timestepTypeName(3)); EXPECT_EQ("Unknown!!!", timestepTypeName(-1)); + // Let's ensure we never get an unexpected change of mapping between enum and the corresponding int value + EXPECT_EQ(1, static_cast(OutputProcessor::TimeStepType::TimeStepZone)); + EXPECT_EQ(2, static_cast(OutputProcessor::TimeStepType::TimeStepSystem)); // test reportingFreqName EXPECT_EQ("HVAC System Timestep", reportingFreqName(-1)); diff --git a/tst/EnergyPlus/unit/SingleDuct.unit.cc b/tst/EnergyPlus/unit/SingleDuct.unit.cc index 18d86278eba..34da32912ce 100644 --- a/tst/EnergyPlus/unit/SingleDuct.unit.cc +++ b/tst/EnergyPlus/unit/SingleDuct.unit.cc @@ -1252,7 +1252,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_ZeroFloorAreaTest) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); ManageSimulation(); // run the design day over the warmup period (24 hrs, 25 days) @@ -2451,7 +2451,7 @@ TEST_F(EnergyPlusFixture, SingleDuct_VAVWaterCoilSizing) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); ManageSimulation(); // run the design days diff --git a/tst/EnergyPlus/unit/SizeWaterHeatingCoil.unit.cc b/tst/EnergyPlus/unit/SizeWaterHeatingCoil.unit.cc index f56786dad44..da316385572 100644 --- a/tst/EnergyPlus/unit/SizeWaterHeatingCoil.unit.cc +++ b/tst/EnergyPlus/unit/SizeWaterHeatingCoil.unit.cc @@ -1201,6 +1201,7 @@ TEST_F(EnergyPlusFixture, TestSizingRoutineForHotWaterCoils5) FinalSysSizing(CurSysNum).HeatSupTemp = 16.7; UnitarySysEqSizing(CurSysNum).CoolingCapacity = false; UnitarySysEqSizing(CurSysNum).HeatingCapacity = false; + DataHVACGlobals::NumPrimaryAirSys = 1; SizeWaterCoil(1); EXPECT_NEAR(WaterCoil(1).MaxWaterMassFlowRate, .258323, 0.00001); EXPECT_NEAR(WaterCoil(1).UACoil, 239.835, 0.01); diff --git a/tst/EnergyPlus/unit/SizingAnalysisObjects.unit.cc b/tst/EnergyPlus/unit/SizingAnalysisObjects.unit.cc index 04f687a4026..bbfc7cfc868 100644 --- a/tst/EnergyPlus/unit/SizingAnalysisObjects.unit.cc +++ b/tst/EnergyPlus/unit/SizingAnalysisObjects.unit.cc @@ -116,9 +116,8 @@ class SizingAnalysisObjectsTest : public testing::Test Environment(4).DesignDayNum = 2; Environment(4).SeedEnvrnNum = 2; - TimeValue.allocate(2); - TimeValue(1).TimeStep >>= TimeStepZone; - TimeValue(2).TimeStep >>= DataHVACGlobals::TimeStepSys; + OutputProcessor::SetupTimePointers("ZONE", TimeStepZone); + OutputProcessor::SetupTimePointers("HVAC", DataHVACGlobals::TimeStepSys); PlantSizData.allocate(1); @@ -149,7 +148,7 @@ class SizingAnalysisObjectsTest : public testing::Test PlantLoop.deallocate(); Environment.deallocate(); PlantSizData.deallocate(); - TimeValue.deallocate(); + TimeValue.clear(); } }; @@ -410,18 +409,17 @@ TEST_F(SizingAnalysisObjectsTest, LoggingSubStep4stepPerHour) HourofDay = hr; for (int timeStp = 1; timeStp <= 4; ++timeStp) { // 15 minute zone timestep for (int subTimeStp = 1; subTimeStp <= 5; ++subTimeStp) { // 5 system substeps, so 3 minute system timestep - int const sysIndex(2); Real64 const minutesPerHour(60.0); ZoneTimestepObject tmpztStepStamp(KindOfSim, Envrn, DayOfSim, HourofDay, timeStp, zoneTimeStepDuration, numTimeStepsInHour); // call constructor SystemTimestepObject tmpSysStepStamp; tmpSysStepStamp.CurMinuteEnd = (timeStp - 1) * (minutesPerHour * zoneTimeStepDuration) + - (subTimeStp)*OutputProcessor::TimeValue(sysIndex).TimeStep * minutesPerHour; + (subTimeStp)*OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * minutesPerHour; if (tmpSysStepStamp.CurMinuteEnd == 0.0) { tmpSysStepStamp.CurMinuteEnd = minutesPerHour; } - tmpSysStepStamp.CurMinuteStart = tmpSysStepStamp.CurMinuteEnd - OutputProcessor::TimeValue(sysIndex).TimeStep * minutesPerHour; - tmpSysStepStamp.TimeStepDuration = OutputProcessor::TimeValue(sysIndex).TimeStep; + tmpSysStepStamp.CurMinuteStart = tmpSysStepStamp.CurMinuteEnd - OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * minutesPerHour; + tmpSysStepStamp.TimeStepDuration = OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep; TestLogObj.FillSysStep(tmpztStepStamp, tmpSysStepStamp); } @@ -437,18 +435,17 @@ TEST_F(SizingAnalysisObjectsTest, LoggingSubStep4stepPerHour) HourofDay = hr; for (int timeStp = 1; timeStp <= 4; ++timeStp) { // 15 minute zone timestep for (int subTimeStp = 1; subTimeStp <= 5; ++subTimeStp) { // 5 system substeps, so 3 minute system timestep - int const sysIndex(2); Real64 const minutesPerHour(60.0); ZoneTimestepObject tmpztStepStamp(KindOfSim, Envrn, DayOfSim, HourofDay, timeStp, zoneTimeStepDuration, numTimeStepsInHour); // call constructor SystemTimestepObject tmpSysStepStamp; tmpSysStepStamp.CurMinuteEnd = (timeStp - 1) * (minutesPerHour * zoneTimeStepDuration) + - (subTimeStp)*OutputProcessor::TimeValue(sysIndex).TimeStep * minutesPerHour; + (subTimeStp)*OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * minutesPerHour; if (tmpSysStepStamp.CurMinuteEnd == 0.0) { tmpSysStepStamp.CurMinuteEnd = minutesPerHour; } - tmpSysStepStamp.CurMinuteStart = tmpSysStepStamp.CurMinuteEnd - OutputProcessor::TimeValue(sysIndex).TimeStep * minutesPerHour; - tmpSysStepStamp.TimeStepDuration = OutputProcessor::TimeValue(sysIndex).TimeStep; + tmpSysStepStamp.CurMinuteStart = tmpSysStepStamp.CurMinuteEnd - OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep * minutesPerHour; + tmpSysStepStamp.TimeStepDuration = OutputProcessor::TimeValue.at(OutputProcessor::TimeStepType::TimeStepSystem).TimeStep; TestLogObj.FillSysStep(tmpztStepStamp, tmpSysStepStamp); } diff --git a/tst/EnergyPlus/unit/ThermalComfort.unit.cc b/tst/EnergyPlus/unit/ThermalComfort.unit.cc index 189770972af..86fd9945f3c 100644 --- a/tst/EnergyPlus/unit/ThermalComfort.unit.cc +++ b/tst/EnergyPlus/unit/ThermalComfort.unit.cc @@ -708,7 +708,7 @@ TEST_F(EnergyPlusFixture, ThermalComfort_CalcThermalComfortFanger) ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; ManageSimulation(); diff --git a/tst/EnergyPlus/unit/UnitHeater.unit.cc b/tst/EnergyPlus/unit/UnitHeater.unit.cc index 181abbbdde3..b71573e1322 100644 --- a/tst/EnergyPlus/unit/UnitHeater.unit.cc +++ b/tst/EnergyPlus/unit/UnitHeater.unit.cc @@ -1112,7 +1112,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_HWHeatingCoilUAAutoSizingTest) HeatBalanceManager::GetProjectControlData(ErrorsFound); // read project control data EXPECT_FALSE(ErrorsFound); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; GetProjectData(); @@ -2425,7 +2425,7 @@ TEST_F(EnergyPlusFixture, UnitHeater_SecondPriorityZoneEquipment) }); ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; ManageSimulation(); diff --git a/tst/EnergyPlus/unit/UnitaryHybridUnitTest_DOSA.idf b/tst/EnergyPlus/unit/UnitaryHybridUnitTest_DOSA.idf index d8cf1220706..092e2db1df4 100644 --- a/tst/EnergyPlus/unit/UnitaryHybridUnitTest_DOSA.idf +++ b/tst/EnergyPlus/unit/UnitaryHybridUnitTest_DOSA.idf @@ -1285,48677 +1285,38174 @@ ZoneHVAC:HybridUnitaryHVAC, !- =========== ALL OBJECTS IN CLASS: TABLE:MULTIVARIABLELOOKUP =========== - Table:MultiVariableLookup, - Mode0_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format + Table:IndependentVariable, + Mode0_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.000, !- Value 1 + 0.000, !- Value 2 + 100.000; !- Extended Field + + Table:IndependentVariable, + Mode0_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode0_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.000, !- Value 1 + 0.000, !- Value 2 + 100.000; !- Extended Field + + Table:IndependentVariable, + Mode0_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode0_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + -100.000, !- Value 1 + 0.000, !- Value 2 + 100.000; !- Extended Field + + Table:IndependentVariable, + Mode0_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00, !- Value 1 + 0.00, !- Value 2 + 100.00; !- Extended Field + + Table:IndependentVariableList, + Mode0_IndependentVariableList, !- Name + Mode0_Toa, !- Independent Variable 1 Name + Mode0_Woa, !- Independent Variable 2 Name + Mode0_Tra, !- Extended Field + Mode0_Wra, !- Extended Field + Mode0_Ma, !- Extended Field + Mode0_OAF; !- Extended Field + + Table:Lookup, + Mode0_Power_lookup, !- Name + Mode0_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 3, !- - 3, !- - 3, !- - 3, !- - 3, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - -100.00000, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.00000, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 100.00000, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400, !- - 0.24400; !- - - Table:MultiVariableLookup, - Mode1_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 0.24400, !- Output Value 1 + 0.24400, !- Output Value 2 + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400, !- Extended Field + 0.24400; !- Extended Field + + + Table:IndependentVariable, + Mode1_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 18.330, !- Value 1 + 25.275, !- Value 2 + 32.220; !- Extended Field + + Table:IndependentVariable, + Mode1_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00520, !- Value 1 + 0.00597, !- Value 2 + 0.00885, !- Extended Field + 0.00919, !- Extended Field + 0.01250; !- Extended Field + + Table:IndependentVariable, + Mode1_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.000, !- Value 1 + 0.000, !- Value 2 + 100.000; !- Extended Field + + Table:IndependentVariable, + Mode1_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode1_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.158, !- Value 1 + 2.534, !- Value 2 + 2.910; !- Extended Field + + Table:IndependentVariable, + Mode1_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00, !- Value 1 + 0.00, !- Value 2 + 100.00; !- Extended Field + + Table:IndependentVariableList, + Mode1_IndependentVariableList, !- Name + Mode1_Toa, !- Independent Variable 1 Name + Mode1_Woa, !- Independent Variable 2 Name + Mode1_Tra, !- Extended Field + Mode1_Wra, !- Extended Field + Mode1_Ma, !- Extended Field + Mode1_OAF; !- Extended Field + + Table:Lookup, + Mode1_ESP_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 153.95350, !- - 152.39558, !- - 152.39558, !- - 152.39558, !- - 153.95350, !- - 153.95350, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 212.27550, !- - 215.39133, !- - 215.39133, !- - 215.39133, !- - 212.27550, !- - 212.27550, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.38708, !- - 278.38708, !- - 278.38708, !- - 279.94500, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode1_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 153.95350, !- Output Value 1 + 153.95350, !- Output Value 2 + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 152.39558, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 215.39133, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 278.38708, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 153.95350, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 212.27550, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + Table:Lookup, + Mode1_TSA_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 15.88148, !- - 19.48147, !- - 23.08199, !- - 16.17561, !- - 19.77588, !- - 23.37642, !- - 17.27622, !- - 20.87621, !- - 24.47621, !- - 17.40604, !- - 21.00620, !- - 24.60632, !- - 18.67096, !- - 22.27095, !- - 25.87095, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 15.71243, !- - 19.31242, !- - 22.91294, !- - 16.00656, !- - 19.60684, !- - 23.20737, !- - 17.10717, !- - 20.70716, !- - 24.30716, !- - 17.23699, !- - 20.83716, !- - 24.43727, !- - 18.50192, !- - 22.10191, !- - 25.70190, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 15.54338, !- - 19.14338, !- - 22.74390, !- - 15.83751, !- - 19.43779, !- - 23.03833, !- - 16.93812, !- - 20.53812, !- - 24.13811, !- - 17.06794, !- - 20.66811, !- - 24.26823, !- - 18.33287, !- - 21.93286, !- - 25.53285; !- - - Table:MultiVariableLookup, - Mode1_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 15.88148, !- Output Value 1 + 15.88148, !- Output Value 2 + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.88148, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.71243, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 15.54338, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.17561, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 16.00656, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 15.83751, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.27622, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 17.10717, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 16.93812, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.40604, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.23699, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 17.06794, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.67096, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.50192, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 18.33287, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.48147, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.31242, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.14338, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.77588, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.60684, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 19.43779, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.87621, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.70716, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 20.53812, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 21.00620, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.83716, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 20.66811, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.27095, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 22.10191, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 21.93286, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 23.08199, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.91294, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 22.74390, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.37642, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.20737, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 23.03833, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.47621, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.30716, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.13811, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.60632, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.43727, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 24.26823, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.87095, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.70190, !- Extended Field + 25.53285, !- Extended Field + 25.53285, !- Extended Field + 25.53285; !- Extended Field + + + Table:Lookup, + Mode1_wSA_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 0.00526, !- - 0.00519, !- - 0.00512, !- - 0.00603, !- - 0.00596, !- - 0.00588, !- - 0.00888, !- - 0.00881, !- - 0.00874, !- - 0.00922, !- - 0.00915, !- - 0.00907, !- - 0.01250, !- - 0.01243, !- - 0.01235, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 0.00523, !- - 0.00516, !- - 0.00509, !- - 0.00599, !- - 0.00592, !- - 0.00585, !- - 0.00885, !- - 0.00878, !- - 0.00870, !- - 0.00919, !- - 0.00911, !- - 0.00904, !- - 0.01247, !- - 0.01239, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 0.00520, !- - 0.00513, !- - 0.00506, !- - 0.00596, !- - 0.00589, !- - 0.00582, !- - 0.00882, !- - 0.00874, !- - 0.00867, !- - 0.00915, !- - 0.00908, !- - 0.00901, !- - 0.01243, !- - 0.01236, !- - 0.01229; !- - - Table:MultiVariableLookup, - Mode1_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 0.00526, !- Output Value 1 + 0.00526, !- Output Value 2 + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00526, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00523, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00520, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00603, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00599, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00888, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00885, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00922, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00919, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01250, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01247, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00519, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00513, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00596, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00589, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00881, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00878, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00911, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.00908, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01243, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01239, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.01236, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00512, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00509, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00506, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00588, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00585, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00582, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00867, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00907, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01235, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229; !- Extended Field + + + Table:Lookup, + Mode1_Power_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 4.69020, !- - 4.60788, !- - 4.52556, !- - 4.69286, !- - 4.61054, !- - 4.52822, !- - 4.70279, !- - 4.62046, !- - 4.53814, !- - 4.70396, !- - 4.62163, !- - 4.53931, !- - 4.71537, !- - 4.63304, !- - 4.55072, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 4.66495, !- - 4.58263, !- - 4.50031, !- - 4.66761, !- - 4.58529, !- - 4.50297, !- - 4.67753, !- - 4.59521, !- - 4.51289, !- - 4.67870, !- - 4.59638, !- - 4.51406, !- - 4.69012, !- - 4.60779, !- - 4.52547, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 4.63970, !- - 4.55738, !- - 4.47506, !- - 4.64236, !- - 4.56003, !- - 4.47772, !- - 4.65228, !- - 4.56996, !- - 4.48764, !- - 4.65346, !- - 4.57113, !- - 4.48881, !- - 4.66487, !- - 4.58254, !- - 4.50022; !- - - Table:MultiVariableLookup, - Mode1_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 4.69020, !- Output Value 1 + 4.69020, !- Output Value 2 + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.69020, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.66495, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.63970, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.69286, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.66761, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.64236, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.70279, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.67753, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.65228, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.70396, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.67870, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.65346, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.71537, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.69012, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.66487, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.60788, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.58263, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.55738, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.61054, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.58529, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.56003, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.62046, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.59521, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.56996, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.62163, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.59638, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.57113, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.63304, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.60779, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.58254, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.52556, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.50031, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.47506, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.52822, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.50297, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.47772, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.53814, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.51289, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.48764, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.53931, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.51406, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.48881, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.55072, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.52547, !- Extended Field + 4.50022, !- Extended Field + 4.50022, !- Extended Field + 4.50022; !- Extended Field + + + Table:Lookup, + Mode1_FanPower_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode1_water_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:Lookup, + Mode1_water_lookup, !- Name + Mode1_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 18.330, !- - 25.275, !- - 32.220, !- - 0.00520, !- - 0.00597, !- - 0.00885, !- - 0.00919, !- - 0.01250, !- - -100.000, !- - 0.000, !- - 100.000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.158, !- - 2.534, !- - 2.910, !- - -100.00, !- - 0.00, !- - 100.00, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - -100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 0.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.15800, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.53400, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - -100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 0.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - -100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 0.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 100.00000, !- - 100.00000, !- - 2.91000, !- - 100.00000, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836, !- - 20.90173, !- - 47.16504, !- - 73.42836; !- - - Table:MultiVariableLookup, - Mode2_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 20.90173, !- Output Value 1 + 20.90173, !- Output Value 2 + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 20.90173, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 47.16504, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836, !- Extended Field + 73.42836; !- Extended Field + + + Table:IndependentVariable, + Mode2_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 23.33300, !- Value 1 + 26.94450, !- Value 2 + 30.55600; !- Extended Field + + Table:IndependentVariable, + Mode2_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00787, !- Value 1 + 0.00818, !- Value 2 + 0.00893, !- Extended Field + 0.00922, !- Extended Field + 0.01057; !- Extended Field + + Table:IndependentVariable, + Mode2_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode2_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode2_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.24150, !- Value 1 + 2.47525, !- Value 2 + 2.70900; !- Extended Field + + Table:IndependentVariable, + Mode2_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariableList, + Mode2_IndependentVariableList, !- Name + Mode2_Toa, !- Independent Variable 1 Name + Mode2_Woa, !- Independent Variable 2 Name + Mode2_Tra, !- Extended Field + Mode2_Wra, !- Extended Field + Mode2_Ma, !- Extended Field + Mode2_OAF; !- Extended Field + + Table:Lookup, + Mode2_ESP_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 190.96555, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - 190.96555, !- - 191.66030, !- - 191.66030, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 235.10790, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - 235.10790, !- - 233.71840, !- - 233.71840, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.25025, !- - 279.25025, !- - 279.94500, !- - 279.94500, !- - 279.25025, !- - 279.94500, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode2_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 191.66030, !- Output Value 1 + 191.66030, !- Output Value 2 + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 190.96555, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 235.10790, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 279.25025, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 191.66030, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 233.71840, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + + Table:Lookup, + Mode2_TSA_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 9.87769, !- - 11.71017, !- - 13.54405, !- - 10.09170, !- - 11.92479, !- - 13.75865, !- - 10.60999, !- - 12.44247, !- - 14.27520, !- - 10.81006, !- - 12.64223, !- - 14.47471, !- - 11.74255, !- - 13.57429, !- - 15.40677, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 11.06818, !- - 12.90066, !- - 14.73454, !- - 11.28219, !- - 13.11528, !- - 14.94914, !- - 11.80049, !- - 13.63296, !- - 15.46569, !- - 12.00055, !- - 13.83272, !- - 15.66520, !- - 12.93304, !- - 14.76478, !- - 16.59726, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 12.25867, !- - 14.09115, !- - 15.92503, !- - 12.47268, !- - 14.30577, !- - 16.13963, !- - 12.99098, !- - 14.82345, !- - 16.65618, !- - 13.19104, !- - 15.02321, !- - 16.85569, !- - 14.12353, !- - 15.95527, !- - 17.78775; !- - - Table:MultiVariableLookup, - Mode2_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 9.87769, !- Output Value 1 + 9.87769, !- Output Value 2 + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 9.87769, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 11.06818, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 12.25867, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 10.09170, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 11.28219, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 12.47268, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 10.60999, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 11.80049, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 12.99098, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 10.81006, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 12.00055, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 13.19104, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 11.74255, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 12.93304, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 14.12353, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 11.71017, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 12.90066, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 14.09115, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 11.92479, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 13.11528, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 14.30577, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 12.44247, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 13.63296, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 14.82345, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 12.64223, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 13.83272, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 15.02321, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 13.57429, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 14.76478, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 15.95527, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 13.54405, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 14.73454, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 15.92503, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 13.75865, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 14.94914, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 16.13963, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 14.27520, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 15.46569, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 16.65618, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 14.47471, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 15.66520, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 16.85569, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 15.40677, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 16.59726, !- Extended Field + 17.78775, !- Extended Field + 17.78775, !- Extended Field + 17.78775; !- Extended Field + + + Table:Lookup, + Mode2_wSA_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 0.00622, !- - 0.00655, !- - 0.00688, !- - 0.00652, !- - 0.00685, !- - 0.00718, !- - 0.00724, !- - 0.00757, !- - 0.00790, !- - 0.00752, !- - 0.00785, !- - 0.00818, !- - 0.00882, !- - 0.00915, !- - 0.00948, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 0.00661, !- - 0.00694, !- - 0.00728, !- - 0.00691, !- - 0.00724, !- - 0.00757, !- - 0.00763, !- - 0.00796, !- - 0.00829, !- - 0.00791, !- - 0.00824, !- - 0.00857, !- - 0.00921, !- - 0.00954, !- - 0.00987, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 0.00700, !- - 0.00733, !- - 0.00767, !- - 0.00730, !- - 0.00763, !- - 0.00797, !- - 0.00802, !- - 0.00835, !- - 0.00868, !- - 0.00830, !- - 0.00863, !- - 0.00896, !- - 0.00960, !- - 0.00993, !- - 0.01026; !- - - Table:MultiVariableLookup, - Mode2_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 0.00622, !- Output Value 1 + 0.00622, !- Output Value 2 + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00622, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00661, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00700, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00652, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00691, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00730, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00802, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00752, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00791, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00882, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00921, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00960, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00655, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00694, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00733, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00685, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00724, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00763, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00835, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00785, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00863, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00915, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00954, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00993, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00688, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00728, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00718, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00757, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00797, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00790, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00868, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00818, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00896, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00948, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.00987, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026; !- Extended Field + + Table:Lookup, + Mode2_Power_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 12.15843, !- - 11.67757, !- - 11.19627, !- - 12.09026, !- - 11.60921, !- - 11.12791, !- - 11.92517, !- - 11.44431, !- - 10.96337, !- - 11.86144, !- - 11.38068, !- - 10.89982, !- - 11.56441, !- - 11.08379, !- - 10.60293, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 10.75774, !- - 10.27688, !- - 9.79558, !- - 10.68957, !- - 10.20852, !- - 9.72722, !- - 10.52448, !- - 10.04362, !- - 9.56269, !- - 10.46075, !- - 9.97999, !- - 9.49914, !- - 10.16373, !- - 9.68310, !- - 9.20224, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 9.35705, !- - 8.87619, !- - 8.39489, !- - 9.28889, !- - 8.80783, !- - 8.32653, !- - 9.12379, !- - 8.64293, !- - 8.16200, !- - 9.06006, !- - 8.57930, !- - 8.09845, !- - 8.76304, !- - 8.28241, !- - 7.80156; !- - - Table:MultiVariableLookup, - Mode2_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 12.15843, !- Output Value 1 + 12.15843, !- Output Value 2 + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 12.15843, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 10.75774, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 9.35705, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 12.09026, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 10.68957, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 9.28889, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 11.92517, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 10.52448, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 9.12379, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 11.86144, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 10.46075, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 9.06006, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 11.56441, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 10.16373, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 8.76304, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 11.67757, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 10.27688, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 8.87619, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 11.60921, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 10.20852, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 8.80783, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 11.44431, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 10.04362, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 8.64293, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 11.38068, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 9.97999, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 8.57930, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 11.08379, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 9.68310, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 8.28241, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 11.19627, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 9.79558, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 8.39489, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 11.12791, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 9.72722, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 8.32653, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 10.96337, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 9.56269, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 8.16200, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 10.89982, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 9.49914, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 8.09845, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 10.60293, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 9.20224, !- Extended Field + 7.80156, !- Extended Field + 7.80156, !- Extended Field + 7.80156; !- Extended Field + + + Table:Lookup, + Mode2_FanPower_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode2_water_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:Lookup, + Mode2_water_lookup, !- Name + Mode2_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 5, !- - 3, !- - 3, !- - 3, !- - 3, !- - 23.33300, !- - 26.94450, !- - 30.55600, !- - 0.00787, !- - 0.00818, !- - 0.00893, !- - 0.00922, !- - 0.01057, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 2.47525, !- - 2.70900, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - -100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 0.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.24150, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.47525, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - -100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 0.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - -100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 0.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 100.00000, !- - 100.00000, !- - 2.70900, !- - 100.00000, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575, !- - 39.82115, !- - 53.47845, !- - 67.13575; !- - - Table:MultiVariableLookup, - Mode3_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 39.82115, !- Output Value 1 + 39.82115, !- Output Value 2 + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 39.82115, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 53.47845, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575, !- Extended Field + 67.13575; !- Extended Field + + + Table:IndependentVariable, + Mode3_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 26.10000, !- Value 1 + 30.50000, !- Value 2 + 34.90000; !- Extended Field + + Table:IndependentVariable, + Mode3_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00619, !- Value 1 + 0.00921, !- Value 2 + 0.01038, !- Extended Field + 0.01222; !- Extended Field + + Table:IndependentVariable, + Mode3_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode3_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode3_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.14570, !- Value 1 + 2.41788, !- Value 2 + 2.69005; !- Extended Field + + Table:IndependentVariable, + Mode3_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariableList, + Mode3_IndependentVariableList, !- Name + Mode3_Toa, !- Independent Variable 1 Name + Mode3_Woa, !- Independent Variable 2 Name + Mode3_Tra, !- Extended Field + Mode3_Wra, !- Extended Field + Mode3_Ma, !- Extended Field + Mode3_OAF; !- Extended Field + + Table:Lookup, + Mode3_ESP_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 4, !- - 3, !- - 3, !- - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 178.11070, !- - 177.15543, !- - 177.15543, !- - 177.15543, !- - 178.11070, !- - 178.11070, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 226.16203, !- - 228.07258, !- - 228.07258, !- - 228.07258, !- - 226.16203, !- - 226.16203, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.98973, !- - 278.98973, !- - 278.98973, !- - 279.94500, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode3_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 178.11070, !- Output Value 1 + 178.11070, !- Output Value 2 + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 177.15543, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 228.07258, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 278.98973, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 178.11070, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 226.16203, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + + Table:Lookup, + Mode3_TSA_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 4, !- - 3, !- - 3, !- - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 9.70676, !- - 10.94353, !- - 12.18029, !- - 12.40253, !- - 13.63930, !- - 14.87606, !- - 13.45641, !- - 14.68884, !- - 15.92505, !- - 15.09793, !- - 16.33507, !- - 17.57183, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 9.57990, !- - 10.81667, !- - 12.05344, !- - 12.27567, !- - 13.51244, !- - 14.74921, !- - 13.32955, !- - 14.56199, !- - 15.79819, !- - 14.97108, !- - 16.20821, !- - 17.44498, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 9.45304, !- - 10.68981, !- - 11.92658, !- - 12.14881, !- - 13.38558, !- - 14.62235, !- - 13.20269, !- - 14.43513, !- - 15.67133, !- - 14.84422, !- - 16.08135, !- - 17.31812; !- - - Table:MultiVariableLookup, - Mode3_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 9.70676, !- Output Value 1 + 9.70676, !- Output Value 2 + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.70676, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.57990, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 9.45304, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.40253, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.27567, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 12.14881, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.45641, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.32955, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 13.20269, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 15.09793, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.97108, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 14.84422, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.94353, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.81667, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 10.68981, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.63930, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.51244, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 13.38558, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.68884, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.56199, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 14.43513, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.33507, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.20821, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 16.08135, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.18029, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 12.05344, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 11.92658, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.87606, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.74921, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 14.62235, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.92505, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.79819, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 15.67133, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.57183, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.44498, !- Extended Field + 17.31812, !- Extended Field + 17.31812, !- Extended Field + 17.31812; !- Extended Field + + Table:Lookup, + Mode3_wSA_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 4, !- - 3, !- - 3, !- - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 0.00568, !- - 0.00595, !- - 0.00623, !- - 0.00771, !- - 0.00798, !- - 0.00825, !- - 0.00850, !- - 0.00877, !- - 0.00904, !- - 0.00973, !- - 0.01001, !- - 0.01028, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 0.00566, !- - 0.00594, !- - 0.00621, !- - 0.00769, !- - 0.00796, !- - 0.00824, !- - 0.00848, !- - 0.00875, !- - 0.00903, !- - 0.00972, !- - 0.00999, !- - 0.01026, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 0.00565, !- - 0.00592, !- - 0.00619, !- - 0.00767, !- - 0.00795, !- - 0.00822, !- - 0.00847, !- - 0.00874, !- - 0.00901, !- - 0.00970, !- - 0.00997, !- - 0.01025; !- - - Table:MultiVariableLookup, - Mode3_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 0.00568, !- Output Value 1 + 0.00568, !- Output Value 2 + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00568, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00566, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00565, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00771, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00769, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00767, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00850, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00848, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00973, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00972, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00970, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00595, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00594, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00592, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00798, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00796, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00795, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00877, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00875, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.00874, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00999, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00997, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00623, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00621, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00619, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00825, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00824, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00822, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00904, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00903, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01028, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01026, !- Extended Field + 0.01025, !- Extended Field + 0.01025, !- Extended Field + 0.01025; !- Extended Field + + Table:Lookup, + Mode3_Power_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 4, !- - 3, !- - 3, !- - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 10.96099, !- - 11.29776, !- - 11.63452, !- - 11.32044, !- - 11.65721, !- - 11.99397, !- - 11.46096, !- - 11.79715, !- - 12.13384, !- - 11.67984, !- - 12.01666, !- - 12.35342, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 10.91882, !- - 11.25559, !- - 11.59235, !- - 11.27827, !- - 11.61504, !- - 11.95180, !- - 11.41879, !- - 11.75498, !- - 12.09167, !- - 11.63767, !- - 11.97449, !- - 12.31125, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 10.87665, !- - 11.21342, !- - 11.55018, !- - 11.23610, !- - 11.57287, !- - 11.90963, !- - 11.37662, !- - 11.71281, !- - 12.04950, !- - 11.59550, !- - 11.93232, !- - 12.26908; !- - - Table:MultiVariableLookup, - Mode3_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 10.96099, !- Output Value 1 + 10.96099, !- Output Value 2 + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.96099, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.91882, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 10.87665, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.32044, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.27827, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.23610, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.46096, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.41879, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.37662, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.67984, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.63767, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.59550, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.29776, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.25559, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.21342, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.65721, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.61504, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.57287, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.79715, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.75498, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 11.71281, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 12.01666, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.97449, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.93232, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.63452, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.59235, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.55018, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.99397, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.95180, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 11.90963, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.13384, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.09167, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.04950, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.35342, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.31125, !- Extended Field + 12.26908, !- Extended Field + 12.26908, !- Extended Field + 12.26908; !- Extended Field + + + Table:Lookup, + Mode3_FanPower_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 4, !- - 3, !- - 3, !- - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode3_water_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:Lookup, + Mode3_water_lookup, !- Name + Mode3_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 4, !- - 3, !- - 3, !- - 3, !- - 3, !- - 26.10000, !- - 30.50000, !- - 34.90000, !- - 0.00619, !- - 0.00921, !- - 0.01038, !- - 0.01222, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 2.41788, !- - 2.69005, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - -100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 0.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.14570, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.41788, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - -100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 0.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - -100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 0.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 100.00000, !- - 100.00000, !- - 2.69005, !- - 100.00000, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308, !- - 50.28488, !- - 66.92398, !- - 83.56308; !- - - Table:MultiVariableLookup, - Mode4_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 50.28488, !- Output Value 1 + 50.28488, !- Output Value 2 + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 50.28488, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 66.92398, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308, !- Extended Field + 83.56308; !- Extended Field + + + Table:IndependentVariable, + Mode4_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 14.08800, !- Value 1 + 18.87900, !- Value 2 + 23.67000; !- Extended Field + + Table:IndependentVariable, + Mode4_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00482, !- Value 1 + 0.00516, !- Value 2 + 0.00857, !- Extended Field + 0.00901, !- Extended Field + 0.01229, !- Extended Field + 0.01232; !- Extended Field + + Table:IndependentVariable, + Mode4_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode4_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode4_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.12400, !- Value 1 + 2.50590, !- Value 2 + 2.88780; !- Extended Field + + Table:IndependentVariable, + Mode4_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariableList, + Mode4_IndependentVariableList, !- Name + Mode4_Toa, !- Independent Variable 1 Name + Mode4_Woa, !- Independent Variable 2 Name + Mode4_Tra, !- Extended Field + Mode4_Wra, !- Extended Field + Mode4_Ma, !- Extended Field + Mode4_OAF; !- Extended Field + + Table:Lookup, + Mode4_ESP_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - 149.81042, !- - 149.81042, !- - 149.81042, !- - 151.44241, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - 214.06172, !- - 214.06172, !- - 214.06172, !- - 210.79775, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500, !- - 278.31301, !- - 278.31301, !- - 278.31301, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode4_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 151.44241, !- Output Value 1 + 151.44241, !- Output Value 2 + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 149.81042, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 214.06172, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 278.31301, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 151.44241, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 210.79775, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + + Table:Lookup, + Mode4_TSA_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 15.49920, !- - 19.64523, !- - 23.79127, !- - 15.50075, !- - 19.64679, !- - 23.79283, !- - 15.51630, !- - 19.66233, !- - 23.80836, !- - 15.51832, !- - 19.66434, !- - 23.81037, !- - 15.53327, !- - 19.67929, !- - 23.82533, !- - 15.53341, !- - 19.67943, !- - 23.82547, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 15.52686, !- - 19.67289, !- - 23.81893, !- - 15.52841, !- - 19.67445, !- - 23.82049, !- - 15.54396, !- - 19.68999, !- - 23.83602, !- - 15.54598, !- - 19.69200, !- - 23.83803, !- - 15.56093, !- - 19.70695, !- - 23.85299, !- - 15.56107, !- - 19.70709, !- - 23.85313, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 15.55452, !- - 19.70055, !- - 23.84659, !- - 15.55607, !- - 19.70211, !- - 23.84815, !- - 15.57162, !- - 19.71765, !- - 23.86369, !- - 15.57364, !- - 19.71966, !- - 23.86569, !- - 15.58859, !- - 19.73461, !- - 23.88065, !- - 15.58873, !- - 19.73476, !- - 23.88079; !- - - Table:MultiVariableLookup, - Mode4_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 15.49920, !- Output Value 1 + 15.49920, !- Output Value 2 + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.49920, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.52686, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.55452, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.50075, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.52841, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.55607, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.51630, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.54396, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.57162, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.51832, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.54598, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.57364, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.53327, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.56093, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.58859, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.53341, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.56107, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 15.58873, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.64523, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.67289, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.70055, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.64679, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.67445, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.70211, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.66233, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.68999, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.71765, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.66434, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.69200, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.71966, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.67929, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.70695, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.73461, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.67943, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.70709, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 19.73476, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.79127, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.81893, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.84659, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.79283, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.82049, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.84815, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.80836, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.83602, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.86369, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.81037, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.83803, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.86569, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.82533, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.85299, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.88065, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.82547, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.85313, !- Extended Field + 23.88079, !- Extended Field + 23.88079, !- Extended Field + 23.88079; !- Extended Field + + + Table:Lookup, + Mode4_wSA_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 0.00482, !- - 0.00482, !- - 0.00482, !- - 0.00516, !- - 0.00516, !- - 0.00516, !- - 0.00857, !- - 0.00857, !- - 0.00857, !- - 0.00901, !- - 0.00901, !- - 0.00901, !- - 0.01229, !- - 0.01229, !- - 0.01229, !- - 0.01232, !- - 0.01232, !- - 0.01232; !- - - Table:MultiVariableLookup, - Mode4_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 0.00482, !- Output Value 1 + 0.00482, !- Output Value 2 + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00482, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00516, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00857, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.00901, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232, !- Extended Field + 0.01232; !- Extended Field + + + Table:Lookup, + Mode4_Power_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.33755, !- - 3.31254, !- - 3.28754, !- - 3.33798, !- - 3.31298, !- - 3.28798, !- - 3.34235, !- - 3.31735, !- - 3.29235, !- - 3.34292, !- - 3.31791, !- - 3.29291, !- - 3.34712, !- - 3.32212, !- - 3.29711, !- - 3.34716, !- - 3.32216, !- - 3.29715, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.29664, !- - 3.27163, !- - 3.24663, !- - 3.29707, !- - 3.27207, !- - 3.24707, !- - 3.30144, !- - 3.27644, !- - 3.25144, !- - 3.30201, !- - 3.27700, !- - 3.25200, !- - 3.30621, !- - 3.28121, !- - 3.25620, !- - 3.30625, !- - 3.28125, !- - 3.25624, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25573, !- - 3.23072, !- - 3.20572, !- - 3.25616, !- - 3.23116, !- - 3.20616, !- - 3.26054, !- - 3.23553, !- - 3.21053, !- - 3.26110, !- - 3.23610, !- - 3.21109, !- - 3.26530, !- - 3.24030, !- - 3.21529, !- - 3.26534, !- - 3.24034, !- - 3.21533; !- - - Table:MultiVariableLookup, - Mode4_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 3.33755, !- Output Value 1 + 3.33755, !- Output Value 2 + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.33755, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.29664, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.25573, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.33798, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.29707, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.25616, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.34235, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.30144, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.26054, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.34292, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.30201, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.26110, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.34712, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.30621, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.26530, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.34716, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.30625, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.26534, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.31254, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.27163, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.23072, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.31298, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.27207, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.23116, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.31735, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.27644, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.23553, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.31791, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.27700, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.23610, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.32212, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.28121, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.24030, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.32216, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.28125, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.24034, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.28754, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.24663, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.20572, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.28798, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.24707, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.20616, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.29235, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.25144, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.21053, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.29291, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.25200, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.21109, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.29711, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.25620, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.21529, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.29715, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.25624, !- Extended Field + 3.21533, !- Extended Field + 3.21533, !- Extended Field + 3.21533; !- Extended Field + + + Table:Lookup, + Mode4_FanPower_lookup, !- Name + Mode4_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 14.08800, !- - 18.87900, !- - 23.67000, !- - 0.00482, !- - 0.00516, !- - 0.00857, !- - 0.00901, !- - 0.01229, !- - 0.01232, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 2.50590, !- - 2.88780, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.12400, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.50590, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.88780, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode5_ESP_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:IndependentVariable, + Mode5_Toa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 12.11110, !- Value 1 + 17.33055, !- Value 2 + 22.55000; !- Extended Field + + Table:IndependentVariable, + Mode5_Woa, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 0.00757, !- Value 1 + 0.00835, !- Value 2 + 0.00851, !- Extended Field + 0.00978, !- Extended Field + 0.01176, !- Extended Field + 0.01200; !- Extended Field + + Table:IndependentVariable, + Mode5_Tra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + -20, !- Minimum Value + 100, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode5_Wra, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 0.03, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariable, + Mode5_Ma, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 2.19992, !- Value 1 + 2.60876, !- Value 2 + 3.01760; !- Extended Field + + Table:IndependentVariable, + Mode5_OAF, !- Name + Cubic, !- Interpolation Method + Linear, !- Extrapolation Method + 0, !- Minimum Value + 1, !- Maximum Value + , !- Normalization Reference Value + Dimensionless, !- Unit Type + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + -100.00000, !- Value 1 + 0.00000, !- Value 2 + 100.00000; !- Extended Field + + Table:IndependentVariableList, + Mode5_IndependentVariableList, !- Name + Mode5_Toa, !- Independent Variable 1 Name + Mode5_Woa, !- Independent Variable 2 Name + Mode5_Tra, !- Extended Field + Mode5_Wra, !- Extended Field + Mode5_Ma, !- Extended Field + Mode5_OAF; !- Extended Field + + Table:Lookup, + Mode5_ESP_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 148.78678, !- - 147.07388, !- - 148.78678, !- - 147.07388, !- - 147.07388, !- - 147.07388, !- - 148.78678, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 209.22719, !- - 212.65299, !- - 209.22719, !- - 212.65299, !- - 212.65299, !- - 212.65299, !- - 209.22719, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 279.94500, !- - 278.23210, !- - 279.94500, !- - 278.23210, !- - 278.23210, !- - 278.23210, !- - 279.94500; !- - - Table:MultiVariableLookup, - Mode5_TSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 148.78678, !- Output Value 1 + 148.78678, !- Output Value 2 + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 147.07388, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 212.65299, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 278.23210, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 148.78678, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 209.22719, !- Extended Field + 279.94500, !- Extended Field + 279.94500, !- Extended Field + 279.94500; !- Extended Field + + + Table:Lookup, + Mode5_TSA_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 32.25793, !- - 36.91155, !- - 41.56561, !- - 32.36574, !- - 37.01915, !- - 41.67281, !- - 32.38748, !- - 37.04114, !- - 41.69475, !- - 32.56202, !- - 37.21610, !- - 41.86971, !- - 32.83413, !- - 37.48747, !- - 42.14145, !- - 32.86712, !- - 37.52078, !- - 42.17426, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 31.60828, !- - 36.26190, !- - 40.91596, !- - 31.71610, !- - 36.36950, !- - 41.02316, !- - 31.73783, !- - 36.39149, !- - 41.04510, !- - 31.91237, !- - 36.56645, !- - 41.22006, !- - 32.18448, !- - 36.83782, !- - 41.49180, !- - 32.21747, !- - 36.87113, !- - 41.52461, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 30.95864, !- - 35.61225, !- - 40.26632, !- - 31.06645, !- - 35.71985, !- - 40.37351, !- - 31.08818, !- - 35.74184, !- - 40.39545, !- - 31.26272, !- - 35.91680, !- - 40.57042, !- - 31.53484, !- - 36.18817, !- - 40.84216, !- - 31.56782, !- - 36.22148, !- - 40.87497; !- - - Table:MultiVariableLookup, - Mode5_wSA_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 32.25793, !- Output Value 1 + 32.25793, !- Output Value 2 + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 32.25793, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 31.60828, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 30.95864, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 32.36574, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.71610, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 31.06645, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 32.38748, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.73783, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 31.08818, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 32.56202, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.91237, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 31.26272, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.83413, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 32.18448, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 31.53484, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.86712, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 32.21747, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 31.56782, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.91155, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 36.26190, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 35.61225, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 37.01915, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 36.36950, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 35.71985, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 37.04114, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 36.39149, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 35.74184, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 37.21610, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 36.56645, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 35.91680, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 37.48747, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.83782, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 36.18817, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 37.52078, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.87113, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 36.22148, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 41.56561, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.91596, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 40.26632, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.67281, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 41.02316, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 40.37351, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.69475, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 41.04510, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 40.39545, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.86971, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 41.22006, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 40.57042, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 42.14145, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 41.49180, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 40.84216, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 42.17426, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 41.52461, !- Extended Field + 40.87497, !- Extended Field + 40.87497, !- Extended Field + 40.87497; !- Extended Field + + + Table:Lookup, + Mode5_wSA_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 0.00775, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00843, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00847, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01192, !- - 0.01180, !- - 0.01229, !- - 0.01217, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 0.00774, !- - 0.00762, !- - 0.00750, !- - 0.00855, !- - 0.00842, !- - 0.00830, !- - 0.00871, !- - 0.00859, !- - 0.00846, !- - 0.01001, !- - 0.00989, !- - 0.00977, !- - 0.01204, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01204, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 0.00774, !- - 0.00761, !- - 0.00749, !- - 0.00854, !- - 0.00842, !- - 0.00829, !- - 0.00870, !- - 0.00858, !- - 0.00846, !- - 0.01000, !- - 0.00988, !- - 0.00976, !- - 0.01203, !- - 0.01191, !- - 0.01179, !- - 0.01228, !- - 0.01216, !- - 0.01203; !- - - Table:MultiVariableLookup, - Mode5_Power_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 0.00775, !- Output Value 1 + 0.00775, !- Output Value 2 + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00775, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00774, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00855, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00854, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00871, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.00870, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01001, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01000, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01229, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.01228, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00762, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00761, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00843, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00842, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00859, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00858, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00989, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.00988, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01192, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01191, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01217, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.01216, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00750, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00749, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00830, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00829, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00847, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00846, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00977, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.00976, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01180, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01179, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01204, !- Extended Field + 0.01203, !- Extended Field + 0.01203, !- Extended Field + 0.01203; !- Extended Field + + + Table:Lookup, + Mode5_Power_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.49762, !- - 3.44655, !- - 3.39551, !- - 3.50317, !- - 3.45208, !- - 3.40102, !- - 3.50428, !- - 3.45322, !- - 3.40214, !- - 3.51326, !- - 3.46221, !- - 3.41114, !- - 3.52725, !- - 3.47616, !- - 3.42511, !- - 3.52894, !- - 3.47787, !- - 3.42680, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.46613, !- - 3.41506, !- - 3.36401, !- - 3.47167, !- - 3.42059, !- - 3.36952, !- - 3.47279, !- - 3.42172, !- - 3.37065, !- - 3.48176, !- - 3.43072, !- - 3.37965, !- - 3.49575, !- - 3.44467, !- - 3.39362, !- - 3.49745, !- - 3.44638, !- - 3.39530, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.43463, !- - 3.38356, !- - 3.33252, !- - 3.44018, !- - 3.38910, !- - 3.33803, !- - 3.44129, !- - 3.39023, !- - 3.33916, !- - 3.45027, !- - 3.39922, !- - 3.34815, !- - 3.46426, !- - 3.41317, !- - 3.36212, !- - 3.46595, !- - 3.41489, !- - 3.36381; !- - - Table:MultiVariableLookup, - Mode5_FanPower_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 3.49762, !- Output Value 1 + 3.49762, !- Output Value 2 + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.49762, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.46613, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.43463, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.50317, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.47167, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.44018, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.50428, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.47279, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.44129, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.51326, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.48176, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.45027, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.52725, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.49575, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.46426, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.52894, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.49745, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.46595, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.44655, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.41506, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.38356, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.45208, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.42059, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.38910, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.45322, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.42172, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.39023, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.46221, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.43072, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.39922, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.47616, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.44467, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.41317, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.47787, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.44638, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.41489, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.39551, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.36401, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.33252, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.40102, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.36952, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.33803, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.40214, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.37065, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.33916, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.41114, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.37965, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.34815, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.42511, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.39362, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.36212, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.42680, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.39530, !- Extended Field + 3.36381, !- Extended Field + 3.36381, !- Extended Field + 3.36381; !- Extended Field + + + Table:Lookup, + Mode5_FanPower_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000, !- - 3.25000; !- - - Table:MultiVariableLookup, - Mode5_2ndFuel_lookup, !- Name - LagrangeInterpolationLinearExtrapolation, !- Interpolation Method - 3, !- Number of Interpolation Points - Quadratic, !- Curve Type - SingleLineIndependentVariableWithMatrix, !- Table Data Format , !- External File Name - Ascending, !- X1 Sort Order - Ascending, !- X2 Sort Order - 3.0176, !- Normalization Reference - -20, !- Minimum Value of X1 - 100, !- Maximum Value of X1 - 0, !- Minimum Value of X2 - 0.03, !- Maximum Value of X2 - -20, !- Minimum Value of X3 - 100, !- Maximum Value of X3 - 0, !- Minimum Value of X4 - 0.03, !- Maximum Value of X4 - 0, !- Minimum Value of X5 - 1, !- Maximum Value of X5 - 0, !- Minimum Table Output - 1, !- Maximum Table Output - -9999, !- Input Unit Type for X1 - 9999, !- Input Unit Type for X2 - Dimensionless, !- Input Unit Type for X3 - Dimensionless, !- Input Unit Type for X4 - Dimensionless, !- Input Unit Type for X5 + , !- External File Column Number + , !- External File Starting Row Number + 3.25000, !- Output Value 1 + 3.25000, !- Output Value 2 + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000, !- Extended Field + 3.25000; !- Extended Field + + + Table:Lookup, + Mode5_2ndFuel_lookup, !- Name + Mode5_IndependentVariableList, !- Independent Variable List Name + DivisorOnly, !- Normalization Method + 3.0176, !- Normalization Divisor + -9999, !- Minimum Output + 9999, !- Maximum Output Dimensionless, !- Output Unit Type - Dimensionless, !- Number of Independent Variables - Dimensionless, !- Number of Values for Independent Variable X1 - Dimensionless, !- Field 1 Determined by the Number of Independent Variables - 6, !- Field 2 Determined by the Number of Independent Variables - 3, !- Field 3 Determined by the Number of Independent Variables - 6, !- - 3, !- - 3, !- - 3, !- - 3, !- - 12.11110, !- - 17.33055, !- - 22.55000, !- - 0.00757, !- - 0.00835, !- - 0.00851, !- - 0.00978, !- - 0.01176, !- - 0.01200, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 2.60876, !- - 3.01760, !- - -100.00000, !- - 0.00000, !- - 100.00000, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - -100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - -100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - -100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 0.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 0.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 0.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - -100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 0.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 0.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - 100.00000, !- - 100.00000, !- - 2.19992, !- - 100.00000, !- - 52.40363, !- - 50.93185, !- - 49.56591, !- - 52.68406, !- - 51.31641, !- - 49.84474, !- - 52.84527, !- - 51.37360, !- - 49.79713, !- - 53.29926, !- - 51.72401, !- - 50.25223, !- - 54.00706, !- - 52.42988, !- - 51.06372, !- - 54.09285, !- - 52.62118, !- - 51.04439, !- - -100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - -100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 0.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 0.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - 100.00000, !- - 100.00000, !- - 2.60876, !- - 100.00000, !- - 60.13861, !- - 58.39331, !- - 56.44003, !- - 60.47115, !- - 58.51585, !- - 56.77068, !- - 60.32884, !- - 58.58367, !- - 57.04771, !- - 60.86720, !- - 59.33269, !- - 57.58738, !- - 61.70653, !- - 60.16973, !- - 58.21620, !- - 61.80827, !- - 60.06310, !- - 58.52676, !- - -100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - -100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 0.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - -100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 0.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107, !- - 100.00000, !- - 100.00000, !- - 3.01760, !- - 100.00000, !- - 67.24552, !- - 65.22670, !- - 63.31416, !- - 67.63018, !- - 65.71529, !- - 63.69662, !- - 67.81240, !- - 65.79374, !- - 63.67022, !- - 68.43513, !- - 66.31329, !- - 64.29447, !- - 69.40601, !- - 67.28152, !- - 65.36868, !- - 69.52369, !- - 67.50502, !- - 65.38107; !- + , !- External File Name + , !- External File Column Number + , !- External File Starting Row Number + 52.40363, !- Output Value 1 + 52.40363, !- Output Value 2 + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 52.40363, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 60.13861, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 67.24552, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 52.68406, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 60.47115, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 67.63018, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 52.84527, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 60.32884, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 67.81240, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 53.29926, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 60.86720, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 68.43513, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 54.00706, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 61.70653, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 69.40601, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 54.09285, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 61.80827, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 69.52369, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 50.93185, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 58.39331, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 65.22670, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 51.31641, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 58.51585, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 65.71529, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 51.37360, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 58.58367, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 65.79374, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 51.72401, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 59.33269, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 66.31329, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 52.42988, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 60.16973, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 67.28152, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 52.62118, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 60.06310, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 67.50502, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 49.56591, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 56.44003, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 63.31416, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 49.84474, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 56.77068, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 63.69662, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 49.79713, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 57.04771, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 63.67022, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 50.25223, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 57.58738, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 64.29447, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 51.06372, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 58.21620, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 65.36868, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 51.04439, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 58.52676, !- Extended Field + 65.38107, !- Extended Field + 65.38107, !- Extended Field + 65.38107; !- Extended Field !- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== diff --git a/tst/EnergyPlus/unit/WaterThermalTanks.unit.cc b/tst/EnergyPlus/unit/WaterThermalTanks.unit.cc index f47eaeb470d..f2f56df1550 100644 --- a/tst/EnergyPlus/unit/WaterThermalTanks.unit.cc +++ b/tst/EnergyPlus/unit/WaterThermalTanks.unit.cc @@ -62,13 +62,17 @@ #include #include #include +#include +#include #include #include #include #include #include #include +#include #include +#include using namespace EnergyPlus; using namespace OutputReportPredefined; @@ -2471,3 +2475,653 @@ TEST_F(EnergyPlusFixture, DesuperheaterTimeAdvanceCheck){ EXPECT_GT(Tank.TankTemp, 50); } + +TEST_F(EnergyPlusFixture, StratifiedTank_GSHP_DesuperheaterSourceHeat) +{ + using DataLoopNode::Node; + using DataGlobals::HourOfDay; + using DataGlobals::TimeStep; + using DataGlobals::TimeStepZone; + using DataHVACGlobals::SysTimeElapsed; + using DataHVACGlobals::TimeStepSys; + using WaterThermalTanks::WaterThermalTank; + using WaterThermalTanks::WaterHeaterDesuperheater; + using WaterToAirHeatPumpSimple::SimpleWatertoAirHP; + using DataPlant::PlantLoop; + + std::string const idf_objects = delimited_string({ + "Schedule:Constant, Hot Water Demand Schedule, , 1.0;", + "Schedule:Constant, Ambient Temp Schedule, , 20.0;", + "Schedule:Constant, Inlet Water Temperature, , 10.0;", + "Schedule:Constant, Desuperheater-Schedule, , 60.0;", + "Schedule:Constant, WH Setpoint Temp, , 45.0;", + + " Zone,", + " Zone_TES, !- Name", + " 0.0000, !- Direction of Relative North {deg}", + " 10.0, !- X Origin {m}", + " 10.0, !- Y Origin {m}", + " 0.0, !- Z Origin {m}", + " 1, !- Type", + " 1.00, !- Multiplier", + " 3.00, !- Ceiling Height {m}", + " 300.0, !- Volume {m3}", + " 100.0; !- Floor Area {m2}", + + " Schedule:Compact,", + " ALWAYS_ON, !- Name", + " Fraction, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,1.0; !- Field 3", + + " WaterHeater:Stratified,", + " Stratified tank with desuperheater, !- Name", + " Domestic Hot Water, !- End-Use Subcategory", + " 0.170343530278643, !- Tank Volume {m3}", + " 1.2192, !- Tank Height {m}", + " VerticalCylinder, !- Tank Shape", + " , !- Tank Perimeter {m}", + " 90, !- Maximum Temperature Limit {C}", + " MasterSlave, !- Heater Priority Control", + " WH Setpoint Temp, !- Heater 1 Setpoint Temperature Schedule Name", + " 2, !- Heater 1 Deadband Temperature Difference {deltaC}", + " 4498.64092714361, !- Heater 1 Capacity {W}", + " 0.89408, !- Heater 1 Height {m}", + " WH Setpoint Temp, !- Heater 2 Setpoint Temperature Schedule Name", + " 2, !- Heater 2 Deadband Temperature Difference {deltaC}", + " 4498.64092714361, !- Heater 2 Capacity {W}", + " 0.16256, !- Heater 2 Height {m}", + " Electricity, !- Heater Fuel Type", + " 1, !- Heater Thermal Efficiency", + " 0, !- Off Cycle Parasitic Fuel Consumption Rate {W}", + " Electricity, !- Off Cycle Parasitic Fuel Type", + " 0, !- Off Cycle Parasitic Heat Fraction to Tank", + " 0, !- Off Cycle Parasitic Height {m}", + " 0, !- On Cycle Parasitic Fuel Consumption Rate {W}", + " Electricity, !- On Cycle Parasitic Fuel Type", + " 0, !- On Cycle Parasitic Heat Fraction to Tank", + " 0, !- On Cycle Parasitic Height {m}", + " Schedule, !- Ambient Temperature Indicator", + " Ambient Temp Schedule, !- Ambient Temperature Schedule Name", + " , !- Ambient Temperature Zone Name", + " , !- Ambient Temperature Outdoor Air Node Name", + " 0.614007341138612, !- Uniform Skin Loss Coefficient per Unit Area to Ambient Temperature {W/m2-K}", + " 1, !- Skin Loss Fraction to Zone", + " 0, !- Off Cycle Flue Loss Coefficient to Ambient Temperature {W/K}", + " 1, !- Off Cycle Flue Loss Fraction to Zone", + " , !- Peak Use Flow Rate {m3/s}", + " ALWAYS_ON, !- Use Flow Rate Fraction Schedule Name", + " , !- Cold Water Supply Temperature Schedule Name", + " , !- Use Side Inlet Node Name", + " , !- Use Side Outlet Node Name", + " , !- Use Side Effectiveness", + " , !- Use Side Inlet Height {m}", + " , !- Use Side Outlet Height {m}", + " DesuperheaterOut, !- Source Side Inlet Node Name", + " DesuperheaterIn, !- Source Side Outlet Node Name", + " 1, !- Source Side Effectiveness", + " , !- Source Side Inlet Height {m}", + " , !- Source Side Outlet Height {m}", + " Fixed, !- Inlet Mode", + " 0.00283433494640006, !- Use Side Design Flow Rate {m3/s}", + " 0, !- Source Side Design Flow Rate {m3/s}", + " 1.5, !- Indirect Water Heating Recovery Time {hr}", + " 12, !- Number of Nodes", + ";", + + "Coil:WaterHeating:Desuperheater,", + " Desuperheater, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " Desuperheater-Schedule, !- Setpoint Temperature Schedule Name", + " 5, !- Dead Band Temperature Difference {deltaC}", + " 0.25, !- Rated Heat Reclaim Recovery Efficiency", + " 50, !- Rated Inlet Water Temperature {C}", + " 35, !- Rated Outdoor Air Temperature {C}", + " 60, !- Maximum Inlet Water Temperature for Heat Reclaim {C}", + " , !- Heat Reclaim Efficiency Function of Temperature Curve Name", + " DesuperheaterIn, !- Water Inlet Node Name", + " DesuperheaterOut, !- Water Outlet Node Name", + " WaterHeater:Stratified, !- Tank Object Type", + " Stratified tank with desuperheater, !- Tank Name", + " Coil:Cooling:WaterToAirHeatPump:EquationFit, !- Heating Source Object Type", + " GSHP_COIL1, !- Heating Source Name", + " 0.0001, !- Water Flow Rate {m3/s}", + " , !- Water Pump Power {W}", + " 0.2; !- Fraction of Pump Heat to Water", + + + "Coil:Cooling:WaterToAirHeatPump:EquationFit,", + " GSHP_COIL1, !- Name", + " Node 42, !- Water Inlet Node Name", + " Node 43, !- Water Outlet Node Name", + " res gshp clg unitary system Fan - Cooling Coil Node, !- Air Inlet Node Name", + " Node 45, !- Air Outlet Node Name", + " 0.951796450842996, !- Rated Air Flow Rate {m3/s}", + " 0.000567811767595478, !- Rated Water Flow Rate {m3/s}", + " 14067.4113682534, !- Gross Rated Total Cooling Capacity {W}", + " 10297.3451215615, !- Gross Rated Sensible Cooling Capacity {W}", + " 5.3555091458258, !- Gross Rated Cooling COP", + " -3.9160645386, !- Total Cooling Capacity Coefficient 1", + " 7.042944024, !- Total Cooling Capacity Coefficient 2", + " -2.270589372, !- Total Cooling Capacity Coefficient 3", + " 0, !- Total Cooling Capacity Coefficient 4", + " 0, !- Total Cooling Capacity Coefficient 5", + " 26.7839398084, !- Sensible Cooling Capacity Coefficient 1", + " 0, !- Sensible Cooling Capacity Coefficient 2", + " -23.832385974, !- Sensible Cooling Capacity Coefficient 3", + " -1.115743914, !- Sensible Cooling Capacity Coefficient 4", + " 0, !- Sensible Cooling Capacity Coefficient 5", + " 0, !- Sensible Cooling Capacity Coefficient 6", + " -6.2337364523, !- Cooling Power Consumption Coefficient 1", + " 1.610096238, !- Cooling Power Consumption Coefficient 2", + " 5.317076448, !- Cooling Power Consumption Coefficient 3", + " 0, !- Cooling Power Consumption Coefficient 4", + " 0, !- Cooling Power Consumption Coefficient 5", + " 1000, !- Nominal Time for Condensate Removal to Begin {s}", + " 1.5; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", + }); + + ASSERT_TRUE(process_idf(idf_objects)); + + bool ErrorsFound = false; + HeatBalanceManager::GetZoneData(ErrorsFound); // read zone data + EXPECT_FALSE(ErrorsFound); + + DataGlobals::NumOfTimeStepInHour = 1; // must initialize this to get schedules initialized + DataGlobals::MinutesPerTimeStep = 60; // must initialize this to get schedules initialized + ScheduleManager::ProcessScheduleInput(); + ScheduleManager::ScheduleInputProcessed = true; + + DataGlobals::TimeStep = 1; + DataGlobals::HourOfDay = 1; + DataEnvironment::Month = 7; + DataEnvironment::DayOfMonth = 21; + DataGlobals::HourOfDay = 1; + DataEnvironment::DSTIndicator = 0; + DataEnvironment::DayOfWeek = 2; + DataEnvironment::HolidayIndex = 0; + DataEnvironment::DayOfYear_Schedule = General::OrdinalDay(DataEnvironment::Month, DataEnvironment::DayOfMonth, 1); + ScheduleManager::UpdateScheduleValues(); + DataPlant::TotNumLoops=1; + int TankNum(1); + int HPNum(1); + int CyclingScheme(1); + int LoopNum(1); + int DemandSide(1); + int SupplySide(2); + int BranchNum(1); + int CompNum(1); + Real64 PLR(0.5); + ErrorsFound = false; + EXPECT_FALSE(WaterThermalTanks::GetWaterThermalTankInputData(ErrorsFound)); + //Test if the new data Structure for water to air heat pump coils successfully initialized + EXPECT_EQ(DataHeatBalance::HeatReclaimSimple_WAHPCoil(1).Name, "GSHP_COIL1"); + EXPECT_EQ(DataHeatBalance::HeatReclaimSimple_WAHPCoil(1).SourceType, "Coil:Cooling:WaterToAirHeatPump:EquationFit"); + //Air node + Node(5).MassFlowRate = 0.005; + Node(5).Temp = 28.0; + Node(5).HumRat = 0.2 ; + //Water node + Node(3).Temp = 15.0; + Node(3).MassFlowRate = 0.05; + //Plant loop must be initialized + SimpleWatertoAirHP(HPNum).LoopNum = 1; + PlantLoop.allocate(LoopNum); + PlantLoop(SimpleWatertoAirHP(HPNum).LoopNum).FluidIndex = 1; + PlantLoop(LoopNum).LoopSide.allocate(DemandSide); + PlantLoop(LoopNum).LoopSide.allocate(SupplySide); + auto &SupplySideloop(PlantLoop(LoopNum).LoopSide(SupplySide)); + SupplySideloop.TotalBranches = 1; + SupplySideloop.Branch.allocate(BranchNum); + auto &CoilBranch(SupplySideloop.Branch(BranchNum)); + CoilBranch.TotalComponents = 1; + CoilBranch.Comp.allocate(CompNum); + CoilBranch.Comp(CompNum).TypeOf_Num = 67; + CoilBranch.Comp(CompNum).Name = "GSHP_COIL1"; + + DataGlobals::BeginEnvrnFlag = true; + WaterToAirHeatPumpSimple::InitSimpleWatertoAirHP(HPNum, 10.0, 1.0, 0.0, 10.0, 10.0, CyclingScheme, 1.0, 1); + WaterToAirHeatPumpSimple::CalcHPCoolingSimple(HPNum, CyclingScheme, 1.0, 10.0, 10.0, 1, PLR, 1.0); + //Coil source side heat successfully passed to HeatReclaimSimple_WAHPCoil(1).AvailCapacity + EXPECT_EQ(DataHeatBalance::HeatReclaimSimple_WAHPCoil(1).AvailCapacity, SimpleWatertoAirHP(1).QSource); + //Reclaimed heat successfully returned to reflect the plant impact + DataHeatBalance::HeatReclaimSimple_WAHPCoil(1).WaterHeatingDesuperheaterReclaimedHeat(1) = 100.0; + WaterToAirHeatPumpSimple::CalcHPCoolingSimple(HPNum, CyclingScheme, 1.0, 10.0, 10.0, 1, PLR, 1.0); + EXPECT_EQ(SimpleWatertoAirHP(1).QSource, DataHeatBalance::HeatReclaimSimple_WAHPCoil(1).AvailCapacity - 100.0); + + WaterThermalTanks::WaterThermalTankData &Tank = WaterThermalTank(TankNum); + WaterThermalTanks::WaterHeaterDesuperheaterData &Desuperheater = WaterHeaterDesuperheater(Tank.DesuperheaterNum); + + for (int i = 1; i <= Tank.Nodes; ++i) { + auto &node = Tank.Node(i); + node.SavedTemp = 39.0; + node.Temp = 39.0; + } + + Tank.TankTemp = 39.0; + Tank.AmbientTemp = 20.0; + Tank.UseInletTemp = 10.0; + Tank.UseMassFlowRate = 0.003; + Tank.SourceOutletTemp = 39.0; + Tank.SourceMassFlowRate = 0.003; + Tank.TimeElapsed = 0.0; + Desuperheater.SetPointTemp = 60.0; + Desuperheater.Mode = 1; + Node(Desuperheater.WaterInletNode).Temp = Tank.SourceOutletTemp; + + HourOfDay = 0; + TimeStep = 1; + TimeStepZone = 1. / 60.; + TimeStepSys = TimeStepZone; + SysTimeElapsed = 0.0; + DataHeatBalance::HeatReclaimSimple_WAHPCoil(1).AvailCapacity = 1000; + WaterToAirHeatPumpSimple::SimpleWatertoAirHP(1).PartLoadRatio = 0.0; + WaterThermalTanks::InitWaterThermalTank(TankNum, true); + Tank.SetPointTemp = 45; + Tank.SetPointTemp2 = 45; + WaterThermalTanks::CalcDesuperheaterWaterHeater(TankNum, true); + // If there's no demand in water thermal tank, no heat is reclaimed + EXPECT_EQ(Desuperheater.HeaterRate, 0); + + for (int i = 1; i <= Tank.Nodes; ++i) { + auto &node = Tank.Node(i); + node.SavedTemp = 39; + node.Temp = 39; + } + + Tank.SavedTankTemp = 39.0; + Tank.SavedSourceOutletTemp = 39.0; + Tank.SourceMassFlowRate = 0.003; + Node(Desuperheater.WaterInletNode).Temp = Tank.SavedSourceOutletTemp; + + WaterToAirHeatPumpSimple::SimpleWatertoAirHP(1).PartLoadRatio = 0.8; + WaterThermalTanks::InitWaterThermalTank(TankNum, false); + Desuperheater.SaveMode = 1; + WaterThermalTanks::CalcDesuperheaterWaterHeater(TankNum, false); + //The HVAC part load ratio is successfully passed to waterthermaltank desuperheater data struct + EXPECT_EQ(Desuperheater.DXSysPLR, 0.8); + //The heater rate is correctly calculated + EXPECT_EQ(Desuperheater.HeaterRate, 1000 * 0.25 / Desuperheater.DXSysPLR * Desuperheater.DesuperheaterPLR); + //The source rate calculated in stratified tank calculation function is near the heater rate calcualted in desuperheater function + EXPECT_NEAR(Tank.SourceRate, Desuperheater.HeaterRate, Tank.SourceRate * 0.05); + +} + +TEST_F(EnergyPlusFixture, Desuperheater_Multispeed_Coil_Test) +{ + using DataLoopNode::Node; + using DataGlobals::HourOfDay; + using DataGlobals::TimeStep; + using DataGlobals::TimeStepZone; + using DataHVACGlobals::SysTimeElapsed; + using DataHVACGlobals::TimeStepSys; + using WaterThermalTanks::WaterThermalTank; + using WaterThermalTanks::WaterHeaterDesuperheater; + using DXCoils::DXCoil; + + std::string const idf_objects = delimited_string({ + "Schedule:Constant, Hot Water Demand Schedule, , 1.0;", + "Schedule:Constant, Ambient Temp Schedule, , 20.0;", + "Schedule:Constant, Inlet Water Temperature, , 10.0;", + "Schedule:Constant, Desuperheater-Schedule, , 60.0;", + "Schedule:Constant, WH Setpoint Temp, , 45.0;", + + " Zone,", + " Zone_TES, !- Name", + " 0.0000, !- Direction of Relative North {deg}", + " 10.0, !- X Origin {m}", + " 10.0, !- Y Origin {m}", + " 0.0, !- Z Origin {m}", + " 1, !- Type", + " 1.00, !- Multiplier", + " 3.00, !- Ceiling Height {m}", + " 300.0, !- Volume {m3}", + " 100.0; !- Floor Area {m2}", + + " Schedule:Compact,", + " ALWAYS_ON, !- Name", + " Fraction, !- Schedule Type Limits Name", + " Through: 12/31, !- Field 1", + " For: AllDays, !- Field 2", + " Until: 24:00,1.0; !- Field 3", + + "WaterHeater:Mixed,", + " Mixed tank with desuperheater, !- Name", + " 0.136274824222915, !- Tank Volume {m3}", + " WH Setpoint Temp, !- Setpoint Temperature Schedule Name", + " 2, !- Deadband Temperature Difference {deltaC}", + " 99, !- Maximum Temperature Limit {C}", + " Cycle, !- Heater Control Type", + " 5500.06477392209, !- Heater Maximum Capacity {W}", + " 0, !- Heater Minimum Capacity {W}", + " 0, !- Heater Ignition Minimum Flow Rate {m3/s}", + " 0, !- Heater Ignition Delay {s}", + " Electricity, !- Heater Fuel Type", + " 0.8, !- Heater Thermal Efficiency", + " , !- Part Load Factor Curve Name", + " 0, !- Off Cycle Parasitic Fuel Consumption Rate {W}", + " Electricity, !- Off Cycle Parasitic Fuel Type", + " 0, !- Off Cycle Parasitic Heat Fraction to Tank", + " 0, !- On Cycle Parasitic Fuel Consumption Rate {W}", + " Electricity, !- On Cycle Parasitic Fuel Type", + " 0, !- On Cycle Parasitic Heat Fraction to Tank", + " Schedule, !- Ambient Temperature Indicator", + " Ambient Temp Schedule, !- Ambient Temperature Schedule Name", + " , !- Ambient Temperature Zone Name", + " , !- Ambient Temperature Outdoor Air Node Name", + " 0.704227539803499, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}", + " 1, !- Off Cycle Loss Fraction to Zone", + " 0.704227539803499, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}", + " 1, !- On Cycle Loss Fraction to Zone", + " , !- Peak Use Flow Rate {m3/s}", + " ALWAYS_ON, !- Use Flow Rate Fraction Schedule Name", + " , !- Cold Water Supply Temperature Schedule Name", + " , !- Use Side Inlet Node Name", + " , !- Use Side Outlet Node Name", + " 1, !- Use Side Effectiveness", + " DesuperheaterOut, !- Source Side Inlet Node Name", + " DesuperheaterIn, !- Source Side Outlet Node Name", + " 1, !- Source Side Effectiveness", + " 0.00283433494640006, !- Use Side Design Flow Rate {m3/s}", + " , !- Source Side Design Flow Rate {m3/s}", + " 1.5, !- Indirect Water Heating Recovery Time {hr}", + " IndirectHeatPrimarySetpoint, !- Source Side Flow Control Mode", + " , !- Indirect Alternate Setpoint Temperature Schedule Name", + " General; !- End-Use Subcategory", + + "Coil:WaterHeating:Desuperheater,", + " Desuperheater, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " Desuperheater-Schedule, !- Setpoint Temperature Schedule Name", + " 5, !- Dead Band Temperature Difference {deltaC}", + " 0.25, !- Rated Heat Reclaim Recovery Efficiency", + " 50, !- Rated Inlet Water Temperature {C}", + " 35, !- Rated Outdoor Air Temperature {C}", + " 60, !- Maximum Inlet Water Temperature for Heat Reclaim {C}", + " , !- Heat Reclaim Efficiency Function of Temperature Curve Name", + " DesuperheaterIn, !- Water Inlet Node Name", + " DesuperheaterOut, !- Water Outlet Node Name", + " WaterHeater:Mixed, !- Tank Object Type", + " Mixed tank with desuperheater, !- Tank Name", + " Coil:Cooling:DX:MultiSpeed, !- Heating Source Object Type", + " MultiSpeed_COIL, !- Heating Source Name", + " 0.0001, !- Water Flow Rate {m3/s}", + " , !- Water Pump Power {W}", + " 0.2; !- Fraction of Pump Heat to Water", + + + "Coil:Cooling:DX:MultiSpeed,", + " MultiSpeed_COIL, !- Name", + " ALWAYS_ON, !- Availability Schedule Name", + " res ac unitary system Fan - Cooling Coil Node, !- Air Inlet Node Name", + " Node 17, !- Air Outlet Node Name", + " , !- Condenser Air Inlet Node Name", + " AirCooled, !- Condenser Type", + " , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}", + " , !- Supply Water Storage Tank Name", + " , !- Condensate Collection Water Storage Tank Name", + " No, !- Apply Part Load Fraction to Speeds Greater than 1", + " No, !- Apply Latent Degradation to Speeds Greater than 1", + " 0, !- Crankcase Heater Capacity {W}", + " 12.7777777777778, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}", + " 0, !- Basin Heater Capacity {W/K}", + " 2, !- Basin Heater Setpoint Temperature {C}", + " , !- Basin Heater Operating Schedule Name", + " Electricity, !- Fuel Type", + " 2, !- Number of Speeds", + " 10128.5361851424, !- Speed Gross Rated Total Cooling Capacity 1 {W}", + " 0.714816560872937, !- Speed Gross Rated Sensible Heat Ratio 1", + " 4.84033093564236, !- Speed Gross Rated Cooling COP 1 {W/W}", + " 0.576666917476216, !- Speed Rated Air Flow Rate 1 {m3/s}", + " 773.3, !- Speed Rated Evaporator Fan Power Per Volume Flow Rate 1 {W/(m3/s)}", + " Cool-Cap-fT1, !- Speed Total Cooling Capacity Function of Temperature Curve Name 1", + " Cool-Cap-fFF1, !- Speed Total Cooling Capacity Function of Flow Fraction Curve Name 1", + " Cool-EIR-fT1, !- Speed Energy Input Ratio Function of Temperature Curve Name 1", + " Cool-EIR-fFF1, !- Speed Energy Input Ratio Function of Flow Fraction Curve Name 1", + " Cool-PLF-fPLR1, !- Speed Part Load Fraction Correlation Curve Name 1", + " 1000, !- Speed Nominal Time for Condensate Removal to Begin 1 {s}", + " 1.5, !- Speed Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity 1 {dimensionless}", + " 3, !- Speed Maximum Cycling Rate 1 {cycles/hr}", + " 45, !- Speed Latent Capacity Time Constant 1 {s}", + " 0.2, !- Speed Rated Waste Heat Fraction of Power Input 1 {dimensionless}", + " ConstantBiquadratic, !- Speed Waste Heat Function of Temperature Curve Name 1", + " 0.9, !- Speed Evaporative Condenser Effectiveness 1 {dimensionless}", + " 0.05, !- Speed Evaporative Condenser Air Flow Rate 1 {m3/s}", + " 50, !- Speed Rated Evaporative Condenser Pump Power Consumption 1 {W}", + " 14067.4113682534, !- Speed Gross Rated Total Cooling Capacity 2 {W}", + " 0.733764546660947, !- Speed Gross Rated Sensible Heat Ratio 2", + " 4.34646555035634, !- Speed Gross Rated Cooling COP 2 {W/W}", + " 0.670542927297926, !- Speed Rated Air Flow Rate 2 {m3/s}", + " 773.3, !- Speed Rated Evaporator Fan Power Per Volume Flow Rate 2 {W/(m3/s)}", + " Cool-Cap-fT2, !- Speed Total Cooling Capacity Function of Temperature Curve Name 2", + " Cool-Cap-fFF2, !- Speed Total Cooling Capacity Function of Flow Fraction Curve Name 2", + " Cool-EIR-fT2, !- Speed Energy Input Ratio Function of Temperature Curve Name 2", + " Cool-EIR-fFF2, !- Speed Energy Input Ratio Function of Flow Fraction Curve Name 2", + " Cool-PLF-fPLR2, !- Speed Part Load Fraction Correlation Curve Name 2", + " 1000, !- Speed Nominal Time for Condensate Removal to Begin 2 {s}", + " 1.5, !- Speed Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity 2 {dimensionless}", + " 3, !- Speed Maximum Cycling Rate 2 {cycles/hr}", + " 45, !- Speed Latent Capacity Time Constant 2 {s}", + " 0.2, !- Speed Rated Waste Heat Fraction of Power Input 2 {dimensionless}", + " ConstantBiquadratic, !- Speed Waste Heat Function of Temperature Curve Name 2", + " 0.9, !- Speed Evaporative Condenser Effectiveness 2 {dimensionless}", + " 0.3, !- Speed Evaporative Condenser Air Flow Rate 2 {m3/s}", + " 100; !- Speed Rated Evaporative Condenser Pump Power Consumption 2 {W}", + + "Curve:Biquadratic,", + " Cool-Cap-fT1, !- Name", + " 1.66457706, !- Coefficient1 Constant", + " -0.0803905902, !- Coefficient2 x", + " 0.00330252552, !- Coefficient3 x**2", + " 0.001238751, !- Coefficient4 y", + " -3.08772e-005, !- Coefficient5 y**2", + " -0.00052377192, !- Coefficient6 x*y", + " 13.88, !- Minimum Value of x {BasedOnField A2}", + " 23.88, !- Maximum Value of x {BasedOnField A2}", + " 18.33, !- Minimum Value of y {BasedOnField A3}", + " 51.66; !- Maximum Value of y {BasedOnField A3}", + + "Curve:Quadratic,", + " Cool-Cap-fFF1, !- Name", + " 0.65673024, !- Coefficient1 Constant", + " 0.516470835, !- Coefficient2 x", + " -0.172887149, !- Coefficient3 x**2", + " 0, !- Minimum Value of x {BasedOnField A2}", + " 2, !- Maximum Value of x {BasedOnField A2}", + " 0, !- Minimum Curve Output {BasedOnField A3}", + " 2; !- Maximum Curve Output {BasedOnField A3}", + + "Curve:Biquadratic,", + " Cool-EIR-fT1, !- Name", + " -0.4273762, !- Coefficient1 Constant", + " 0.1419060744, !- Coefficient2 x", + " -0.0041237262, !- Coefficient3 x**2", + " -0.0140625414, !- Coefficient4 y", + " 0.00083109888, !- Coefficient5 y**2", + " -0.00043266636, !- Coefficient6 x*y", + " 13.88, !- Minimum Value of x {BasedOnField A2}", + " 23.88, !- Maximum Value of x {BasedOnField A2}", + " 18.33, !- Minimum Value of y {BasedOnField A3}", + " 51.66; !- Maximum Value of y {BasedOnField A3}", + + "Curve:Quadratic,", + " Cool-EIR-fFF1, !- Name", + " 1.562945114, !- Coefficient1 Constant", + " -0.791859997, !- Coefficient2 x", + " 0.230030877, !- Coefficient3 x**2", + " 0, !- Minimum Value of x {BasedOnField A2}", + " 2, !- Maximum Value of x {BasedOnField A2}", + " 0, !- Minimum Curve Output {BasedOnField A3}", + " 2; !- Maximum Curve Output {BasedOnField A3}", + + "Curve:Quadratic,", + " Cool-PLF-fPLR1, !- Name", + " 0.89, !- Coefficient1 Constant", + " 0.11, !- Coefficient2 x", + " 0, !- Coefficient3 x**2", + " 0, !- Minimum Value of x {BasedOnField A2}", + " 1, !- Maximum Value of x {BasedOnField A2}", + " 0.7, !- Minimum Curve Output {BasedOnField A3}", + " 1; !- Maximum Curve Output {BasedOnField A3}", + + " Curve:Biquadratic,", + " Cool-Cap-fT2, !- Name", + " 1.367878711, !- Coefficient1 Constant", + " -0.0625665258, !- Coefficient2 x", + " 0.00279689112, !- Coefficient3 x**2", + " 0.0050409684, !- Coefficient4 y", + " -6.804e-005, !- Coefficient5 y**2", + " -0.00045420264, !- Coefficient6 x*y", + " 13.88, !- Minimum Value of x {BasedOnField A2}", + " 23.88, !- Maximum Value of x {BasedOnField A2}", + " 18.33, !- Minimum Value of y {BasedOnField A3}", + " 51.66; !- Maximum Value of y {BasedOnField A3}", + + "Curve:Quadratic,", + " Cool-Cap-fFF2, !- Name", + " 0.690334551, !- Coefficient1 Constant", + " 0.464383753, !- Coefficient2 x", + " -0.154507638, !- Coefficient3 x**2", + " 0, !- Minimum Value of x {BasedOnField A2}", + " 2, !- Maximum Value of x {BasedOnField A2}", + " 0, !- Minimum Curve Output {BasedOnField A3}", + " 2; !- Maximum Curve Output {BasedOnField A3}", + + "Curve:Biquadratic,", + " Cool-EIR-fT2, !- Name", + " 0.0423235170000003, !- Coefficient1 Constant", + " 0.0789200082, !- Coefficient2 x", + " -0.002376054, !- Coefficient3 x**2", + " -0.0030359106, !- Coefficient4 y", + " 0.00053492076, !- Coefficient5 y**2", + " -0.000323028, !- Coefficient6 x*y", + " 13.88, !- Minimum Value of x {BasedOnField A2}", + " 23.88, !- Maximum Value of x {BasedOnField A2}", + " 18.33, !- Minimum Value of y {BasedOnField A3}", + " 51.66; !- Maximum Value of y {BasedOnField A3}", + + "Curve:Quadratic,", + " Cool-EIR-fFF2, !- Name", + " 1.31565404, !- Coefficient1 Constant", + " -0.482467162, !- Coefficient2 x", + " 0.166239001, !- Coefficient3 x**2", + " 0, !- Minimum Value of x {BasedOnField A2}", + " 2, !- Maximum Value of x {BasedOnField A2}", + " 0, !- Minimum Curve Output {BasedOnField A3}", + " 2; !- Maximum Curve Output {BasedOnField A3}", + + "Curve:Quadratic,", + " Cool-PLF-fPLR2, !- Name", + " 0.89, !- Coefficient1 Constant", + " 0.11, !- Coefficient2 x", + " 0, !- Coefficient3 x**2", + " 0, !- Minimum Value of x {BasedOnField A2}", + " 1, !- Maximum Value of x {BasedOnField A2}", + " 0.7, !- Minimum Curve Output {BasedOnField A3}", + " 1; !- Maximum Curve Output {BasedOnField A3}", + }); + + ASSERT_TRUE(process_idf(idf_objects)); + + bool ErrorsFound = false; + HeatBalanceManager::GetZoneData(ErrorsFound); // read zone data + EXPECT_FALSE(ErrorsFound); + + DataGlobals::NumOfTimeStepInHour = 1; // must initialize this to get schedules initialized + DataGlobals::MinutesPerTimeStep = 60; // must initialize this to get schedules initialized + ScheduleManager::ProcessScheduleInput(); + ScheduleManager::ScheduleInputProcessed = true; + + DataGlobals::TimeStep = 1; + DataGlobals::HourOfDay = 1; + DataEnvironment::Month = 7; + DataEnvironment::DayOfMonth = 21; + DataGlobals::HourOfDay = 1; + DataEnvironment::DSTIndicator = 0; + DataEnvironment::DayOfWeek = 2; + DataEnvironment::HolidayIndex = 0; + DataEnvironment::DayOfYear_Schedule = General::OrdinalDay(DataEnvironment::Month, DataEnvironment::DayOfMonth, 1); + ScheduleManager::UpdateScheduleValues(); + + int TankNum(1); + int DXNum(1); + + ErrorsFound = false; + EXPECT_FALSE(WaterThermalTanks::GetWaterThermalTankInputData(ErrorsFound)); + //Source name and type successfully passed to DataHeatBalance::HeatReclaimDXCoil data struct + EXPECT_EQ(DataHeatBalance::HeatReclaimDXCoil(1).Name, "MULTISPEED_COIL"); + EXPECT_EQ(DataHeatBalance::HeatReclaimDXCoil(1).SourceType, "Coil:Cooling:DX:MultiSpeed"); + + //Initiate conditions for multispeed coil calculation + DataEnvironment::OutDryBulbTemp = 32.0; + DataEnvironment::OutHumRat = 0.02; + DataEnvironment::OutBaroPress = 101325.0; + DataEnvironment::OutWetBulbTemp = Psychrometrics::PsyTwbFnTdbWPb(32.0, 0.02, 101325.0); + + DXCoil(1).MSRatedAirMassFlowRate(1) = DXCoil(1).MSRatedAirVolFlowRate(1) * 1.2; + DXCoil(1).MSRatedAirMassFlowRate(2) = DXCoil(1).MSRatedAirVolFlowRate(2) * 1.2; + DXCoil(1).InletAirMassFlowRate = DXCoil(1).MSRatedAirMassFlowRate(2); + DataHVACGlobals::MSHPMassFlowRateLow = DXCoil(1).MSRatedAirMassFlowRate(1); + DataHVACGlobals::MSHPMassFlowRateHigh = DXCoil(1).MSRatedAirMassFlowRate(2); + + DXCoil(1).InletAirTemp = 27.0; + DXCoil(1).InletAirHumRat = 0.005; + DXCoil(1).InletAirEnthalpy = Psychrometrics::PsyHFnTdbW(27.0, 0.005); + DXCoil(1).SchedPtr = 1; + ScheduleManager::Schedule(DXCoil(1).SchedPtr).CurrentValue = 1.0; // enable the VRF condenser + DXCoil(1).MSRatedCBF(1) = 0.1262; + DXCoil(1).MSRatedCBF(2) = 0.0408; + + //Calculate multispeed DX cooling coils + DXCoils::CalcMultiSpeedDXCoilCooling(DXNum, 1, 1, 2, 1, 1, 1); + + //Source availably heat successfully passed to DataHeatBalance::HeatReclaimDXCoil data struct + EXPECT_EQ(DataHeatBalance::HeatReclaimDXCoil(DXNum).AvailCapacity, DXCoil(DXNum).TotalCoolingEnergyRate + DXCoil(DXNum).ElecCoolingPower); + + //Now move to the water thermal tank calculation + WaterThermalTanks::WaterThermalTankData &Tank = WaterThermalTank(TankNum); + WaterThermalTanks::WaterHeaterDesuperheaterData &Desuperheater = WaterHeaterDesuperheater(Tank.DesuperheaterNum); + + //Inititate tank conditions + HourOfDay = 0; + TimeStep = 1; + TimeStepZone = 1; + TimeStepSys = TimeStepZone; + SysTimeElapsed = 0.0; + Tank.TankTemp = 45.0; + Tank.AmbientTemp = 20.0; + Tank.UseInletTemp = 10.0; + Tank.UseMassFlowRate = 0.00001; + Tank.SourceOutletTemp = 45.0; + Node(Desuperheater.WaterInletNode).Temp = Tank.SourceOutletTemp; + Tank.SourceMassFlowRate = 0.003; + Tank.TimeElapsed = 0.0; + Desuperheater.SetPointTemp = 50.0; + Desuperheater.Mode = 1; + + Tank.Mode = 0; + Tank.SetPointTemp = 40.0; + Desuperheater.FirstTimeThroughFlag = true; + WaterThermalTanks::CalcDesuperheaterWaterHeater(TankNum,true); + + EXPECT_EQ(Desuperheater.DXSysPLR, DXCoil(DXNum).PartLoadRatio); + //if desuperheater was not on through all the timestep, part load ratio is searched to meet load demand + EXPECT_GE(Desuperheater.DXSysPLR, Desuperheater.DesuperheaterPLR); + //total available capacity is substrated by used desuperheater reclaim heat + EXPECT_EQ(DXCoil(DXNum).TotalCoolingEnergyRate + DXCoil(DXNum).ElecCoolingPower, DataHeatBalance::HeatReclaimDXCoil(DXNum).AvailCapacity + Desuperheater.HeaterRate); + //Desuperheater heater rate is correctly calculated + EXPECT_EQ(Desuperheater.HeaterRate, (DataHeatBalance::HeatReclaimDXCoil(DXNum).AvailCapacity + Desuperheater.HeaterRate) / Desuperheater.DXSysPLR * Desuperheater.DesuperheaterPLR * 0.25); + + //Test the float mode + Tank.SavedTankTemp = 61.0; + Tank.SavedSourceOutletTemp = 61.0; + Desuperheater.SaveMode = 0; + Node(Desuperheater.WaterInletNode).Temp = Tank.SavedSourceOutletTemp; + Tank.SourceMassFlowRate = 0.003; + DXCoils::CalcMultiSpeedDXCoilCooling(DXNum, 1, 1, 2, 1, 1, 1); + WaterThermalTanks::CalcDesuperheaterWaterHeater(TankNum, false); + EXPECT_EQ(Desuperheater.Mode, 0); + EXPECT_EQ(Desuperheater.HeaterRate, 0.0); + EXPECT_EQ(Tank.SourceRate, 0.0); +} diff --git a/tst/EnergyPlus/unit/WindowAC.unit.cc b/tst/EnergyPlus/unit/WindowAC.unit.cc index e0951472bc2..51e91364dc3 100644 --- a/tst/EnergyPlus/unit/WindowAC.unit.cc +++ b/tst/EnergyPlus/unit/WindowAC.unit.cc @@ -437,7 +437,7 @@ TEST_F(EnergyPlusFixture, WindowAC_VStest1) bool errorsFound(false); HeatBalanceManager::GetProjectControlData(errorsFound); // read project control data EXPECT_FALSE(errorsFound); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); DataGlobals::DDOnlySimulation = true; SimulationManager::GetProjectData(); diff --git a/tst/EnergyPlus/unit/WindowEquivalentLayer.unit.cc b/tst/EnergyPlus/unit/WindowEquivalentLayer.unit.cc index 6c1833fafac..5aafb8d6304 100644 --- a/tst/EnergyPlus/unit/WindowEquivalentLayer.unit.cc +++ b/tst/EnergyPlus/unit/WindowEquivalentLayer.unit.cc @@ -524,7 +524,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBMaximizeBeamSolar) }); ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); // + // OutputProcessor::TimeValue.allocate(2); // SimulationManager::ManageSimulation(); // re-set the hour of the day to mide day DataGlobals::TimeStep = 1; @@ -881,7 +881,7 @@ TEST_F(EnergyPlusFixture, WindowEquivalentLayer_VBBlockBeamSolar) }); ASSERT_TRUE(process_idf(idf_objects)); - OutputProcessor::TimeValue.allocate(2); + // OutputProcessor::TimeValue.allocate(2); SimulationManager::ManageSimulation(); // re-set the hour of the day to noon DataGlobals::TimeStep = 1; diff --git a/tst/EnergyPlus/unit/WindowManager.unit.cc b/tst/EnergyPlus/unit/WindowManager.unit.cc index 1679c6d46ab..664212b9e90 100644 --- a/tst/EnergyPlus/unit/WindowManager.unit.cc +++ b/tst/EnergyPlus/unit/WindowManager.unit.cc @@ -477,6 +477,9 @@ TEST_F(EnergyPlusFixture, WindowManager_RefAirTempTest) DataSurfaces::Surface(1).TAirRef = DataSurfaces::ZoneMeanAirTemp; DataSurfaces::Surface(2).TAirRef = DataSurfaces::ZoneSupplyAirTemp; DataSurfaces::Surface(3).TAirRef = DataSurfaces::AdjacentAirTemp; + DataSurfaces::Surface(1).SolarEnclIndex = 1; + DataSurfaces::Surface(2).SolarEnclIndex = 1; + DataSurfaces::Surface(3).SolarEnclIndex = 1; DataHeatBalSurface::TempSurfInTmp(1) = 15.0; DataHeatBalSurface::TempSurfInTmp(2) = 20.0; DataHeatBalSurface::TempSurfInTmp(3) = 25.0; @@ -882,611 +885,723 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) " FrontReflectanceData, !- Window Glass Spectral and Incident Angle Front Reflectance Data Set Table Name", " BackRefelectanceData; !- Window Glass Spectral and Incident Angle Back Reflectance Data Set Table Name", - "Table:TwoIndependentVariables,", + "Table:IndependentVariable,", + " Incidence Angles, !- Name", + " Linear, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0, !- Minimum Value", + " 90, !- Maximum Value", + " , !- Normalization Reference Value", + " , !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0, !- Value 1", + " 90;", + + "Table:IndependentVariable,", + " Wavelengths, !- Name", + " Linear, !- Interpolation Method", + " Constant, !- Extrapolation Method", + " 0.30, !- Minimum Value", + " 2.50, !- Maximum Value", + " , !- Normalization Reference Value", + " , !- Unit Type", + " , !- External File Name", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.300, !- Value 1", + " 0.310,", + " 0.320,", + " 0.330,", + " 0.340,", + " 0.350,", + " 0.360,", + " 0.370,", + " 0.380,", + " 0.390,", + " 0.400,", + " 0.410,", + " 0.420,", + " 0.430,", + " 0.440,", + " 0.450,", + " 0.460,", + " 0.470,", + " 0.480,", + " 0.490,", + " 0.500,", + " 0.510,", + " 0.520,", + " 0.530,", + " 0.540,", + " 0.550,", + " 0.560,", + " 0.570,", + " 0.580,", + " 0.590,", + " 0.600,", + " 0.610,", + " 0.620,", + " 0.630,", + " 0.640,", + " 0.650,", + " 0.660,", + " 0.670,", + " 0.680,", + " 0.690,", + " 0.700,", + " 0.710,", + " 0.720,", + " 0.730,", + " 0.740,", + " 0.750,", + " 0.760,", + " 0.770,", + " 0.780,", + " 0.790,", + " 0.800,", + " 0.810,", + " 0.820,", + " 0.830,", + " 0.840,", + " 0.850,", + " 0.860,", + " 0.870,", + " 0.880,", + " 0.890,", + " 0.900,", + " 0.950,", + " 1.000,", + " 1.050,", + " 1.100,", + " 1.150,", + " 1.200,", + " 1.250,", + " 1.300,", + " 1.350,", + " 1.400,", + " 1.450,", + " 1.500,", + " 1.550,", + " 1.600,", + " 1.650,", + " 1.700,", + " 1.750,", + " 1.800,", + " 1.850,", + " 1.900,", + " 1.950,", + " 2.000,", + " 2.050,", + " 2.100,", + " 2.150,", + " 2.200,", + " 2.250,", + " 2.300,", + " 2.350,", + " 2.400,", + " 2.450,", + " 2.500;", + + "Table:IndependentVariableList,", + " Spectral and Incident Angle Data Set, !- Name", + " Incidence Angles, !- Independent Variable 1 Name", + " Wavelengths; !- Independent Variable 2 Name", + + "Table:Lookup,", " TransmittanceData, !- Name", - " BiQuadratic, !- Curve Type", - " LinearInterpolationOfTable,!- Interpolation Type", - " 0.0, !- Minimum Value of x,", - " 90.0, !- Maximum Value of x,", - " 0.30, !- Minimum Value of y,", - " 2.50, !- Maximum Value of y,", - " 0.0, !- Minimum Table Output", - " 1.0, !- Maximum Table Output", - " Angle, !- Input Unit Type for x", - " Wavelength, !- Input Unit Type for y", + " Spectral and Incident Angle Data Set, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.0, !- Minimum Output", + " 1.0, !- Maximum Output", " Dimensionless, !- Output Unit Type", - " 1.0, !- Normalization Point", " , !- External File Name", - " 0.0, 0.300, 0.00100,", - " 0.0, 0.310, 0.00100,", - " 0.0, 0.320, 0.00100,", - " 0.0, 0.330, 0.00100,", - " 0.0, 0.340, 0.00100,", - " 0.0, 0.350, 0.00100,", - " 0.0, 0.360, 0.00900,", - " 0.0, 0.370, 0.12000,", - " 0.0, 0.380, 0.49200,", - " 0.0, 0.390, 0.78200,", - " 0.0, 0.400, 0.85600,", - " 0.0, 0.410, 0.85800,", - " 0.0, 0.420, 0.85800,", - " 0.0, 0.430, 0.86000,", - " 0.0, 0.440, 0.86100,", - " 0.0, 0.450, 0.87100,", - " 0.0, 0.460, 0.88000,", - " 0.0, 0.470, 0.88300,", - " 0.0, 0.480, 0.88700,", - " 0.0, 0.490, 0.89000,", - " 0.0, 0.500, 0.89000,", - " 0.0, 0.510, 0.89100,", - " 0.0, 0.520, 0.88700,", - " 0.0, 0.530, 0.89000,", - " 0.0, 0.540, 0.88300,", - " 0.0, 0.550, 0.88800,", - " 0.0, 0.560, 0.88200,", - " 0.0, 0.570, 0.88100,", - " 0.0, 0.580, 0.86500,", - " 0.0, 0.590, 0.85800,", - " 0.0, 0.600, 0.86500,", - " 0.0, 0.610, 0.85600,", - " 0.0, 0.620, 0.84500,", - " 0.0, 0.630, 0.83700,", - " 0.0, 0.640, 0.82700,", - " 0.0, 0.650, 0.82000,", - " 0.0, 0.660, 0.80700,", - " 0.0, 0.670, 0.79800,", - " 0.0, 0.680, 0.79100,", - " 0.0, 0.690, 0.78100,", - " 0.0, 0.700, 0.76800,", - " 0.0, 0.710, 0.76100,", - " 0.0, 0.720, 0.74400,", - " 0.0, 0.730, 0.71300,", - " 0.0, 0.740, 0.70300,", - " 0.0, 0.750, 0.69400,", - " 0.0, 0.760, 0.68500,", - " 0.0, 0.770, 0.67500,", - " 0.0, 0.780, 0.66700,", - " 0.0, 0.790, 0.65500,", - " 0.0, 0.800, 0.64600,", - " 0.0, 0.810, 0.63800,", - " 0.0, 0.820, 0.62900,", - " 0.0, 0.830, 0.62300,", - " 0.0, 0.840, 0.61400,", - " 0.0, 0.850, 0.60800,", - " 0.0, 0.860, 0.60100,", - " 0.0, 0.870, 0.59700,", - " 0.0, 0.880, 0.59200,", - " 0.0, 0.890, 0.58700,", - " 0.0, 0.900, 0.58200,", - " 0.0, 0.950, 0.56800,", - " 0.0, 1.000, 0.56200,", - " 0.0, 1.050, 0.55600,", - " 0.0, 1.100, 0.56300,", - " 0.0, 1.150, 0.55600,", - " 0.0, 1.200, 0.54700,", - " 0.0, 1.250, 0.57700,", - " 0.0, 1.300, 0.59800,", - " 0.0, 1.350, 0.60800,", - " 0.0, 1.400, 0.60300,", - " 0.0, 1.450, 0.61400,", - " 0.0, 1.500, 0.64800,", - " 0.0, 1.550, 0.68000,", - " 0.0, 1.600, 0.69900,", - " 0.0, 1.650, 0.70600,", - " 0.0, 1.700, 0.57000,", - " 0.0, 1.750, 0.58500,", - " 0.0, 1.800, 0.63700,", - " 0.0, 1.850, 0.65500,", - " 0.0, 1.900, 0.63700,", - " 0.0, 1.950, 0.63400,", - " 0.0, 2.000, 0.63400,", - " 0.0, 2.050, 0.58600,", - " 0.0, 2.100, 0.58800,", - " 0.0, 2.150, 0.59700,", - " 0.0, 2.200, 0.57600,", - " 0.0, 2.250, 0.40400,", - " 0.0, 2.300, 0.17900,", - " 0.0, 2.350, 0.21900,", - " 0.0, 2.400, 0.24000,", - " 0.0, 2.450, 0.20000,", - " 0.0, 2.500, 0.21400,", - "90.0, 0.300, 0.00000,", - "90.0, 0.310, 0.00000,", - "90.0, 0.320, 0.00000,", - "90.0, 0.330, 0.00000,", - "90.0, 0.340, 0.00000,", - "90.0, 0.350, 0.00000,", - "90.0, 0.360, 0.00000,", - "90.0, 0.370, 0.00000,", - "90.0, 0.380, 0.00000,", - "90.0, 0.390, 0.00000,", - "90.0, 0.400, 0.00000,", - "90.0, 0.410, 0.00000,", - "90.0, 0.420, 0.00000,", - "90.0, 0.430, 0.00000,", - "90.0, 0.440, 0.00000,", - "90.0, 0.450, 0.00000,", - "90.0, 0.460, 0.00000,", - "90.0, 0.470, 0.00000,", - "90.0, 0.480, 0.00000,", - "90.0, 0.490, 0.00000,", - "90.0, 0.500, 0.00000,", - "90.0, 0.510, 0.00000,", - "90.0, 0.520, 0.00000,", - "90.0, 0.530, 0.00000,", - "90.0, 0.540, 0.00000,", - "90.0, 0.550, 0.00000,", - "90.0, 0.560, 0.00000,", - "90.0, 0.570, 0.00000,", - "90.0, 0.580, 0.00000,", - "90.0, 0.590, 0.00000,", - "90.0, 0.600, 0.00000,", - "90.0, 0.610, 0.00000,", - "90.0, 0.620, 0.00000,", - "90.0, 0.630, 0.00000,", - "90.0, 0.640, 0.00000,", - "90.0, 0.650, 0.00000,", - "90.0, 0.660, 0.00000,", - "90.0, 0.670, 0.00000,", - "90.0, 0.680, 0.00000,", - "90.0, 0.690, 0.00000,", - "90.0, 0.700, 0.00000,", - "90.0, 0.710, 0.00000,", - "90.0, 0.720, 0.00000,", - "90.0, 0.730, 0.00000,", - "90.0, 0.740, 0.00000,", - "90.0, 0.750, 0.00000,", - "90.0, 0.760, 0.00000,", - "90.0, 0.770, 0.00000,", - "90.0, 0.780, 0.00000,", - "90.0, 0.790, 0.00000,", - "90.0, 0.800, 0.00000,", - "90.0, 0.810, 0.00000,", - "90.0, 0.820, 0.00000,", - "90.0, 0.830, 0.00000,", - "90.0, 0.840, 0.00000,", - "90.0, 0.850, 0.00000,", - "90.0, 0.860, 0.00000,", - "90.0, 0.870, 0.00000,", - "90.0, 0.880, 0.00000,", - "90.0, 0.890, 0.00000,", - "90.0, 0.900, 0.00000,", - "90.0, 0.950, 0.00000,", - "90.0, 1.000, 0.00000,", - "90.0, 1.050, 0.00000,", - "90.0, 1.100, 0.00000,", - "90.0, 1.150, 0.00000,", - "90.0, 1.200, 0.00000,", - "90.0, 1.250, 0.00000,", - "90.0, 1.300, 0.00000,", - "90.0, 1.350, 0.00000,", - "90.0, 1.400, 0.00000,", - "90.0, 1.450, 0.00000,", - "90.0, 1.500, 0.00000,", - "90.0, 1.550, 0.00000,", - "90.0, 1.600, 0.00000,", - "90.0, 1.650, 0.00000,", - "90.0, 1.700, 0.00000,", - "90.0, 1.750, 0.00000,", - "90.0, 1.800, 0.00000,", - "90.0, 1.850, 0.00000,", - "90.0, 1.900, 0.00000,", - "90.0, 1.950, 0.00000,", - "90.0, 2.000, 0.00000,", - "90.0, 2.050, 0.00000,", - "90.0, 2.100, 0.00000,", - "90.0, 2.150, 0.00000,", - "90.0, 2.200, 0.00000,", - "90.0, 2.250, 0.00000,", - "90.0, 2.300, 0.00000,", - "90.0, 2.350, 0.00000,", - "90.0, 2.400, 0.00000,", - "90.0, 2.450, 0.00000,", - "90.0, 2.500, 0.00000;", - - "Table:TwoIndependentVariables,", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.00100, !- Output Value 1", + " 0.00100,", + " 0.00100,", + " 0.00100,", + " 0.00100,", + " 0.00100,", + " 0.00900,", + " 0.12000,", + " 0.49200,", + " 0.78200,", + " 0.85600,", + " 0.85800,", + " 0.85800,", + " 0.86000,", + " 0.86100,", + " 0.87100,", + " 0.88000,", + " 0.88300,", + " 0.88700,", + " 0.89000,", + " 0.89000,", + " 0.89100,", + " 0.88700,", + " 0.89000,", + " 0.88300,", + " 0.88800,", + " 0.88200,", + " 0.88100,", + " 0.86500,", + " 0.85800,", + " 0.86500,", + " 0.85600,", + " 0.84500,", + " 0.83700,", + " 0.82700,", + " 0.82000,", + " 0.80700,", + " 0.79800,", + " 0.79100,", + " 0.78100,", + " 0.76800,", + " 0.76100,", + " 0.74400,", + " 0.71300,", + " 0.70300,", + " 0.69400,", + " 0.68500,", + " 0.67500,", + " 0.66700,", + " 0.65500,", + " 0.64600,", + " 0.63800,", + " 0.62900,", + " 0.62300,", + " 0.61400,", + " 0.60800,", + " 0.60100,", + " 0.59700,", + " 0.59200,", + " 0.58700,", + " 0.58200,", + " 0.56800,", + " 0.56200,", + " 0.55600,", + " 0.56300,", + " 0.55600,", + " 0.54700,", + " 0.57700,", + " 0.59800,", + " 0.60800,", + " 0.60300,", + " 0.61400,", + " 0.64800,", + " 0.68000,", + " 0.69900,", + " 0.70600,", + " 0.57000,", + " 0.58500,", + " 0.63700,", + " 0.65500,", + " 0.63700,", + " 0.63400,", + " 0.63400,", + " 0.58600,", + " 0.58800,", + " 0.59700,", + " 0.57600,", + " 0.40400,", + " 0.17900,", + " 0.21900,", + " 0.24000,", + " 0.20000,", + " 0.21400,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000,", + " 0.00000;", + + "Table:Lookup,", " FrontReflectanceData, !- Name", - " BiQuadratic, !- Curve Type", - " LinearInterpolationOfTable,!- Interpolation Type", - " 0.0, !- Minimum Value of x,", - " 90.0, !- Maximum Value of x,", - " 0.30, !- Minimum Value of y,", - " 2.50, !- Maximum Value of y,", - " 0.0, !- Minimum Table Output", - " 1.0, !- Maximum Table Output", - " Angle, !- Input Unit Type for x", - " Wavelength, !- Input Unit Type for y", + " Spectral and Incident Angle Data Set, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.0, !- Minimum Output", + " 1.0, !- Maximum Output", " Dimensionless, !- Output Unit Type", - " 1.0, !- Normalization Point", " , !- External File Name", - " 0.0, 0.300, 0.04500,", - " 0.0, 0.310, 0.04400,", - " 0.0, 0.320, 0.04400,", - " 0.0, 0.330, 0.04200,", - " 0.0, 0.340, 0.04100,", - " 0.0, 0.350, 0.04000,", - " 0.0, 0.360, 0.04000,", - " 0.0, 0.370, 0.04000,", - " 0.0, 0.380, 0.05100,", - " 0.0, 0.390, 0.07000,", - " 0.0, 0.400, 0.07500,", - " 0.0, 0.410, 0.07500,", - " 0.0, 0.420, 0.07500,", - " 0.0, 0.430, 0.07500,", - " 0.0, 0.440, 0.07500,", - " 0.0, 0.450, 0.07500,", - " 0.0, 0.460, 0.07600,", - " 0.0, 0.470, 0.07500,", - " 0.0, 0.480, 0.07600,", - " 0.0, 0.490, 0.07500,", - " 0.0, 0.500, 0.07500,", - " 0.0, 0.510, 0.07500,", - " 0.0, 0.520, 0.07500,", - " 0.0, 0.530, 0.07500,", - " 0.0, 0.540, 0.07400,", - " 0.0, 0.550, 0.07400,", - " 0.0, 0.560, 0.07400,", - " 0.0, 0.570, 0.07400,", - " 0.0, 0.580, 0.07100,", - " 0.0, 0.590, 0.07000,", - " 0.0, 0.600, 0.07000,", - " 0.0, 0.610, 0.07000,", - " 0.0, 0.620, 0.07000,", - " 0.0, 0.630, 0.07000,", - " 0.0, 0.640, 0.06900,", - " 0.0, 0.650, 0.06700,", - " 0.0, 0.660, 0.06700,", - " 0.0, 0.670, 0.06500,", - " 0.0, 0.680, 0.06500,", - " 0.0, 0.690, 0.06500,", - " 0.0, 0.700, 0.06400,", - " 0.0, 0.710, 0.06400,", - " 0.0, 0.720, 0.06200,", - " 0.0, 0.730, 0.06400,", - " 0.0, 0.740, 0.06200,", - " 0.0, 0.750, 0.06100,", - " 0.0, 0.760, 0.06100,", - " 0.0, 0.770, 0.06000,", - " 0.0, 0.780, 0.06000,", - " 0.0, 0.790, 0.06000,", - " 0.0, 0.800, 0.05900,", - " 0.0, 0.810, 0.05900,", - " 0.0, 0.820, 0.05700,", - " 0.0, 0.830, 0.05700,", - " 0.0, 0.840, 0.05600,", - " 0.0, 0.850, 0.05600,", - " 0.0, 0.860, 0.05500,", - " 0.0, 0.870, 0.05400,", - " 0.0, 0.880, 0.05400,", - " 0.0, 0.890, 0.05400,", - " 0.0, 0.900, 0.05500,", - " 0.0, 0.950, 0.05100,", - " 0.0, 1.000, 0.05100,", - " 0.0, 1.050, 0.05000,", - " 0.0, 1.100, 0.05100,", - " 0.0, 1.150, 0.05000,", - " 0.0, 1.200, 0.05000,", - " 0.0, 1.250, 0.05100,", - " 0.0, 1.300, 0.05400,", - " 0.0, 1.350, 0.05500,", - " 0.0, 1.400, 0.05200,", - " 0.0, 1.450, 0.05500,", - " 0.0, 1.500, 0.05700,", - " 0.0, 1.550, 0.05900,", - " 0.0, 1.600, 0.06000,", - " 0.0, 1.650, 0.06000,", - " 0.0, 1.700, 0.05100,", - " 0.0, 1.750, 0.05100,", - " 0.0, 1.800, 0.05500,", - " 0.0, 1.850, 0.05700,", - " 0.0, 1.900, 0.05700,", - " 0.0, 1.950, 0.05700,", - " 0.0, 2.000, 0.05700,", - " 0.0, 2.050, 0.05200,", - " 0.0, 2.100, 0.05400,", - " 0.0, 2.150, 0.05400,", - " 0.0, 2.200, 0.05100,", - " 0.0, 2.250, 0.04500,", - " 0.0, 2.300, 0.03700,", - " 0.0, 2.350, 0.03700,", - " 0.0, 2.400, 0.03900,", - " 0.0, 2.450, 0.04000,", - " 0.0, 2.500, 0.03900,", - "90.0, 0.300, 1.00000,", - "90.0, 0.310, 1.00000,", - "90.0, 0.320, 1.00000,", - "90.0, 0.330, 1.00000,", - "90.0, 0.340, 1.00000,", - "90.0, 0.350, 1.00000,", - "90.0, 0.360, 1.00000,", - "90.0, 0.370, 1.00000,", - "90.0, 0.380, 1.00000,", - "90.0, 0.390, 1.00000,", - "90.0, 0.400, 1.00000,", - "90.0, 0.410, 1.00000,", - "90.0, 0.420, 1.00000,", - "90.0, 0.430, 1.00000,", - "90.0, 0.440, 1.00000,", - "90.0, 0.450, 1.00000,", - "90.0, 0.460, 1.00000,", - "90.0, 0.470, 1.00000,", - "90.0, 0.480, 1.00000,", - "90.0, 0.490, 1.00000,", - "90.0, 0.500, 1.00000,", - "90.0, 0.510, 1.00000,", - "90.0, 0.520, 1.00000,", - "90.0, 0.530, 1.00000,", - "90.0, 0.540, 1.00000,", - "90.0, 0.550, 1.00000,", - "90.0, 0.560, 1.00000,", - "90.0, 0.570, 1.00000,", - "90.0, 0.580, 1.00000,", - "90.0, 0.590, 1.00000,", - "90.0, 0.600, 1.00000,", - "90.0, 0.610, 1.00000,", - "90.0, 0.620, 1.00000,", - "90.0, 0.630, 1.00000,", - "90.0, 0.640, 1.00000,", - "90.0, 0.650, 1.00000,", - "90.0, 0.660, 1.00000,", - "90.0, 0.670, 1.00000,", - "90.0, 0.680, 1.00000,", - "90.0, 0.690, 1.00000,", - "90.0, 0.700, 1.00000,", - "90.0, 0.710, 1.00000,", - "90.0, 0.720, 1.00000,", - "90.0, 0.730, 1.00000,", - "90.0, 0.740, 1.00000,", - "90.0, 0.750, 1.00000,", - "90.0, 0.760, 1.00000,", - "90.0, 0.770, 1.00000,", - "90.0, 0.780, 1.00000,", - "90.0, 0.790, 1.00000,", - "90.0, 0.800, 1.00000,", - "90.0, 0.810, 1.00000,", - "90.0, 0.820, 1.00000,", - "90.0, 0.830, 1.00000,", - "90.0, 0.840, 1.00000,", - "90.0, 0.850, 1.00000,", - "90.0, 0.860, 1.00000,", - "90.0, 0.870, 1.00000,", - "90.0, 0.880, 1.00000,", - "90.0, 0.890, 1.00000,", - "90.0, 0.900, 1.00000,", - "90.0, 0.950, 1.00000,", - "90.0, 1.000, 1.00000,", - "90.0, 1.050, 1.00000,", - "90.0, 1.100, 1.00000,", - "90.0, 1.150, 1.00000,", - "90.0, 1.200, 1.00000,", - "90.0, 1.250, 1.00000,", - "90.0, 1.300, 1.00000,", - "90.0, 1.350, 1.00000,", - "90.0, 1.400, 1.00000,", - "90.0, 1.450, 1.00000,", - "90.0, 1.500, 1.00000,", - "90.0, 1.550, 1.00000,", - "90.0, 1.600, 1.00000,", - "90.0, 1.650, 1.00000,", - "90.0, 1.700, 1.00000,", - "90.0, 1.750, 1.00000,", - "90.0, 1.800, 1.00000,", - "90.0, 1.850, 1.00000,", - "90.0, 1.900, 1.00000,", - "90.0, 1.950, 1.00000,", - "90.0, 2.000, 1.00000,", - "90.0, 2.050, 1.00000,", - "90.0, 2.100, 1.00000,", - "90.0, 2.150, 1.00000,", - "90.0, 2.200, 1.00000,", - "90.0, 2.250, 1.00000,", - "90.0, 2.300, 1.00000,", - "90.0, 2.350, 1.00000,", - "90.0, 2.400, 1.00000,", - "90.0, 2.450, 1.00000,", - "90.0, 2.500, 1.00000;", - - "Table:TwoIndependentVariables,", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.04500, !- Output Value 1", + " 0.04400,", + " 0.04400,", + " 0.04200,", + " 0.04100,", + " 0.04000,", + " 0.04000,", + " 0.04000,", + " 0.05100,", + " 0.07000,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07600,", + " 0.07500,", + " 0.07600,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07400,", + " 0.07400,", + " 0.07400,", + " 0.07400,", + " 0.07100,", + " 0.07000,", + " 0.07000,", + " 0.07000,", + " 0.07000,", + " 0.07000,", + " 0.06900,", + " 0.06700,", + " 0.06700,", + " 0.06500,", + " 0.06500,", + " 0.06500,", + " 0.06400,", + " 0.06400,", + " 0.06200,", + " 0.06400,", + " 0.06200,", + " 0.06100,", + " 0.06100,", + " 0.06000,", + " 0.06000,", + " 0.06000,", + " 0.05900,", + " 0.05900,", + " 0.05700,", + " 0.05700,", + " 0.05600,", + " 0.05600,", + " 0.05500,", + " 0.05400,", + " 0.05400,", + " 0.05400,", + " 0.05500,", + " 0.05100,", + " 0.05100,", + " 0.05000,", + " 0.05100,", + " 0.05000,", + " 0.05000,", + " 0.05100,", + " 0.05400,", + " 0.05500,", + " 0.05200,", + " 0.05500,", + " 0.05700,", + " 0.05900,", + " 0.06000,", + " 0.06000,", + " 0.05100,", + " 0.05100,", + " 0.05500,", + " 0.05700,", + " 0.05700,", + " 0.05700,", + " 0.05700,", + " 0.05200,", + " 0.05400,", + " 0.05400,", + " 0.05100,", + " 0.04500,", + " 0.03700,", + " 0.03700,", + " 0.03900,", + " 0.04000,", + " 0.03900,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000;", + + "Table:Lookup,", " BackRefelectanceData, !- Name", - " BiQuadratic, !- Curve Type", - " LinearInterpolationOfTable,!- Interpolation Type", - " 0.0, !- Minimum Value of x,", - " 90.0, !- Maximum Value of x,", - " 0.30, !- Minimum Value of y,", - " 2.50, !- Maximum Value of y,", - " 0.0, !- Minimum Table Output", - " 1.0, !- Maximum Table Output", - " Angle, !- Input Unit Type for x", - " Wavelength, !- Input Unit Type for y", + " Spectral and Incident Angle Data Set, !- Independent Variable List Name", + " , !- Normalization Method", + " , !- Normalization Divisor", + " 0.0, !- Minimum Output", + " 1.0, !- Maximum Output", " Dimensionless, !- Output Unit Type", - " 1.0, !- Normalization Point", " , !- External File Name", - " 0.0, 0.300, 0.04500,", - " 0.0, 0.310, 0.04400,", - " 0.0, 0.320, 0.04400,", - " 0.0, 0.330, 0.04200,", - " 0.0, 0.340, 0.04100,", - " 0.0, 0.350, 0.04000,", - " 0.0, 0.360, 0.04000,", - " 0.0, 0.370, 0.04000,", - " 0.0, 0.380, 0.05100,", - " 0.0, 0.390, 0.07000,", - " 0.0, 0.400, 0.07500,", - " 0.0, 0.410, 0.07500,", - " 0.0, 0.420, 0.07500,", - " 0.0, 0.430, 0.07500,", - " 0.0, 0.440, 0.07500,", - " 0.0, 0.450, 0.07500,", - " 0.0, 0.460, 0.07600,", - " 0.0, 0.470, 0.07500,", - " 0.0, 0.480, 0.07600,", - " 0.0, 0.490, 0.07500,", - " 0.0, 0.500, 0.07500,", - " 0.0, 0.510, 0.07500,", - " 0.0, 0.520, 0.07500,", - " 0.0, 0.530, 0.07500,", - " 0.0, 0.540, 0.07400,", - " 0.0, 0.550, 0.07400,", - " 0.0, 0.560, 0.07400,", - " 0.0, 0.570, 0.07400,", - " 0.0, 0.580, 0.07100,", - " 0.0, 0.590, 0.07000,", - " 0.0, 0.600, 0.07000,", - " 0.0, 0.610, 0.07000,", - " 0.0, 0.620, 0.07000,", - " 0.0, 0.630, 0.07000,", - " 0.0, 0.640, 0.06900,", - " 0.0, 0.650, 0.06700,", - " 0.0, 0.660, 0.06700,", - " 0.0, 0.670, 0.06500,", - " 0.0, 0.680, 0.06500,", - " 0.0, 0.690, 0.06500,", - " 0.0, 0.700, 0.06400,", - " 0.0, 0.710, 0.06400,", - " 0.0, 0.720, 0.06200,", - " 0.0, 0.730, 0.06400,", - " 0.0, 0.740, 0.06200,", - " 0.0, 0.750, 0.06100,", - " 0.0, 0.760, 0.06100,", - " 0.0, 0.770, 0.06000,", - " 0.0, 0.780, 0.06000,", - " 0.0, 0.790, 0.06000,", - " 0.0, 0.800, 0.05900,", - " 0.0, 0.810, 0.05900,", - " 0.0, 0.820, 0.05700,", - " 0.0, 0.830, 0.05700,", - " 0.0, 0.840, 0.05600,", - " 0.0, 0.850, 0.05600,", - " 0.0, 0.860, 0.05500,", - " 0.0, 0.870, 0.05400,", - " 0.0, 0.880, 0.05400,", - " 0.0, 0.890, 0.05400,", - " 0.0, 0.900, 0.05500,", - " 0.0, 0.950, 0.05100,", - " 0.0, 1.000, 0.05100,", - " 0.0, 1.050, 0.05000,", - " 0.0, 1.100, 0.05100,", - " 0.0, 1.150, 0.05000,", - " 0.0, 1.200, 0.05000,", - " 0.0, 1.250, 0.05100,", - " 0.0, 1.300, 0.05400,", - " 0.0, 1.350, 0.05500,", - " 0.0, 1.400, 0.05200,", - " 0.0, 1.450, 0.05500,", - " 0.0, 1.500, 0.05700,", - " 0.0, 1.550, 0.05900,", - " 0.0, 1.600, 0.06000,", - " 0.0, 1.650, 0.06000,", - " 0.0, 1.700, 0.05100,", - " 0.0, 1.750, 0.05100,", - " 0.0, 1.800, 0.05500,", - " 0.0, 1.850, 0.05700,", - " 0.0, 1.900, 0.05700,", - " 0.0, 1.950, 0.05700,", - " 0.0, 2.000, 0.05700,", - " 0.0, 2.050, 0.05200,", - " 0.0, 2.100, 0.05400,", - " 0.0, 2.150, 0.05400,", - " 0.0, 2.200, 0.05100,", - " 0.0, 2.250, 0.04500,", - " 0.0, 2.300, 0.03700,", - " 0.0, 2.350, 0.03700,", - " 0.0, 2.400, 0.03900,", - " 0.0, 2.450, 0.04000,", - " 0.0, 2.500, 0.03900,", - "90.0, 0.300, 1.00000,", - "90.0, 0.310, 1.00000,", - "90.0, 0.320, 1.00000,", - "90.0, 0.330, 1.00000,", - "90.0, 0.340, 1.00000,", - "90.0, 0.350, 1.00000,", - "90.0, 0.360, 1.00000,", - "90.0, 0.370, 1.00000,", - "90.0, 0.380, 1.00000,", - "90.0, 0.390, 1.00000,", - "90.0, 0.400, 1.00000,", - "90.0, 0.410, 1.00000,", - "90.0, 0.420, 1.00000,", - "90.0, 0.430, 1.00000,", - "90.0, 0.440, 1.00000,", - "90.0, 0.450, 1.00000,", - "90.0, 0.460, 1.00000,", - "90.0, 0.470, 1.00000,", - "90.0, 0.480, 1.00000,", - "90.0, 0.490, 1.00000,", - "90.0, 0.500, 1.00000,", - "90.0, 0.510, 1.00000,", - "90.0, 0.520, 1.00000,", - "90.0, 0.530, 1.00000,", - "90.0, 0.540, 1.00000,", - "90.0, 0.550, 1.00000,", - "90.0, 0.560, 1.00000,", - "90.0, 0.570, 1.00000,", - "90.0, 0.580, 1.00000,", - "90.0, 0.590, 1.00000,", - "90.0, 0.600, 1.00000,", - "90.0, 0.610, 1.00000,", - "90.0, 0.620, 1.00000,", - "90.0, 0.630, 1.00000,", - "90.0, 0.640, 1.00000,", - "90.0, 0.650, 1.00000,", - "90.0, 0.660, 1.00000,", - "90.0, 0.670, 1.00000,", - "90.0, 0.680, 1.00000,", - "90.0, 0.690, 1.00000,", - "90.0, 0.700, 1.00000,", - "90.0, 0.710, 1.00000,", - "90.0, 0.720, 1.00000,", - "90.0, 0.730, 1.00000,", - "90.0, 0.740, 1.00000,", - "90.0, 0.750, 1.00000,", - "90.0, 0.760, 1.00000,", - "90.0, 0.770, 1.00000,", - "90.0, 0.780, 1.00000,", - "90.0, 0.790, 1.00000,", - "90.0, 0.800, 1.00000,", - "90.0, 0.810, 1.00000,", - "90.0, 0.820, 1.00000,", - "90.0, 0.830, 1.00000,", - "90.0, 0.840, 1.00000,", - "90.0, 0.850, 1.00000,", - "90.0, 0.860, 1.00000,", - "90.0, 0.870, 1.00000,", - "90.0, 0.880, 1.00000,", - "90.0, 0.890, 1.00000,", - "90.0, 0.900, 1.00000,", - "90.0, 0.950, 1.00000,", - "90.0, 1.000, 1.00000,", - "90.0, 1.050, 1.00000,", - "90.0, 1.100, 1.00000,", - "90.0, 1.150, 1.00000,", - "90.0, 1.200, 1.00000,", - "90.0, 1.250, 1.00000,", - "90.0, 1.300, 1.00000,", - "90.0, 1.350, 1.00000,", - "90.0, 1.400, 1.00000,", - "90.0, 1.450, 1.00000,", - "90.0, 1.500, 1.00000,", - "90.0, 1.550, 1.00000,", - "90.0, 1.600, 1.00000,", - "90.0, 1.650, 1.00000,", - "90.0, 1.700, 1.00000,", - "90.0, 1.750, 1.00000,", - "90.0, 1.800, 1.00000,", - "90.0, 1.850, 1.00000,", - "90.0, 1.900, 1.00000,", - "90.0, 1.950, 1.00000,", - "90.0, 2.000, 1.00000,", - "90.0, 2.050, 1.00000,", - "90.0, 2.100, 1.00000,", - "90.0, 2.150, 1.00000,", - "90.0, 2.200, 1.00000,", - "90.0, 2.250, 1.00000,", - "90.0, 2.300, 1.00000,", - "90.0, 2.350, 1.00000,", - "90.0, 2.400, 1.00000,", - "90.0, 2.450, 1.00000,", - "90.0, 2.500, 1.00000;", + " , !- External File Column Number", + " , !- External File Starting Row Number", + " 0.04500, !- Output Value 1", + " 0.04400,", + " 0.04400,", + " 0.04200,", + " 0.04100,", + " 0.04000,", + " 0.04000,", + " 0.04000,", + " 0.05100,", + " 0.07000,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07600,", + " 0.07500,", + " 0.07600,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07500,", + " 0.07400,", + " 0.07400,", + " 0.07400,", + " 0.07400,", + " 0.07100,", + " 0.07000,", + " 0.07000,", + " 0.07000,", + " 0.07000,", + " 0.07000,", + " 0.06900,", + " 0.06700,", + " 0.06700,", + " 0.06500,", + " 0.06500,", + " 0.06500,", + " 0.06400,", + " 0.06400,", + " 0.06200,", + " 0.06400,", + " 0.06200,", + " 0.06100,", + " 0.06100,", + " 0.06000,", + " 0.06000,", + " 0.06000,", + " 0.05900,", + " 0.05900,", + " 0.05700,", + " 0.05700,", + " 0.05600,", + " 0.05600,", + " 0.05500,", + " 0.05400,", + " 0.05400,", + " 0.05400,", + " 0.05500,", + " 0.05100,", + " 0.05100,", + " 0.05000,", + " 0.05100,", + " 0.05000,", + " 0.05000,", + " 0.05100,", + " 0.05400,", + " 0.05500,", + " 0.05200,", + " 0.05500,", + " 0.05700,", + " 0.05900,", + " 0.06000,", + " 0.06000,", + " 0.05100,", + " 0.05100,", + " 0.05500,", + " 0.05700,", + " 0.05700,", + " 0.05700,", + " 0.05700,", + " 0.05200,", + " 0.05400,", + " 0.05400,", + " 0.05100,", + " 0.04500,", + " 0.03700,", + " 0.03700,", + " 0.03900,", + " 0.04000,", + " 0.03900,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000,", + " 1.00000;", " WindowMaterial:Gas,", " WinAirGap, !- Name", @@ -2387,16 +2502,16 @@ TEST_F(EnergyPlusFixture, SpectralAngularPropertyTest) Real64 sum; // total transmittance Array1D correctT( - NumAngles, {0.529017128, 0.472866571, 0.370790548, 0.248928459, 0.138553744, 0.061213244, 0.020072976, 0.00430128, 0.00042861, 0.0}); + NumAngles, {0.529017128, 0.472866571, 0.414862350, 0.355230972, 0.294204731, 0.232087506, 0.169331950, 0.10672958, 0.04626078, 0.0}); // total reflectance Array1D correctR( - NumAngles, {0.097222311, 0.194253146, 0.36875691, 0.57565985, 0.762546964, 0.89393376, 0.964537901, 0.99210584, 0.99912202, 1.00000000}); + NumAngles, {0.097222311, 0.194253146, 0.29213968, 0.39110239, 0.491349618, 0.59297952, 0.695822715, 0.79917258, 0.90138662, 1.00000000}); // Layer 1 absortance Array1D correctabs1( - NumAngles, {0.242079608, 0.214464137, 0.165811001, 0.109778385, 0.060620181, 0.02682869, 0.008920102, 0.001979289, 0.000219736, 0.0}); + NumAngles, {0.242079608, 0.214464137, 0.187033583, 0.159840540, 0.132932950, 0.10633161, 0.079994699, 0.053758780, 0.027261664, 0.0}); // Layer 2 absortance Array1D correctabs2( - NumAngles, {0.131680954, 0.118416146, 0.094641541, 0.065633305, 0.03827911, 0.018024306, 0.006469021, 0.001613591, 0.000229628, 0.0}); + NumAngles, {0.131680954, 0.118416146, 0.105964377, 0.093826087, 0.08151269, 0.068601358, 0.054850634, 0.040339052, 0.025090929, 0.0}); for (int i = 1; i <= NumAngles; i++) { EXPECT_NEAR(correctT(i), WindowManager::tsolPhi(i), 0.0001); @@ -2587,6 +2702,9 @@ TEST_F(EnergyPlusFixture, WindowManager_SrdLWRTest) DataSurfaces::Surface(1).TAirRef = DataSurfaces::ZoneMeanAirTemp; DataSurfaces::Surface(2).TAirRef = DataSurfaces::ZoneSupplyAirTemp; DataSurfaces::Surface(3).TAirRef = DataSurfaces::AdjacentAirTemp; + DataSurfaces::Surface(1).SolarEnclIndex = 1; + DataSurfaces::Surface(2).SolarEnclIndex = 1; + DataSurfaces::Surface(3).SolarEnclIndex = 1; DataHeatBalSurface::TempSurfInTmp(1) = 15.0; DataHeatBalSurface::TempSurfInTmp(2) = 20.0; DataHeatBalSurface::TempSurfInTmp(3) = 25.0; diff --git a/tst/EnergyPlus/unit/ZoneHVACEvaporativeCooler.unit.cc b/tst/EnergyPlus/unit/ZoneHVACEvaporativeCooler.unit.cc new file mode 100644 index 00000000000..bfce61bead4 --- /dev/null +++ b/tst/EnergyPlus/unit/ZoneHVACEvaporativeCooler.unit.cc @@ -0,0 +1,527 @@ +// EnergyPlus, Copyright (c) 1996-2019, The Board of Trustees of the University of Illinois, +// The Regents of the University of California, through Lawrence Berkeley National Laboratory +// (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge +// National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other +// contributors. All rights reserved. +// +// NOTICE: This Software was developed under funding from the U.S. Department of Energy and the +// U.S. Government consequently retains certain rights. As such, the U.S. Government has been +// granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, +// worldwide license in the Software to reproduce, distribute copies to the public, prepare +// derivative works, and perform publicly and display publicly, and to permit others to do so. +// +// Redistribution and use in source and binary forms, with or without modification, are permitted +// provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, this list of +// conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, this list of +// conditions and the following disclaimer in the documentation and/or other materials +// provided with the distribution. +// +// (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, +// the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be +// used to endorse or promote products derived from this software without specific prior +// written permission. +// +// (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form +// without changes from the version obtained under this License, or (ii) Licensee makes a +// reference solely to the software portion of its product, Licensee must refer to the +// software as "EnergyPlus version X" software, where "X" is the version number Licensee +// obtained under this License and may not use a different name for the software. Except as +// specifically required in this Section (4), Licensee shall not use in a company name, a +// product name, in advertising, publicity, or other promotional activities any name, trade +// name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly +// similar designation, without the U.S. Department of Energy's prior written consent. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR +// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. + +// EnergyPlus::EvaporativeCoolers / ZoneHVAC:EvaporativeCoolerUnit Unit Tests + +// Google Test Headers +#include + +// EnergyPlus Headers +#include "Fixtures/EnergyPlusFixture.hh" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace EnergyPlus; +using namespace EnergyPlus::EvaporativeCoolers; + +class ZoneHVACEvapCoolerUnitTest : public EnergyPlusFixture +{ +public: + int UnitNum = 1; + int EvapCoolNum = 1; + int NumOfNodes = 10; + bool ErrorsFound = false; + bool FirstHVACIteration = true; + +protected: + virtual void SetUp() + { + EnergyPlusFixture::SetUp(); // Sets up the base fixture first. + + DataSizing::ZoneEqSizing.allocate(1); + DataEnvironment::OutBaroPress = 101325.0; + DataEnvironment::StdRhoAir = Psychrometrics::PsyRhoAirFnPbTdbW(DataEnvironment::OutBaroPress, 20.0, 0.0); + + DataEnvironment::OutDryBulbTemp = 20.0; + DataEnvironment::OutHumRat = 0.0075; + DataEnvironment::OutWetBulbTemp = + Psychrometrics::PsyTwbFnTdbWPb(DataEnvironment::OutDryBulbTemp, DataEnvironment::OutHumRat, DataEnvironment::OutBaroPress); + + DataGlobals::NumOfZones = 1; + DataHeatBalance::Zone.allocate(DataGlobals::NumOfZones); + DataZoneEquipment::ZoneEquipConfig.allocate(DataGlobals::NumOfZones); + DataZoneEquipment::ZoneEquipList.allocate(DataGlobals::NumOfZones); + DataLoopNode::Node.allocate(NumOfNodes); + DataZoneEnergyDemands::ZoneSysEnergyDemand.allocate(1); + DataHeatBalFanSys::ZoneThermostatSetPointHi.allocate(1); + + DataZoneEquipment::ZoneEquipConfig(1).ZoneName = "One Zone"; + DataZoneEquipment::ZoneEquipConfig(1).ActualZoneNum = 1; + DataZoneEquipment::ZoneEquipConfig(1).NumInletNodes = 1; + DataZoneEquipment::ZoneEquipConfig(1).InletNode.allocate(1); + DataZoneEquipment::ZoneEquipConfig(1).InletNode(1) = 3; + DataZoneEquipment::ZoneEquipConfig(1).NumExhaustNodes = 1; + DataZoneEquipment::ZoneEquipConfig(1).ExhaustNode.allocate(1); + DataZoneEquipment::ZoneEquipConfig(1).ExhaustNode(1) = 4; + DataZoneEquipment::ZoneEquipConfig(1).NumReturnNodes = 1; + DataZoneEquipment::ZoneEquipConfig(1).ReturnNode.allocate(1); + DataZoneEquipment::ZoneEquipConfig(1).ReturnNode(1) = 9; + DataZoneEquipment::ZoneEquipConfig(1).ZoneNode = 10; + DataZoneEquipment::ZoneEquipConfig(1).IsControlled = true; + + DataHeatBalance::Zone(1).Name = DataZoneEquipment::ZoneEquipConfig(1).ZoneName; + DataHeatBalance::Zone(1).ZoneEqNum = 1; + DataHeatBalance::Zone(1).Multiplier = 1.0; + DataHeatBalance::Zone(1).Volume = 1000.0; + DataHeatBalance::Zone(DataZoneEquipment::ZoneEquipConfig(1).ActualZoneNum).SystemZoneNodeNumber = + DataZoneEquipment::ZoneEquipConfig(1).ZoneNode; + DataHeatBalance::Zone(1).ZoneVolCapMultpMoist = 1.0; + + DataZoneEquipment::ZoneEquipList(1).Name = "ZONEHVACEVAPEQUIPMENT"; + DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes = 1; + DataZoneEquipment::ZoneEquipList(1).EquipType.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipType_Num.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipName.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipIndex.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipIndex = 1; + DataZoneEquipment::ZoneEquipList(1).EquipData.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).CoolingPriority.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).HeatingPriority.allocate(DataZoneEquipment::ZoneEquipList(1).NumOfEquipTypes); + DataZoneEquipment::ZoneEquipList(1).EquipType(1) = "ZoneHVAC:EvaporativeCoolerUnit"; + DataZoneEquipment::ZoneEquipList(1).CoolingPriority(1) = 1; + DataZoneEquipment::ZoneEquipList(1).HeatingPriority(1) = 1; + DataZoneEquipment::ZoneEquipList(1).EquipType_Num(1) = DataZoneEquipment::ZoneEvaporativeCoolerUnit_Num; + } + + virtual void TearDown() + { + EnergyPlusFixture::TearDown(); + } +}; + +TEST_F(ZoneHVACEvapCoolerUnitTest, DirectCelDekPad_CyclingUnit_Sim) +{ + int ActualZoneNum = 1; + int ZoneEquipIndex = 1; + Real64 SensOutputProvided(0.0); + Real64 LatOutputProvided(0.0); + + std::string const idf_objects = delimited_string({ + + " ZoneHVAC:EvaporativeCoolerUnit,", + " ZoneEvapCooler Unit, !- Name", + " , !- Availability Schedule Name", + " , !- Availability Manager List Name", + " ZoneEvapCool OA Inlet, !- Outdoor Air Inlet Node Name", + " ZoneEvapCool Inlet Node, !- Cooler Outlet Node Name", + " ZoneEvapCool Relief Node, !- Zone Relief Air Node Name", + " Fan:OnOff, !- Supply Air Fan Object Type", + " ZoneEvapCool Supply Fan, !- Supply Air Fan Name", + " 1.0, !- Design Supply Air Flow Rate {m3/s}", + " BlowThrough, !- Fan Placement", + " ZoneTemperatureDeadbandOnOffCycling, !- Cooler Unit Control Method", + " 1.0, !- Throttling Range Temperature Difference {deltaC}", + " 100.0, !- Cooling Load Control Threshold Heat Transfer Rate {W}", + " EvaporativeCooler:Direct:CelDekPad, !- First Evaporative Cooler Object Type", + " Direct CelDekPad EvapCooler; !- First Evaporative Cooler Object Name", + + " Fan:OnOff,", + " ZoneEvapCool Supply Fan, !- Name", + " , !- Availability Schedule Name", + " 0.7, !- Fan Total Efficiency", + " 300.0, !- Pressure Rise {Pa}", + " 1.0, !- Maximum Flow Rate {m3/s}", + " 0.9, !- Motor Efficiency", + " 1.0, !- Motor In Airstream Fraction", + " ZoneEvapCool OA Inlet, !- Air Inlet Node Name", + " ZoneEvapCool Fan outlet; !- Air Outlet Node Name", + + " EvaporativeCooler:Direct:CelDekPad,", + " Direct CelDekPad EvapCooler, !- Name", + " , !- Availability Schedule Name", + " 0.6, !- Direct Pad Area {m2}", + " 0.17, !- Direct Pad Depth {m}", + " 55, !- Recirculating Water Pump Power Consumption {W}", + " ZoneEvapCool Fan outlet, !- Air Inlet Node Name", + " ZoneEvapCool Inlet Node, !- Air Outlet Node Name", + " ; !- Control Type", + + }); + ASSERT_TRUE(process_idf(idf_objects)); + + ScheduleManager::ProcessScheduleInput(); + ScheduleManager::ScheduleInputProcessed = true; + + Fans::GetFanInput(); + ASSERT_FALSE(ErrorsFound); + EvaporativeCoolers::GetEvapInput(); + ASSERT_FALSE(ErrorsFound); + EvaporativeCoolers::GetInputZoneEvaporativeCoolerUnit(); + ASSERT_FALSE(ErrorsFound); + + DataGlobals::BeginEnvrnFlag = true; + DataZoneEquipment::ZoneEquipInputsFilled = true; + + auto &thisZoneEvapCooler(ZoneEvapUnit(UnitNum)); + + DataZoneEquipment::ZoneEquipConfig(1).ExhaustNode(1) = thisZoneEvapCooler.UnitReliefNodeNum; + + DataLoopNode::Node.redimension(NumOfNodes); + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).Temp = 24.0; + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).HumRat = 0.0080; + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).Enthalpy = + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).Temp, + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).HumRat); + + DataLoopNode::Node(thisZoneEvapCooler.OAInletNodeNum).Temp = DataEnvironment::OutDryBulbTemp; + DataLoopNode::Node(thisZoneEvapCooler.OAInletNodeNum).HumRat = DataEnvironment::OutHumRat; + DataLoopNode::Node(thisZoneEvapCooler.OAInletNodeNum).Enthalpy = + Psychrometrics::PsyHFnTdbW(DataEnvironment::OutDryBulbTemp, DataEnvironment::OutHumRat); + + DataHeatBalFanSys::ZoneThermostatSetPointHi(1) = 23.0; + + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToHeatSP = 0.0; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = -15000.0; + DataZoneEquipment::ZoneEquipList(1).EquipName(1) = thisZoneEvapCooler.Name; + + // Evap Cooler Unit Control Method = Zone Temperature Dead Band OnOff Cycling + EXPECT_EQ(thisZoneEvapCooler.OpMode, DataHVACGlobals::CycFanCycCoil); + EXPECT_EQ(thisZoneEvapCooler.ControlSchemeType, ZoneTemperatureDeadBandOnOffCycling); + EvaporativeCoolers::SimZoneEvaporativeCoolerUnit(thisZoneEvapCooler.Name, ActualZoneNum, SensOutputProvided, LatOutputProvided, ZoneEquipIndex); + Real64 FullSensibleOutput = 0.0; + Real64 FullLatentOutput = 0.0; + Real64 PartLoadRatio = 1.0; + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, FullSensibleOutput, FullLatentOutput); + EXPECT_NEAR(FullSensibleOutput, SensOutputProvided, 0.01); + EXPECT_NEAR(FullSensibleOutput, -thisZoneEvapCooler.UnitSensibleCoolingRate, 0.01); + // test the unit at half of the full flow capacity + Real64 HalfOfFullLoad = 0.50 * FullSensibleOutput; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = HalfOfFullLoad; + // calculate part load ratio for cycling fan + EvaporativeCoolers::ControlZoneEvapUnitOutput(UnitNum, HalfOfFullLoad); + EXPECT_NEAR(0.4746755, thisZoneEvapCooler.UnitPartLoadRatio, 0.000001); + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, thisZoneEvapCooler.UnitPartLoadRatio, SensOutputProvided, LatOutputProvided); + EXPECT_NEAR(HalfOfFullLoad, SensOutputProvided, 0.01); + + // Evap Cooler Unit Control Method = Zone Cooling Load OnOff Cycling + thisZoneEvapCooler.ControlSchemeType = ZoneCoolingLoadOnOffCycling; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = -15000.0; + EvaporativeCoolers::SimZoneEvaporativeCoolerUnit(thisZoneEvapCooler.Name, ActualZoneNum, SensOutputProvided, LatOutputProvided, ZoneEquipIndex); + PartLoadRatio = 1.0; + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, FullSensibleOutput, FullLatentOutput); + EXPECT_NEAR(FullSensibleOutput, SensOutputProvided, 0.01); + EXPECT_NEAR(FullSensibleOutput, -thisZoneEvapCooler.UnitSensibleCoolingRate, 0.01); + // test the unit at half of the full flow capacity + HalfOfFullLoad = 0.50 * FullSensibleOutput; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = HalfOfFullLoad; + // calculate part load ratio for cycling fan + EvaporativeCoolers::ControlZoneEvapUnitOutput(UnitNum, HalfOfFullLoad); + EXPECT_NEAR(0.4746755, thisZoneEvapCooler.UnitPartLoadRatio, 0.000001); + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, thisZoneEvapCooler.UnitPartLoadRatio, SensOutputProvided, LatOutputProvided); + EXPECT_NEAR(HalfOfFullLoad, SensOutputProvided, 0.01); +} + +TEST_F(ZoneHVACEvapCoolerUnitTest, DirectResearchSpecial_CyclingUnit_Sim) +{ + int ActualZoneNum = 1; + int ZoneEquipIndex = 1; + Real64 SensOutputProvided(0.0); + Real64 LatOutputProvided(0.0); + + std::string const idf_objects = delimited_string({ + + " ZoneHVAC:EvaporativeCoolerUnit,", + " ZoneEvapCooler Unit, !- Name", + " , !- Availability Schedule Name", + " , !- Availability Manager List Name", + " ZoneEvapCool OA Inlet, !- Outdoor Air Inlet Node Name", + " ZoneEvapCool Inlet Node, !- Cooler Outlet Node Name", + " ZoneEvapCool Relief Node, !- Zone Relief Air Node Name", + " Fan:OnOff, !- Supply Air Fan Object Type", + " ZoneEvapCool Supply Fan, !- Supply Air Fan Name", + " 1.0, !- Design Supply Air Flow Rate {m3/s}", + " BlowThrough, !- Fan Placement", + " ZoneTemperatureDeadbandOnOffCycling, !- Cooler Unit Control Method", + " 1.0, !- Throttling Range Temperature Difference {deltaC}", + " 100.0, !- Cooling Load Control Threshold Heat Transfer Rate {W}", + " EvaporativeCooler:Direct:ResearchSpecial, !- First Evaporative Cooler Object Type", + " Direct ResearchSpecial EvapCooler; !- First Evaporative Cooler Object Name", + + " Fan:OnOff,", + " ZoneEvapCool Supply Fan, !- Name", + " , !- Availability Schedule Name", + " 0.7, !- Fan Total Efficiency", + " 300.0, !- Pressure Rise {Pa}", + " 1.0, !- Maximum Flow Rate {m3/s}", + " 0.9, !- Motor Efficiency", + " 1.0, !- Motor In Airstream Fraction", + " ZoneEvapCool OA Inlet, !- Air Inlet Node Name", + " ZoneEvapCool Fan outlet; !- Air Outlet Node Name", + + " EvaporativeCooler:Direct:ResearchSpecial,", + " Direct ResearchSpecial EvapCooler, !- Name", + " , !- Availability Schedule Name", + " 0.7, !- Cooler Design Effectiveness", + " , !- Effectiveness Flow Ratio Modifier Curve Name", + " 1.0, !- Primary Air Design Flow Rate {m3/s}", + " 55, !- Recirculating Water Pump Power Consumption {W}", + " , !- Water Pump Power Sizing Factor {W/(m3/s)}", + " , !- Water Pump Power Modifier Curve Name", + " ZoneEvapCool Fan outlet, !- Air Inlet Node Name", + " ZoneEvapCool Inlet Node, !- Air Outlet Node Name", + " ZoneEvapCool Inlet Node; !- Sensor Node Name", + }); + ASSERT_TRUE(process_idf(idf_objects)); + + ScheduleManager::ProcessScheduleInput(); + ScheduleManager::ScheduleInputProcessed = true; + + Fans::GetFanInput(); + ASSERT_FALSE(ErrorsFound); + EvaporativeCoolers::GetEvapInput(); + ASSERT_FALSE(ErrorsFound); + EvaporativeCoolers::GetInputZoneEvaporativeCoolerUnit(); + ASSERT_FALSE(ErrorsFound); + + DataGlobals::BeginEnvrnFlag = true; + DataZoneEquipment::ZoneEquipInputsFilled = true; + + auto &thisZoneEvapCooler(ZoneEvapUnit(UnitNum)); + + DataZoneEquipment::ZoneEquipConfig(1).ExhaustNode(1) = thisZoneEvapCooler.UnitReliefNodeNum; + + DataLoopNode::Node.redimension(NumOfNodes); + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).Temp = 24.0; + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).HumRat = 0.0080; + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).Enthalpy = + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).Temp, + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).HumRat); + + DataLoopNode::Node(thisZoneEvapCooler.OAInletNodeNum).Temp = DataEnvironment::OutDryBulbTemp; + DataLoopNode::Node(thisZoneEvapCooler.OAInletNodeNum).HumRat = DataEnvironment::OutHumRat; + DataLoopNode::Node(thisZoneEvapCooler.OAInletNodeNum).Enthalpy = + Psychrometrics::PsyHFnTdbW(DataEnvironment::OutDryBulbTemp, DataEnvironment::OutHumRat); + + DataHeatBalFanSys::ZoneThermostatSetPointHi(1) = 23.0; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToHeatSP = 0.0; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = -15000.0; + DataZoneEquipment::ZoneEquipList(1).EquipName(1) = thisZoneEvapCooler.Name; + + // Evap Cooler Unit Control Method = Zone Temperature Dead Band OnOff Cycling + EXPECT_EQ(thisZoneEvapCooler.OpMode, DataHVACGlobals::CycFanCycCoil); + EXPECT_EQ(thisZoneEvapCooler.ControlSchemeType, ZoneTemperatureDeadBandOnOffCycling); + EvaporativeCoolers::SimZoneEvaporativeCoolerUnit(thisZoneEvapCooler.Name, ActualZoneNum, SensOutputProvided, LatOutputProvided, ZoneEquipIndex); + Real64 FullSensibleOutput = 0.0; + Real64 FullLatentOutput = 0.0; + Real64 PartLoadRatio = 1.0; + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, FullSensibleOutput, FullLatentOutput); + EXPECT_NEAR(FullSensibleOutput, SensOutputProvided, 0.01); + EXPECT_NEAR(FullSensibleOutput, -thisZoneEvapCooler.UnitSensibleCoolingRate, 0.01); + // test the unit at half of the full flow capacity + Real64 HalfOfFullLoad = 0.50 * FullSensibleOutput; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = HalfOfFullLoad; + // calculate part load ratio for cycling fan + EvaporativeCoolers::ControlZoneEvapUnitOutput(UnitNum, HalfOfFullLoad); + EXPECT_NEAR(0.500000, thisZoneEvapCooler.UnitPartLoadRatio, 0.000001); + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, thisZoneEvapCooler.UnitPartLoadRatio, SensOutputProvided, LatOutputProvided); + EXPECT_NEAR(HalfOfFullLoad, SensOutputProvided, 0.01); + + // Evap Cooler Unit Control Method = Zone Cooling Load OnOff Cycling + thisZoneEvapCooler.ControlSchemeType = ZoneCoolingLoadOnOffCycling; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = -15000.0; + EvaporativeCoolers::SimZoneEvaporativeCoolerUnit(thisZoneEvapCooler.Name, ActualZoneNum, SensOutputProvided, LatOutputProvided, ZoneEquipIndex); + PartLoadRatio = 1.0; + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, FullSensibleOutput, FullLatentOutput); + EXPECT_NEAR(FullSensibleOutput, SensOutputProvided, 0.01); + EXPECT_NEAR(FullSensibleOutput, -thisZoneEvapCooler.UnitSensibleCoolingRate, 0.01); + // test the unit at half of the full flow capacity + HalfOfFullLoad = 0.50 * FullSensibleOutput; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = HalfOfFullLoad; + // calculate part load ratio for cycling fan + EvaporativeCoolers::ControlZoneEvapUnitOutput(UnitNum, HalfOfFullLoad); + EXPECT_NEAR(0.500000, thisZoneEvapCooler.UnitPartLoadRatio, 0.000001); + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, thisZoneEvapCooler.UnitPartLoadRatio, SensOutputProvided, LatOutputProvided); + EXPECT_NEAR(HalfOfFullLoad, SensOutputProvided, 0.01); +} + +TEST_F(ZoneHVACEvapCoolerUnitTest, IndirectWetCoil_CyclingUnit_Sim) +{ + int ActualZoneNum = 1; + int ZoneEquipIndex = 1; + Real64 SensOutputProvided(0.0); + Real64 LatOutputProvided(0.0); + + std::string const idf_objects = delimited_string({ + + " ZoneHVAC:EvaporativeCoolerUnit,", + " ZoneEvapCooler Unit, !- Name", + " , !- Availability Schedule Name", + " , !- Availability Manager List Name", + " ZoneEvapCool OA Inlet, !- Outdoor Air Inlet Node Name", + " ZoneEvapCool Inlet Node, !- Cooler Outlet Node Name", + " ZoneEvapCool Relief Node, !- Zone Relief Air Node Name", + " Fan:OnOff, !- Supply Air Fan Object Type", + " ZoneEvapCool Supply Fan, !- Supply Air Fan Name", + " 1.0, !- Design Supply Air Flow Rate {m3/s}", + " BlowThrough, !- Fan Placement", + " ZoneTemperatureDeadbandOnOffCycling, !- Cooler Unit Control Method", + " 1.0, !- Throttling Range Temperature Difference {deltaC}", + " 100.0, !- Cooling Load Control Threshold Heat Transfer Rate {W}", + " EvaporativeCooler:Indirect:WetCoil, !- First Evaporative Cooler Object Type", + " Indirect WetCoil EvapCooler; !- First Evaporative Cooler Object Name", + + " Fan:OnOff,", + " ZoneEvapCool Supply Fan, !- Name", + " , !- Availability Schedule Name", + " 0.7, !- Fan Total Efficiency", + " 300.0, !- Pressure Rise {Pa}", + " 1.0, !- Maximum Flow Rate {m3/s}", + " 0.9, !- Motor Efficiency", + " 1.0, !- Motor In Airstream Fraction", + " ZoneEvapCool OA Inlet, !- Air Inlet Node Name", + " ZoneEvapCool Fan outlet; !- Air Outlet Node Name", + + " EvaporativeCooler:Indirect:WetCoil,", + " Indirect WetCoil EvapCooler, !- Name", + " , !- Availability Schedule Name", + " 0.7, !- Coil Maximum Efficiency", + " , !- Coil Flow Ratio", + " 55, !- Recirculating Water Pump Power Consumption {W}", + " 1.0, !- Secondary Air Fan Flow Rate {m3/s}", + " 0.7, !- Secondary Air Fan Total Efficiency", + " 300, !- Secondary Air Fan Delta Pressure {Pa}", + " ZoneEvapCool Fan outlet, !- Primary Air Inlet Node Name", + " ZoneEvapCool Inlet Node, !- Primary Air Outlet Node Name", + " , !- Control Type", + " , !- Water Supply Storage Tank Name", + " Secondary OA inlet node; !- Secondary Air Inlet Node Name", + + " OutdoorAir:Node,", + " Secondary OA inlet node; !- Name", + + }); + ASSERT_TRUE(process_idf(idf_objects)); + + ScheduleManager::ProcessScheduleInput(); + ScheduleManager::ScheduleInputProcessed = true; + + Fans::GetFanInput(); + ASSERT_FALSE(ErrorsFound); + EvaporativeCoolers::GetEvapInput(); + ASSERT_FALSE(ErrorsFound); + EvaporativeCoolers::GetInputZoneEvaporativeCoolerUnit(); + ASSERT_FALSE(ErrorsFound); + + OutAirNodeManager::SetOutAirNodes(); + + DataGlobals::BeginEnvrnFlag = true; + DataZoneEquipment::ZoneEquipInputsFilled = true; + + auto &thisZoneEvapCooler(ZoneEvapUnit(UnitNum)); + auto &thisEvapCooler(EvapCond(EvapCoolNum)); + + DataZoneEquipment::ZoneEquipConfig(1).ExhaustNode(1) = thisZoneEvapCooler.UnitReliefNodeNum; + + DataLoopNode::Node.redimension(NumOfNodes); + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).Temp = 24.0; + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).HumRat = 0.0080; + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).Enthalpy = + Psychrometrics::PsyHFnTdbW(DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).Temp, + DataLoopNode::Node(DataZoneEquipment::ZoneEquipConfig(1).ZoneNode).HumRat); + + DataLoopNode::Node(thisZoneEvapCooler.OAInletNodeNum).Temp = DataEnvironment::OutDryBulbTemp; + DataLoopNode::Node(thisZoneEvapCooler.OAInletNodeNum).HumRat = DataEnvironment::OutHumRat; + DataLoopNode::Node(thisZoneEvapCooler.OAInletNodeNum).Enthalpy = + Psychrometrics::PsyHFnTdbW(DataEnvironment::OutDryBulbTemp, DataEnvironment::OutHumRat); + + DataLoopNode::Node(thisEvapCooler.SecondaryInletNode).Temp = DataEnvironment::OutDryBulbTemp; + DataLoopNode::Node(thisEvapCooler.SecondaryInletNode).HumRat = DataEnvironment::OutHumRat; + DataLoopNode::Node(thisEvapCooler.SecondaryInletNode).Enthalpy = + Psychrometrics::PsyHFnTdbW(DataEnvironment::OutDryBulbTemp, DataEnvironment::OutHumRat); + + DataHeatBalFanSys::ZoneThermostatSetPointHi(1) = 23.0; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToHeatSP = 0.0; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = -15000.0; + DataZoneEquipment::ZoneEquipList(1).EquipName(1) = thisZoneEvapCooler.Name; + + // Evap Cooler Unit Control Method = Zone Temperature Dead Band OnOff Cycling + EXPECT_EQ(thisZoneEvapCooler.OpMode, DataHVACGlobals::CycFanCycCoil); + EXPECT_EQ(thisZoneEvapCooler.ControlSchemeType, ZoneTemperatureDeadBandOnOffCycling); + EvaporativeCoolers::SimZoneEvaporativeCoolerUnit(thisZoneEvapCooler.Name, ActualZoneNum, SensOutputProvided, LatOutputProvided, ZoneEquipIndex); + Real64 FullSensibleOutput = 0.0; + Real64 FullLatentOutput = 0.0; + Real64 PartLoadRatio = 1.0; + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, FullSensibleOutput, FullLatentOutput); + EXPECT_NEAR(FullSensibleOutput, SensOutputProvided, 0.01); + EXPECT_NEAR(FullSensibleOutput, -thisZoneEvapCooler.UnitSensibleCoolingRate, 0.01); + // test the unit at half of the full flow capacity + Real64 HalfOfFullLoad = 0.50 * FullSensibleOutput; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = HalfOfFullLoad; + // calculate part load ratio for cycling fan + EvaporativeCoolers::ControlZoneEvapUnitOutput(UnitNum, HalfOfFullLoad); + EXPECT_NEAR(0.500000, thisZoneEvapCooler.UnitPartLoadRatio, 0.000001); + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, thisZoneEvapCooler.UnitPartLoadRatio, SensOutputProvided, LatOutputProvided); + EXPECT_NEAR(HalfOfFullLoad, SensOutputProvided, 0.01); + + // Evap Cooler Unit Control Method = Zone Cooling Load OnOff Cycling + thisZoneEvapCooler.ControlSchemeType = ZoneCoolingLoadOnOffCycling; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = -15000.0; + EvaporativeCoolers::SimZoneEvaporativeCoolerUnit(thisZoneEvapCooler.Name, ActualZoneNum, SensOutputProvided, LatOutputProvided, ZoneEquipIndex); + PartLoadRatio = 1.0; + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, PartLoadRatio, FullSensibleOutput, FullLatentOutput); + EXPECT_NEAR(FullSensibleOutput, SensOutputProvided, 0.01); + EXPECT_NEAR(FullSensibleOutput, -thisZoneEvapCooler.UnitSensibleCoolingRate, 0.01); + // test the unit at half of the full flow capacity + HalfOfFullLoad = 0.50 * FullSensibleOutput; + DataZoneEnergyDemands::ZoneSysEnergyDemand(1).RemainingOutputReqToCoolSP = HalfOfFullLoad; + // calculate part load ratio for cycling fan + EvaporativeCoolers::ControlZoneEvapUnitOutput(UnitNum, HalfOfFullLoad); + EXPECT_NEAR(0.500000, thisZoneEvapCooler.UnitPartLoadRatio, 0.000001); + EvaporativeCoolers::CalcZoneEvapUnitOutput(UnitNum, thisZoneEvapCooler.UnitPartLoadRatio, SensOutputProvided, LatOutputProvided); + EXPECT_NEAR(HalfOfFullLoad, SensOutputProvided, 0.01); +} diff --git a/weather/MadeUpLeapYear.epw b/weather/MadeUpLeapYear.epw new file mode 100644 index 00000000000..7a20283a896 --- /dev/null +++ b/weather/MadeUpLeapYear.epw @@ -0,0 +1,8792 @@ +LOCATION,CA_VAN-NUYS-AP,-,USA,Custom-722886,722886,34.21,-118.49,-8.0,234.0 +DESIGN CONDITIONS,1,Climate Design Data 2013 ASHRAE Handbook,,Heating,12,3.7,5.1,-17.3,0.8,13.8,-13.9,1.2,15.8,11.6,14.1,10.7,15.3,0.8,350,Cooling,7,14,37.7,19.8,36.2,19.2,33.9,18.5,22.3,33.7,21.2,31.9,20.4,30.5,3.4,130,18,13.3,26,17.5,12.9,24.8,17.1,12.6,24.1,66,34,62.5,32,59.6,30.5,1175,Extremes,9.3,8.1,6.9,26.5,1,41,1.9,2,-0.3,42.4,-1.4,43.6,-2.5,44.7,-3.8,46.2 +TYPICAL/EXTREME PERIODS,7,No Wet Season - Week Near Average Annual,Typical,5/27,6/ 2,Summer - Week Nearest Max Temperature For Period,Extreme,7/19,7/25,Summer - Week Nearest Average Temperature For Period,Typical,6/14,6/20,Winter - Week Nearest Min Temperature For Period,Extreme,1/ 5,1/11,Winter - Week Nearest Average Temperature For Period,Typical,1/19,1/25,Autumn - Week Nearest Average Temperature For Period,Typical,11/ 2,11/ 8,Spring - Week Nearest Average Temperature For Period,Typical,5/16,5/22 +GROUND TEMPERATURES,3,.5,,,,14.14,15.20,17.26,19.21,22.91,24.86,25.40,24.41,22.13,19.29,16.49,14.64,2,,,,15.60,15.86,17.03,18.34,21.19,23.00,23.91,23.70,22.40,20.44,18.23,16.49,4,,,,17.11,16.92,17.44,18.18,20.06,21.47,22.38,22.60,22.04,20.88,19.38,18.03 +HOLIDAYS/DAYLIGHT SAVINGS,Yes,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#722886 +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Friday, 1/ 1,12/31 +2016,1,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,-11.2,21,99000,0,0,272,0,0,0,0,0,0,0,360,9.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,-11.7,21,98900,0,0,268,0,0,0,0,0,0,0,360,7.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,-11.8,21,98900,0,0,268,0,0,0,0,0,0,0,360,6.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-12.2,21,99000,0,0,267,0,0,0,0,0,0,0,350,5.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,-12.3,21,99000,0,0,265,0,0,0,0,0,0,0,360,5.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,-12.8,21,99000,0,0,263,0,0,0,0,0,0,0,350,5.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,-12.8,21,99100,0,0,263,0,0,0,0,0,0,0,350,5.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,-12.8,20,99200,119,1406,266,60,392,27,6683,0,2974,113,350,5.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,-12.8,18,99200,349,1411,272,224,652,62,25713,24859,7177,292,340,5.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,-12.7,16,99300,543,1411,281,384,784,83,45321,44668,9786,416,350,7.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-12.2,15,99300,679,1411,286,489,798,105,58136,51848,12555,554,350,6.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,-12.1,14,99200,748,1411,292,557,854,105,67043,56072,12639,562,350,6.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,-11.7,14,99100,745,1411,295,556,855,104,66825,55996,12551,557,350,5.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-11.6,13,99100,670,1411,297,508,893,84,61315,54369,10131,439,350,6.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,-11.1,14,99000,529,1411,297,381,817,75,45135,44415,8877,374,350,5.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,-11.1,15,99000,331,1411,293,217,692,54,25057,22963,6310,254,350,5.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,-11.4,16,99000,103,1324,298,46,329,22,5200,0,2509,95,350,5.1,2,2,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-11.7,16,99000,0,0,300,0,0,0,0,0,0,0,350,4.7,4,4,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-11.7,17,99000,0,0,283,0,0,0,0,0,0,0,360,5.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-11.7,17,99100,0,0,281,0,0,0,0,0,0,0,350,4.9,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,-11.6,17,99100,0,0,281,0,0,0,0,0,0,0,340,3.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,-11.0,19,99100,0,0,280,0,0,0,0,0,0,0,360,3.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,-10.1,21,99100,0,0,279,0,0,0,0,0,0,0,350,1.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,-7.1,29,99100,0,0,277,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,-6.7,32,99100,0,0,274,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,-6.6,35,99000,0,0,269,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,-6.0,37,99000,0,0,269,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,-5.7,40,99000,0,0,267,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,-6.1,41,99000,0,0,263,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,-6.8,39,99000,0,0,263,0,0,0,0,0,0,0,340,0.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,-10.7,22,99000,0,0,272,0,0,0,0,0,0,0,340,3.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,-11.1,21,99000,119,1402,274,69,569,21,7840,0,2373,89,350,4.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,-11.1,18,99100,349,1411,282,250,836,43,29549,26132,5080,201,340,3.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,-10.7,18,99100,543,1411,286,371,722,93,43351,42635,10930,470,340,3.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-8.6,19,99100,680,1411,296,483,771,111,57093,50514,13205,585,230,2.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,-10.7,13,99000,749,1411,305,568,887,97,68731,57000,11807,522,350,4.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,-11.1,12,98900,747,1411,305,584,946,83,71445,58696,10225,447,340,3.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-11.0,12,98900,673,1411,309,529,964,70,64791,56230,8564,366,20,3.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-10.5,13,98800,532,1411,309,385,824,74,45613,44708,8822,372,360,3.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-10.1,14,98900,334,1411,320,184,445,79,20696,18744,8884,368,360,3.7,4,4,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,-9.7,16,98900,105,1334,308,46,297,24,5137,0,2656,101,10,4.2,2,2,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-9.4,18,98800,0,0,294,0,0,0,0,0,0,0,10,4.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-9.4,19,98900,0,0,307,0,0,0,0,0,0,0,10,4.6,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-9.4,19,98900,0,0,303,0,0,0,0,0,0,0,10,4.5,4,4,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-9.2,21,98900,0,0,286,0,0,0,0,0,0,0,10,3.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,-7.9,24,98900,0,0,284,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,-5.5,32,98900,0,0,280,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,-4.8,37,98900,0,0,277,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,-3.8,44,98800,0,0,273,0,0,0,0,0,0,0,190,0.0,0,0,15.9,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,-3.4,51,98800,0,0,266,0,0,0,0,0,0,0,190,0.0,0,0,14.7,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,-3.8,50,98700,0,0,266,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.4,-3.4,52,98700,0,0,265,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,-3.8,54,98600,0,0,261,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,-3.4,55,98600,0,0,262,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,-3.8,52,98700,0,0,263,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,-3.3,52,98700,119,1400,266,57,358,27,6379,0,3029,116,110,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,-3.4,39,98800,349,1411,282,233,722,55,27060,24510,6372,257,110,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,-3.6,30,98800,544,1411,298,420,944,56,50946,46847,6855,284,110,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-1.4,32,98800,681,1411,306,537,968,70,65755,54905,8574,368,110,1.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,3.6,46,98700,751,1411,312,542,792,120,64327,51137,14322,645,110,2.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,4.9,49,98500,749,1411,316,510,687,145,59612,46749,17038,779,120,2.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,4.5,48,98400,676,1411,315,459,691,128,53458,44883,14934,670,120,4.5,0,0,16.1,4572,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,5.1,50,98400,535,1411,322,319,510,126,36220,31653,14371,634,130,4.1,1,1,16.1,4572,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,5.7,53,98300,338,1411,326,184,427,81,20506,16703,9117,380,100,4.0,2,2,16.1,4480,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,5.6,54,98300,108,1345,324,47,294,25,5244,0,2744,105,130,3.5,2,2,16.1,3871,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,5.6,56,98300,0,0,324,0,0,0,0,0,0,0,130,3.1,3,3,16.1,3353,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,5.6,60,98300,0,0,322,0,0,0,0,0,0,0,110,2.6,4,4,16.1,3353,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,5.6,63,98300,0,0,321,0,0,0,0,0,0,0,50,0.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,5.5,67,98300,0,0,314,0,0,0,0,0,0,0,50,1.6,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,5.1,69,98300,0,0,294,0,0,0,0,0,0,0,20,1.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,5.6,71,98300,0,0,295,0,0,0,0,0,0,0,20,0.0,0,0,16.1,2171,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,5.7,69,98200,0,0,298,0,0,0,0,0,0,0,40,0.2,0,0,16.1,1592,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,5.8,65,98100,0,0,308,0,0,0,0,0,0,0,40,1.5,1,1,16.1,1884,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,3.8,57,98000,0,0,305,0,0,0,0,0,0,0,50,1.3,1,1,16.1,1414,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,3.1,56,98000,0,0,303,0,0,0,0,0,0,0,50,0.0,1,1,16.1,1806,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,2.0,52,97900,0,0,306,0,0,0,0,0,0,0,50,0.2,2,2,16.1,1639,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,1.2,49,97900,0,0,304,0,0,0,0,0,0,0,360,1.3,2,2,16.1,1492,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,4.2,62,98000,0,0,309,0,0,0,0,0,0,0,360,0.5,3,3,16.1,1769,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,2.7,54,98000,0,0,310,0,0,0,0,0,0,0,360,3.4,3,3,16.1,1410,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,2.3,48,98100,118,1395,315,48,219,30,5283,0,3271,126,320,2.4,3,3,16.1,1362,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,2.6,43,98100,349,1411,327,184,390,88,20540,16957,9818,412,350,4.2,4,4,16.1,2057,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,1.8,38,98200,544,1411,332,306,428,141,34539,28644,15996,711,350,4.2,4,4,16.1,3353,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,2.3,36,98100,682,1411,342,374,371,194,42211,28800,22048,1022,320,2.2,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,2.8,36,98100,753,1411,343,408,347,223,46123,28188,25314,1196,120,0.2,5,5,16.1,2979,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,2.7,34,98000,752,1411,348,433,425,207,49258,33449,23635,1110,140,1.6,5,5,16.1,2613,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,2.2,31,98000,678,1411,352,404,482,172,46036,35536,19715,905,120,2.1,5,5,16.1,2697,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,2.5,32,98000,538,1411,351,314,478,132,35569,30823,15005,664,80,2.2,5,5,16.1,2415,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,4.0,38,98000,341,1411,347,173,349,89,19218,14877,9893,415,180,2.7,5,5,16.1,2286,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,5.5,46,98100,111,1357,343,40,165,27,4426,0,3003,116,300,3.2,5,5,16.1,2286,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,6.6,52,98100,0,0,340,0,0,0,0,0,0,0,300,3.4,5,5,16.1,2286,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,6.4,55,98100,0,0,335,0,0,0,0,0,0,0,280,2.2,5,5,16.1,2286,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,7.8,65,98200,0,0,330,0,0,0,0,0,0,0,280,0.0,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,7.8,65,98300,0,0,326,0,0,0,0,0,0,0,20,0.0,3,3,16.1,2286,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.8,70,98300,0,0,318,0,0,0,0,0,0,0,20,0.2,2,2,16.1,2308,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,7.7,72,98300,0,0,311,0,0,0,0,0,0,0,20,1.3,1,1,16.1,2438,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,7.3,74,98300,0,0,302,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,8.0,75,98300,0,0,305,0,0,0,0,0,0,0,90,0.4,0,0,16.1,1182,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.0,78,98300,0,0,308,0,0,0,0,0,0,0,130,2.1,0,0,16.1,889,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.3,79,98200,0,0,308,0,0,0,0,0,0,0,120,2.0,0,0,16.1,894,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.0,78,98200,0,0,308,0,0,0,0,0,0,0,120,2.3,0,0,16.1,795,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,98200,0,0,308,0,0,0,0,0,0,0,180,3.5,0,0,15.7,589,9,999999999,179,0.0000,0,88,999.000,5.0,1.0 +2016,1,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,98200,0,0,308,0,0,0,0,0,0,0,120,2.9,0,0,14.5,908,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,98100,0,0,307,0,0,0,0,0,0,0,120,4.3,0,0,6.0,387,9,999999999,189,0.0000,0,88,999.000,51.0,1.0 +2016,1,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,98100,118,1393,307,48,226,29,5308,0,3243,126,140,5.1,0,0,3.2,154,9,999999999,200,0.0000,0,88,999.000,18.0,1.0 +2016,1,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.7,91,98100,349,1411,307,178,353,91,19745,14366,10099,427,140,6.5,0,0,2.4,252,9,999999999,200,0.0000,0,88,999.000,26.0,1.0 +2016,1,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.4,91,98200,545,1411,310,308,432,141,34565,26898,15893,710,150,5.2,0,0,4.1,579,9,999999999,209,0.0000,0,88,999.000,26.0,1.0 +2016,1,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.3,88,98100,684,1411,312,404,471,176,45839,32958,20063,927,180,5.4,0,0,4.2,759,9,999999999,200,0.0000,0,88,999.000,69.0,1.0 +2016,1,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.6,89,98000,755,1411,313,455,488,194,51841,35250,22198,1041,170,5.0,0,0,4.1,408,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,98000,754,1411,309,454,488,194,51812,35545,22188,1040,210,0.8,0,0,7.9,707,9,999999999,189,0.0000,0,88,999.000,3.0,1.0 +2016,1,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.5,85,97900,681,1411,310,403,470,176,45682,33122,20008,923,300,4.1,0,0,5.6,1318,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.7,71,97900,542,1411,312,305,431,140,34338,27413,15810,704,280,3.6,0,0,16.1,2522,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,8.3,73,98000,345,1411,308,175,351,90,19455,14506,9975,420,250,3.6,0,0,16.1,2111,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.1,74,98000,114,1372,306,46,233,28,5129,0,3067,118,260,3.3,0,0,16.1,1958,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.3,77,98100,0,0,304,0,0,0,0,0,0,0,260,2.6,0,0,16.1,1829,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.3,77,98100,0,0,304,0,0,0,0,0,0,0,270,0.1,0,0,16.1,613,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,7.6,76,98200,0,0,302,0,0,0,0,0,0,0,270,1.7,0,0,16.1,813,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.7,75,98200,0,0,298,0,0,0,0,0,0,0,310,2.0,0,0,16.1,975,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,6.7,78,98300,0,0,295,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,6.6,84,98400,0,0,290,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,135.0,1.0 +2016,1,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.1,86,98400,0,0,286,0,0,0,0,0,0,0,350,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,6.0,87,98400,0,0,285,0,0,0,0,0,0,0,310,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,5.5,90,98400,0,0,280,0,0,0,0,0,0,0,330,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,4.8,91,98500,0,0,276,0,0,0,0,0,0,0,20,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,4.6,92,98500,0,0,275,0,0,0,0,0,0,0,10,1.3,0,0,16.1,684,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,5.6,89,98500,0,0,281,0,0,0,0,0,0,0,90,0.6,0,0,16.1,800,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.1,87,98600,0,0,286,0,0,0,0,0,0,0,90,1.5,0,0,16.1,1123,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.2,89,98700,0,0,284,0,0,0,0,0,0,0,340,1.6,0,0,14.9,1950,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.7,86,98700,118,1394,289,53,130,42,5695,0,4544,181,160,2.1,0,0,8.0,853,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,98600,350,1411,298,162,261,97,17848,11603,10759,456,140,4.6,1,1,3.2,575,9,999999999,160,0.0000,0,88,999.000,64.0,1.0 +2016,1,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,98600,546,1411,298,267,272,162,29681,18732,18058,814,150,4.5,1,1,3.2,266,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.3,90,98400,685,1411,300,330,237,215,36875,18633,24118,1130,150,4.8,1,1,4.6,186,9,999999999,170,0.0000,0,88,999.000,20.0,1.0 +2016,1,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.2,83,98400,757,1411,305,397,311,230,44758,24916,26089,1239,290,4.0,1,1,11.4,574,9,999999999,160,0.0000,0,88,999.000,5.0,1.0 +2016,1,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,8.4,92,98300,757,1411,300,400,320,229,45137,25518,25926,1230,360,2.2,1,1,5.8,563,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.0,81,98400,684,1411,309,396,441,182,44881,32177,20751,959,290,3.0,2,2,11.3,972,9,999999999,160,0.0000,0,88,999.000,8.0,1.0 +2016,1,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.8,83,98400,545,1411,307,299,397,146,33592,26011,16439,735,290,1.8,2,2,11.7,1783,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.6,82,98300,348,1411,307,188,418,85,21014,16905,9531,400,310,0.3,2,2,13.7,1438,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.3,83,98400,117,1387,304,47,220,29,5210,0,3210,124,310,2.4,2,2,8.3,870,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,5.0,83,98400,0,0,292,0,0,0,0,0,0,0,10,3.5,2,2,6.8,1189,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,6.1,89,98400,0,0,296,0,0,0,0,0,0,0,170,1.5,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.2,89,98400,0,0,301,0,0,0,0,0,0,0,150,1.3,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.6,89,98400,0,0,304,0,0,0,0,0,0,0,140,0.3,5,5,16.1,1463,9,999999999,150,0.0000,0,88,999.000,1.0,1.0 +2016,1,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.2,86,98400,0,0,304,0,0,0,0,0,0,0,140,1.6,5,5,15.7,77777,9,999999999,139,0.0000,0,88,999.000,3.0,1.0 +2016,1,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,98400,0,0,304,0,0,0,0,0,0,0,130,2.0,5,5,13.5,1342,9,999999999,150,0.0000,0,88,999.000,204.0,1.0 +2016,1,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,6.7,89,98400,0,0,304,0,0,0,0,0,0,0,140,0.4,5,5,16.1,1417,9,999999999,150,0.0000,0,88,999.000,8.0,1.0 +2016,1,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.8,87,98300,0,0,306,0,0,0,0,0,0,0,130,2.1,5,5,15.1,1480,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,98300,0,0,304,0,0,0,0,0,0,0,330,0.0,5,5,14.0,792,9,999999999,150,0.0000,0,88,999.000,5.0,1.0 +2016,1,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,98300,0,0,304,0,0,0,0,0,0,0,330,1.3,5,5,16.1,1173,9,999999999,150,0.0000,0,88,999.000,5.0,1.0 +2016,1,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.2,93,98300,0,0,304,0,0,0,0,0,0,0,330,0.0,5,5,14.9,1414,9,999999999,150,0.0000,0,88,999.000,25.0,1.0 +2016,1,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,6.9,92,98300,0,0,303,0,0,0,0,0,0,0,330,0.0,5,5,9.3,1297,9,999999999,150,0.0000,0,88,999.000,3.0,1.0 +2016,1,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,5.0,84,98300,0,0,299,0,0,0,0,0,0,0,330,0.0,5,5,16.1,1493,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,5.1,89,98300,0,0,296,0,0,0,0,0,0,0,300,0.0,5,5,16.1,3048,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.4,5.7,89,98400,118,1394,299,34,75,28,3753,0,3065,118,300,0.0,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,5.9,83,98500,350,1411,304,145,180,100,15940,8354,11061,470,300,0.0,5,5,16.1,1219,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,5.0,73,98500,547,1411,308,261,252,164,29091,17797,18309,825,300,1.2,5,5,16.1,1013,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,4.9,69,98500,687,1411,310,331,239,215,37092,19138,24205,1133,300,2.2,5,5,16.1,1219,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,4.3,60,98400,759,1411,314,416,361,222,47147,29080,25265,1194,270,2.5,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,3.8,56,98300,760,1411,316,437,423,210,49779,33329,23960,1127,270,1.8,4,4,16.1,1219,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,3.3,52,98300,688,1411,315,429,550,161,49215,39212,18566,849,280,0.5,3,3,16.1,1310,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,3.5,52,98300,549,1411,317,330,518,129,37508,32958,14681,649,280,2.9,3,3,16.1,1829,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,3.7,53,98300,352,1411,316,196,455,83,22005,18943,9313,389,280,2.2,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,4.7,59,98300,120,1401,315,51,256,30,5681,0,3284,127,280,2.7,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,5.1,62,98400,0,0,314,0,0,0,0,0,0,0,280,2.9,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.8,68,98400,0,0,312,0,0,0,0,0,0,0,260,2.0,3,3,16.1,1311,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.5,74,98400,0,0,307,0,0,0,0,0,0,0,270,1.5,2,2,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,5.0,68,98500,0,0,294,0,0,0,0,0,0,0,310,1.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,1.7,54,98500,0,0,291,0,0,0,0,0,0,0,310,2.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,1.7,55,98600,0,0,291,0,0,0,0,0,0,0,250,1.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,48.0,1.0 +2016,1,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,1.4,55,98600,0,0,289,0,0,0,0,0,0,0,330,3.1,0,0,16.1,1829,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,0.1,48,98500,0,0,291,0,0,0,0,0,0,0,340,5.8,0,0,16.1,1829,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,0.6,53,98500,0,0,287,0,0,0,0,0,0,0,360,5.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,0.7,56,98500,0,0,284,0,0,0,0,0,0,0,300,1.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,1.1,62,98500,0,0,280,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,1.1,71,98600,0,0,272,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,0.9,67,98600,0,0,275,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,0.2,52,98700,0,0,286,0,0,0,0,0,0,0,360,1.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,1.0,57,98700,118,1393,285,57,366,27,6391,0,2976,114,360,3.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,0.5,47,98800,351,1411,293,212,565,72,24062,21927,8149,336,350,4.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,0.0,41,98900,548,1411,299,367,685,101,42554,40174,11722,508,350,4.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-0.1,38,98900,689,1411,304,482,745,119,56756,48478,14019,626,10,3.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,-0.5,35,98800,762,1411,307,544,772,127,64478,51775,15127,684,320,3.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,-0.4,34,98800,762,1411,310,545,772,127,64566,51783,15136,685,300,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,-2.2,28,98800,691,1411,310,485,746,119,57059,49041,14064,628,300,1.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-2.0,28,98800,552,1411,311,370,687,101,42964,40831,11794,511,220,2.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,0.6,38,98900,356,1411,308,216,569,72,24517,22497,8253,341,220,3.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,2.8,48,98900,123,1411,305,60,359,28,6649,0,3174,122,170,2.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,3.3,53,98900,0,4,301,0,0,0,0,0,0,0,170,2.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,3.2,56,99000,0,0,297,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,3.0,57,99000,0,0,296,0,0,0,0,0,0,0,10,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,3.9,68,99100,0,0,289,0,0,0,0,0,0,0,10,2.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,3.8,66,99100,0,0,290,0,0,0,0,0,0,0,40,2.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,3.2,68,99200,0,0,285,0,0,0,0,0,0,0,20,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,2.8,69,99200,0,0,282,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,2.8,72,99200,0,0,280,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,2.7,80,99200,0,0,274,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,2.2,78,99200,0,0,272,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,2.2,77,99200,0,0,273,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,2.2,82,99300,0,0,270,0,0,0,0,0,0,0,280,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,2.3,79,99300,0,0,288,0,0,0,0,0,0,0,280,0.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.2,2.8,79,99400,0,0,291,0,0,0,0,0,0,0,280,0.0,5,5,16.1,2979,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,2.9,76,99400,119,1395,294,41,139,30,4584,0,3303,128,120,0.0,5,5,16.1,2591,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,3.3,72,99500,352,1411,299,158,236,99,17433,11152,10979,465,120,0.0,5,5,16.1,2499,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,3.1,63,99500,550,1411,306,275,295,160,30727,20839,17997,809,120,0.4,5,5,16.1,2003,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,2.5,51,99500,690,1411,317,378,368,198,42681,28731,22432,1042,120,2.4,5,5,16.1,2088,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,4.0,53,99400,764,1411,324,439,419,212,49929,33078,24236,1142,80,1.6,5,5,16.1,1829,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,4.5,52,99400,765,1411,328,453,461,203,51736,35644,23303,1095,140,2.2,5,5,16.1,1783,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,5.1,56,99300,695,1411,326,390,398,194,44079,30379,22008,1022,150,2.6,5,5,16.1,1455,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,5.8,61,99300,556,1411,325,293,347,156,32809,23888,17573,790,200,2.8,5,5,16.1,1126,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,6.3,63,99300,360,1411,325,173,293,98,19157,13581,10932,464,180,3.5,5,5,16.1,1458,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,6.7,66,99300,126,1411,324,48,172,32,5262,0,3577,139,190,2.7,5,5,16.1,1427,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,6.9,68,99300,0,18,323,0,0,0,0,0,0,0,190,2.0,5,5,16.1,1388,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.9,78,99300,0,0,319,0,0,0,0,0,0,0,360,1.8,5,5,15.6,1260,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.4,84,99300,0,0,318,0,0,0,0,0,0,0,180,3.1,5,5,13.4,975,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.8,86,99300,0,0,318,0,0,0,0,0,0,0,180,0.0,5,5,16.1,1002,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.3,83,99300,0,0,318,0,0,0,0,0,0,0,180,0.0,5,5,15.9,1180,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.2,82,99300,0,0,317,0,0,0,0,0,0,0,120,0.0,5,5,14.7,1301,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,7.8,80,99300,0,0,317,0,0,0,0,0,0,0,120,0.2,5,5,16.1,1227,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.1,82,99200,0,0,317,0,0,0,0,0,0,0,120,0.5,5,5,16.1,865,9,999999999,160,0.0000,0,88,999.000,1.0,1.0 +2016,1,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.3,86,99300,0,0,315,0,0,0,0,0,0,0,120,0.0,5,5,8.3,814,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.4,90,99300,0,0,313,0,0,0,0,0,0,0,350,0.3,5,5,8.9,1057,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.8,92,99300,0,0,313,0,0,0,0,0,0,0,350,2.1,5,5,6.9,970,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,99200,0,0,313,0,0,0,0,0,0,0,40,1.7,5,5,9.7,908,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,99200,0,0,310,0,0,0,0,0,0,0,280,0.1,4,4,11.1,2151,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.3,93,99300,0,0,308,0,0,0,0,0,0,0,280,1.3,4,4,6.2,2344,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,8.3,92,99300,119,1395,306,40,119,30,4369,0,3269,127,280,0.2,3,3,5.6,945,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.8,88,99400,353,1411,311,157,230,100,17291,10338,11006,468,360,0.0,3,3,11.4,819,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,8.3,79,99400,551,1411,316,279,304,160,31082,20800,17908,807,320,0.6,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,7.8,73,99400,693,1411,318,360,311,208,40471,24093,23451,1096,270,1.1,3,3,16.1,853,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,7.7,65,99300,767,1411,322,441,419,213,50056,32438,24295,1147,290,1.7,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,7.1,59,99200,769,1411,316,534,720,141,62693,47875,16663,762,190,2.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,6.7,56,99100,698,1411,324,451,605,152,52037,41321,17607,804,250,2.0,1,1,16.1,3353,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,6.9,57,99200,560,1411,327,341,532,129,38740,33309,14771,655,250,1.7,2,2,16.1,3353,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.4,61,99200,364,1411,328,195,405,91,21751,17642,10153,429,220,2.6,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,8.0,67,99200,130,1411,326,53,211,33,5787,0,3662,143,220,2.3,3,3,16.1,3353,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.8,67,99300,0,32,324,0,0,0,0,0,0,0,220,1.8,3,3,16.1,3398,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,7.9,70,99400,0,0,322,0,0,0,0,0,0,0,300,0.0,3,3,16.1,3612,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,8.3,72,99400,0,0,325,0,0,0,0,0,0,0,300,0.2,4,4,16.1,3353,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,7.6,68,99400,0,0,324,0,0,0,0,0,0,0,300,1.7,4,4,16.1,3353,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,4.6,57,99400,0,0,320,0,0,0,0,0,0,0,20,2.6,4,4,16.1,3353,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.3,78,99400,0,0,320,0,0,0,0,0,0,0,70,2.2,4,4,16.1,3353,9,999999999,170,0.0000,0,88,999.000,2.0,1.0 +2016,1,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.4,80,99400,0,0,318,0,0,0,0,0,0,0,320,0.2,4,4,15.6,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,8.6,82,99400,0,0,312,0,0,0,0,0,0,0,320,1.3,2,2,13.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,5.7,71,99500,0,0,296,0,0,0,0,0,0,0,10,0.9,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-0.1,43,99500,0,0,295,0,0,0,0,0,0,0,10,6.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-0.5,43,99500,0,0,293,0,0,0,0,0,0,0,350,6.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-0.1,45,99500,0,0,294,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-0.6,43,99600,0,0,293,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,-0.6,42,99600,0,0,294,0,0,0,0,0,0,0,360,6.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,-0.6,41,99600,119,1396,296,57,349,27,6350,0,3065,118,360,5.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-0.6,37,99700,354,1411,303,211,545,74,23892,21982,8450,350,360,5.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,-0.7,34,99700,553,1411,308,365,661,106,42205,39740,12288,535,10,5.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-1.3,29,99700,695,1411,314,480,720,126,56345,47997,14784,663,350,6.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-2.3,25,99600,770,1411,317,542,747,135,64105,51367,16020,729,340,6.6,0,0,16.1,5486,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-2.5,25,99500,772,1411,316,544,747,135,64358,51497,16061,731,340,6.6,0,0,16.1,5486,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,-0.6,30,99400,702,1411,317,486,723,127,57052,48188,14910,670,360,8.2,0,0,16.1,5211,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,-0.7,29,99400,564,1411,318,374,666,107,43286,40501,12480,544,330,5.4,0,0,16.1,3658,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-1.1,30,99500,368,1411,314,222,555,77,25145,23624,8743,363,10,7.1,0,0,16.1,3658,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,-1.1,32,99500,133,1411,309,65,351,31,7180,0,3495,135,20,6.3,0,0,16.1,3658,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-1.4,33,99500,0,46,306,0,0,0,0,0,0,0,20,5.4,0,0,16.1,3658,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-2.5,31,99600,0,0,301,0,0,0,0,0,0,0,20,3.9,0,0,16.1,3658,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-1.4,36,99600,0,0,299,0,0,0,0,0,0,0,360,5.6,0,0,16.1,3658,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,-2.8,33,99600,0,0,295,0,0,0,0,0,0,0,10,5.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-2.8,34,99600,0,0,295,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-3.0,34,99600,0,0,293,0,0,0,0,0,0,0,360,6.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-3.8,32,99600,0,0,291,0,0,0,0,0,0,0,360,5.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-3.4,34,99500,0,0,290,0,0,0,0,0,0,0,360,6.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,-3.9,33,99500,0,0,289,0,0,0,0,0,0,0,350,5.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,-4.0,34,99400,0,0,286,0,0,0,0,0,0,0,360,4.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,-4.2,37,99400,0,0,281,0,0,0,0,0,0,0,10,1.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,-3.0,48,99400,0,0,272,0,0,0,0,0,0,0,280,0.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,-4.5,38,99500,0,0,277,0,0,0,0,0,0,0,280,2.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,-4.9,37,99400,0,0,276,0,0,0,0,0,0,0,290,1.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,-4.4,35,99500,120,1399,282,62,427,26,6957,0,2874,109,290,2.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,-4.7,27,99500,355,1410,297,229,660,63,26305,24774,7209,294,290,0.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-6.8,19,99500,555,1410,306,395,794,83,46687,44983,9834,420,30,2.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,-7.0,17,99400,697,1410,313,521,862,95,62522,53935,11386,500,30,4.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,-5.9,17,99300,772,1410,320,588,892,99,71227,57132,12080,537,360,5.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-5.0,18,99200,775,1410,324,590,893,100,71542,57076,12107,538,360,6.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-5.3,17,99200,706,1410,323,528,865,95,63456,54062,11465,504,350,5.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-6.3,16,99200,568,1410,322,407,802,84,48122,45901,9982,427,350,5.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,-5.0,18,99200,372,1410,321,243,675,65,27960,26919,7455,306,350,3.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,-3.6,22,99200,137,1410,319,72,435,30,8042,0,3314,127,330,2.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,-2.9,24,99200,0,61,315,0,0,0,0,0,0,0,330,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,-0.3,34,99300,0,0,310,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,0.4,42,99300,0,0,300,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-2.6,35,99300,0,0,294,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,1.1,55,99400,0,0,288,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,1.2,57,99300,0,0,285,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,1.6,62,99300,0,0,283,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,1.0,66,99200,0,0,275,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,0.5,73,99200,0,0,268,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,0.0,71,99100,0,0,267,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,0.0,73,99100,0,0,265,0,0,0,0,0,0,0,280,0.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.9,-0.1,70,99100,0,0,267,0,0,0,0,0,0,0,280,2.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.6,-0.5,70,99200,0,0,265,0,0,0,0,0,0,0,20,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,0.0,67,99200,0,0,270,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,0.0,64,99300,121,1402,273,62,419,26,6953,0,2928,112,290,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-0.1,56,99300,357,1410,279,228,651,64,26201,24046,7339,300,290,1.5,0,0,16.1,6096,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,-0.8,44,99400,557,1410,290,395,784,85,46466,43747,10054,430,280,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-2.0,32,99300,700,1410,302,519,851,97,62220,52768,11695,515,270,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,-0.4,31,99200,775,1410,316,587,881,103,70894,55718,12431,555,270,1.7,0,0,16.1,2438,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,3.7,37,99100,779,1410,329,590,882,103,71195,54649,12459,557,270,2.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,6.4,44,99100,709,1410,332,528,855,98,63163,50726,11765,520,280,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.0,50,99100,572,1410,333,408,792,87,47975,42185,10223,440,280,1.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.2,56,99100,377,1410,331,244,667,66,28017,23872,7608,314,280,1.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,9.5,61,99100,141,1410,327,74,431,31,8211,0,3417,132,290,2.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,10.0,69,99100,0,78,322,0,0,0,0,0,0,0,290,2.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.0,75,99100,0,0,315,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,9.9,78,99100,0,0,313,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.4,80,99100,0,0,308,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.2,83,99100,0,0,304,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,8.1,83,99100,0,0,298,0,0,0,0,0,0,0,110,0.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,99100,0,0,311,0,0,0,0,0,0,0,130,0.5,1,1,4.3,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,9.7,90,99100,0,0,315,0,0,0,0,0,0,0,340,2.2,3,3,8.6,183,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.3,95,99000,0,0,291,0,0,0,0,0,0,0,320,0.0,0,0,0.5,126,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.2,96,99000,0,0,285,0,0,0,0,0,0,0,320,1.1,0,0,1.2,244,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,7.0,99,99000,0,0,282,0,0,0,0,0,0,0,310,0.6,0,0,0.9,283,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,7.3,96,99000,0,0,329,0,0,0,0,0,0,0,330,2.0,10,10,0.4,30,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,7.9,97,99000,0,0,332,0,0,0,0,0,0,0,300,1.3,10,10,0.4,30,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,8.2,98,99100,0,0,333,0,0,0,0,0,0,0,280,0.4,10,10,0.7,38,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.3,96,99100,122,1404,335,13,5,13,1571,0,1520,55,320,1.3,10,10,0.3,61,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,8.5,97,99200,358,1410,327,87,27,80,9740,1044,9006,376,320,0.0,9,9,0.4,61,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.7,92,99200,559,1410,311,257,220,170,28572,15472,18991,861,350,0.2,4,4,5.8,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.5,67,99200,702,1410,310,457,617,150,52840,41743,17421,795,350,1.5,0,0,12.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,6.2,55,99100,779,1410,316,566,805,122,67430,51422,14562,659,350,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,6.5,50,99000,782,1410,323,610,938,90,74403,55143,10951,485,160,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,5.9,46,99000,713,1410,326,541,890,91,65166,51987,10975,483,160,0.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.0,55,98900,576,1410,326,404,762,93,47314,41663,10908,473,160,2.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,8.3,57,98900,381,1410,325,241,624,72,27439,24020,8245,342,170,3.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,8.5,61,99000,145,1410,322,71,358,34,7841,0,3780,147,170,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,7.9,61,99000,1,95,317,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.3,72,99000,0,0,309,0,0,0,0,0,0,0,260,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,8.2,75,99000,0,0,306,0,0,0,0,0,0,0,260,1.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,7.7,78,98900,0,0,301,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.2,80,99000,0,0,296,0,0,0,0,0,0,0,10,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.3,83,99000,0,0,294,0,0,0,0,0,0,0,10,1.3,0,0,15.6,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.6,86,99000,0,0,294,0,0,0,0,0,0,0,350,0.2,0,0,12.6,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,6.6,84,98900,0,0,290,0,0,0,0,0,0,0,350,1.2,0,0,11.5,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.1,86,98900,0,0,291,0,0,0,0,0,0,0,350,0.0,1,1,12.9,354,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.7,86,98900,0,0,299,0,0,0,0,0,0,0,350,1.8,2,2,13.1,418,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.1,89,98800,0,0,302,0,0,0,0,0,0,0,160,1.6,3,3,14.2,335,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,6.7,83,98800,0,0,306,0,0,0,0,0,0,0,160,0.0,4,4,14.5,701,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,7.2,88,98900,0,0,308,0,0,0,0,0,0,0,160,0.0,5,5,14.2,852,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.3,83,98900,0,0,312,0,0,0,0,0,0,0,160,0.0,5,5,12.4,638,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,99000,123,1407,312,40,112,31,4456,0,3389,131,220,0.0,5,5,7.7,420,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.0,83,99100,360,1410,315,155,205,103,17072,9633,11348,484,220,0.0,5,5,6.7,396,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.9,83,99100,561,1410,321,253,202,172,28036,14314,19186,871,220,0.0,5,5,8.2,501,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.3,82,99100,705,1410,324,324,198,225,36248,15743,25324,1194,220,0.2,5,5,12.1,868,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,9.3,75,99000,782,1410,330,397,273,246,44646,22181,27789,1330,220,0.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,8.8,63,99000,786,1410,340,453,422,218,51566,32635,24953,1184,170,0.2,5,5,16.1,3353,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,8.3,57,98900,718,1410,342,463,601,158,53453,41174,18273,839,170,1.5,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,8.2,54,98900,581,1410,329,437,888,71,52254,44605,8521,362,120,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,8.7,56,98900,385,1410,328,258,717,62,29823,25541,7210,296,120,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.1,62,98900,149,1410,324,76,408,33,8493,0,3709,144,180,1.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.9,70,99000,1,113,320,0,0,0,0,0,0,0,180,3.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.4,74,99000,0,0,313,0,0,0,0,0,0,0,180,1.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.3,74,99100,0,0,329,0,0,0,0,0,0,0,130,0.2,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,99100,0,0,329,0,0,0,0,0,0,0,110,1.8,4,4,16.1,884,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,99100,0,0,326,0,0,0,0,0,0,0,110,0.0,4,4,16.1,884,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,99200,0,0,324,0,0,0,0,0,0,0,40,0.0,4,4,16.1,879,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.5,80,99200,0,0,322,0,0,0,0,0,0,0,40,0.3,3,3,15.6,857,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,9.7,83,99300,0,0,321,0,0,0,0,0,0,0,40,1.8,3,3,13.4,879,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,7.5,77,99200,0,0,313,0,0,0,0,0,0,0,30,0.6,3,3,16.1,853,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.3,78,99200,0,0,311,0,0,0,0,0,0,0,360,0.4,3,3,16.1,358,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,7.2,82,99200,0,0,310,0,0,0,0,0,0,0,350,1.8,4,4,15.8,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.2,80,99200,0,0,306,0,0,0,0,0,0,0,350,0.0,2,2,14.5,1463,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.8,86,99200,0,0,295,0,0,0,0,0,0,0,350,0.0,0,0,12.9,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,8.0,83,99300,0,1,308,0,0,0,0,0,0,0,350,0.0,2,2,12.6,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,9.0,86,99300,124,1410,307,47,179,32,5224,0,3502,136,210,0.0,1,1,11.0,3353,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.5,82,99400,362,1410,307,206,478,83,23060,19036,9343,392,210,0.0,0,0,9.4,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.9,73,99500,563,1410,317,354,581,122,40441,34561,13976,618,210,0.2,0,0,8.5,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,9.4,61,99400,708,1410,326,478,675,139,55520,43657,16184,735,210,1.6,0,0,11.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,9.4,57,99300,785,1410,331,556,753,136,65577,48555,16158,740,210,2.1,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,9.0,52,99200,790,1410,353,487,517,197,55863,38262,22722,1070,210,1.8,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,7.2,44,99100,722,1410,338,535,845,102,63911,50583,12260,545,150,0.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,10.3,55,99100,585,1410,340,410,758,95,47917,41068,11175,486,150,3.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,11.1,62,99100,390,1410,335,241,586,78,27278,23209,8925,374,140,2.5,0,0,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.7,70,99100,153,1410,330,70,293,38,7690,0,4201,165,130,2.0,0,0,15.2,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.7,73,99100,1,131,327,0,0,0,0,0,0,0,130,1.6,0,0,14.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.7,78,99200,0,0,322,0,0,0,0,0,0,0,130,1.8,0,0,15.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.6,81,99200,0,0,320,0,0,0,0,0,0,0,130,0.0,0,0,14.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.1,81,99200,0,0,316,0,0,0,0,0,0,0,70,0.2,0,0,14.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,11.0,84,99300,0,0,314,0,0,0,0,0,0,0,70,1.6,0,0,12.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,99200,0,0,309,0,0,0,0,0,0,0,110,1.8,0,0,11.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,10.5,91,99300,0,0,306,0,0,0,0,0,0,0,280,0.2,0,0,9.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,9.7,89,99200,0,0,312,0,0,0,0,0,0,0,280,1.3,2,2,7.8,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.9,90,99100,0,0,292,0,0,0,0,0,0,0,280,0.0,0,0,6.2,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,8.0,93,99100,0,0,297,0,0,0,0,0,0,0,220,0.0,1,1,3.6,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,9.0,99,99100,0,0,337,0,0,0,0,0,0,0,220,0.2,10,10,0.4,56,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.4,96,99200,0,0,342,0,0,0,0,0,0,0,230,1.3,10,10,0.4,30,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,9.3,96,99300,0,0,341,0,0,0,0,0,0,0,230,0.0,10,10,0.4,30,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,8.7,97,99400,0,5,312,0,0,0,0,0,0,0,250,0.0,6,6,0.4,58,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,8.5,96,99400,125,1410,337,12,4,12,1431,0,1391,50,250,0.0,10,10,0.3,30,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,10.0,95,99400,364,1410,310,165,242,102,18166,11136,11335,484,250,1.5,2,2,3.2,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.3,79,99500,566,1410,313,357,586,122,40790,34730,13961,618,260,0.0,0,0,10.6,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,8.6,58,99400,711,1410,326,515,802,110,60980,48386,13115,586,260,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,7.0,45,99400,789,1410,334,615,938,91,75033,55099,11091,492,300,0.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,6.2,39,99300,794,1410,339,628,963,85,76984,56199,10470,463,300,2.2,0,0,16.1,5486,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,6.7,40,99200,726,1410,341,549,884,94,66108,51962,11374,502,300,0.0,0,0,16.1,5486,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,6.7,40,99200,590,1410,342,424,806,87,50089,44032,10348,447,280,0.2,0,0,16.1,5486,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,7.3,42,99200,394,1410,341,258,678,69,29705,26527,7920,328,280,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,8.0,46,99200,157,1410,338,83,436,34,9231,0,3821,149,260,1.8,0,0,16.1,5486,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,8.7,51,99200,2,149,336,0,0,0,0,0,0,0,260,2.0,0,0,16.1,5486,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,7.9,53,99200,0,0,327,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,8.2,60,99300,0,0,320,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.9,63,99300,0,0,316,0,0,0,0,0,0,0,290,0.2,0,0,15.6,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.3,68,99300,0,0,332,0,0,0,0,0,0,0,290,1.5,5,5,12.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.3,72,99300,0,0,325,0,0,0,0,0,0,0,290,1.5,4,4,13.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.3,75,99300,0,0,307,0,0,0,0,0,0,0,330,1.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,8.1,78,99200,0,0,303,0,0,0,0,0,0,0,290,1.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.2,83,99200,0,0,294,0,0,0,0,0,0,0,310,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.3,83,99200,0,0,295,0,0,0,0,0,0,0,310,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.7,83,99200,0,0,297,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.2,83,99100,0,0,294,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.2,83,99200,0,0,294,0,0,0,0,0,0,0,120,0.2,0,0,15.4,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,7.6,87,99300,0,10,310,0,0,0,0,0,0,0,120,1.7,5,5,7.3,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,9.5,95,99400,127,1410,333,19,11,18,2191,0,2084,77,20,0.3,9,9,0.7,61,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.6,97,99500,366,1410,339,90,28,83,10104,1102,9322,391,250,0.0,9,9,3.4,80,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,99500,569,1410,337,194,70,166,21667,4826,18587,843,250,1.4,8,8,4.9,1451,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.0,80,99500,714,1410,336,290,120,229,32373,9521,25738,1217,250,0.0,7,7,7.9,828,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,10.7,72,99400,793,1410,344,403,274,250,45382,22135,28230,1356,210,0.2,6,6,16.1,1005,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,10.6,70,99300,798,1410,343,451,392,229,51136,30481,26089,1245,210,0.2,5,5,16.1,675,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.7,71,99300,730,1410,343,419,420,201,47401,31188,22869,1073,210,1.3,5,5,15.9,710,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.3,76,99300,594,1410,339,323,373,165,36135,25370,18592,846,210,0.0,4,4,11.6,663,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.8,81,99300,399,1410,334,203,340,107,22521,16458,11896,512,250,0.0,3,3,4.8,478,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.2,86,99300,162,1410,329,66,207,42,7211,0,4620,183,250,0.0,2,2,4.8,416,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.8,90,99300,2,169,329,0,0,0,0,0,0,0,250,0.1,2,2,6.6,914,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.8,93,99300,0,0,322,0,0,0,0,0,0,0,250,1.6,1,1,10.2,904,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.6,90,99300,0,0,318,0,0,0,0,0,0,0,280,2.1,0,0,13.5,853,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,99400,0,0,313,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.6,90,99400,0,0,326,0,0,0,0,0,0,0,250,2.4,3,3,16.1,366,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,10.5,87,99400,0,0,322,0,0,0,0,0,0,0,20,0.3,3,3,15.8,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,10.0,91,99400,0,0,303,0,0,0,0,0,0,0,320,0.0,0,0,13.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.6,93,99400,0,0,318,0,0,0,0,0,0,0,300,0.0,3,3,13.7,441,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,9.8,93,99400,0,0,310,0,0,0,0,0,0,0,300,1.3,2,2,11.3,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,99400,0,0,296,0,0,0,0,0,0,0,240,0.3,0,0,11.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.8,93,99300,0,0,295,0,0,0,0,0,0,0,240,1.6,0,0,8.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,99300,0,0,303,0,0,0,0,0,0,0,290,0.0,3,3,1.9,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,8.3,96,99300,0,0,335,0,0,0,0,0,0,0,300,1.1,10,10,0.8,44,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.9,97,99300,0,15,293,0,0,0,0,0,0,0,50,0.0,0,0,8.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,9.0,95,99400,128,1409,295,56,263,32,6171,0,3542,138,50,0.0,0,0,9.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.4,81,99400,368,1409,307,201,424,90,22398,18081,10072,425,50,0.0,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.4,74,99500,571,1409,313,344,516,135,39065,32353,15398,687,50,0.0,0,0,15.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,9.5,72,99500,718,1409,316,453,563,166,51976,38999,19166,884,20,0.0,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.0,71,99400,796,1409,319,512,584,182,59173,41509,21140,991,20,0.0,0,0,15.6,3360,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,10.1,67,99300,802,1409,324,517,586,183,59719,41657,21283,998,20,0.2,0,0,12.9,1534,9,999999999,189,0.0000,0,88,999.000,10.0,1.0 +2016,1,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,10.9,70,99300,735,1409,325,466,568,170,53502,39152,19594,908,20,1.2,0,0,10.8,680,9,999999999,200,0.0000,0,88,999.000,5.0,1.0 +2016,1,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.5,90,99300,599,1409,317,365,526,141,41374,32775,16091,724,20,1.8,0,0,3.6,305,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.9,92,99300,404,1409,324,225,443,98,25139,20064,10997,470,20,0.2,1,1,3.2,260,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.9,92,99300,166,1409,324,75,284,42,8261,0,4596,182,70,1.5,1,1,3.2,368,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.2,90,99300,3,189,322,0,0,0,0,0,0,0,80,2.5,1,1,3.7,457,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.2,90,99400,0,0,322,0,0,0,0,0,0,0,110,1.9,1,1,6.4,388,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.2,90,99400,0,0,322,0,0,0,0,0,0,0,170,0.2,1,1,8.5,217,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.8,93,99400,0,0,327,0,0,0,0,0,0,0,170,1.4,2,2,9.3,161,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.8,93,99400,0,0,327,0,0,0,0,0,0,0,170,0.0,2,2,9.4,213,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,1,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.8,93,99400,0,0,327,0,0,0,0,0,0,0,140,0.2,2,2,8.0,208,9,999999999,229,0.0000,0,88,999.000,8.0,1.0 +2016,1,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.8,93,99400,0,0,327,0,0,0,0,0,0,0,140,1.5,2,2,7.8,192,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.6,92,99400,0,0,327,0,0,0,0,0,0,0,120,1.5,2,2,6.4,518,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.2,90,99400,0,0,329,0,0,0,0,0,0,0,80,0.3,3,3,6.8,939,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.2,90,99400,0,0,329,0,0,0,0,0,0,0,80,1.9,3,3,7.0,263,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.1,89,99400,0,0,329,0,0,0,0,0,0,0,100,1.1,3,3,6.8,410,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.5,86,99400,0,0,328,0,0,0,0,0,0,0,30,1.3,3,3,9.3,545,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.7,84,99400,0,0,325,0,0,0,0,0,0,0,30,0.0,3,3,16.1,710,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.1,87,99500,0,20,328,0,0,0,0,0,0,0,30,0.0,4,4,15.9,780,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.2,87,99500,130,1409,329,43,109,33,4687,0,3588,140,30,0.0,4,4,13.3,884,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.7,85,99600,370,1409,333,160,205,106,17594,9540,11719,502,200,0.0,4,4,7.2,888,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.5,74,99600,574,1409,342,281,269,172,31265,18575,19171,873,200,0.0,4,4,12.0,936,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.6,69,99500,721,1409,342,363,272,224,40651,21263,25190,1190,200,0.0,4,4,16.1,1067,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.5,62,99400,800,1409,349,446,375,233,50540,29394,26552,1269,200,0.4,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,9.9,56,99300,807,1409,336,558,708,152,65454,47149,17961,831,200,2.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,9.2,51,99300,739,1409,338,540,816,112,64220,49429,13380,600,250,1.8,0,0,16.1,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,8.4,47,99200,604,1409,339,432,792,93,50821,43733,10925,475,340,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,8.5,48,99200,408,1409,339,273,707,68,31501,27893,7863,326,340,1.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.2,52,99200,170,1409,337,92,465,36,10308,0,4039,158,300,2.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.7,56,99200,3,208,334,0,0,0,0,0,0,0,300,2.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.2,69,99200,0,0,329,0,0,0,0,0,0,0,290,2.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.6,78,99300,0,0,322,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.0,80,99300,0,0,317,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.5,78,99400,0,0,315,0,0,0,0,0,0,0,60,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,9.9,81,99400,0,0,310,0,0,0,0,0,0,0,60,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.3,84,99400,0,0,305,0,0,0,0,0,0,0,170,0.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.6,88,99300,0,0,298,0,0,0,0,0,0,0,170,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.2,83,99300,0,0,294,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,7.1,86,99300,0,0,291,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.6,86,99300,0,0,289,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,6.0,81,99300,0,0,289,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,5.6,74,99300,0,0,292,0,0,0,0,0,0,0,280,1.6,0,0,16.1,6096,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,5.5,70,99400,0,27,295,0,0,0,0,0,0,0,290,2.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,5.1,53,99400,132,1409,318,66,385,30,7343,0,3337,129,330,3.4,1,1,16.1,3658,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,5.4,48,99500,373,1409,333,218,510,83,24530,21745,9357,392,350,8.1,3,3,16.1,3658,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,4.3,39,99500,577,1409,345,355,544,132,40484,35137,15129,673,360,7.1,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,3.6,32,99500,725,1409,338,518,777,119,61291,49807,14074,632,360,6.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,2.0,26,99400,804,1409,345,613,891,104,74297,56140,12683,569,350,5.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,0.9,23,99300,811,1409,363,525,593,184,61002,44598,21436,1003,360,5.9,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,0.4,23,99200,744,1409,342,548,832,109,65597,53099,13093,585,350,4.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,3.0,29,99200,608,1409,342,412,696,112,47986,42858,13040,574,360,5.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,3.8,33,99200,413,1409,338,256,585,84,29118,27312,9617,405,360,5.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,4.4,36,99200,175,1409,334,88,383,41,9785,0,4527,178,360,4.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,4.3,39,99200,4,228,329,0,0,0,0,0,0,0,360,4.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,3.9,39,99200,0,0,326,0,0,0,0,0,0,0,10,5.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,3.7,40,99200,0,0,323,0,0,0,0,0,0,0,40,4.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,2.8,39,99300,0,0,319,0,0,0,0,0,0,0,50,3.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,2.9,44,99300,0,0,328,0,0,0,0,0,0,0,20,3.0,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,3.6,51,99300,0,0,306,0,0,0,0,0,0,0,20,2.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,4.9,61,99300,0,0,301,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,4.4,60,99300,0,0,299,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,4.4,69,99200,0,0,291,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,4.4,72,99200,0,0,288,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,4.4,77,99100,0,0,284,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,4.3,76,99100,0,0,284,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,3.9,74,99100,0,0,283,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,4.0,76,99200,0,34,283,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,4.5,70,99200,134,1409,290,69,413,30,7674,0,3304,127,280,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,4.9,64,99200,376,1409,298,242,652,68,27691,24986,7791,321,280,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,4.3,54,99300,581,1409,306,412,780,90,48453,43719,10655,460,280,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,3.7,40,99300,728,1409,323,541,846,103,64695,52099,12382,550,280,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,2.4,33,99200,808,1409,328,612,876,109,73923,55671,13193,594,280,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,0.0,27,99000,815,1409,328,618,879,109,74794,56596,13265,597,280,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,-0.2,25,99000,749,1409,332,559,854,105,67106,54103,12614,562,150,0.0,0,0,16.1,3658,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,-1.0,23,99000,613,1409,333,440,796,93,52027,47238,11074,481,150,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,-0.7,24,98900,418,1409,333,276,684,73,31841,30949,8441,351,150,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,0.1,26,98900,179,1409,332,97,457,39,10826,0,4326,169,150,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,0.7,28,98900,5,248,329,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,1.5,34,98900,0,0,321,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,3.7,42,99000,0,0,335,0,0,0,0,0,0,0,280,1.3,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,3.1,43,99000,0,0,315,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,5.3,53,99000,0,0,312,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,6.8,63,99000,0,0,309,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.1,69,99000,0,0,305,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,6.7,71,98900,0,0,302,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,6.7,79,98800,0,0,294,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,6.6,75,98800,0,0,297,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,6.1,76,98800,0,0,294,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.3,73,98800,0,0,297,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.1,79,98800,0,0,296,0,0,0,0,0,0,0,270,1.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,6.7,77,98900,0,41,296,0,0,0,0,0,0,0,310,2.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,6.7,76,98900,136,1408,310,49,144,35,5360,0,3845,150,230,0.3,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.7,69,98900,379,1408,316,179,274,105,19815,13625,11710,501,230,2.1,3,3,16.1,2145,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,6.6,63,99000,584,1408,322,301,317,169,33624,22607,19035,865,250,2.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,9.7,70,99000,732,1408,333,395,346,216,44575,26741,24418,1151,250,1.3,3,3,16.1,3048,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,11.1,72,98900,813,1408,342,446,354,242,50462,27969,27509,1321,220,0.3,4,4,16.1,2679,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,11.4,68,98800,820,1408,347,479,435,226,54585,33227,25872,1237,140,1.5,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.6,62,98700,754,1408,353,440,442,203,49979,32895,23236,1094,140,1.9,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,10.8,67,98600,618,1408,345,349,420,165,39345,28690,18692,852,160,4.2,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.6,76,98600,423,1408,340,208,301,118,23034,15904,13087,569,160,6.0,4,4,16.1,2065,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,11.4,81,98600,184,1408,335,66,139,48,7289,189,5314,212,140,4.4,4,4,16.1,1607,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.9,80,98700,5,270,330,0,0,0,0,0,0,0,140,2.6,3,3,16.1,1182,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.1,73,98700,0,0,326,0,0,0,0,0,0,0,350,0.9,3,3,16.1,975,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,3.4,49,98700,0,0,317,0,0,0,0,0,0,0,350,5.9,2,2,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,0.6,41,98700,0,0,304,0,0,0,0,0,0,0,10,7.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,0.6,41,98800,0,0,303,0,0,0,0,0,0,0,10,8.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,0.7,42,98800,0,0,301,0,0,0,0,0,0,0,360,7.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,1.2,44,98800,0,0,302,0,0,0,0,0,0,0,360,8.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,1.9,47,98800,0,0,302,0,0,0,0,0,0,0,10,9.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,2.7,51,98800,0,0,301,0,0,0,0,0,0,0,360,7.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,2.2,51,98800,0,0,298,0,0,0,0,0,0,0,350,8.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,2.2,51,98800,0,0,297,0,0,0,0,0,0,0,350,7.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,2.2,54,98900,0,0,294,0,0,0,0,0,0,0,350,6.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,2.2,53,98900,0,0,296,0,0,0,0,0,0,0,340,2.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,2.2,53,99000,0,49,295,0,0,0,0,0,0,0,350,4.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,2.3,48,99100,138,1408,302,70,398,31,7812,0,3468,134,330,3.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,2.6,46,99100,382,1408,307,230,552,80,26047,24096,9131,382,360,7.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,1.8,40,99200,587,1408,311,380,621,121,43776,39384,13970,617,350,6.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,2.2,37,99200,736,1408,318,485,631,155,56332,44618,18105,830,350,7.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,2.2,35,99100,817,1408,323,568,715,153,66932,50137,18084,835,10,5.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,2.1,34,99000,825,1408,325,596,786,135,70978,53097,16171,741,340,3.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,2.4,33,98900,759,1408,329,559,830,112,66853,52901,13429,602,50,2.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,6.7,46,98800,623,1408,331,430,727,109,50253,43407,12746,562,150,4.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,6.8,50,98900,428,1408,345,216,325,117,24020,18102,13087,567,160,4.9,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,6.4,52,98900,188,1408,339,71,157,50,7799,927,5502,220,190,3.7,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,5.8,53,98900,6,291,335,1,79,1,132,0,86,3,190,2.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,4.2,49,98900,0,0,328,0,0,0,0,0,0,0,280,2.1,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,3.1,47,99000,0,0,308,0,0,0,0,0,0,0,280,2.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,2.0,45,99000,0,0,305,0,0,0,0,0,0,0,360,5.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,0.4,40,99000,0,0,303,0,0,0,0,0,0,0,340,5.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,-0.6,38,99000,0,0,300,0,0,0,0,0,0,0,340,6.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,-0.4,38,99000,0,0,302,0,0,0,0,0,0,0,330,5.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,0.3,43,99000,0,0,299,0,0,0,0,0,0,0,360,5.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,-1.1,38,99000,0,0,297,0,0,0,0,0,0,0,350,4.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-1.1,38,99000,0,0,297,0,0,0,0,0,0,0,340,7.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-1.1,40,98900,0,0,295,0,0,0,0,0,0,0,360,8.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-1.1,39,99000,0,0,296,0,0,0,0,0,0,0,340,5.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-0.9,38,99000,0,0,299,0,0,0,0,0,0,0,340,7.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,0.0,41,99000,0,57,299,0,0,0,0,0,0,0,350,7.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,0.1,40,99100,140,1408,302,71,387,32,7865,0,3569,138,360,5.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,0.6,37,99100,385,1408,310,242,615,74,27642,26195,8472,352,80,2.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,0.6,33,99200,591,1408,317,410,737,100,47938,43972,11771,513,340,4.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,0.4,29,99200,740,1408,326,536,800,116,63811,51921,13849,621,20,3.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,-0.6,24,99100,821,1408,332,607,829,123,72847,55226,14841,674,50,0.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,-0.7,22,99000,829,1408,339,614,832,124,73753,55520,14933,679,50,2.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-1.4,21,99000,763,1408,337,556,808,118,66398,53287,14156,637,350,0.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,-2.8,19,98900,628,1408,333,441,754,105,51841,46961,12333,541,350,6.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,-2.8,20,98900,433,1408,329,280,649,81,32209,31798,9296,390,350,8.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,-2.5,22,98900,193,1408,325,103,439,43,11506,2385,4792,189,360,8.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-2.2,24,99000,7,312,321,1,165,0,145,0,23,1,360,8.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,-2.2,26,99000,0,0,316,0,0,0,0,0,0,0,10,7.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-2.3,27,99100,0,0,312,0,0,0,0,0,0,0,340,4.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,-2.6,27,99100,0,0,311,0,0,0,0,0,0,0,360,5.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,-1.7,31,99200,0,0,308,0,0,0,0,0,0,0,350,7.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-1.7,32,99200,0,0,305,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-1.8,33,99200,0,0,303,0,0,0,0,0,0,0,360,6.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-2.3,31,99300,0,0,303,0,0,0,0,0,0,0,360,6.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-2.8,30,99300,0,0,302,0,0,0,0,0,0,0,350,6.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-2.9,30,99300,0,0,302,0,0,0,0,0,0,0,350,7.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-3.3,29,99300,0,0,301,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-3.3,29,99300,0,0,301,0,0,0,0,0,0,0,360,6.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-3.4,29,99400,0,0,301,0,0,0,0,0,0,0,350,6.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,-3.7,28,99400,0,67,302,0,0,0,0,0,0,0,340,4.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,-3.0,27,99500,143,1408,308,71,381,33,7966,0,3662,142,350,6.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-4.0,22,99500,388,1408,316,243,606,76,27734,27053,8685,361,360,7.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,-4.2,19,99500,595,1408,325,410,725,103,47918,44688,12117,529,10,7.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,-2.8,19,99600,744,1408,332,536,787,120,63704,52298,14280,642,50,2.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,-2.7,19,99500,826,1408,336,606,816,127,72698,55345,15337,699,50,3.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,-2.3,19,99400,834,1408,337,613,819,128,73614,55528,15422,704,100,2.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,-3.0,18,99400,768,1408,337,557,796,122,66338,53312,14605,659,120,1.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,-3.5,17,99400,633,1408,339,442,743,108,51905,46937,12703,559,120,2.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-2.1,20,99400,438,1408,335,282,640,83,32392,31867,9550,402,120,3.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,-1.4,23,99400,198,1408,328,105,434,44,11743,2979,4951,195,130,2.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-1.6,24,99400,8,333,324,1,108,0,137,0,51,2,130,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,-2.9,24,99500,0,0,316,0,0,0,0,0,0,0,20,0.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-7.9,17,99500,0,0,306,0,0,0,0,0,0,0,20,3.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,-8.6,17,99500,0,0,303,0,0,0,0,0,0,0,360,6.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-10.0,14,99500,0,0,303,0,0,0,0,0,0,0,10,6.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,-10.2,15,99500,0,0,300,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-11.0,14,99600,0,0,298,0,0,0,0,0,0,0,350,6.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-10.8,14,99600,0,0,298,0,0,0,0,0,0,0,360,5.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,-12.1,13,99600,0,0,296,0,0,0,0,0,0,0,340,4.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-11.0,15,99500,0,0,292,0,0,0,0,0,0,0,350,3.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,-7.6,25,99500,0,0,283,0,0,0,0,0,0,0,360,0.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-10.1,17,99500,0,0,292,0,0,0,0,0,0,0,360,3.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-9.9,18,99500,0,0,289,0,0,0,0,0,0,0,360,3.9,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,-5.6,33,99600,0,78,279,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,-5.4,31,99600,146,1407,284,76,423,32,8480,0,3588,138,360,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-4.0,32,99700,391,1407,291,254,666,69,29306,28605,8007,331,360,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-2.6,29,99700,599,1407,305,428,793,91,50621,46712,10797,467,360,0.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,-7.7,16,99700,748,1407,313,560,859,103,67421,55660,12479,555,360,3.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-7.2,16,99600,831,1407,317,633,889,109,76972,58693,13244,596,350,4.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,-7.3,14,99600,839,1407,322,641,892,109,77981,58980,13302,599,350,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,-7.5,13,99500,774,1407,326,582,868,105,70302,56653,12711,567,360,4.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-6.1,15,99400,638,1407,329,463,812,95,55003,49826,11282,492,350,3.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,-5.9,16,99400,443,1407,325,297,703,75,34407,34411,8770,367,360,4.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,-6.4,16,99400,202,1407,321,112,483,43,12611,3871,4813,189,350,4.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-6.6,16,99400,9,355,318,2,304,0,386,0,0,0,350,4.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,-6.1,19,99400,0,0,310,0,0,0,0,0,0,0,360,3.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-6.1,20,99500,0,0,308,0,0,0,0,0,0,0,330,1.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,-5.8,21,99500,0,0,305,0,0,0,0,0,0,0,300,2.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,-3.9,27,99500,0,0,302,0,0,0,0,0,0,0,320,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-3.9,28,99500,0,0,299,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,-3.6,30,99500,0,0,298,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,-2.0,38,99500,0,0,292,0,0,0,0,0,0,0,40,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,-1.0,47,99400,0,0,285,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,-0.8,52,99300,0,0,280,0,0,0,0,0,0,0,300,0.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,-1.7,46,99300,0,0,281,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,-1.7,52,99300,0,0,274,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,-1.7,51,99300,0,0,290,0,0,0,0,0,0,0,300,0.0,4,4,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,-1.6,54,99400,1,89,282,0,0,0,0,0,0,0,300,0.0,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,-1.1,49,99400,149,1407,282,75,395,34,8406,0,3764,146,300,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,-1.1,37,99400,395,1407,300,268,736,62,31183,29607,7188,294,140,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,-1.5,27,99400,603,1407,317,478,984,57,58614,51075,6964,291,140,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-4.2,18,99300,753,1407,326,624,1056,59,78337,60318,7443,318,140,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,-6.6,13,99300,835,1407,332,688,1038,71,86300,62849,8940,391,140,0.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,-9.0,10,99100,844,1407,334,677,987,85,83996,62147,10562,468,140,1.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,-6.8,12,99100,779,1407,339,613,953,85,75212,59200,10484,461,220,0.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,-6.2,12,99100,643,1407,341,484,880,82,58258,52037,9878,426,220,2.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,-3.8,16,99100,448,1407,338,304,722,74,35313,34950,8595,359,300,4.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,-2.8,19,99100,207,1407,333,113,464,45,12701,4335,5046,199,300,3.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,-4.4,18,99100,10,377,326,2,246,0,290,0,25,1,290,2.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,-4.1,20,99100,0,0,320,0,0,0,0,0,0,0,290,1.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,-8.2,14,99100,0,0,315,0,0,0,0,0,0,0,360,4.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-7.6,15,99100,0,0,317,0,0,0,0,0,0,0,10,0.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-6.3,18,99100,0,0,312,0,0,0,0,0,0,0,10,1.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,-4.1,23,99100,0,0,312,0,0,0,0,0,0,0,10,0.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-4.9,22,99100,0,0,309,0,0,0,0,0,0,0,10,1.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-3.7,26,99100,0,0,306,0,0,0,0,0,0,0,30,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,0.0,42,99000,0,0,298,0,0,0,0,0,0,0,30,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,0.1,44,99000,0,0,296,0,0,0,0,0,0,0,30,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,0.6,47,98900,0,0,294,0,0,0,0,0,0,0,240,0.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,0.7,49,99000,0,0,292,0,0,0,0,0,0,0,240,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,0.9,51,98900,0,0,291,0,0,0,0,0,0,0,280,0.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,0.3,45,99000,1,100,296,0,0,0,0,0,0,0,280,2.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,1.9,49,99000,151,1407,299,77,391,34,8529,0,3848,150,280,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,2.7,39,99000,398,1407,318,252,621,76,28827,27163,8752,365,290,0.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,2.3,30,99000,607,1407,334,422,740,103,49419,44421,12069,528,290,2.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,2.9,26,99000,757,1407,350,550,803,118,65540,51841,14144,637,290,0.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,3.9,24,98900,840,1407,361,622,832,126,74734,54464,15131,691,110,3.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,7.5,34,98800,849,1407,358,630,835,126,75658,53415,15202,696,110,4.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,9.5,43,98700,784,1407,353,573,812,121,68287,50392,14427,654,110,4.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,9.8,47,98700,649,1407,349,457,759,107,53674,44287,12647,560,160,3.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,9.4,46,98700,453,1407,347,296,658,84,33931,30569,9638,408,120,2.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,8.6,45,98700,212,1407,345,115,454,47,12829,3117,5210,207,110,2.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,8.5,47,98700,12,399,341,2,186,0,272,0,62,2,110,3.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.5,57,98700,0,0,332,0,0,0,0,0,0,0,100,3.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,9.9,64,98700,0,0,326,0,0,0,0,0,0,0,120,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.4,63,98800,0,0,325,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.5,66,98800,0,0,322,0,0,0,0,0,0,0,80,0.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.9,73,98800,0,0,317,0,0,0,0,0,0,0,80,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,9.5,77,98800,0,0,311,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,9.8,78,98800,0,0,312,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,8.9,86,98700,0,0,301,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,8.7,84,98700,0,0,301,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,98700,0,0,295,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.7,86,98700,0,0,294,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.3,87,98700,0,0,292,0,0,0,0,0,0,0,350,0.0,0,0,15.6,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.5,88,98700,1,112,292,0,0,0,0,0,0,0,350,0.0,0,0,14.3,2717,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,9.1,86,98800,154,1406,302,71,302,38,7863,0,4218,166,150,0.0,0,0,14.0,228,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.1,83,98800,402,1406,316,202,324,109,22384,16329,12163,524,150,0.0,1,1,11.3,323,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,10.7,80,98900,611,1406,321,322,337,176,36045,23761,19755,905,150,0.2,1,1,11.5,441,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.5,74,98800,762,1406,326,406,325,230,45723,25514,26030,1238,150,0.0,1,1,13.4,563,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,10.1,68,98800,845,1406,334,473,375,248,53807,29975,28352,1367,160,0.6,2,2,15.6,795,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,10.6,70,98700,854,1406,335,493,413,242,56203,32443,27761,1338,160,3.9,2,2,13.1,653,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,10.7,70,98700,789,1406,335,465,448,213,52928,33805,24391,1157,180,2.5,2,2,14.7,727,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.1,70,98700,654,1406,341,378,442,172,42712,30742,19578,900,190,2.1,3,3,16.1,705,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.1,69,98700,458,1406,342,257,436,114,28740,23470,12866,560,190,2.1,3,3,16.1,738,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.1,70,98700,217,1406,341,102,305,55,11252,3298,6090,246,160,1.8,3,3,16.1,784,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.2,71,98700,13,421,343,3,153,2,374,0,197,7,160,1.8,4,4,16.1,832,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.7,78,98700,0,0,339,0,0,0,0,0,0,0,170,3.5,4,4,16.1,852,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.7,82,98700,0,0,336,0,0,0,0,0,0,0,170,2.5,4,4,16.1,671,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.8,87,98800,0,0,335,0,0,0,0,0,0,0,160,1.7,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.1,87,98800,0,0,336,0,0,0,0,0,0,0,150,3.2,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.6,86,98700,0,0,334,0,0,0,0,0,0,0,170,3.5,5,5,16.1,1036,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,1,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98800,0,0,333,0,0,0,0,0,0,0,170,3.6,5,5,16.1,703,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.5,84,98700,0,0,329,0,0,0,0,0,0,0,190,3.4,5,5,16.1,967,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.1,87,98600,0,0,324,0,0,0,0,0,0,0,160,2.2,5,5,16.1,2065,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,10.6,88,98500,0,0,327,0,0,0,0,0,0,0,140,1.9,5,5,16.1,873,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,98500,0,0,328,0,0,0,0,0,0,0,160,4.2,5,5,16.1,411,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.9,83,98500,0,0,327,0,0,0,0,0,0,0,170,3.8,5,5,16.1,796,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,98400,0,0,324,0,0,0,0,0,0,0,150,4.1,5,5,16.1,1482,9,999999999,179,0.0000,0,88,999.000,7.0,1.0 +2016,1,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.5,84,98300,1,125,323,0,0,0,0,0,0,0,150,4.2,5,5,13.7,1227,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.0,89,98200,158,1406,322,46,74,38,5124,0,4220,166,170,6.1,5,5,3.3,495,9,999999999,189,0.0000,0,88,999.000,1.0,1.0 +2016,1,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,98100,406,1406,325,152,120,117,16759,6325,12987,563,170,8.8,5,5,4.0,244,9,999999999,189,0.0000,0,88,999.000,3.0,1.0 +2016,1,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.6,86,98000,615,1406,328,243,117,191,26995,8628,21400,987,160,5.3,5,5,11.6,460,9,999999999,189,0.0000,0,88,999.000,12.0,1.0 +2016,1,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.9,87,97800,767,1406,329,322,132,250,36084,10756,28175,1350,170,8.3,5,5,4.8,965,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.2,87,97600,850,1406,331,387,172,283,43514,14476,31987,1560,190,11.1,5,5,2.4,466,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2016,1,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.1,88,97400,859,1406,335,422,231,281,47514,19115,31822,1553,180,7.8,5,5,4.1,380,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,8.6,72,97300,794,1406,329,418,308,244,47238,25050,27724,1328,250,5.1,5,5,16.1,653,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,6.4,72,97400,659,1406,316,319,244,204,35691,19063,22985,1069,260,5.7,5,5,16.1,727,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,5.3,75,97400,463,1406,307,194,167,138,21428,10584,15388,678,10,8.5,5,5,16.1,728,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,4.2,74,97500,222,1406,303,73,99,58,8092,1627,6397,258,10,6.3,5,5,16.1,915,9,999999999,120,0.0000,0,88,999.000,1.0,1.0 +2016,1,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,3.8,71,97600,14,443,303,4,49,3,472,0,412,14,360,5.2,5,5,16.1,1067,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,2.1,61,97700,0,0,304,0,0,0,0,0,0,0,330,1.6,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,-1.4,45,97800,0,0,299,0,0,0,0,0,0,0,300,5.3,4,4,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,-3.1,42,97800,0,0,291,0,0,0,0,0,0,0,290,3.0,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-1.6,50,97900,0,0,290,0,0,0,0,0,0,0,270,2.5,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,1,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,-1.2,52,97900,0,0,291,0,0,0,0,0,0,0,280,2.2,4,4,16.1,77777,9,999999999,89,0.0000,0,88,999.000,72.0,1.0 +2016,1,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,-1.9,48,98000,0,0,278,0,0,0,0,0,0,0,300,3.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,-3.3,43,98000,0,0,277,0,0,0,0,0,0,0,290,3.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,-3.3,43,98000,0,0,282,0,0,0,0,0,0,0,310,3.2,1,1,16.1,1546,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-3.1,44,98100,0,0,286,0,0,0,0,0,0,0,300,3.7,2,2,16.1,1676,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,-2.1,50,98100,0,0,284,0,0,0,0,0,0,0,290,1.3,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,-1.6,58,98200,0,0,269,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.8,-1.0,66,98300,0,0,265,0,0,0,0,0,0,0,350,0.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,-1.2,66,98500,1,140,264,0,0,0,0,0,0,0,350,3.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,-4.4,40,98700,161,1406,274,85,435,35,9523,0,3954,154,340,6.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,-4.5,38,98800,410,1406,276,258,609,80,29527,29146,9226,386,350,7.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,-5.1,34,98900,619,1406,289,356,441,162,40428,32529,18475,837,340,6.3,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,-5.5,31,98900,771,1406,284,492,571,179,56967,43578,20798,966,350,7.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,-4.9,31,98900,855,1406,287,576,656,177,67722,49407,20919,979,350,10.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,-4.5,31,98900,865,1406,289,604,720,161,71624,52496,19204,894,360,11.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,-5.2,30,98900,800,1406,301,474,456,215,54386,37176,24730,1169,360,13.6,4,4,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,-6.1,27,98900,665,1406,296,418,561,152,48055,40604,17580,797,10,11.9,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,-5.6,30,99000,469,1406,285,311,683,84,36035,35939,9700,410,360,12.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,-5.1,32,99100,227,1406,284,130,523,46,14717,7238,5202,206,10,12.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,-4.4,35,99100,16,466,282,4,336,0,581,0,27,1,10,11.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,-4.5,36,99200,0,0,279,0,0,0,0,0,0,0,350,9.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,-5.3,35,99200,0,0,277,0,0,0,0,0,0,0,350,5.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,-6.9,30,99300,0,0,277,0,0,0,0,0,0,0,330,5.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-5.1,37,99200,0,0,274,0,0,0,0,0,0,0,330,1.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,-5.6,37,99300,0,0,282,0,0,0,0,0,0,0,10,0.5,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-5.7,36,99300,0,0,274,0,0,0,0,0,0,0,10,3.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,-6.1,36,99300,0,0,271,0,0,0,0,0,0,0,320,2.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,-5.9,39,99300,0,0,268,0,0,0,0,0,0,0,30,1.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,-5.2,41,99300,0,0,269,0,0,0,0,0,0,0,30,3.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,-6.1,39,99200,0,0,267,0,0,0,0,0,0,0,240,2.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,-6.2,40,99300,0,0,265,0,0,0,0,0,0,0,240,2.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.4,-6.4,35,99300,0,0,270,0,0,0,0,0,0,0,10,4.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.3,-4.9,46,99400,2,154,264,0,0,0,0,0,0,0,320,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,-4.4,43,99400,165,1405,271,84,392,38,9332,0,4215,165,320,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,-4.6,36,99500,414,1405,279,246,523,92,27897,26949,10441,442,290,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-5.6,28,99500,624,1405,289,439,756,103,51640,47298,12168,533,290,1.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-6.3,23,99400,776,1405,297,570,819,117,68267,54879,14099,635,290,1.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-10.2,16,99300,860,1405,296,648,863,120,78604,58815,14569,662,290,0.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,-10.2,15,99300,870,1405,315,525,474,231,60610,39636,26856,1284,300,0.5,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,-5.6,21,99200,805,1405,324,487,486,209,56064,39171,24157,1140,300,3.2,5,5,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,-8.0,18,99200,670,1405,318,415,541,158,47743,39846,18192,827,300,3.1,4,4,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,-5.3,23,99200,474,1405,303,324,733,77,37830,37569,9032,380,300,0.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-1.8,33,99200,232,1405,309,113,334,58,12530,6652,6450,260,160,2.6,1,1,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-0.9,36,99200,18,488,312,5,167,3,602,0,351,12,160,4.2,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,0.7,43,99300,0,0,300,0,0,0,0,0,0,0,250,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,4.5,62,99400,0,0,298,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,4.5,67,99400,0,0,293,0,0,0,0,0,0,0,240,1.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,1.4,57,99400,0,0,287,0,0,0,0,0,0,0,360,2.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,0.0,49,99400,0,0,289,0,0,0,0,0,0,0,350,8.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,0.0,51,99400,0,0,286,0,0,0,0,0,0,0,10,7.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,-0.3,52,99500,0,0,283,0,0,0,0,0,0,0,360,4.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,-2.2,48,99500,0,0,277,0,0,0,0,0,0,0,360,0.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,-2.3,52,99500,0,0,271,0,0,0,0,0,0,0,360,2.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,-2.8,50,99500,0,0,271,0,0,0,0,0,0,0,360,2.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,-2.7,51,99600,0,0,270,0,0,0,0,0,0,0,360,2.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,-2.0,58,99600,0,0,267,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.2,-0.8,65,99700,2,169,267,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,0.2,63,99800,168,1405,274,88,422,37,9826,0,4189,164,350,0.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,-2.4,38,99900,418,1405,290,272,656,76,31293,30733,8805,368,350,3.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-3.5,31,99900,629,1405,295,447,776,100,52810,47842,11825,517,340,3.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-4.5,27,99900,781,1405,299,580,839,113,69693,55399,13646,613,320,3.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,-5.1,24,99800,865,1405,303,654,870,119,79428,58374,14478,659,320,1.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,-5.5,21,99800,875,1405,307,663,873,119,80606,58739,14569,664,320,4.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-4.9,22,99700,810,1405,309,606,850,115,73053,56554,13955,630,360,3.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-4.6,22,99700,675,1405,310,487,797,104,57866,50636,12416,548,340,2.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,-5.3,21,99700,479,1405,309,321,697,84,37283,37045,9729,412,340,5.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-5.9,20,99700,236,1405,307,133,495,50,15004,8723,5643,225,340,4.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-6.1,21,99700,19,510,304,6,444,0,1163,0,0,0,340,4.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,-6.0,24,99800,0,0,296,0,0,0,0,0,0,0,350,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-5.8,26,99800,0,0,292,0,0,0,0,0,0,0,360,4.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-6.6,26,99900,0,0,288,0,0,0,0,0,0,0,350,4.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,-6.3,28,99900,0,0,285,0,0,0,0,0,0,0,350,3.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,-6.9,26,99900,0,0,285,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,-4.9,37,99900,0,0,277,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,-4.2,42,99900,0,0,273,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,-3.4,48,99800,0,0,270,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,-3.9,46,99800,0,0,269,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,-3.9,48,99700,0,0,267,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.5,-3.8,50,99700,0,0,265,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,-3.5,53,99700,0,0,272,0,0,0,0,0,0,0,340,0.0,2,2,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,-4.8,45,99800,3,185,266,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,-7.5,26,99800,172,1404,283,107,645,28,12249,0,3188,121,340,2.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-8.0,21,99900,423,1404,291,311,869,50,37128,35443,5940,240,360,7.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,-9.2,17,99900,633,1404,296,480,891,78,57861,52285,9406,404,350,8.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-7.6,17,99800,786,1404,317,490,532,192,56575,41854,22276,1042,350,6.9,2,2,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,-6.4,17,99700,870,1404,315,649,840,128,78371,57649,15485,708,360,7.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,-4.6,19,99600,881,1404,320,669,878,119,81411,58807,14484,660,360,6.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,-5.6,17,99600,816,1404,320,616,868,111,74528,57378,13508,609,10,8.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,-5.6,18,99500,681,1404,320,496,816,101,59174,51624,12071,531,340,6.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-5.8,17,99500,484,1404,319,335,750,77,39213,38851,8993,378,360,7.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-5.9,18,99500,241,1404,315,142,549,47,16060,9430,5388,214,360,8.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,-6.2,19,99500,21,532,311,7,476,0,1359,0,0,0,360,8.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,-6.7,20,99500,0,0,304,0,0,0,0,0,0,0,360,8.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,-6.8,20,99600,0,0,302,0,0,0,0,0,0,0,360,7.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-7.3,20,99600,0,0,300,0,0,0,0,0,0,0,360,7.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-7.9,19,99600,0,0,299,0,0,0,0,0,0,0,360,8.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-8.2,19,99600,0,0,299,0,0,0,0,0,0,0,350,7.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-7.8,19,99600,0,0,299,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-7.8,19,99600,0,0,299,0,0,0,0,0,0,0,350,6.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-7.7,19,99600,0,0,299,0,0,0,0,0,0,0,360,7.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,-7.2,21,99600,0,0,298,0,0,0,0,0,0,0,360,7.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-7.1,20,99600,0,0,299,0,0,0,0,0,0,0,360,6.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-6.6,22,99700,0,0,297,0,0,0,0,0,0,0,360,5.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-6.1,24,99700,0,0,296,0,0,0,0,0,0,0,360,6.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,-6.0,24,99800,3,201,295,0,0,0,0,0,0,0,350,5.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,-5.6,23,99800,176,1404,300,92,416,39,10234,399,4425,173,350,6.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,-5.7,20,99900,427,1404,310,276,645,80,31752,31688,9182,385,350,7.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-6.1,17,99900,638,1404,318,451,762,104,53164,48190,12355,542,350,7.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,-6.0,16,99900,791,1404,323,583,823,119,69924,55337,14299,646,340,7.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,-5.4,16,99800,876,1404,327,657,853,125,79586,58035,15211,695,330,7.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,-4.7,16,99800,886,1404,332,666,856,126,80775,58206,15300,700,340,5.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,-6.6,13,99700,821,1404,331,609,834,121,73338,56512,14650,664,340,7.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-6.1,14,99600,686,1404,332,492,782,109,58293,50775,13013,577,350,8.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,-6.4,14,99600,489,1404,330,326,685,87,37841,37599,10170,432,10,7.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,-6.7,14,99600,246,1404,326,139,491,53,15609,10099,5938,237,360,7.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-7.2,14,99700,23,554,322,8,245,4,948,0,478,17,360,7.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-7.1,16,99700,0,0,315,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-6.7,18,99700,0,0,312,0,0,0,0,0,0,0,360,6.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,-6.8,18,99700,0,0,309,0,0,0,0,0,0,0,360,7.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,-7.1,18,99700,0,0,309,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-6.6,19,99700,0,0,307,0,0,0,0,0,0,0,350,6.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-6.2,20,99700,0,0,307,0,0,0,0,0,0,0,350,7.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,-6.7,20,99700,0,0,304,0,0,0,0,0,0,0,360,9.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-6.6,21,99700,0,0,300,0,0,0,0,0,0,0,350,9.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,-6.1,23,99600,0,0,299,0,0,0,0,0,0,0,360,8.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-6.1,22,99600,0,0,300,0,0,0,0,0,0,0,360,9.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,-6.1,23,99600,0,0,299,0,0,0,0,0,0,0,360,7.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-6.0,22,99600,0,0,301,0,0,0,0,0,0,0,360,8.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,-5.5,24,99600,4,218,300,0,0,0,0,0,0,0,360,7.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-5.0,23,99700,180,1404,305,95,430,40,10626,803,4471,175,360,7.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,-4.9,21,99700,432,1404,313,282,664,78,32570,32431,9036,378,360,8.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-4.4,19,99700,643,1404,321,459,781,101,54356,48804,12045,528,350,8.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,-4.4,17,99700,796,1404,330,593,844,115,71425,55904,13833,623,360,8.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,-4.4,16,99600,881,1404,335,669,874,120,81273,58654,14655,668,350,7.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,-4.2,15,99400,892,1404,339,678,877,121,82500,58910,14741,673,350,8.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,-3.2,16,99400,827,1404,342,620,855,117,74915,56750,14143,640,350,8.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,-5.9,13,99300,691,1404,341,501,803,106,59648,51642,12648,560,340,6.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,-6.9,12,99300,495,1404,338,334,704,86,38824,38581,9992,424,10,7.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,-7.5,12,99300,251,1404,333,143,508,53,16183,10898,5947,238,360,7.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,-7.2,13,99300,25,576,330,9,254,5,1059,0,536,19,360,7.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,-7.1,14,99300,0,0,323,0,0,0,0,0,0,0,10,7.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,-6.8,16,99300,0,0,318,0,0,0,0,0,0,0,360,9.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,-7.2,16,99400,0,0,316,0,0,0,0,0,0,0,360,6.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,-7.1,16,99400,0,0,316,0,0,0,0,0,0,0,360,7.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-6.7,17,99400,0,0,314,0,0,0,0,0,0,0,350,9.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,-6.8,17,99300,0,0,314,0,0,0,0,0,0,0,350,10.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-7.3,17,99300,0,0,311,0,0,0,0,0,0,0,360,9.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-7.7,16,99300,0,0,311,0,0,0,0,0,0,0,360,9.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-7.1,17,99300,0,0,311,0,0,0,0,0,0,0,360,7.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,-6.8,18,99200,0,0,309,0,0,0,0,0,0,0,360,7.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,-7.3,17,99200,0,0,309,0,0,0,0,0,0,0,360,7.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-7.8,16,99200,0,0,311,0,0,0,0,0,0,0,360,8.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,-7.6,16,99200,4,235,312,0,0,0,0,0,0,0,350,8.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,-6.4,16,99300,184,1403,321,99,450,40,11085,1355,4491,176,360,9.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,-5.0,15,99300,436,1403,334,290,687,76,33539,33405,8818,369,360,7.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,-6.1,11,99300,648,1403,349,470,806,97,55812,50081,11578,506,10,8.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,-5.8,11,99300,802,1403,356,605,870,109,73264,57109,13175,592,10,6.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,-4.5,11,99300,887,1403,360,682,900,113,83344,59607,13886,631,100,3.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,-7.9,9,99200,897,1403,356,691,904,114,84650,60476,13960,635,20,9.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,-8.4,8,99100,832,1403,357,633,881,110,76908,58598,13458,607,20,8.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,-8.7,8,99100,697,1403,356,512,828,101,61264,53061,12130,535,20,8.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,-8.2,9,99100,500,1403,353,342,728,83,39982,39787,9712,412,20,10.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,-7.8,10,99200,256,1403,349,149,529,52,16822,11684,5922,237,30,8.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,-8.0,10,99200,27,598,344,10,265,5,1172,0,586,21,30,7.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,-8.9,10,99200,0,0,338,0,0,0,0,0,0,0,10,7.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,-8.8,11,99200,0,0,334,0,0,0,0,0,0,0,10,5.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,-8.4,11,99200,0,0,334,0,0,0,0,0,0,0,10,6.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,-8.7,11,99200,0,0,331,0,0,0,0,0,0,0,20,6.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,-7.5,13,99300,0,0,329,0,0,0,0,0,0,0,10,4.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,-5.6,15,99300,0,0,333,0,0,0,0,0,0,0,20,4.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-5.7,15,99300,0,0,332,0,0,0,0,0,0,0,20,4.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-6.1,14,99300,0,0,330,0,0,0,0,0,0,0,10,4.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-6.1,14,99200,0,0,330,0,0,0,0,0,0,0,360,4.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-6.1,14,99200,0,0,330,0,0,0,0,0,0,0,10,5.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-6.1,14,99200,0,0,330,0,0,0,0,0,0,0,360,6.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,-6.0,15,99200,0,0,330,0,0,0,0,0,0,0,360,6.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-5.5,16,99300,5,253,329,0,0,0,0,0,0,0,360,6.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,-4.9,15,99300,188,1403,337,98,413,43,10955,2151,4781,188,10,7.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-4.5,14,99400,441,1403,346,283,633,84,32588,32353,9716,410,10,6.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,-4.9,12,99400,653,1403,352,458,745,111,53872,48017,13100,579,20,6.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,-4.5,12,99400,807,1403,358,589,805,126,70539,54778,15186,690,360,8.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,-4.9,11,99300,892,1403,362,663,833,133,80154,57515,16175,744,20,7.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,-4.3,11,99200,903,1403,363,673,837,134,81351,57692,16284,750,360,7.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,-4.0,11,99200,838,1403,366,616,815,129,73992,55733,15548,710,10,7.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,-4.6,11,99200,702,1403,362,499,765,116,59095,50484,13797,616,20,8.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,-5.0,11,99200,505,1403,359,335,672,93,38775,38055,10787,462,20,7.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,-5.6,11,99200,261,1403,354,147,487,56,16539,11826,6368,256,10,5.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,-5.8,12,99200,29,620,349,11,243,6,1273,0,700,25,10,4.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-7.2,11,99200,0,0,342,0,0,0,0,0,0,0,10,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,-7.0,12,99200,0,0,335,0,0,0,0,0,0,0,350,4.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-6.1,14,99200,0,0,332,0,0,0,0,0,0,0,360,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-6.0,15,99200,0,0,329,0,0,0,0,0,0,0,360,4.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,-5.3,18,99300,0,0,322,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-3.9,22,99300,0,0,317,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,-3.7,24,99200,0,0,311,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-2.6,31,99200,0,0,301,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-1.8,36,99200,0,0,297,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-2.2,32,99200,0,0,303,0,0,0,0,0,0,0,270,1.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-2.1,32,99200,0,0,302,0,0,0,0,0,0,0,270,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,-1.6,37,99200,0,0,297,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-0.8,38,99300,6,273,299,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,0.5,35,99400,193,1402,314,106,475,41,11894,1662,4579,180,270,0.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,-0.2,24,99400,446,1402,335,331,878,52,39541,36558,6209,253,270,2.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,-1.2,17,99500,658,1402,353,533,1015,57,66064,54677,7070,298,280,2.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,-3.3,13,99400,812,1402,363,676,1056,64,85184,61877,8056,349,330,2.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,-3.3,12,99300,898,1402,368,719,978,92,89299,61798,11520,516,350,2.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,-3.1,11,99200,908,1402,373,702,910,113,86109,59945,13934,634,350,2.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,-2.3,12,99100,843,1402,373,631,847,121,76168,56617,14668,667,350,5.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,-2.7,12,99100,708,1402,370,511,794,111,60786,51326,13186,587,340,6.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,-2.5,13,99100,510,1402,367,342,692,91,39767,38604,10569,452,350,8.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,-2.8,13,99100,266,1402,375,135,366,66,15039,10431,7350,300,360,7.3,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,-3.4,13,99100,31,642,379,12,183,8,1362,0,910,33,360,6.5,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-3.8,15,99100,0,0,364,0,0,0,0,0,0,0,360,4.8,4,4,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,-3.4,17,99100,0,0,338,0,0,0,0,0,0,0,10,2.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-3.7,17,99200,0,0,336,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,-2.5,21,99200,0,0,330,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-1.0,27,99200,0,0,320,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,-0.7,30,99200,0,0,316,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,-1.0,31,99200,0,0,312,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-0.8,36,99200,0,0,303,0,0,0,0,0,0,0,300,0.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,-1.5,33,99200,0,0,304,0,0,0,0,0,0,0,300,2.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-0.6,41,99200,0,0,295,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-0.5,42,99200,0,0,294,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,-0.1,46,99200,0,0,292,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,-0.4,43,99200,7,293,294,1,204,0,154,0,8,0,290,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,0.8,42,99300,197,1402,312,89,275,51,9882,2789,5621,225,290,0.0,2,2,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,1.4,33,99400,451,1402,322,314,764,68,36753,35053,8004,333,250,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,-0.8,20,99400,664,1402,345,533,997,61,65717,54494,7554,320,250,2.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,-1.9,14,99400,818,1402,374,628,900,103,76473,57652,12578,564,360,4.3,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,-2.8,12,99300,903,1402,369,784,1137,52,101693,65553,6721,289,100,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,-2.7,12,99200,914,1402,386,656,764,158,78451,54718,18980,886,100,1.5,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,-2.4,12,99100,849,1402,374,646,879,113,78417,57775,13815,626,100,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,-2.6,12,99100,713,1402,372,521,815,107,62215,52192,12779,568,170,0.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,-0.2,16,99100,516,1402,368,340,662,97,39340,37618,11211,482,170,5.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,1.4,19,99100,271,1402,364,150,466,60,16862,11920,6790,275,170,4.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,1.0,20,99100,33,664,358,13,233,8,1485,0,863,32,170,3.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,0.3,20,99100,0,0,352,0,0,0,0,0,0,0,280,2.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-1.1,21,99200,0,0,340,0,0,0,0,0,0,0,270,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,-1.1,23,99200,0,0,332,0,0,0,0,0,0,0,290,0.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,-1.0,25,99200,0,0,327,0,0,0,0,0,0,0,290,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-0.3,30,99100,0,0,319,0,0,0,0,0,0,0,360,0.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,1.5,41,99100,0,0,308,0,0,0,0,0,0,0,360,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,0.8,38,99100,0,0,308,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,1.7,51,99100,0,0,296,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,1.7,51,99000,0,0,296,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,1.8,52,99000,0,0,295,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,2.1,56,99000,0,0,291,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,1.7,55,99000,0,0,291,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,1.7,54,99100,7,313,291,1,145,0,141,0,32,1,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,1.7,42,99100,202,1401,307,119,562,38,13468,1869,4312,168,180,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,1.5,32,99200,456,1401,325,329,825,61,38912,36462,7184,296,180,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,0.5,23,99300,669,1401,342,525,953,70,64125,53425,8587,368,180,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,-0.3,18,99300,823,1401,356,673,1021,73,84063,60521,9170,402,180,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,-2.3,14,99200,909,1401,364,756,1053,73,95693,63617,9305,411,180,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,-2.9,12,99100,919,1401,369,766,1056,73,97178,64037,9309,411,180,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-3.2,11,99100,855,1401,373,703,1033,73,88301,62302,9228,405,180,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,-2.1,12,99000,719,1401,376,572,976,72,70432,56731,8831,381,180,0.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,-0.5,14,99000,521,1401,373,387,870,64,46297,43172,7685,321,180,3.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,0.6,17,99100,276,1401,368,175,655,47,20122,13497,5356,213,180,1.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,-0.4,16,99100,35,686,364,15,604,0,2946,0,0,0,250,0.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,0.4,21,99100,0,0,351,0,0,0,0,0,0,0,250,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,-0.6,22,99200,0,0,338,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,-0.3,26,99200,0,0,330,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,1.1,33,99200,0,0,321,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,1.1,34,99200,0,0,317,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,1.4,38,99200,0,0,313,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,3.4,48,99100,0,0,308,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,3.7,52,99100,0,0,304,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,2.8,50,99100,0,0,303,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,2.9,56,99000,0,0,296,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,3.2,61,99000,0,0,292,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,2.8,61,99100,0,0,290,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,2.8,59,99100,8,334,292,1,99,0,137,0,54,2,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,2.7,47,99200,207,1401,306,121,555,39,13722,2636,4475,175,90,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,2.1,35,99200,461,1401,322,331,812,63,39029,36605,7474,310,90,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,1.7,27,99200,674,1401,340,526,938,74,63989,53008,9022,389,90,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,1.4,20,99200,829,1401,359,672,1005,78,83690,59766,9672,426,90,0.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,-0.3,16,99200,914,1401,366,755,1037,78,95169,62769,9857,438,90,2.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,1.0,18,99000,925,1401,368,765,1041,78,96580,62618,9873,439,190,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,0.2,15,99000,860,1401,375,702,1017,78,87834,61128,9766,431,190,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,-1.4,13,98900,724,1401,375,572,961,75,70225,56403,9282,403,180,0.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,0.7,17,98900,526,1401,369,389,856,67,46334,43017,8013,336,180,4.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,2.4,21,98900,281,1401,364,178,646,48,20350,13886,5549,221,160,3.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,1.9,21,99000,37,708,362,17,323,8,1937,0,956,35,160,2.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,2.6,24,99000,0,0,354,0,0,0,0,0,0,0,290,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,1.7,26,99000,0,0,343,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,1.8,29,99000,0,0,333,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,2.3,35,99000,0,0,324,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,3.0,41,99000,0,0,317,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,3.7,46,99000,0,0,313,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,3.0,43,99000,0,0,313,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,3.9,55,99000,0,0,302,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,3.9,58,99000,0,0,299,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,3.9,61,99000,0,0,296,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,3.9,60,99000,0,0,297,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,3.8,64,99000,0,0,292,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,3.5,69,99100,10,355,286,2,286,0,317,0,6,0,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,4.2,56,99100,211,1400,303,121,523,42,13665,3509,4786,189,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,2.6,38,99100,467,1400,320,326,766,71,38149,36098,8294,347,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,1.7,28,99100,680,1400,336,516,886,85,62169,51979,10317,449,120,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,1.5,24,99100,835,1400,348,659,951,92,81040,58514,11320,505,120,0.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,0.6,19,99000,920,1400,358,739,982,94,91977,61200,11686,526,120,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,1.2,18,98900,931,1400,369,749,986,94,93340,61265,11718,528,120,2.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,4.2,24,98900,866,1400,365,688,963,93,84908,58535,11467,514,120,4.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,3.4,24,98900,729,1400,360,561,909,88,68050,53850,10679,469,130,2.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,4.4,26,98900,531,1400,360,382,808,76,45144,41317,8970,380,130,1.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,4.2,26,98900,285,1400,358,176,607,53,20088,14146,6001,241,90,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,4.2,27,98900,40,730,354,18,304,9,2038,0,1062,39,90,1.8,0,0,15.9,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,2.5,26,98900,0,0,346,0,0,0,0,0,0,0,340,0.8,0,0,14.7,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-1.4,19,99000,0,0,345,0,0,0,0,0,0,0,340,5.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,0.1,22,99000,0,0,344,0,0,0,0,0,0,0,10,4.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,0.6,25,99000,0,0,337,0,0,0,0,0,0,0,10,6.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,0.7,27,99000,0,0,333,0,0,0,0,0,0,0,340,4.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,0.8,27,99000,0,0,333,0,0,0,0,0,0,0,350,5.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,-1.0,24,99000,0,0,330,0,0,0,0,0,0,0,360,4.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,-3.6,20,99000,0,0,324,0,0,0,0,0,0,0,360,3.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,-5.3,17,99000,0,0,325,0,0,0,0,0,0,0,270,1.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-3.8,19,98900,0,0,325,0,0,0,0,0,0,0,350,3.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-3.3,20,98900,0,0,326,0,0,0,0,0,0,0,350,8.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,-3.1,21,98900,0,0,325,0,0,0,0,0,0,0,350,9.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-2.2,23,98900,11,376,323,2,229,0,285,0,32,1,350,7.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-2.3,20,99000,216,1400,333,118,458,47,13239,5634,5314,211,350,7.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-2.6,17,99000,472,1400,343,313,678,85,36255,35630,9821,416,340,7.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,-1.6,17,99000,685,1400,352,493,788,108,58547,50125,12805,567,330,7.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,-0.8,16,99000,840,1400,360,629,848,120,75970,56202,14538,661,340,7.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,0.8,18,99000,926,1400,365,705,877,125,85999,58204,15324,704,350,9.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,-0.9,15,98800,937,1400,368,715,881,126,87293,58889,15407,709,340,8.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,-2.7,12,98800,871,1400,368,657,859,122,79628,57583,14853,678,350,9.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,-2.1,13,98800,735,1400,368,536,809,112,64030,52556,13407,599,360,8.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,-2.9,13,98700,536,1400,366,366,716,92,42759,41035,10781,463,20,9.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,-3.9,12,98700,290,1400,361,171,535,60,19315,15684,6777,274,10,6.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,-5.7,11,98700,42,751,357,20,268,12,2233,0,1334,50,10,5.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,-6.0,11,98800,0,0,367,0,0,0,0,0,0,0,350,7.3,4,4,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,-5.4,13,98800,0,0,354,0,0,0,0,0,0,0,350,8.0,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-4.2,15,98800,0,0,342,0,0,0,0,0,0,0,350,9.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,-3.2,17,98800,0,0,341,0,0,0,0,0,0,0,360,5.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,-2.7,17,98900,0,0,359,0,0,0,0,0,0,0,360,9.0,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-2.1,18,98900,0,0,356,0,0,0,0,0,0,0,360,7.1,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,-1.4,19,98900,0,0,343,0,0,0,0,0,0,0,360,6.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,0.1,22,98800,0,0,345,0,0,0,0,0,0,0,350,5.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,0.6,23,98700,0,0,345,0,0,0,0,0,0,0,360,6.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,0.7,23,98700,0,0,345,0,0,0,0,0,0,0,360,8.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,1.1,24,98700,0,0,343,0,0,0,0,0,0,0,360,8.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,1.1,25,98800,0,0,341,0,0,0,0,0,0,0,360,8.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,1.3,25,98800,12,399,342,3,353,0,577,0,0,0,350,7.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,2.2,25,98800,221,1399,349,119,440,50,13323,5732,5556,221,350,9.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,2.2,22,98900,477,1399,357,311,649,90,35873,34259,10394,443,350,10.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,2.3,21,98900,691,1399,365,489,755,116,57662,48273,13706,612,360,9.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,2.8,20,98900,846,1399,371,622,813,130,74644,54163,15714,720,360,10.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,2.7,19,98800,932,1399,375,697,841,137,84416,56512,16643,771,360,8.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,2.2,17,98700,942,1399,378,706,845,138,85668,56920,16748,776,340,7.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,2.1,16,98600,877,1399,382,649,823,133,78156,55263,16064,739,10,8.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,1.8,17,98500,740,1399,379,531,775,121,62965,50610,14391,648,350,9.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,2.0,17,98500,542,1399,377,364,686,98,42212,39403,11446,495,360,8.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,2.2,18,98500,295,1399,374,171,513,63,19262,15087,7094,289,360,7.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,2.1,19,98500,45,773,370,22,256,14,2430,0,1528,58,360,7.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,1.7,20,98600,0,0,362,0,0,0,0,0,0,0,360,6.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,1.7,22,98600,0,0,357,0,0,0,0,0,0,0,360,7.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,1.6,23,98600,0,0,352,0,0,0,0,0,0,0,360,5.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,1.1,22,98700,0,0,351,0,0,0,0,0,0,0,360,6.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,1.0,23,98600,0,0,348,0,0,0,0,0,0,0,360,6.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,0.5,23,98700,0,0,344,0,0,0,0,0,0,0,360,4.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,0.3,25,98600,0,0,336,0,0,0,0,0,0,0,190,2.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,2.1,39,98600,0,0,315,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,1.6,37,98600,0,0,316,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,1.1,37,98600,0,0,313,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,1.3,39,98600,0,0,311,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,2.3,45,98600,0,0,307,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,3.3,50,98600,14,422,306,3,286,0,429,0,31,1,300,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,5.7,48,98600,227,1399,321,133,553,44,15073,5317,4972,197,300,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,3.2,32,98700,483,1399,336,343,794,69,40427,37822,8189,343,300,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,2.9,26,98700,697,1399,351,537,913,82,65092,52939,9965,434,300,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,2.8,20,98600,852,1399,369,682,977,87,84463,59112,10788,480,300,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,-0.3,14,98500,937,1399,376,764,1008,88,95770,62384,11046,495,240,1.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-2.2,12,98400,948,1399,374,774,1012,88,97222,63146,11068,496,240,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,-2.3,12,98300,883,1399,377,711,989,87,88592,61540,10906,486,240,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,-2.0,12,98300,746,1399,379,582,935,84,71178,56626,10288,451,170,0.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,0.2,15,98200,547,1399,376,400,835,74,47574,44158,8802,373,170,4.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,2.2,19,98200,300,1399,372,190,637,53,21698,16690,6083,245,180,3.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,2.1,20,98200,47,794,365,24,318,13,2668,0,1474,56,180,3.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,1.8,20,98300,0,0,362,0,0,0,0,0,0,0,300,2.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,2.2,24,98300,0,0,352,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,2.4,27,98300,0,0,343,0,0,0,0,0,0,0,10,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,3.3,35,98300,0,0,331,0,0,0,0,0,0,0,10,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,3.4,36,98300,0,0,329,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,3.9,42,98300,0,0,321,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,3.9,46,98300,0,0,314,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,3.9,50,98300,0,0,308,0,0,0,0,0,0,0,10,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,3.9,56,98200,0,0,301,0,0,0,0,0,0,0,10,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,3.9,54,98200,0,0,304,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,3.9,57,98200,0,0,300,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,3.9,57,98200,0,0,299,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,4.1,58,98200,15,445,300,4,174,2,491,0,259,9,140,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,4.8,50,98300,232,1398,313,115,347,57,12743,6147,6386,258,140,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,3.9,37,98400,488,1398,330,292,514,112,33114,29911,12795,556,140,0.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,3.6,32,98400,702,1398,337,454,599,153,52531,41920,17786,813,140,3.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,2.5,28,98300,858,1398,342,576,647,180,67600,47566,21172,995,120,4.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,4.7,35,98300,943,1398,339,645,670,193,76162,49202,22880,1089,170,5.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,3.0,1.0 +2016,2,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,6.7,43,98300,954,1398,336,653,673,194,77183,48859,23057,1099,190,3.9,0,0,16.1,3307,9,999999999,150,0.0000,0,88,999.000,5.0,1.0 +2016,2,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.3,60,98300,888,1398,333,601,655,184,70433,46016,21728,1029,230,2.5,0,0,16.1,3002,9,999999999,189,0.0000,0,88,999.000,8.0,1.0 +2016,2,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.8,69,98300,751,1398,332,492,615,162,56972,41266,18807,871,10,1.8,0,0,14.9,2743,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,13.0,78,98300,552,1398,330,339,543,125,38528,31469,14242,632,10,0.2,0,0,8.2,2697,9,999999999,229,0.0000,0,88,999.000,18.0,1.0 +2016,2,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98300,305,1398,326,162,404,74,17996,11931,8241,342,140,1.5,0,0,9.0,2392,9,999999999,229,0.0000,0,88,999.000,23.0,1.0 +2016,2,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,12.8,85,98300,50,816,323,24,202,17,2630,0,1850,72,140,2.6,0,0,10.1,2088,9,999999999,229,0.0000,0,88,999.000,28.0,1.0 +2016,2,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,9.9,78,98400,0,0,313,0,0,0,0,0,0,0,110,2.5,0,0,12.6,1746,9,999999999,189,0.0000,0,88,999.000,30.0,1.0 +2016,2,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.5,81,98400,0,0,308,0,0,0,0,0,0,0,110,2.0,0,0,10.8,1499,9,999999999,179,0.0000,0,88,999.000,13.0,1.0 +2016,2,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.9,86,98400,0,0,306,0,0,0,0,0,0,0,110,2.0,0,0,9.3,2651,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.4,85,98300,0,0,304,0,0,0,0,0,0,0,140,4.9,0,0,16.1,2179,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,98300,0,0,306,0,0,0,0,0,0,0,140,3.7,0,0,16.1,2227,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.3,82,98400,0,0,306,0,0,0,0,0,0,0,220,1.3,0,0,16.1,993,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.9,77,98400,0,0,308,0,0,0,0,0,0,0,190,0.5,0,0,16.1,748,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.1,79,98400,0,0,307,0,0,0,0,0,0,0,190,3.6,0,0,16.1,613,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.4,92,98400,0,0,304,0,0,0,0,0,0,0,120,3.0,0,0,16.1,472,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.1,89,98400,0,0,305,0,0,0,0,0,0,0,150,3.7,0,0,16.1,474,9,999999999,189,0.0000,0,88,999.000,1.0,1.0 +2016,2,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,10.6,89,98400,0,0,308,0,0,0,0,0,0,0,140,3.5,0,0,15.1,359,9,999999999,189,0.0000,0,88,999.000,13.0,1.0 +2016,2,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.6,92,98500,0,0,310,0,0,0,0,0,0,0,210,2.1,0,0,9.8,222,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.1,89,98600,17,469,310,5,191,3,602,0,324,11,250,1.5,0,0,12.3,743,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.4,88,98700,237,1398,312,122,383,57,13513,5673,6335,256,230,1.5,0,0,16.1,1287,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,9.9,79,98800,494,1398,312,305,560,107,34712,30398,12227,531,230,1.3,0,0,16.1,1584,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.2,70,98900,708,1398,316,473,652,143,54939,42748,16664,760,170,0.3,0,0,16.1,1067,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,7.7,57,98900,863,1398,321,599,702,165,70658,48651,19569,916,170,1.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,7.0,52,98800,949,1398,324,670,727,176,79681,51060,21020,994,140,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,5.3,42,98700,959,1398,328,678,730,177,80826,51845,21206,1004,140,1.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,3.3,35,98700,894,1398,329,624,711,169,73945,50838,20133,945,250,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,3.4,35,98600,756,1398,331,512,668,150,59864,46437,17638,810,190,0.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,3.9,36,98600,557,1398,331,354,591,118,40570,36379,13604,599,190,2.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,4.9,40,98600,310,1398,330,170,443,72,19064,14957,8103,334,270,2.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,5.8,45,98600,53,837,328,26,222,18,2827,0,1920,74,270,2.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,6.9,53,98700,0,0,322,0,0,0,0,0,0,0,260,2.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,7.9,61,98800,0,0,317,0,0,0,0,0,0,0,280,1.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.3,70,98800,0,0,311,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.3,72,98900,0,0,309,0,0,0,0,0,0,0,290,1.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.4,75,98900,0,0,307,0,0,0,0,0,0,0,290,2.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,1.0,1.0 +2016,2,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.9,81,98900,0,0,305,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,8.8,84,98800,0,0,302,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,8.3,86,98900,0,0,297,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,8.1,89,98900,0,0,295,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,7.1,87,98900,0,0,291,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,98900,0,0,287,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,98900,0,0,287,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,6.8,89,99000,19,494,288,5,352,0,706,0,41,1,270,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.3,81,99000,243,1397,296,130,432,56,14550,7444,6209,250,270,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.8,68,99100,500,1397,310,322,623,99,36925,33440,11380,491,270,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,7.5,60,99200,714,1397,317,497,722,128,58297,46189,15061,681,180,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,6.3,49,99200,869,1397,325,628,776,145,74937,52100,17363,805,180,0.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,6.9,48,99100,955,1397,328,701,803,152,84442,54010,18429,863,180,2.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,4.9,39,99000,965,1397,332,710,806,153,85667,54959,18576,870,180,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,4.8,38,99000,899,1397,332,654,786,148,78298,53426,17760,826,160,0.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,7.2,46,98900,762,1397,335,537,739,134,63323,48244,15818,721,160,2.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,7.0,46,98900,562,1397,333,372,656,108,42965,38165,12507,547,160,4.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,6.9,47,98900,314,1397,331,181,496,69,20300,15944,7762,319,150,4.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,6.9,48,98900,55,858,329,28,248,18,3046,0,1975,76,150,3.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,7.8,55,99000,0,0,325,0,0,0,0,0,0,0,260,2.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.8,59,99000,0,0,320,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.7,62,99100,0,0,315,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,7.2,63,99100,0,0,312,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,7.2,68,99100,0,0,307,0,0,0,0,0,0,0,300,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.2,72,99100,0,0,303,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,7.1,74,99100,0,0,300,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,6.6,77,99000,0,0,295,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.1,81,99000,0,0,290,0,0,0,0,0,0,0,30,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,6.0,83,98900,0,0,288,0,0,0,0,0,0,0,30,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.6,84,98900,0,0,285,0,0,0,0,0,0,0,30,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,5.5,85,99000,0,0,284,0,0,0,0,0,0,0,30,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,5.2,79,99000,21,519,286,6,390,0,863,0,33,1,30,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.1,74,99100,248,1396,295,140,494,53,15774,8558,5938,238,30,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,6.1,60,99200,506,1396,309,342,703,88,39704,36589,10200,436,170,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,5.4,48,99200,720,1396,320,526,809,109,62605,50020,12982,580,170,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,2.0,33,99100,875,1396,325,663,868,119,80528,56684,14557,665,170,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,4.0,36,99100,961,1396,333,740,896,124,90739,58159,15201,701,170,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,4.3,32,99000,971,1396,343,749,899,124,91939,58254,15277,705,170,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,4.4,30,98900,905,1396,348,690,878,121,83978,56694,14788,678,170,0.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,7.4,38,98900,767,1396,350,567,828,112,67869,51212,13487,607,170,3.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,8.2,42,98800,567,1396,346,394,738,94,46009,40447,11045,479,170,4.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,8.3,46,98900,319,1396,341,193,564,64,21814,16957,7243,296,160,3.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,8.2,49,98900,58,879,336,30,282,18,3299,0,2019,78,160,3.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,7.8,50,98900,0,0,332,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,7.7,54,99000,0,0,325,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,7.1,54,99000,0,0,322,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,6.7,57,99000,0,0,316,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,6.7,64,99000,0,0,307,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,6.7,65,99000,0,0,307,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,6.7,68,99000,0,0,304,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.7,77,99000,0,0,296,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.6,80,98900,0,0,293,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,6.0,81,98900,0,0,290,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,5.5,83,98900,0,0,285,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.9,80,98900,0,0,284,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,4.6,78,99000,23,544,284,7,419,0,1026,0,26,1,120,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,5.8,70,99100,254,1396,297,150,553,50,17002,9401,5652,226,120,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,7.2,62,99100,511,1396,313,361,774,77,42358,38276,9101,386,120,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,7.1,49,99100,726,1396,328,552,886,92,66668,51697,11130,491,120,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,6.4,37,99100,881,1396,346,696,947,98,85698,57457,12120,547,120,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,4.4,29,99000,967,1396,351,776,977,100,96728,60312,12462,566,160,1.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,5.1,28,99000,977,1396,360,785,980,100,97996,60219,12484,567,160,2.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,8.9,34,98900,910,1396,368,723,958,99,89322,57003,12237,554,130,3.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,9.0,35,98900,772,1396,366,595,905,94,72193,52729,11463,510,150,3.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,7.6,32,98900,572,1396,365,414,810,82,48988,42782,9747,419,150,3.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,4.6,27,98900,324,1396,358,204,626,59,23348,19145,6751,274,270,3.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-0.1,20,98900,61,899,351,33,313,19,3577,0,2076,80,270,3.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,-7.2,13,98900,0,0,333,0,0,0,0,0,0,0,350,6.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,-10.0,11,99000,0,0,324,0,0,0,0,0,0,0,340,5.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,-9.9,11,99000,0,0,319,0,0,0,0,0,0,0,360,5.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,-9.4,12,99000,0,0,317,0,0,0,0,0,0,0,360,3.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,-9.4,12,99000,0,0,323,0,0,0,0,0,0,0,330,3.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-9.2,12,99000,0,0,320,0,0,0,0,0,0,0,330,2.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,-8.4,14,98900,0,0,315,0,0,0,0,0,0,0,260,0.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,-8.4,14,98800,0,0,314,0,0,0,0,0,0,0,260,2.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,-5.4,23,98700,0,0,303,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-4.8,26,98700,0,0,299,0,0,0,0,0,0,0,330,1.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-7.0,16,98700,0,0,316,0,0,0,0,0,0,0,330,7.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,-5.6,19,98700,0,0,314,0,0,0,0,0,0,0,340,4.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,-5.6,18,98700,25,569,317,9,249,5,1060,0,537,19,360,9.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,-5.3,17,98800,259,1395,324,148,498,55,16660,11788,6229,250,360,10.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,-3.2,19,98800,517,1395,331,350,702,90,40799,39498,10527,451,360,11.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,-2.9,16,98800,732,1395,345,534,805,111,63731,52442,13358,597,360,11.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,-3.4,15,98800,887,1395,350,671,863,123,81582,58028,14952,684,360,10.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,-3.9,13,98700,973,1395,356,748,891,127,91831,60228,15627,721,350,10.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,-3.9,12,98700,982,1395,359,757,894,127,93019,60430,15694,724,350,8.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,-4.0,12,98600,916,1395,360,697,873,124,85029,58924,15193,697,20,6.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,-4.6,12,98600,778,1395,357,574,823,115,68930,54650,13878,625,360,8.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,-5.3,11,98600,577,1395,355,401,735,97,47008,44279,11391,494,360,6.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,-5.9,11,98600,329,1395,352,199,565,66,22634,20710,7517,307,20,6.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,-5.8,12,98600,64,920,349,32,283,19,3552,0,2130,82,20,7.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-4.4,15,98600,0,0,341,0,0,0,0,0,0,0,350,6.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,-7.5,13,98700,0,0,328,0,0,0,0,0,0,0,360,6.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,-9.2,12,98700,0,0,322,0,0,0,0,0,0,0,350,6.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-8.4,13,98700,0,0,320,0,0,0,0,0,0,0,350,2.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,-8.4,13,98700,0,0,319,0,0,0,0,0,0,0,340,2.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,-7.4,15,98600,0,0,319,0,0,0,0,0,0,0,340,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,-8.1,14,98600,0,0,318,0,0,0,0,0,0,0,240,3.9,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-6.6,19,98500,0,0,306,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,-5.8,23,98500,0,0,300,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,-3.8,30,98500,0,0,297,0,0,0,0,0,0,0,260,0.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-3.3,30,98600,0,0,300,0,0,0,0,0,0,0,260,1.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-3.1,30,98600,0,0,301,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-1.5,36,98600,27,595,298,10,515,0,1952,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-0.3,32,98800,265,1395,314,155,527,54,17464,12093,6160,247,10,1.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-1.3,22,98900,523,1395,334,373,788,77,44001,41867,9128,387,10,4.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,-2.0,19,98900,738,1395,341,565,897,91,68617,55282,11077,488,10,3.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,-1.3,18,98900,893,1395,349,679,871,121,82654,57947,14782,676,340,5.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,-2.3,16,98900,978,1395,351,706,766,168,84924,55389,20344,958,350,5.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,-3.0,14,98800,988,1395,354,738,833,148,89810,58218,18072,843,350,6.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,-4.2,13,98800,921,1395,352,684,823,140,82708,57269,17026,788,350,3.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,-2.8,15,98700,783,1395,352,572,801,122,68381,53680,14611,661,350,6.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,-3.5,14,98700,582,1395,351,404,734,98,47423,44232,11519,500,330,4.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,-4.4,14,98700,333,1395,359,179,408,82,20035,17278,9157,381,340,5.2,2,2,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,-5.7,13,98700,67,940,359,27,204,17,3017,0,1930,73,340,5.9,4,4,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-6.2,14,98800,0,0,333,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,-6.7,14,98800,0,0,326,0,0,0,0,0,0,0,360,6.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-6.8,15,98900,0,0,321,0,0,0,0,0,0,0,360,6.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,-7.2,15,99000,0,0,318,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-7.2,16,99000,0,0,315,0,0,0,0,0,0,0,10,6.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-7.2,17,99000,0,0,311,0,0,0,0,0,0,0,360,5.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-7.3,17,99000,0,0,311,0,0,0,0,0,0,0,360,7.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,-7.7,17,99000,0,0,307,0,0,0,0,0,0,0,360,7.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,-7.3,19,99000,0,0,304,0,0,0,0,0,0,0,360,5.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,-7.8,18,99000,0,0,303,0,0,0,0,0,0,0,360,6.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-7.8,18,99000,0,0,301,0,0,0,0,0,0,0,360,6.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-7.8,18,99100,0,0,301,0,0,0,0,0,0,0,360,7.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-7.6,18,99100,30,621,303,11,511,0,1692,0,14,0,360,8.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-6.7,19,99200,271,1394,308,158,530,56,17938,13646,6299,253,350,7.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,-6.7,17,99300,529,1394,315,366,733,87,42840,41717,10262,439,360,8.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,-6.8,14,99300,744,1394,325,553,838,106,66442,54561,12767,569,350,9.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-7.1,13,99200,899,1394,332,692,896,115,84802,59958,14086,641,350,7.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,-6.5,12,99100,984,1394,340,770,924,118,95327,61891,14603,670,340,7.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,-5.5,12,99100,994,1394,346,779,927,118,96501,61903,14649,672,350,6.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,-5.1,12,99000,927,1394,349,718,905,116,88186,60333,14265,652,360,7.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,-5.7,11,98900,788,1394,351,592,855,109,71573,56172,13183,592,350,6.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,-6.1,11,98900,587,1394,350,415,766,93,48987,45886,10990,476,340,5.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,-6.7,11,98900,338,1394,346,209,595,65,23904,22322,7450,305,350,6.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-7.4,11,98900,70,961,342,35,297,20,3890,0,2247,86,350,7.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,-8.2,12,98900,0,0,331,0,0,0,0,0,0,0,350,5.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-7.8,13,98900,0,0,326,0,0,0,0,0,0,0,350,6.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-7.9,14,99000,0,0,320,0,0,0,0,0,0,0,350,4.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-8.4,13,99000,0,0,319,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,-8.2,14,99000,0,0,315,0,0,0,0,0,0,0,330,1.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,2,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-4.3,24,99000,0,0,306,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-3.6,29,98900,0,0,300,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-2.2,36,98900,0,0,294,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-2.1,37,98900,0,0,293,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-1.7,41,98900,0,0,289,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,-1.7,43,98900,0,0,287,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,-1.6,46,98900,0,0,283,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,-0.8,45,99000,32,648,288,13,563,0,2548,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,1.2,40,99100,277,1394,307,170,598,51,19398,13715,5877,235,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,0.7,29,99100,535,1394,326,388,814,75,45934,42818,8917,378,360,0.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,-3.4,17,99100,750,1394,339,583,923,87,71243,56717,10599,466,360,2.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,-3.8,15,99100,905,1394,345,729,984,90,90978,62046,11290,506,140,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,-3.3,14,99100,990,1394,356,811,1013,91,102308,63856,11466,517,140,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,-3.3,14,99000,999,1394,354,820,1016,91,103566,64031,11477,517,190,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,-3.4,13,98900,932,1394,357,755,994,90,94572,62631,11357,510,190,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,-3.9,12,98900,793,1394,361,624,941,88,76655,58566,10844,480,140,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,-3.0,13,98900,592,1394,363,438,847,79,52415,47908,9429,403,140,1.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,-2.3,14,98900,343,1394,361,222,665,59,25620,23234,6795,276,250,2.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,-0.8,17,98900,73,981,357,38,333,21,4218,0,2300,89,250,3.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,0.5,23,98900,0,0,344,0,0,0,0,0,0,0,260,3.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,0.0,25,99000,0,0,334,0,0,0,0,0,0,0,250,2.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,0.1,27,99000,0,0,329,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,0.7,31,99000,0,0,324,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,1.2,37,99000,0,0,313,0,0,0,0,0,0,0,350,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,1.8,40,99000,0,0,311,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,2.2,45,99000,0,0,307,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,2.4,49,98900,0,0,302,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,3.2,57,98900,0,0,297,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,2.9,58,98900,0,0,293,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,3.2,62,98900,0,0,290,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,2.9,60,98900,0,0,292,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,3.2,60,99000,35,675,293,15,290,8,1716,0,880,32,330,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,2.6,45,99100,283,1393,308,172,579,54,19542,14187,6179,249,330,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,1.4,32,99100,541,1393,324,386,787,80,45598,42400,9520,406,330,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,0.2,24,99200,756,1393,337,579,894,94,70311,55199,11468,508,160,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,1.1,22,99200,911,1393,352,723,953,99,89507,59996,12359,558,160,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,1.2,20,99100,996,1393,358,803,982,101,100513,61819,12638,574,160,0.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,1.6,20,99000,1005,1393,363,811,985,101,101711,61870,12665,576,160,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,1.4,19,99000,938,1393,364,748,962,100,92917,60544,12472,565,160,2.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,2.6,21,98900,798,1393,363,618,911,96,75407,56121,11756,524,170,3.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,2.3,22,98900,597,1393,361,435,819,85,51748,46164,10085,435,170,4.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,1.4,21,98900,347,1393,356,222,643,62,25524,22810,7134,291,340,3.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,1.0,21,98900,76,1001,352,39,630,4,4857,0,554,19,340,3.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,0.5,24,99000,0,0,342,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,0.4,26,99000,0,0,334,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,2.9,33,99000,0,0,332,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,3.4,38,99000,0,0,325,0,0,0,0,0,0,0,300,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,4.1,41,99000,0,0,323,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,5.5,53,99000,0,0,314,0,0,0,0,0,0,0,110,0.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,8.4,66,99000,0,0,316,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,8.8,73,98900,0,0,311,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.0,76,98800,0,0,304,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,6.1,69,98900,0,0,300,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,6.0,68,98800,0,0,300,0,0,0,0,0,0,0,280,1.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,5.5,66,98800,0,0,299,0,0,0,0,0,0,0,130,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,5.2,63,98900,38,703,300,17,259,10,1911,0,1115,42,130,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,6.2,57,98900,289,1392,313,168,519,61,18965,13711,6851,279,130,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,6.7,45,98900,548,1392,332,373,707,95,43463,39074,11129,482,210,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,6.3,35,98900,762,1392,349,557,806,116,66511,50765,13950,629,210,0.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,3.9,25,98900,917,1392,359,694,861,127,84413,56447,15527,715,210,2.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,4.9,25,98800,1002,1392,367,770,888,131,94559,57933,16167,750,130,2.9,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,10.6,37,98700,1011,1392,374,778,891,132,95406,55500,16189,753,130,4.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,10.7,37,98700,943,1392,373,718,870,129,87271,54135,15705,727,120,3.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,11.3,43,98600,804,1392,365,594,821,120,71031,50032,14392,655,110,3.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.1,47,98600,602,1392,363,419,735,101,48946,40398,11878,522,100,3.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,12.2,50,98600,352,1392,359,215,575,70,24393,19205,7974,330,110,2.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,12.2,53,98600,80,1021,354,38,556,7,4639,0,812,29,110,2.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.1,64,98600,0,0,340,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.7,66,98700,0,0,335,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.7,68,98700,0,0,332,0,0,0,0,0,0,0,190,0.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,11.6,73,98700,0,0,326,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,11.1,77,98700,0,0,320,0,0,0,0,0,0,0,170,1.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.0,73,98800,0,0,323,0,0,0,0,0,0,0,170,0.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.5,75,98700,0,0,319,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.7,72,98700,0,0,317,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,8.1,69,98700,0,0,310,0,0,0,0,0,0,0,310,0.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,6.6,55,98700,0,0,317,0,0,0,0,0,0,0,310,2.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,3.4,37,98700,0,0,327,0,0,0,0,0,0,0,330,4.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,4.7,47,98700,0,0,318,0,0,0,0,0,0,0,260,2.7,0,0,15.6,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,9.5,79,98700,41,730,310,19,255,11,2115,0,1278,48,180,2.9,0,0,12.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,10.1,72,98800,295,1392,319,171,509,63,19207,13269,7083,289,140,1.3,0,0,12.6,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,10.5,66,98900,554,1392,327,375,693,99,43470,37577,11540,502,90,0.3,0,0,11.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,9.9,49,98900,768,1392,346,557,789,122,66231,48911,14543,660,90,2.2,0,0,14.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,9.4,41,98900,923,1392,357,693,843,134,83825,53764,16233,752,140,2.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,9.2,36,98800,1008,1392,365,768,870,138,93836,55615,16964,791,110,3.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,8.0,31,98700,1016,1392,371,776,872,139,94924,56331,17037,795,120,3.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,9.2,33,98700,948,1392,374,715,851,135,86805,54433,16473,765,130,3.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,10.8,38,98700,809,1392,372,592,804,125,70700,49890,15027,687,150,3.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,10.0,36,98700,607,1392,371,419,720,105,48892,41163,12340,543,130,2.6,0,0,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,9.5,36,98700,356,1392,368,217,564,73,24560,20476,8239,342,130,2.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,10.0,40,98700,83,1041,363,39,528,8,4711,0,965,35,130,2.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,10.1,45,98700,0,0,353,0,0,0,0,0,0,0,110,2.2,0,0,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,10.7,54,98700,0,0,344,0,0,0,0,0,0,0,120,2.4,0,0,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,11.0,57,98800,0,0,358,0,0,0,0,0,0,0,150,1.5,4,4,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,10.1,49,98800,0,0,347,0,0,0,0,0,0,0,200,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.5,57,98800,0,0,349,0,0,0,0,0,0,0,200,1.7,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.2,66,98800,0,0,326,0,0,0,0,0,0,0,200,2.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.2,74,98800,0,0,324,0,0,0,0,0,0,0,20,1.5,0,0,15.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,98700,0,0,320,0,0,0,0,0,0,0,20,1.3,0,0,12.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.5,84,98700,0,0,316,0,0,0,0,0,0,0,20,0.0,0,0,12.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.3,84,98700,0,0,310,0,0,0,0,0,0,0,190,0.2,0,0,11.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.9,71,98700,0,0,314,0,0,0,0,0,0,0,190,1.5,0,0,14.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,9.1,77,98800,0,0,309,0,0,0,0,0,0,0,190,1.3,0,0,15.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,10.2,85,98800,44,758,308,21,272,12,2333,0,1369,52,170,0.2,0,0,9.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,10.9,73,98900,301,1391,322,179,545,61,20225,14004,6936,283,170,1.6,0,0,8.8,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,9.7,52,98900,560,1391,340,388,733,93,45333,39342,10928,474,110,2.0,0,0,13.4,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,8.0,38,99000,774,1391,353,575,831,112,68904,51193,13478,608,110,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,8.6,37,98900,929,1391,360,714,887,121,87095,55504,14824,682,120,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,6.9,27,98900,1013,1391,373,790,914,124,97506,57983,15365,711,120,0.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,8.5,28,98800,1022,1391,382,798,917,124,98498,57385,15384,712,120,3.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,9.3,31,98700,954,1391,379,736,895,122,90063,55692,14975,691,140,4.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,9.0,32,98700,814,1391,374,610,847,115,73409,52120,13855,629,120,4.4,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,9.4,35,98700,611,1391,371,432,760,98,50778,42786,11608,509,150,3.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,9.7,37,98700,361,1391,366,225,598,70,25590,21377,7956,329,120,2.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,10.0,41,98700,86,1060,361,42,539,9,4987,0,1023,37,120,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,10.0,46,98800,0,0,351,0,0,0,0,0,0,0,150,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,9.9,48,98800,0,0,348,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,9.3,49,98900,0,0,342,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.2,54,98800,0,0,334,0,0,0,0,0,0,0,190,1.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,10.7,67,98900,0,0,328,0,0,0,0,0,0,0,180,2.1,0,0,15.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,2,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,11.1,77,98900,0,0,320,0,0,0,0,0,0,0,150,1.8,0,0,12.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.0,75,98900,0,0,321,0,0,0,0,0,0,0,150,0.0,0,0,11.5,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.3,77,98900,0,0,316,0,0,0,0,0,0,0,360,0.0,0,0,13.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,8.4,70,98900,0,0,311,0,0,0,0,0,0,0,360,0.2,0,0,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.6,76,98800,0,0,307,0,0,0,0,0,0,0,360,1.3,0,0,14.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.3,73,98900,0,0,303,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,7.6,76,98900,0,0,302,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,6.8,68,99000,48,787,304,24,287,14,2651,0,1564,60,360,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.2,60,99100,308,1391,315,187,574,60,21211,16110,6839,278,360,0.0,0,0,15.9,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,6.7,47,99100,566,1391,330,400,765,89,47038,41715,10482,452,140,0.0,0,0,14.7,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,4.2,31,99200,781,1391,344,590,864,105,71268,53794,12704,570,140,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,6.4,31,99100,935,1391,359,731,921,112,89923,57511,13789,631,140,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,7.5,30,99100,1020,1391,368,809,948,114,100516,58674,14169,652,140,1.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,6.0,26,99000,1028,1391,372,816,951,114,101623,59489,14213,653,140,0.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,8.3,29,98900,959,1391,379,753,929,112,92837,57151,13902,637,140,2.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,8.1,29,98900,819,1391,375,625,879,107,75685,53584,13005,587,170,4.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,7.2,29,98900,616,1391,370,444,791,93,52442,44770,11063,482,160,3.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,6.4,29,98900,365,1391,364,232,626,68,26571,23325,7767,321,130,3.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,6.2,31,98900,89,1080,358,44,542,9,5239,0,1107,40,130,3.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,6.9,38,99000,0,0,347,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,8.0,45,99000,0,0,341,0,0,0,0,0,0,0,100,2.1,0,0,15.6,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,9.4,53,99000,0,0,337,0,0,0,0,0,0,0,80,2.2,0,0,12.6,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,9.7,60,99000,0,0,330,0,0,0,0,0,0,0,120,2.4,0,0,10.8,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.1,70,99000,0,0,327,0,0,0,0,0,0,0,130,1.5,0,0,8.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.2,73,99000,0,0,324,0,0,0,0,0,0,0,80,1.3,0,0,8.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,11.4,78,99000,0,0,321,0,0,0,0,0,0,0,80,0.0,0,0,8.3,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.8,77,98900,0,0,313,0,0,0,0,0,0,0,80,0.0,0,0,10.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.0,76,98900,0,0,309,0,0,0,0,0,0,0,300,0.0,0,0,12.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,98900,0,0,308,0,0,0,0,0,0,0,300,0.2,0,0,9.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,8.7,80,98900,0,0,304,0,0,0,0,0,0,0,300,1.3,0,0,11.3,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.9,80,98900,0,0,300,0,0,0,0,0,0,0,300,0.0,0,0,11.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,8.5,79,98900,51,815,304,27,258,17,2932,0,1894,73,300,0.0,0,0,9.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,9.5,72,99000,314,1390,315,183,517,67,20648,15544,7532,309,160,0.0,0,0,9.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,9.8,60,99000,573,1390,331,388,690,104,45037,38772,12063,528,160,0.2,0,0,11.3,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.9,45,99100,787,1390,346,570,783,127,67751,49577,15120,689,160,1.5,0,0,11.3,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,9.1,40,99100,941,1390,357,704,835,139,85226,53855,16844,784,140,1.7,0,0,11.5,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,10.0,39,99000,1026,1390,365,779,861,143,95080,55061,17573,823,130,3.1,0,0,13.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,9.9,39,98900,1033,1390,364,786,863,144,96022,55245,17646,826,130,3.3,0,0,14.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,9.0,38,98900,965,1390,360,725,843,140,87930,54394,17064,796,170,4.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,6.7,33,98900,824,1390,356,602,796,130,71924,51705,15587,714,140,4.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,6.8,34,98900,621,1390,355,428,714,109,50035,42814,12821,566,110,3.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,7.0,35,98900,370,1390,353,225,563,76,25591,22474,8612,359,150,3.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,7.3,38,98900,93,1100,350,44,478,12,5106,0,1387,51,150,2.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,7.8,45,98900,0,0,339,0,0,0,0,0,0,0,130,2.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.0,53,99000,0,0,328,0,0,0,0,0,0,0,150,1.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,9.2,60,99000,0,0,326,0,0,0,0,0,0,0,80,2.2,0,0,15.6,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.6,73,99000,0,0,321,0,0,0,0,0,0,0,80,0.0,0,0,13.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.7,76,99000,0,0,319,0,0,0,0,0,0,0,130,0.3,0,0,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.2,82,99000,0,0,317,0,0,0,0,0,0,0,130,1.8,0,0,14.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.6,87,99000,0,0,315,0,0,0,0,0,0,0,130,0.0,0,0,12.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.0,87,99000,0,0,311,0,0,0,0,0,0,0,130,0.0,0,0,12.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,10.3,86,99000,0,0,308,0,0,0,0,0,0,0,130,0.0,0,0,12.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.9,84,98900,0,0,302,0,0,0,0,0,0,0,130,0.0,0,0,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.8,86,98900,0,0,300,0,0,0,0,0,0,0,130,0.0,0,0,14.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.3,83,98900,0,0,300,0,0,0,0,0,0,0,130,0.0,0,0,11.5,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,8.4,82,99000,55,844,301,28,254,18,3047,0,1950,75,200,0.0,0,0,12.6,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,9.1,79,99000,320,1390,307,186,508,69,20950,16205,7804,322,200,0.0,0,0,11.0,4800,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,9.9,70,99000,579,1390,320,389,676,108,45109,38601,12518,550,200,0.0,0,0,9.9,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,9.3,56,99100,793,1390,332,569,765,132,67536,48981,15760,722,200,0.0,0,0,11.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,8.6,44,99000,947,1390,346,702,817,145,84801,53567,17630,823,200,0.0,0,0,14.7,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,6.9,37,99000,1031,1390,349,776,842,151,94616,55944,18465,867,200,0.2,0,0,16.1,6096,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,8.1,37,98900,1039,1390,357,783,845,151,95466,55567,18522,870,200,2.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,9.9,43,98800,970,1390,357,722,824,147,87324,53443,17864,836,170,4.5,0,0,15.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,9.2,41,98800,829,1390,355,600,778,136,71445,50187,16238,748,170,4.2,0,0,14.7,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,8.6,42,98800,626,1390,350,428,698,114,49859,41861,13282,589,150,4.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,8.3,44,98800,374,1390,343,227,552,78,25670,22274,8869,371,160,4.0,0,0,16.1,4877,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,8.4,48,98800,108,1261,338,51,380,21,5716,0,2387,90,160,3.4,0,0,16.1,4877,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,9.0,56,98800,0,0,331,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,9.5,65,98800,0,0,323,0,0,0,0,0,0,0,100,1.8,0,0,15.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,10.0,69,98900,0,0,333,0,0,0,0,0,0,0,160,0.3,2,2,14.2,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,10.0,74,98900,0,0,316,0,0,0,0,0,0,0,160,1.8,0,0,12.6,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.9,73,98900,0,0,317,0,0,0,0,0,0,0,160,0.0,0,0,11.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.5,78,98900,0,0,310,0,0,0,0,0,0,0,90,0.0,0,0,11.3,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.0,82,98900,0,0,310,0,0,0,0,0,0,0,90,0.3,0,0,11.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.2,88,98800,0,0,306,0,0,0,0,0,0,0,90,1.5,0,0,11.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.3,91,98700,0,0,320,0,0,0,0,0,0,0,40,1.3,4,4,7.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,8.7,84,98700,0,0,301,0,0,0,0,0,0,0,40,0.0,0,0,12.6,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.7,86,98700,0,0,295,0,0,0,0,0,0,0,140,0.0,0,0,11.3,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,7.2,86,98800,0,0,305,0,0,0,0,0,0,0,140,0.0,3,3,11.3,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.6,91,98800,59,873,316,11,5,10,1225,0,1203,44,140,0.8,6,6,3.7,30,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,10.1,96,98900,327,1389,337,58,10,56,6234,856,8690,226,100,0.0,9,9,2.0,61,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,98900,585,1389,322,254,171,182,28278,12305,20369,934,260,0.0,3,3,4.8,282,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,10.0,69,98900,799,1389,322,502,535,194,57850,38943,22449,1059,80,1.3,0,0,8.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.8,62,98900,953,1389,328,655,672,193,77350,47590,22926,1094,160,0.2,0,0,10.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,8.6,49,98800,1037,1389,338,788,862,145,96380,55816,17770,832,160,1.5,0,0,13.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,7.2,39,98700,1044,1389,346,817,920,126,101198,58208,15610,723,140,1.7,0,0,15.4,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,10.0,48,98600,975,1389,348,744,871,132,90724,54841,16214,754,140,3.3,0,0,12.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,10.1,53,98600,834,1389,341,568,668,167,66630,45736,19674,921,160,3.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,10.1,53,98600,630,1389,341,395,554,143,45156,35889,16474,745,160,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,9.9,53,98700,379,1389,340,218,480,87,24458,20444,9801,414,150,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,9.7,53,98700,112,1276,339,54,410,21,6116,0,2409,91,150,2.1,0,0,15.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.8,67,98700,0,0,329,0,0,0,0,0,0,0,150,1.8,0,0,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.6,64,98800,0,0,325,0,0,0,0,0,0,0,120,0.2,0,0,15.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.5,73,98800,0,0,321,0,0,0,0,0,0,0,120,1.6,0,0,10.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.3,77,98800,0,0,315,0,0,0,0,0,0,0,100,2.1,0,0,14.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,11.5,90,98900,0,0,318,0,0,0,0,0,0,0,150,1.9,1,1,11.3,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98900,0,0,332,0,0,0,0,0,0,0,150,2.0,4,4,12.1,305,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.5,83,98900,0,0,334,0,0,0,0,0,0,0,80,1.9,4,4,14.0,468,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.3,83,98900,0,0,332,0,0,0,0,0,0,0,90,1.7,4,4,7.5,424,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.1,81,98800,0,0,333,0,0,0,0,0,0,0,130,1.6,4,4,11.7,675,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.1,81,98800,0,0,333,0,0,0,0,0,0,0,130,2.1,4,4,15.3,548,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.4,82,98800,0,0,334,0,0,0,0,0,0,0,130,1.5,4,4,16.1,442,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98900,0,0,328,0,0,0,0,0,0,0,150,2.0,3,3,14.0,422,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,11.1,82,98900,63,902,329,17,66,14,1947,0,1616,61,140,1.7,3,3,11.9,470,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.1,81,99000,333,1388,331,125,131,94,13809,5356,10386,440,180,0.4,3,3,16.1,542,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.1,78,99000,592,1388,333,240,131,184,26675,9423,20575,945,160,1.7,3,3,16.1,446,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.1,74,99000,805,1388,337,340,128,266,38261,10597,30067,1456,80,2.8,3,3,16.1,531,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,11.2,72,98900,959,1388,340,450,179,326,51014,15472,37197,1850,160,3.4,3,3,16.1,619,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.6,70,98900,1043,1388,344,543,265,344,62091,22702,39594,1981,180,2.8,3,3,16.1,684,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.2,68,98800,1050,1388,340,582,335,329,66869,28145,37991,1894,180,3.5,2,2,16.1,775,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,11.7,70,98700,980,1388,341,557,373,294,63861,30345,33900,1675,210,2.9,2,2,16.1,853,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.7,68,98700,839,1388,343,479,396,241,54625,30777,27550,1328,210,2.3,2,2,16.1,871,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,12.0,70,98700,635,1388,343,352,387,175,39681,26966,19839,913,210,3.6,2,2,16.1,972,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.0,72,98700,383,1388,341,189,304,105,20879,14330,11635,499,170,3.9,2,2,16.1,957,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.2,72,98700,115,1290,341,42,186,27,4705,0,3013,116,170,4.0,2,2,16.1,935,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.7,76,98700,0,0,331,0,0,0,0,0,0,0,170,3.9,1,1,16.1,884,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.8,78,98800,0,0,329,0,0,0,0,0,0,0,190,2.7,1,1,16.1,907,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.4,82,98800,0,0,329,0,0,0,0,0,0,0,190,3.8,1,1,15.4,992,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,13.3,91,98800,0,0,327,0,0,0,0,0,0,0,160,4.8,1,1,11.8,847,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,3,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,13.3,91,98800,0,0,327,0,0,0,0,0,0,0,190,3.1,1,1,8.4,427,9,999999999,240,0.0000,0,88,999.000,2.0,1.0 +2016,3,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.8,91,98800,0,0,324,0,0,0,0,0,0,0,170,4.4,1,1,16.1,460,9,999999999,229,0.0000,0,88,999.000,10.0,1.0 +2016,3,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.6,92,98800,0,0,322,0,0,0,0,0,0,0,180,4.3,1,1,6.5,786,9,999999999,220,0.0000,0,88,999.000,21.0,1.0 +2016,3,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,98600,0,0,313,0,0,0,0,0,0,0,120,5.4,0,0,16.1,1198,9,999999999,209,0.0000,0,88,999.000,38.0,1.0 +2016,3,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.2,93,98500,0,0,313,0,0,0,0,0,0,0,170,4.7,0,0,7.3,213,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.2,93,98500,0,0,313,0,0,0,0,0,0,0,120,4.1,0,0,6.0,290,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,98500,0,0,307,0,0,0,0,0,0,0,240,2.3,0,0,2.5,589,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.5,92,98500,0,0,305,0,0,0,0,0,0,0,170,1.3,0,0,16.1,1175,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,10.0,88,98600,67,932,305,22,260,10,2609,0,1144,42,250,0.3,0,0,16.1,2134,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,9.8,81,98700,339,1388,309,169,322,90,18681,13099,10011,422,250,2.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,8.7,68,98700,598,1388,334,241,128,186,26898,9438,20868,959,270,3.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,7.6,60,98800,812,1388,336,347,134,269,39119,11386,30452,1474,290,3.6,5,5,16.1,1006,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,6.6,51,98800,965,1388,340,491,247,319,55950,21718,36551,1811,270,3.6,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,6.1,46,98700,1048,1388,327,723,675,213,86126,49732,25537,1229,290,3.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,6.1,45,98700,1055,1388,329,756,746,189,90957,52830,22851,1090,250,4.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,6.2,45,98700,985,1388,340,590,444,275,68277,36453,31964,1567,270,4.1,2,2,16.1,1494,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,6.5,47,98700,843,1388,345,473,369,249,53886,30133,28496,1374,250,6.5,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,6.2,48,98700,639,1388,335,353,378,179,39814,27780,20250,931,250,5.6,2,2,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,6.2,51,98600,387,1388,327,188,289,107,20850,14859,11947,512,240,5.1,1,1,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,6.7,55,98600,118,1303,319,52,145,40,5624,0,4314,171,240,4.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,6.8,59,98700,0,0,314,0,0,0,0,0,0,0,270,2.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.2,65,98700,0,0,310,0,0,0,0,0,0,0,260,2.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,7.2,68,98700,0,0,307,0,0,0,0,0,0,0,260,1.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,7.2,72,98700,0,0,303,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.1,74,98700,0,0,301,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,139.0,1.0 +2016,3,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.6,74,98700,0,0,298,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,6.0,74,98700,0,0,295,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.8,76,98600,0,0,305,0,0,0,0,0,0,0,190,0.8,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,5.6,73,98500,0,0,303,0,0,0,0,0,0,0,230,0.4,2,2,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,5.7,79,98400,0,0,289,0,0,0,0,0,0,0,140,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,6.0,1.0 +2016,3,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.1,77,98300,0,0,293,0,0,0,0,0,0,0,120,3.0,0,0,16.1,934,9,999999999,139,0.0000,0,88,999.000,50.0,1.0 +2016,3,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.2,83,98200,0,0,294,0,0,0,0,0,0,0,130,3.8,0,0,7.6,982,9,999999999,150,0.0000,0,88,999.000,5.0,1.0 +2016,3,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,5.8,84,98200,72,961,286,25,123,19,2820,0,2118,81,230,2.9,0,0,9.3,996,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,6.7,85,98200,346,1387,290,158,247,97,17469,11131,10710,454,150,2.2,0,0,16.1,1426,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,6.6,78,98300,604,1387,295,300,271,182,33549,20035,20454,938,260,2.5,0,0,16.1,1173,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,6.1,71,98200,818,1387,298,463,385,236,52808,31055,27060,1296,330,2.7,0,0,16.1,874,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,3.1,52,98200,971,1387,302,629,569,231,73751,44545,27192,1313,290,2.6,0,0,16.1,1402,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,2.2,47,98100,1054,1387,304,723,664,218,86150,50285,26153,1259,290,3.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,2.4,44,98000,1060,1387,321,633,432,302,73560,36706,35346,1744,280,5.0,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,3.3,47,98000,990,1387,323,588,431,280,68032,36095,32625,1600,250,4.8,3,3,16.1,1440,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,3.2,52,97900,848,1387,315,470,355,253,53658,29707,29041,1401,300,5.2,3,3,16.1,2057,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,2.8,51,97900,644,1387,317,328,290,193,36857,22484,21847,1010,300,2.8,4,4,16.1,3353,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,2.8,51,97900,392,1387,317,178,234,112,19743,12762,12460,536,300,3.8,4,4,16.1,3353,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,3.0,53,97900,121,1315,316,44,165,29,4868,0,3276,127,300,4.2,4,4,16.1,3353,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,4.5,64,97900,0,0,311,0,0,0,0,0,0,0,300,2.3,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,5.0,67,97900,0,0,309,0,0,0,0,0,0,0,300,3.0,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,5.1,70,98000,0,0,303,0,0,0,0,0,0,0,360,2.8,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,5.3,75,98000,0,0,296,0,0,0,0,0,0,0,350,3.6,1,1,16.1,3353,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,3.7,65,98100,0,0,291,0,0,0,0,0,0,0,360,3.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,48.0,1.0 +2016,3,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,2.6,58,98200,0,0,292,0,0,0,0,0,0,0,310,2.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,1.8,53,98200,0,0,293,0,0,0,0,0,0,0,310,1.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,2.2,57,98300,0,0,291,0,0,0,0,0,0,0,350,3.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,2.2,58,98300,0,0,289,0,0,0,0,0,0,0,310,2.5,0,0,16.1,1958,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,2.2,56,98400,0,0,292,0,0,0,0,0,0,0,310,2.1,0,0,16.1,1829,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,2.1,56,98500,0,0,291,0,0,0,0,0,0,0,340,2.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,1.7,54,98500,0,0,291,0,0,0,0,0,0,0,320,3.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,1.7,53,98600,76,991,292,31,403,9,3711,0,1097,40,320,4.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,1.7,46,98600,352,1386,301,202,483,80,22787,20224,8997,375,330,5.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,1.7,42,98700,611,1386,308,378,539,141,43345,36651,16189,727,350,7.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,1.9,38,98700,824,1386,316,544,614,179,63600,45444,21049,987,330,5.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,3.4,37,98700,977,1386,327,686,711,185,81892,51557,22176,1054,360,6.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,3.6,35,98700,1060,1386,331,778,793,172,94463,55459,20989,993,330,4.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,1.9,30,98600,1066,1386,333,802,841,156,98245,57734,19153,899,310,2.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,0.3,25,98600,995,1386,335,753,853,141,92072,58036,17260,804,310,5.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,1.7,28,98500,853,1386,336,630,813,130,75795,54374,15677,719,290,2.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,1.2,28,98600,648,1386,332,451,725,112,53032,45861,13248,587,290,5.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,1.7,32,98600,396,1386,333,198,317,108,22064,17040,12039,516,300,4.8,1,1,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,1.9,34,98600,124,1324,334,45,160,30,4966,0,3383,131,300,4.5,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,3.5,41,98700,0,0,320,0,0,0,0,0,0,0,300,3.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,4.3,47,98700,0,0,316,0,0,0,0,0,0,0,340,1.9,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,3.6,48,98700,0,0,310,0,0,0,0,0,0,0,10,4.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,1.4,39,98700,0,0,312,0,0,0,0,0,0,0,330,4.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,-1.0,32,98700,0,0,310,0,0,0,0,0,0,0,350,6.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-2.8,27,98700,0,0,308,0,0,0,0,0,0,0,340,6.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,-1.8,32,98700,0,0,304,0,0,0,0,0,0,0,10,6.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-4.4,25,98600,0,0,303,0,0,0,0,0,0,0,340,3.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,2.1,52,98600,0,0,296,0,0,0,0,0,0,0,260,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,1.7,52,98600,0,0,294,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,1.9,58,98700,0,0,288,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,2.9,64,98700,0,0,288,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,3.4,63,98800,81,1021,291,30,298,13,3482,0,1474,54,260,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,4.2,57,98800,359,1386,302,204,469,83,22944,19954,9331,391,340,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,5.9,53,98900,617,1386,327,320,313,181,35977,23205,20430,938,340,0.0,2,2,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,4.9,40,98900,830,1386,330,599,769,138,71400,51460,16519,760,340,0.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,4.4,32,98900,983,1386,344,780,946,109,96922,59459,13585,622,340,2.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,4.2,27,98900,1065,1386,355,888,1043,86,113453,62632,11043,498,30,3.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,4.3,27,98800,1071,1386,357,858,964,113,107595,60704,14217,653,340,3.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,9.8,43,98700,1000,1386,355,702,709,191,83701,49535,22813,1090,130,4.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,8.9,37,98700,857,1386,362,603,721,157,71388,48684,18678,872,90,1.7,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,9.2,39,98700,652,1386,359,437,656,128,50685,41117,14911,670,120,3.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,8.6,40,98700,400,1386,354,252,604,78,28772,25518,8911,373,130,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,8.4,41,98800,127,1334,350,57,308,29,6390,0,3259,126,130,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,8.7,49,98800,0,0,339,0,0,0,0,0,0,0,70,1.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,7.9,49,98900,0,0,333,0,0,0,0,0,0,0,40,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,8.4,53,98900,0,0,331,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,9.0,57,98900,0,0,329,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.3,63,98900,0,0,324,0,0,0,0,0,0,0,40,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,8.9,64,98900,0,0,320,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,8.9,65,98900,0,0,319,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.0,71,98900,0,0,314,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,9.3,75,98800,0,0,312,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,8.8,78,98800,0,0,307,0,0,0,0,0,0,0,310,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.3,80,98800,0,0,302,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.3,79,98800,0,0,321,0,0,0,0,0,0,0,290,1.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,8.5,76,98900,86,1051,325,21,78,16,2350,0,1803,68,290,1.8,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.3,67,98900,365,1385,336,160,211,104,17670,10081,11566,495,290,0.0,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.7,52,99000,623,1385,348,328,325,181,36806,23693,20461,941,290,0.0,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,7.7,40,99000,836,1385,360,502,461,223,57637,35844,25787,1233,170,0.0,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,7.1,33,99000,989,1385,359,776,924,116,95953,57772,14429,664,170,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,6.9,30,98900,1071,1385,364,840,921,128,104268,58452,15906,737,170,2.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,8.2,33,98800,1076,1385,384,637,419,311,73917,34793,36352,1801,170,3.7,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,10.5,40,98700,1005,1385,366,699,692,197,83160,48548,23554,1129,160,4.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,10.0,37,98700,862,1385,368,602,709,161,71166,47799,19145,896,150,3.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,9.6,37,98700,657,1385,366,448,689,122,52286,42301,14243,638,130,3.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,9.0,37,98700,404,1385,362,253,593,80,28841,25495,9142,384,130,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,8.3,38,98700,130,1346,356,60,319,30,6676,0,3354,130,300,2.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.4,43,98800,0,0,364,0,0,0,0,0,0,0,300,2.9,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,9.1,50,98800,0,0,339,0,0,0,0,0,0,0,290,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.0,59,98800,0,0,332,0,0,0,0,0,0,0,290,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.8,62,98800,0,0,328,0,0,0,0,0,0,0,210,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,8.9,61,98800,0,0,324,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,8.8,64,98800,0,0,319,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,8.5,66,98800,0,0,315,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,98700,0,0,310,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,9.3,80,98700,0,0,307,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.2,84,98600,0,0,304,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,98600,0,0,324,0,0,0,0,0,0,0,140,0.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.1,83,98600,0,0,325,0,0,0,0,0,0,0,140,0.0,4,4,15.9,264,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.7,84,98700,91,1081,326,27,143,18,3078,0,2023,77,140,0.3,3,3,14.0,217,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98700,372,1384,328,149,155,107,16424,7449,11874,510,150,1.8,3,3,11.3,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,10.8,72,98800,630,1384,329,281,181,199,31305,13531,22243,1032,170,2.6,1,1,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,9.2,59,98800,842,1384,328,508,467,224,58332,35881,25818,1236,170,4.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.5,55,98700,995,1384,348,475,188,339,54040,16641,38872,1939,150,3.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,9.6,63,98600,1076,1384,345,499,160,375,56979,14235,43084,2166,150,5.7,5,5,16.1,987,9,999999999,179,0.0000,0,88,999.000,38.0,1.0 +2016,3,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.0,75,98500,1081,1384,340,470,119,377,53659,10515,43338,2181,170,7.5,5,5,11.1,805,9,999999999,200,0.0000,0,88,999.000,39.0,1.0 +2016,3,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.7,92,98400,1010,1384,335,411,92,344,46756,7925,39343,1970,220,3.7,5,5,3.8,395,9,999999999,229,0.0000,0,88,999.000,5.0,1.0 +2016,3,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,9.4,88,98500,866,1384,320,341,90,285,38606,7599,32449,1587,270,2.0,5,5,6.5,1706,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.3,85,98500,661,1384,322,276,136,211,30807,10582,23649,1106,270,1.5,5,5,16.1,2612,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.1,78,98500,408,1384,326,171,173,120,18861,9482,13268,576,260,1.8,5,5,16.1,1744,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,8.9,75,98600,134,1361,328,46,133,34,5127,0,3725,145,260,3.1,5,5,16.1,888,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,7.8,73,98600,0,0,306,0,0,0,0,0,0,0,280,3.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.5,76,98600,0,0,301,0,0,0,0,0,0,0,290,1.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,5.7,70,98700,0,0,297,0,0,0,0,0,0,0,290,2.9,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.0,74,98700,0,0,295,0,0,0,0,0,0,0,300,1.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,5.6,75,98800,0,0,292,0,0,0,0,0,0,0,290,1.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,27.0,1.0 +2016,3,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,5.6,77,98800,0,0,290,0,0,0,0,0,0,0,310,0.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.5,77,98900,0,0,289,0,0,0,0,0,0,0,310,2.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,4.9,77,99000,0,0,286,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,4.5,81,99000,0,0,282,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,4.8,88,99000,0,0,278,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,3.9,82,99000,0,0,277,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,4.0,83,99000,0,0,278,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.0,4.5,84,99100,109,1260,279,44,255,24,4973,0,2724,104,270,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,5.1,76,99200,378,1383,289,206,410,94,23035,19356,10542,447,270,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,5.6,68,99300,636,1383,298,382,488,157,43507,34045,18020,820,270,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,5.3,59,99300,848,1383,315,440,279,269,49955,23729,30682,1489,270,0.0,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,3.6,46,99300,1000,1383,312,706,718,187,84481,51928,22478,1070,270,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,5.7,50,99300,1081,1383,319,782,761,187,94586,53628,22738,1083,270,2.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,5.8,47,99200,1086,1383,324,805,808,170,98093,55380,20860,986,190,3.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,4.7,44,99200,1014,1383,322,734,765,173,88528,53660,20972,993,200,0.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,6.5,50,99200,871,1383,323,609,709,163,72123,49209,19371,907,200,4.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,6.3,51,99200,665,1383,321,438,628,136,50839,41355,15880,717,170,4.1,0,0,16.1,1524,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,5.6,50,99200,412,1383,318,248,530,90,28070,25465,10212,433,140,4.1,0,0,16.1,1524,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,5.5,51,99100,137,1373,317,63,305,33,7015,0,3676,143,140,4.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,5.0,55,99200,0,0,309,0,0,0,0,0,0,0,160,3.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,5.3,55,99300,0,0,310,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,6.8,65,99300,0,0,307,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.3,70,99300,0,0,306,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.7,75,99300,0,0,303,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.0,79,99300,0,0,296,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.3,75,99300,0,0,295,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,6.9,83,99200,0,0,293,0,0,0,0,0,0,0,360,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,6.1,83,99200,0,0,288,0,0,0,0,0,0,0,360,1.3,0,0,16.1,486,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,6.1,78,99200,0,0,297,0,0,0,0,0,0,0,360,0.0,1,1,16.1,1017,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,6.2,83,99200,0,0,294,0,0,0,0,0,0,0,360,0.0,1,1,16.1,391,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,6.7,84,99200,0,0,300,0,0,0,0,0,0,0,320,0.0,2,2,16.1,366,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,6.9,83,99300,114,1282,302,35,101,26,3862,0,2941,113,320,0.2,2,2,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.0,82,99300,385,1383,308,159,171,112,17597,8866,12394,534,320,1.5,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,8.7,75,99300,642,1383,308,366,416,173,41411,29583,19650,903,150,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,7.9,64,99300,854,1383,315,532,515,214,61543,39138,24910,1190,150,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,8.3,58,99300,1006,1383,324,690,664,207,81859,48142,24675,1186,170,0.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,8.5,61,99300,1087,1383,338,571,269,360,65644,23621,41630,2084,170,3.7,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,9.1,63,99200,1091,1383,339,575,271,361,66110,23756,41761,2091,140,4.1,4,4,16.1,1318,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,7.5,55,99200,1019,1383,339,542,287,330,62104,24994,38087,1896,200,4.0,4,4,16.1,1216,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.0,63,99100,875,1383,338,466,303,274,52930,25189,31324,1528,230,3.4,4,4,16.1,1312,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.3,65,99100,669,1383,339,347,301,201,38944,22790,22693,1058,250,3.6,4,4,16.1,791,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.4,65,99100,416,1383,336,198,267,118,21989,14529,13146,571,260,3.6,3,3,16.1,775,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.4,65,99100,140,1383,336,50,138,36,5512,0,3985,156,260,3.6,3,3,16.1,762,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,9.5,68,99200,0,3,333,0,0,0,0,0,0,0,230,3.5,3,3,16.1,762,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.1,75,99200,0,0,329,0,0,0,0,0,0,0,260,3.1,3,3,16.1,730,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,99200,0,0,330,0,0,0,0,0,0,0,240,2.9,3,3,16.1,549,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,99200,0,0,327,0,0,0,0,0,0,0,210,2.0,2,2,16.1,549,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,99200,0,0,327,0,0,0,0,0,0,0,210,1.6,2,2,16.1,553,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,99100,0,0,327,0,0,0,0,0,0,0,210,1.8,2,2,16.1,610,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,99100,0,0,326,0,0,0,0,0,0,0,220,0.2,2,2,16.1,760,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.7,81,99100,0,0,325,0,0,0,0,0,0,0,220,1.3,2,2,16.1,565,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.2,84,99100,0,0,321,0,0,0,0,0,0,0,130,0.2,1,1,16.1,510,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.5,85,99100,0,0,321,0,0,0,0,0,0,0,130,1.5,1,1,16.1,635,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.7,82,99100,0,0,320,0,0,0,0,0,0,0,240,1.6,1,1,15.4,582,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.7,91,99100,0,0,318,0,0,0,0,0,0,0,160,2.0,1,1,6.9,230,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,99100,119,1300,319,35,84,27,3841,0,3041,117,170,2.0,1,1,15.4,426,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.1,86,99200,391,1382,318,193,302,108,21367,14627,11953,515,170,0.0,0,0,15.9,430,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.0,76,99200,649,1382,326,359,379,181,40452,26770,20521,949,200,0.0,0,0,16.1,780,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,10.8,67,99200,860,1382,328,506,428,239,57939,33281,27539,1329,200,0.0,0,0,16.1,902,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.7,62,99200,1012,1382,333,645,537,252,75313,40948,29591,1445,200,1.6,0,0,16.1,1067,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.1,60,99200,1092,1382,338,733,620,243,86775,45527,28926,1407,220,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,11.0,56,99100,1096,1382,350,652,423,316,75663,34412,36951,1833,250,2.0,1,1,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,10.3,50,99000,1024,1382,362,620,455,283,71885,36359,32959,1624,250,1.3,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,8.5,43,98900,879,1382,361,537,481,231,61923,37268,26797,1290,320,1.9,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,6.0,35,98900,673,1382,367,377,389,188,42699,29163,21345,989,330,6.3,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,4.2,32,98900,420,1382,363,208,301,117,23165,17053,13052,565,330,7.1,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,4.5,35,98900,143,1382,356,51,137,37,5645,0,4089,160,330,7.5,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,5.0,39,98900,0,14,332,0,0,0,0,0,0,0,340,6.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,4.9,43,99000,0,0,325,0,0,0,0,0,0,0,330,3.9,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,4.6,43,99000,0,0,322,0,0,0,0,0,0,0,10,0.9,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,5.5,46,99000,0,0,324,0,0,0,0,0,0,0,10,6.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,4.9,43,99000,0,0,325,0,0,0,0,0,0,0,330,7.9,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,4.2,43,99000,0,0,321,0,0,0,0,0,0,0,340,8.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,2.9,41,99000,0,0,317,0,0,0,0,0,0,0,350,7.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,3.1,45,98900,0,0,311,0,0,0,0,0,0,0,10,6.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,2.4,42,98800,0,0,312,0,0,0,0,0,0,0,360,3.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,3.2,51,98800,0,0,303,0,0,0,0,0,0,0,200,2.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,3.0,54,98800,0,0,298,0,0,0,0,0,0,0,150,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,4.6,67,98800,0,0,294,0,0,0,0,0,0,0,150,2.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,5.9,72,98900,124,1319,296,62,402,26,6930,0,2878,110,170,2.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,7.9,61,98900,398,1381,318,257,643,72,29556,26315,8317,346,110,2.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,8.5,54,98900,655,1381,331,477,802,97,56642,46142,11553,508,110,1.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,9.3,50,98900,866,1381,341,667,889,110,81351,54046,13400,610,110,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.7,44,98900,1017,1381,346,806,941,114,100246,57614,14163,652,110,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,7.6,36,98800,1097,1381,356,881,966,114,110735,59336,14359,660,110,1.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,6.2,27,98800,1101,1381,370,884,967,114,111287,60037,14378,660,160,1.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,3.1,21,98700,1028,1381,370,817,944,114,101869,60180,14229,654,160,2.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,2.3,20,98600,884,1381,369,683,896,110,83683,57313,13543,616,160,3.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,1.5,19,98500,677,1381,367,497,812,99,59331,49712,11833,522,180,2.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,1.8,20,98500,424,1381,363,279,664,75,32227,30724,8716,364,180,3.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,1.2,20,98500,147,1381,358,75,390,33,8325,0,3711,144,360,4.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,1.9,24,98600,0,25,349,0,0,0,0,0,0,0,360,4.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,2.6,27,98600,0,0,344,0,0,0,0,0,0,0,290,2.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,1.4,29,98600,0,0,333,0,0,0,0,0,0,0,350,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-0.8,26,98600,0,0,325,0,0,0,0,0,0,0,350,2.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,-1.8,23,98600,0,0,326,0,0,0,0,0,0,0,340,3.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,0.2,31,98600,0,0,320,0,0,0,0,0,0,0,360,0.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-2.0,25,98600,0,0,319,0,0,0,0,0,0,0,360,4.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,-0.1,32,98600,0,0,315,0,0,0,0,0,0,0,10,3.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,2.5,45,98500,0,0,307,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,1.1,44,98500,0,0,302,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,1.2,44,98500,0,0,302,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,1.9,46,98600,0,0,302,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,3.2,48,98600,129,1337,307,64,391,28,7184,0,3099,119,360,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,4.7,37,98700,404,1381,334,261,640,74,30044,27806,8552,357,360,1.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,1.9,24,98700,661,1381,348,480,794,100,57081,48447,11911,525,340,4.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,3.1,23,98800,872,1381,360,669,881,113,81672,56424,13833,630,360,4.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,1.7,19,98700,1023,1381,366,807,931,117,100462,60224,14652,674,350,3.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,1.6,18,98700,1102,1381,371,881,956,118,110790,61482,14889,684,10,3.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,1.0,17,98600,1106,1381,373,884,957,118,111246,61713,14898,684,10,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,0.9,16,98500,1033,1381,375,816,935,118,101740,60642,14698,676,170,0.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,2.9,19,98500,888,1381,374,683,886,114,83568,56917,13950,636,170,4.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,2.6,20,98400,681,1381,370,498,803,101,59349,49297,12125,536,170,4.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,2.4,20,98400,428,1381,366,281,657,77,32390,30792,8916,374,190,3.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,1.5,20,98400,150,1381,363,76,387,34,8499,0,3816,148,190,3.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,1.4,20,98400,0,38,361,0,0,0,0,0,0,0,240,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,5.6,30,98500,0,0,355,0,0,0,0,0,0,0,300,2.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,5.6,35,98500,0,0,345,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,5.7,37,98500,0,0,340,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,6.2,43,98500,0,0,333,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,6.7,50,98500,0,0,325,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,6.6,49,98400,0,0,326,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,6.3,55,98400,0,0,316,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,7.2,62,98400,0,0,312,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,7.1,65,98400,0,0,310,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,6.7,67,98300,0,0,304,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,6.7,71,98400,0,0,302,0,0,0,0,0,0,0,210,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,6.7,62,98400,134,1357,311,66,371,30,7369,0,3360,130,210,1.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,6.7,47,98500,411,1380,330,263,624,77,30164,27471,8911,374,210,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,6.5,38,98500,667,1380,344,479,773,105,56742,46606,12511,555,210,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,5.8,32,98500,878,1380,353,666,858,120,80910,54861,14649,671,210,1.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,6.8,30,98500,1028,1380,365,802,908,126,99215,57690,15625,724,180,1.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,7.2,29,98500,1108,1380,371,875,932,127,109264,58675,15922,736,180,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,7.2,27,98400,1110,1380,375,878,933,127,109651,58721,15938,737,130,2.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,7.0,27,98400,1037,1380,375,810,910,126,100308,57752,15657,725,130,3.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,6.3,26,98300,892,1380,374,678,863,121,82538,55029,14757,677,150,4.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,6.5,27,98300,685,1380,372,495,782,107,58742,47507,12722,566,140,4.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,6.6,28,98300,432,1380,369,280,639,80,32225,29601,9249,390,270,3.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,5.8,28,98300,153,1380,364,77,377,35,8600,0,3945,154,270,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,4.8,28,98300,0,52,356,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,7.4,40,98400,0,0,345,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,8.3,46,98400,0,0,340,0,0,0,0,0,0,0,110,0.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,8.6,52,98400,0,0,333,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,10.2,64,98500,0,0,328,0,0,0,0,0,0,0,90,2.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.3,74,98400,0,0,324,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,12.0,83,98400,0,0,320,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.2,84,98400,0,0,320,0,0,0,0,0,0,0,70,1.6,1,1,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,98400,0,0,334,0,0,0,0,0,0,0,110,1.5,5,5,13.8,234,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.7,89,98400,0,0,332,0,0,0,0,0,0,0,80,1.6,5,5,9.2,192,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,98400,0,0,334,0,0,0,0,0,0,0,90,2.2,5,5,6.9,244,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.6,89,98500,0,0,332,0,0,0,0,0,0,0,180,2.4,5,5,9.4,248,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98500,140,1378,333,39,62,33,4301,0,3617,141,160,1.8,5,5,8.0,288,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,11.2,77,98600,417,1379,337,162,131,122,17866,7143,13552,591,110,0.3,4,4,6.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,11.6,73,98600,674,1379,326,379,393,187,42775,28177,21216,986,150,1.8,0,0,8.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,11.0,60,98600,884,1379,337,559,534,217,64829,39580,25264,1213,150,0.4,0,0,12.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,10.6,47,98600,1034,1379,353,761,793,166,92082,52415,20214,957,100,2.4,0,0,15.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,10.8,45,98600,1113,1379,359,868,907,136,107756,56176,17009,792,100,1.7,0,0,14.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,12.0,46,98600,1115,1379,365,866,898,140,107285,55251,17432,813,100,3.1,0,0,13.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,11.3,42,98500,1041,1379,366,771,805,163,93510,52494,19884,941,130,3.4,0,0,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,12.1,45,98500,896,1379,367,647,765,151,77294,49260,18065,845,130,3.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,11.8,45,98500,689,1379,365,472,687,129,55116,42320,15090,683,140,3.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.4,46,98500,436,1379,361,266,548,93,30208,25962,10605,453,120,3.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.1,47,98500,157,1379,356,72,291,39,7962,0,4316,170,120,3.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,11.2,56,98500,0,67,344,0,0,0,0,0,0,0,130,3.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.7,64,98600,0,0,336,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.7,71,98600,0,0,329,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.7,76,98700,0,0,324,0,0,0,0,0,0,0,100,2.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.7,81,98700,0,0,320,0,0,0,0,0,0,0,120,2.4,0,0,15.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.7,81,98700,0,0,320,0,0,0,0,0,0,0,90,1.3,0,0,14.2,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,11.6,82,98700,0,0,319,0,0,0,0,0,0,0,130,0.3,0,0,12.2,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.4,88,98700,0,0,323,0,0,0,0,0,0,0,110,2.4,2,2,7.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,11.7,94,98700,0,0,326,0,0,0,0,0,0,0,150,1.7,4,4,2.8,70,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,98700,0,0,329,0,0,0,0,0,0,0,60,2.1,4,4,5.6,135,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,98700,0,0,329,0,0,0,0,0,0,0,120,1.5,4,4,6.0,213,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,98700,0,21,326,0,0,0,0,0,0,0,150,1.0,3,3,3.5,213,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98800,145,1378,328,47,99,36,5168,0,4028,158,150,0.0,3,3,4.0,213,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.1,80,98900,424,1378,331,169,144,125,18674,8016,13844,605,150,0.1,3,3,6.4,336,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.7,75,98900,680,1378,336,298,162,218,33309,12516,24494,1153,150,1.4,2,2,6.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.7,71,98900,890,1378,330,520,414,252,59537,32398,29041,1411,160,0.0,0,0,6.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,11.6,60,98900,1039,1378,341,707,645,221,83707,46117,26268,1271,160,0.0,0,0,9.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,11.2,52,98800,1118,1378,349,820,786,183,99650,52307,22370,1063,160,0.3,0,0,9.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,11.7,48,98800,1120,1378,360,887,936,126,110742,56376,15858,734,160,2.3,0,0,10.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,11.5,44,98700,1046,1378,364,818,914,125,101291,55512,15582,723,150,3.1,0,0,13.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,10.7,43,98700,900,1378,362,680,848,126,82408,52666,15332,708,140,3.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,10.9,45,98700,693,1378,360,477,694,128,55782,43083,15003,678,140,4.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,11.1,49,98700,439,1378,354,260,502,100,29382,24928,11337,487,140,4.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,11.0,52,98700,160,1378,349,71,257,41,7793,0,4513,178,140,3.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,10.7,56,98700,1,82,340,0,0,0,0,0,0,0,150,2.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.2,66,98700,0,0,331,0,0,0,0,0,0,0,130,2.6,0,0,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.7,72,98800,0,0,328,0,0,0,0,0,0,0,80,2.4,0,0,14.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.7,73,98800,0,0,327,0,0,0,0,0,0,0,130,1.3,0,0,11.3,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.7,78,98800,0,0,323,0,0,0,0,0,0,0,130,0.0,0,0,11.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.7,78,98800,0,0,322,0,0,0,0,0,0,0,130,0.0,0,0,9.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.6,81,98800,0,0,319,0,0,0,0,0,0,0,130,0.0,0,0,9.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.0,83,98800,0,0,314,0,0,0,0,0,0,0,130,0.0,0,0,9.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.5,84,98800,0,0,311,0,0,0,0,0,0,0,180,0.0,0,0,11.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.7,82,98800,0,0,308,0,0,0,0,0,0,0,180,0.0,0,0,11.3,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.3,78,98800,0,0,317,0,0,0,0,0,0,0,180,0.0,3,3,11.3,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.6,81,98900,0,44,313,0,0,0,0,0,0,0,180,0.2,2,2,10.8,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.2,87,98900,151,1378,307,62,42,58,6650,183,6178,251,180,1.6,0,0,7.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,99000,430,1378,328,149,85,122,16504,4720,13621,594,120,2.1,5,5,3.2,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,99000,686,1378,331,242,67,209,27215,5054,23594,1108,90,2.5,5,5,1.0,61,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.7,69,99100,895,1378,348,425,193,300,48126,16285,34134,1682,160,0.2,4,4,6.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,11.6,61,99100,1044,1378,340,738,715,197,88318,49107,23625,1133,130,1.5,0,0,8.3,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,11.0,49,99000,1123,1378,370,718,533,283,84428,41148,33531,1645,170,1.7,4,4,10.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,10.6,42,99000,1124,1378,363,913,985,109,115430,58202,13805,632,170,2.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,10.8,41,98900,1050,1378,365,844,965,108,105653,57199,13629,626,170,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.6,46,98900,904,1378,361,658,777,148,78817,50041,17817,833,170,4.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.5,47,98900,697,1378,360,462,630,144,53571,40515,16709,763,130,3.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.4,49,98900,443,1378,355,262,499,102,29573,24951,11511,496,130,3.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,11.7,53,98900,164,1378,351,75,284,41,8263,0,4550,180,130,3.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,11.6,63,98900,1,97,354,0,0,0,0,0,0,0,140,1.8,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.1,66,99000,0,0,346,0,0,0,0,0,0,0,140,0.0,3,3,15.4,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.0,70,99000,0,0,337,0,0,0,0,0,0,0,140,0.0,2,2,12.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.6,71,99100,0,0,323,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.6,76,99100,0,0,318,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,99100,0,0,314,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.5,84,99000,0,0,311,0,0,0,0,0,0,0,260,0.0,0,0,15.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.9,83,99000,0,0,308,0,0,0,0,0,0,0,260,0.0,0,0,14.2,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.4,84,99000,0,0,305,0,0,0,0,0,0,0,260,0.2,0,0,12.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.0,89,99000,0,0,322,0,0,0,0,0,0,0,250,1.1,5,5,6.8,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.0,95,99000,0,0,352,0,0,0,0,0,0,0,250,0.0,10,10,0.4,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.7,94,99000,0,68,342,0,0,0,0,0,0,0,140,0.0,9,9,0.7,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,99100,157,1377,335,25,11,24,2914,0,2768,105,140,2.0,8,8,1.0,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,99100,436,1377,338,101,18,95,10753,1705,14300,377,170,1.6,8,8,2.6,97,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.1,89,99200,692,1377,335,196,26,184,20684,2541,25810,711,130,2.2,7,7,4.6,122,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.7,82,99200,901,1377,341,338,69,293,38384,5746,33460,1647,150,0.3,6,6,6.4,274,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.6,70,99200,1050,1377,350,513,202,360,58625,17545,41325,2075,190,2.0,5,5,6.4,244,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,10.7,58,99100,1127,1377,358,640,355,349,74086,29838,40727,2029,200,2.7,5,5,10.4,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,11.2,55,99000,1129,1377,366,664,403,333,77133,33083,38992,1936,170,3.2,5,5,14.7,1042,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,11.7,57,99000,1054,1377,366,598,361,322,68971,29797,37363,1860,170,3.8,5,5,16.1,1250,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,11.8,57,98900,908,1377,366,492,317,283,55982,25871,32384,1590,160,4.8,5,5,16.1,1250,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,11.2,57,98900,701,1377,361,368,308,211,41360,23362,23848,1122,190,3.2,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,10.3,56,98900,447,1377,353,218,279,127,24184,16090,14196,622,270,3.7,3,3,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,8.8,53,98900,167,1377,340,62,148,44,6817,0,4849,192,270,3.7,1,1,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,8.1,54,98900,1,112,328,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,7.2,54,98900,0,0,322,0,0,0,0,0,0,0,260,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.2,58,98900,0,0,334,0,0,0,0,0,0,0,260,1.3,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.3,61,98900,0,0,315,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,7.8,65,98900,0,0,313,0,0,0,0,0,0,0,260,0.0,0,0,16.1,1494,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,7.8,68,98900,0,0,310,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.8,72,98900,0,0,306,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.8,76,98800,0,0,303,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.7,80,98800,0,0,299,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,7.1,79,98800,0,0,296,0,0,0,0,0,0,0,270,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,6.8,78,98800,0,0,296,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,7.1,81,98800,1,93,295,0,0,0,0,0,0,0,310,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,6.1,67,98900,163,1376,301,78,327,40,8688,0,4402,173,360,2.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,2.5,45,98900,443,1376,307,273,557,94,31118,29114,10726,457,360,9.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,1.0,37,98900,698,1376,312,478,683,131,56017,45883,15465,699,360,10.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,0.5,35,99000,907,1376,314,653,757,155,78367,53223,18631,870,360,11.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,0.1,31,99000,1055,1376,318,781,801,166,95147,56447,20372,961,350,11.1,0,0,16.1,4877,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,0.6,31,99000,1132,1376,322,848,823,171,104184,57529,21074,991,10,9.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,0.6,31,98900,1133,1376,321,849,823,171,104319,57552,21083,991,10,8.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,0.3,28,98900,1058,1376,327,783,802,167,95493,56449,20395,962,10,9.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,-1.1,25,98800,912,1376,326,657,758,155,78932,53693,18700,873,350,9.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,-1.8,24,98800,704,1376,325,483,685,132,56729,46733,15582,704,350,9.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,-2.4,23,98800,450,1376,321,279,562,95,31871,30607,10893,465,360,9.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-3.3,23,98800,171,1376,317,83,333,41,9205,500,4618,182,360,10.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,-3.4,25,98800,1,127,310,0,0,0,0,0,0,0,10,9.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,-3.6,26,98800,0,0,306,0,0,0,0,0,0,0,340,10.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-2.2,30,98900,0,0,305,0,0,0,0,0,0,0,340,7.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-2.1,31,98900,0,0,305,0,0,0,0,0,0,0,330,5.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-1.5,34,99000,0,0,303,0,0,0,0,0,0,0,10,6.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-0.6,37,98900,0,0,302,0,0,0,0,0,0,0,350,6.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-0.8,37,99000,0,0,302,0,0,0,0,0,0,0,330,2.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-1.7,35,99000,0,0,299,0,0,0,0,0,0,0,330,2.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-1.7,35,99000,0,0,298,0,0,0,0,0,0,0,360,6.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,-1.8,36,99000,0,0,297,0,0,0,0,0,0,0,350,5.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-2.2,34,99100,0,0,298,0,0,0,0,0,0,0,330,4.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,-2.3,34,99100,1,119,296,0,0,0,0,0,0,0,340,5.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,-2.8,32,99200,169,1375,299,87,397,38,9766,0,4311,168,360,7.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-3.6,26,99300,449,1375,306,296,660,81,34323,33701,9378,395,360,6.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-8.4,14,99300,704,1375,316,515,801,105,61645,52105,12641,561,10,8.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,-8.9,12,99400,912,1375,324,702,882,117,86246,59580,14449,660,10,8.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,-8.7,12,99400,1060,1375,328,838,930,121,104842,62599,15167,698,20,9.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,-7.9,12,99300,1137,1375,333,909,953,121,114860,63575,15347,703,360,10.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,-8.5,10,99300,1138,1375,337,910,954,121,114966,63687,15350,703,350,8.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,-9.3,9,99200,1062,1375,338,840,931,121,105098,62722,15179,698,340,7.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,-8.5,10,99200,915,1375,342,705,883,117,86630,59613,14471,662,350,6.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,-6.7,11,99200,708,1375,344,519,802,106,62088,52059,12691,564,30,3.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,-5.8,13,99200,454,1375,342,300,663,81,34821,34468,9462,399,100,3.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-5.6,13,99200,174,1375,339,90,402,40,10121,600,4437,174,100,3.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,-5.6,15,99200,2,142,330,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,-5.9,16,99200,0,0,325,0,0,0,0,0,0,0,270,1.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,-7.0,15,99200,0,0,320,0,0,0,0,0,0,0,270,3.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-1.8,26,99200,0,0,319,0,0,0,0,0,0,0,300,4.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,0.3,32,99200,0,0,317,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,-1.6,28,99200,0,0,314,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,-1.0,33,99200,0,0,308,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,-0.7,38,99100,0,0,300,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,-0.9,37,99100,0,0,301,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,0.1,45,99000,0,0,294,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,0.6,48,99000,0,0,293,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,0.6,51,99000,2,146,289,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,0.7,42,99100,176,1375,302,94,431,39,10481,0,4328,169,220,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,1.3,37,99100,455,1375,314,309,704,76,35996,34386,8858,372,220,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,1.2,30,99100,710,1375,329,534,849,95,64292,51980,11523,509,220,1.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,-4.4,15,99100,918,1375,341,725,932,103,89962,60484,12837,582,220,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,-4.2,13,99100,1065,1375,353,864,981,104,109311,63313,13201,601,10,2.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,-3.0,14,99000,1142,1375,355,937,1004,103,119739,64053,13193,597,10,3.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,-2.0,14,98900,1142,1375,361,937,1004,103,119736,63807,13203,598,10,2.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,-1.2,15,98800,1066,1375,366,865,981,104,109355,62612,13198,602,270,1.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,-1.8,14,98700,919,1375,363,727,932,103,90065,59932,12840,582,270,2.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,-1.3,16,98700,712,1375,361,535,849,95,64529,52677,11542,510,270,2.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,-0.9,17,98700,458,1375,357,311,706,76,36250,35067,8891,373,330,4.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,0.1,19,98600,178,1375,354,95,433,39,10642,179,4376,171,330,6.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,0.6,22,98600,2,157,347,0,0,0,0,0,0,0,350,5.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,0.7,25,98600,0,0,338,0,0,0,0,0,0,0,360,7.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,1.0,27,98600,0,0,336,0,0,0,0,0,0,0,360,9.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,0.6,26,98700,0,0,335,0,0,0,0,0,0,0,360,7.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,0.4,26,98600,0,0,333,0,0,0,0,0,0,0,10,6.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,-0.3,25,98600,0,0,331,0,0,0,0,0,0,0,170,2.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,1.2,29,98600,0,0,330,0,0,0,0,0,0,0,340,0.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,1.7,32,98500,0,0,327,0,0,0,0,0,0,0,340,5.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,1.6,32,98500,0,0,326,0,0,0,0,0,0,0,340,4.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,1.1,33,98400,0,0,321,0,0,0,0,0,0,0,360,6.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,1.2,32,98400,0,0,322,0,0,0,0,0,0,0,340,6.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,1.6,35,98400,2,173,320,0,0,0,0,0,0,0,340,7.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,0.9,29,98500,182,1374,327,90,352,44,10019,1326,4853,192,350,6.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,0.3,24,98500,462,1374,338,291,584,94,33321,31671,10868,465,350,6.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,2.4,27,98500,716,1374,344,498,708,129,58689,47086,15268,691,170,3.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,3.4,26,98500,923,1374,353,675,782,150,81369,53629,18097,845,140,3.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,4.1,25,98400,1070,1374,361,803,827,159,98348,56308,19572,921,120,3.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,5.1,26,98300,1146,1374,364,870,848,162,107405,57047,20129,942,130,4.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,5.4,26,98300,1146,1374,366,870,848,162,107380,56938,20125,942,140,5.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,4.7,24,98200,1070,1374,368,803,827,159,98292,56106,19551,920,150,3.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,6.4,28,98100,923,1374,366,675,782,150,81206,52626,18068,844,130,4.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,5.9,27,98100,715,1374,368,498,708,129,58544,46069,15235,690,130,3.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,4.4,24,98000,461,1374,365,290,584,94,33230,30793,10842,464,130,4.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,3.1,23,98000,181,1374,360,90,351,43,9978,1016,4840,191,130,5.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-1.7,19,98000,2,172,344,0,0,0,0,0,0,0,350,7.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-2.0,20,98100,0,0,335,0,0,0,0,0,0,0,360,8.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,-3.6,18,98100,0,0,332,0,0,0,0,0,0,0,330,6.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,-2.3,20,98100,0,0,332,0,0,0,0,0,0,0,320,2.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,-1.0,23,98100,0,0,332,0,0,0,0,0,0,0,320,3.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.3,65,98100,0,0,322,0,0,0,0,0,0,0,80,2.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,9.1,69,98100,0,0,317,0,0,0,0,0,0,0,130,2.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.1,78,98100,0,0,313,0,0,0,0,0,0,0,90,2.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.7,84,98100,0,0,312,0,0,0,0,0,0,0,90,2.2,0,0,15.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,11.1,88,98100,0,0,321,0,0,0,0,0,0,0,110,2.1,2,2,12.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.1,89,98100,0,0,328,0,0,0,0,0,0,0,120,1.3,5,5,7.5,183,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.1,89,98200,3,201,328,0,0,0,0,0,0,0,120,0.0,5,5,5.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.1,88,98200,188,1373,327,59,85,47,6506,220,5245,209,120,0.0,4,4,6.4,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.0,80,98300,468,1373,328,200,176,140,22180,10770,15614,692,110,0.3,2,2,7.4,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.6,61,98400,722,1373,333,461,563,165,53108,38514,19082,883,110,2.3,0,0,13.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,10.5,51,98400,929,1373,346,668,750,161,79849,49827,19304,909,110,3.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,9.9,44,98400,1075,1373,355,836,897,134,103557,56041,16652,775,110,3.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,9.2,37,98400,1151,1373,362,901,910,138,112463,57118,17342,803,110,3.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,8.5,33,98300,1150,1373,368,905,920,135,113198,57725,16924,782,150,3.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,9.4,35,98300,1074,1373,370,820,861,147,100846,55266,18149,850,110,3.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,9.5,35,98300,926,1373,370,687,807,142,82886,52234,17218,803,140,3.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,9.9,36,98300,719,1373,371,505,723,126,59411,45230,14889,674,140,3.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,10.3,38,98300,465,1373,369,302,630,88,34657,30572,10187,435,140,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,10.6,41,98300,185,1373,364,92,355,44,10180,144,4911,195,110,0.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,10.7,49,98400,3,188,351,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.2,54,98400,0,0,346,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,11.7,63,98500,0,0,337,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.7,66,98500,0,0,334,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.7,73,98500,0,0,327,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.7,76,98600,0,0,325,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,11.8,80,98600,0,0,322,0,0,0,0,0,0,0,120,1.8,0,0,15.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,12.2,92,98600,0,0,314,0,0,0,0,0,0,0,120,0.0,0,0,9.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.2,90,98600,0,0,335,0,0,0,0,0,0,0,120,1.3,5,5,9.4,203,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.1,90,98700,0,0,334,0,0,0,0,0,0,0,120,0.0,5,5,8.0,156,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,98700,0,0,331,0,0,0,0,0,0,0,170,0.0,5,5,7.8,178,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.8,91,98700,4,230,331,0,0,0,0,0,0,0,170,0.4,5,5,6.0,157,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,12.1,91,98800,194,1372,333,56,63,47,6183,177,5217,208,170,0.0,5,5,5.1,165,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,11.9,84,98900,474,1372,338,175,101,140,19363,6118,15568,691,190,0.0,5,5,6.4,262,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.2,79,98900,727,1372,341,303,127,236,33989,10013,26593,1267,190,2.0,4,4,6.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.2,68,98900,934,1372,335,588,518,235,68238,38683,27458,1332,190,1.3,0,0,10.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,12.0,58,98900,1080,1372,346,762,708,205,91350,48713,24705,1187,190,0.2,0,0,14.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,11.0,46,98900,1155,1372,358,916,934,129,114837,56731,16284,751,140,1.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,10.6,45,98800,1154,1372,357,892,883,149,110708,55635,18570,865,140,3.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,10.6,45,98700,1077,1372,356,798,801,169,97126,52783,20704,981,140,4.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,10.4,48,98700,930,1372,350,615,600,209,72089,43516,24577,1180,180,4.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,10.0,46,98700,722,1372,351,478,623,151,55566,41402,17581,808,140,5.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,10.1,48,98600,468,1372,349,288,547,101,32750,28465,11548,499,140,4.8,0,0,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,10.7,53,98600,188,1372,345,93,347,45,10306,617,5050,201,140,4.5,0,0,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.2,67,98600,3,204,331,0,0,0,0,0,0,0,150,3.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.7,79,98600,0,0,322,0,0,0,0,0,0,0,110,3.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98700,0,0,317,0,0,0,0,0,0,0,120,3.4,0,0,15.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.7,85,98700,0,0,330,0,0,0,0,0,0,0,120,2.4,3,3,12.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98700,0,0,329,0,0,0,0,0,0,0,140,2.3,3,3,14.5,279,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.7,84,98600,0,0,331,0,0,0,0,0,0,0,180,2.4,3,3,13.2,293,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.6,83,98600,0,0,331,0,0,0,0,0,0,0,170,2.0,3,3,14.7,493,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.1,81,98500,0,0,330,0,0,0,0,0,0,0,170,2.0,3,3,15.6,658,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.4,83,98500,0,0,330,0,0,0,0,0,0,0,150,4.3,3,3,9.7,527,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,12.0,91,98400,0,0,327,0,0,0,0,0,0,0,180,3.1,3,3,13.6,726,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.1,84,98400,0,0,328,0,0,0,0,0,0,0,210,2.7,3,3,16.1,432,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98400,5,258,331,0,0,0,0,0,0,0,150,3.0,4,4,16.1,808,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98400,200,1372,331,67,103,52,7406,777,5760,232,150,2.4,4,4,9.9,413,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98400,480,1372,331,179,104,142,19828,6436,15864,705,230,1.7,4,4,12.0,396,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,11.1,77,98400,733,1372,336,290,101,236,32539,8036,26612,1268,200,2.5,4,4,16.1,718,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.0,73,98400,939,1372,340,404,122,320,45828,10515,36551,1815,270,2.8,4,4,16.1,764,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,9.8,63,98300,1085,1372,344,537,208,373,61554,18344,42993,2159,170,6.3,4,4,16.1,1372,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,8.9,53,98300,1159,1372,351,642,319,372,74378,27580,43423,2159,170,6.8,4,4,16.1,1852,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,8.8,55,98200,1158,1372,347,634,306,376,73478,26647,43802,2180,180,7.1,4,4,16.1,4572,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,7.5,49,98100,1081,1372,350,587,301,349,67650,26253,40517,2022,150,6.2,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,2.7,36,98100,933,1372,340,519,343,285,59559,29439,32935,1615,260,3.9,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,1.5,36,98100,726,1372,316,488,648,145,57132,45037,17074,780,270,5.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,1.0,39,98100,472,1372,309,279,491,110,31653,28673,12546,544,270,4.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,2.2,45,98100,192,1372,307,87,266,49,9584,2333,5482,219,270,4.9,0,0,16.1,4572,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,2.0,48,98100,4,220,300,0,0,0,0,0,0,0,270,2.9,0,0,16.1,4572,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,1.2,48,98100,0,0,297,0,0,0,0,0,0,0,270,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,1.7,50,98100,0,0,296,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,1.9,50,98200,0,0,303,0,0,0,0,0,0,0,220,0.3,1,1,16.1,2331,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,2.9,55,98200,0,0,306,0,0,0,0,0,0,0,220,2.0,2,2,16.1,2568,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,3.3,59,98200,0,0,307,0,0,0,0,0,0,0,240,1.5,3,3,16.1,2438,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,3.2,62,98200,0,0,306,0,0,0,0,0,0,0,270,1.5,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,2.7,66,98200,0,0,285,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,2.3,67,98200,0,0,282,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,2.7,71,98200,0,0,280,0,0,0,0,0,0,0,10,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,2.3,73,98300,0,0,276,0,0,0,0,0,0,0,10,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.4,2.6,72,98300,7,288,279,1,88,1,133,0,76,2,290,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,1.6,62,98400,207,1371,292,82,176,56,9042,2605,6141,247,280,1.3,2,2,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,1.0,53,98400,486,1371,289,298,539,107,34062,31405,12287,532,280,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,0.5,44,98400,739,1371,298,485,605,159,56500,43510,18610,857,140,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,0.1,37,98400,945,1371,317,536,368,283,61739,31617,32747,1604,140,2.0,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,0.7,34,98400,1090,1371,316,818,824,162,100356,57233,20033,942,140,5.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,1.0,34,98300,1164,1371,334,686,402,345,80299,34961,40598,2000,190,4.4,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,0.6,35,98300,1162,1371,330,651,333,368,75786,29840,43159,2137,170,3.7,4,4,16.1,3170,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,0.6,34,98200,1085,1371,331,602,328,342,69780,29235,39921,1984,230,4.5,4,4,16.1,2225,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,0.8,36,98200,937,1371,326,530,365,281,61043,31335,32480,1590,320,6.5,3,3,16.1,2605,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,1.5,40,98300,729,1371,324,408,375,208,46371,29832,23806,1119,320,4.9,3,3,16.1,1817,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,2.3,43,98300,475,1371,319,243,316,133,27127,20156,14942,658,110,3.4,2,2,16.1,1741,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,2.9,47,98300,195,1371,317,77,176,52,8508,1878,5769,231,110,2.6,2,2,16.1,1676,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,3.4,52,98300,4,236,309,0,0,0,0,0,0,0,110,4.6,1,1,16.1,1698,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,4.0,58,98400,0,0,305,0,0,0,0,0,0,0,40,1.5,1,1,16.1,1829,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,4.4,64,98400,0,0,296,0,0,0,0,0,0,0,50,1.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,4.5,64,98400,0,0,296,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,4.9,68,98400,0,0,294,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,4.4,69,98400,0,0,291,0,0,0,0,0,0,0,70,1.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,4.1,70,98500,0,0,288,0,0,0,0,0,0,0,60,1.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,3.9,71,98500,0,0,292,0,0,0,0,0,0,0,30,2.1,1,1,16.1,596,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,3.9,69,98500,0,0,298,0,0,0,0,0,0,0,60,2.1,2,2,16.1,940,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,3.8,72,98500,0,0,298,0,0,0,0,0,0,0,30,2.2,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,3.4,73,98500,0,0,299,0,0,0,0,0,0,0,10,2.5,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,3.9,73,98600,8,317,302,1,55,1,132,0,89,3,40,1.8,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,4.1,68,98600,213,1370,307,73,111,56,8111,1696,6232,251,40,0.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,5.0,61,98700,493,1370,317,233,243,146,25970,16114,16293,724,40,1.3,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,4.8,57,98700,745,1370,318,369,244,236,41609,20152,26774,1274,40,0.0,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,3.6,46,98700,950,1370,325,509,298,302,58290,25986,34788,1715,40,0.3,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,2.2,40,98700,1094,1370,332,552,224,373,63540,20460,43243,2163,40,2.2,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,2.1,37,98700,1168,1370,335,676,377,355,79007,32973,41749,2059,140,2.7,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,2.2,38,98600,1166,1370,331,672,370,357,78416,32456,41917,2069,180,3.3,3,3,16.1,2011,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,5.0,46,98600,1088,1370,326,644,413,316,75017,34856,37075,1834,180,4.0,1,1,16.1,3048,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,5.0,48,98600,940,1370,318,634,630,201,74814,46774,23847,1140,190,3.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,5.3,49,98600,732,1370,325,419,403,204,47701,31142,23305,1095,190,3.1,1,1,16.1,1829,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,4.7,47,98600,478,1370,328,255,362,129,28630,22422,14533,639,300,3.1,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,3.9,45,98600,199,1370,326,85,222,52,9331,2448,5805,233,300,3.3,2,2,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,1.2,40,98700,5,252,308,0,0,0,0,0,0,0,300,3.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,2.1,45,98700,0,0,305,0,0,0,0,0,0,0,260,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,4.6,57,98800,0,0,304,0,0,0,0,0,0,0,250,1.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,5.6,65,98800,0,0,301,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.7,67,98800,0,0,299,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,6.0,71,98900,0,0,297,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,5.5,72,98900,0,0,294,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,4.9,74,98800,0,0,289,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,4.4,74,98800,0,0,286,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,4.4,77,98800,0,0,284,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,4.4,77,98800,0,0,284,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,4.5,76,98800,10,346,286,2,283,0,321,0,4,0,240,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,5.0,68,98900,219,1369,294,118,429,49,13197,5284,5529,221,240,1.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,4.7,52,98900,499,1369,311,333,665,90,38555,35586,10508,450,150,1.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,2.5,36,98900,750,1369,323,548,790,115,65571,50898,13824,623,300,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,1.1,29,98900,955,1369,329,731,866,127,89682,57451,15670,724,300,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,1.0,26,98900,1099,1369,337,862,911,131,107658,60010,16409,759,270,2.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,0.4,23,98800,1172,1369,344,929,932,131,117168,61102,16598,760,270,3.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,-0.8,20,98800,1170,1369,345,927,932,131,116872,61398,16604,761,290,6.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,-1.7,19,98800,1092,1369,340,855,909,131,106815,60612,16377,757,290,7.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-1.3,20,98700,943,1369,339,721,862,127,88346,57803,15604,720,300,5.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,-0.3,23,98700,735,1369,336,535,784,114,63964,50998,13672,614,290,4.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,1.1,28,98700,482,1369,333,319,654,88,36894,35042,10271,438,280,5.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,1.6,30,98700,202,1369,330,106,410,46,11902,3625,5157,204,280,5.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,4.6,40,98700,6,268,329,1,242,0,191,0,0,0,280,3.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,5.8,46,98800,0,0,325,0,0,0,0,0,0,0,240,2.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,6.8,53,98800,0,0,322,0,0,0,0,0,0,0,240,2.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,7.2,58,98800,0,0,317,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,7.2,62,98900,0,0,312,0,0,0,0,0,0,0,120,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,3,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.4,65,98900,0,0,310,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,8.3,73,98900,0,0,308,0,0,0,0,0,0,0,120,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,8.2,80,98900,0,0,301,0,0,0,0,0,0,0,360,0.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,7.7,82,98900,0,0,297,0,0,0,0,0,0,0,360,1.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,7.1,77,98900,0,0,298,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,6.8,81,99000,0,0,294,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,7.2,82,99000,11,375,295,2,203,0,277,0,46,1,300,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,7.4,76,99100,225,1368,301,119,406,52,13278,5582,5845,234,300,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.2,67,99100,505,1368,313,329,627,98,37891,33757,11287,488,300,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,7.7,55,99200,756,1368,324,539,746,127,63931,47800,15152,689,200,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,7.0,47,99200,960,1368,332,717,818,143,87076,53939,17462,815,200,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,6.4,38,99100,1103,1368,343,844,862,150,104293,56637,18557,868,200,0.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,8.0,37,99100,1176,1368,355,909,882,151,113253,56853,18917,876,150,2.9,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,9.4,40,99100,1173,1368,358,907,881,151,112822,56147,18888,876,150,4.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,9.3,41,99000,1095,1368,355,837,859,149,103161,55250,18486,866,150,4.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,8.9,41,99000,947,1368,353,705,814,142,85466,52855,17325,809,130,4.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,9.0,41,99000,739,1368,354,525,739,126,62055,46635,14912,677,110,3.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,8.9,41,99000,485,1368,353,313,616,95,35986,32014,10952,471,100,3.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,8.9,41,99000,205,1368,352,106,385,48,11776,2870,5364,214,100,3.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,9.0,44,99000,6,284,349,1,200,0,153,0,9,0,280,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,9.4,51,99000,0,0,339,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,9.4,55,99100,0,0,334,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,9.5,59,99100,0,0,329,0,0,0,0,0,0,0,110,0.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.1,69,99100,0,0,322,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.6,76,99200,0,0,319,0,0,0,0,0,0,0,100,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.5,78,99200,0,0,315,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,9.9,81,99200,0,0,310,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.4,83,99200,0,0,306,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,9.3,80,99200,0,0,307,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,8.8,82,99200,0,0,303,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,8.5,80,99200,13,404,303,3,304,0,447,0,16,0,160,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.5,78,99300,232,1368,310,129,462,50,14413,5880,5661,227,160,0.0,0,0,15.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,9.8,66,99300,510,1368,323,349,700,87,40547,35573,10173,436,160,0.0,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,8.9,51,99300,761,1368,337,568,827,108,68250,50018,13006,585,160,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,8.7,41,99300,965,1368,351,753,903,117,92928,55799,14443,665,160,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,7.9,34,99300,1108,1368,361,886,948,118,111396,58442,14900,685,160,1.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,8.1,31,99200,1180,1368,371,954,969,117,121066,59125,14950,680,160,3.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,6.7,27,99200,1177,1368,372,951,968,117,120696,59770,14968,681,160,3.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,6.4,26,99100,1098,1368,375,877,945,118,110230,59021,14896,685,160,4.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,4.3,22,99000,950,1368,374,740,898,116,91230,57353,14399,661,120,4.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,3.9,22,99000,742,1368,371,551,819,107,66151,51177,12863,576,120,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,3.8,23,99000,488,1368,366,330,686,85,38358,35762,9895,421,290,3.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,6.0,28,99000,209,1368,364,113,437,46,12630,3719,5193,206,290,4.9,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,5.3,30,99000,7,300,355,1,158,0,144,0,24,1,310,3.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,3.8,31,99000,0,0,343,0,0,0,0,0,0,0,270,2.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,3.3,32,99000,0,0,337,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,3.4,35,99000,0,0,330,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,4.2,40,99000,0,0,326,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,5.8,47,99000,0,0,324,0,0,0,0,0,0,0,290,1.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,6.8,58,99000,0,0,315,0,0,0,0,0,0,0,350,1.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.1,60,98900,0,0,314,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,6.9,63,98900,0,0,310,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,7.6,69,98900,0,0,308,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.7,69,98900,0,0,303,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,6.6,67,98900,15,433,304,4,367,0,771,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,6.2,58,99000,238,1367,311,125,396,56,13923,7171,6270,253,300,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,6.5,49,99000,516,1367,325,341,644,98,39404,35496,11318,489,300,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,5.3,35,99100,766,1367,343,581,854,102,70272,52412,12353,553,300,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,3.9,27,99100,970,1367,354,781,963,98,97827,59467,12326,560,300,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,3.4,24,99000,1112,1367,361,900,972,110,114081,60945,13933,636,330,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,0.7,18,99000,1184,1367,365,946,946,126,119795,61378,16069,732,330,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,1.2,18,98900,1180,1367,368,917,889,149,114642,59529,18677,861,330,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,1.9,18,98800,1102,1367,385,723,573,261,85740,45480,31128,1514,330,4.0,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,1.6,18,98800,953,1367,369,712,817,142,86585,55584,17377,809,260,4.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,-0.6,16,98800,745,1367,363,535,756,123,63649,50292,14650,662,290,4.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,-2.0,15,98800,491,1367,356,318,618,96,36735,35083,11132,478,300,4.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,-2.0,16,98800,212,1367,351,111,401,49,12443,5357,5498,219,300,4.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-0.4,21,98800,8,316,346,1,116,0,138,0,45,1,300,2.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,0.7,25,98800,0,0,339,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,1.3,27,98900,0,0,355,0,0,0,0,0,0,0,250,2.3,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,2.3,32,98900,0,0,348,0,0,0,0,0,0,0,250,2.6,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,3.0,35,98900,0,0,327,0,0,0,0,0,0,0,310,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,4.4,42,98900,0,0,324,0,0,0,0,0,0,0,310,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,4.5,44,98900,0,0,320,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,5.1,54,98900,0,0,310,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,5.6,57,98900,0,0,309,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,5.7,58,98900,0,0,309,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,6.0,62,98900,0,0,306,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,5.6,63,99000,17,462,303,5,189,3,605,0,321,11,300,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,5.7,56,99100,244,1366,311,126,377,59,14041,7740,6561,266,300,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,6.1,46,99100,522,1366,327,341,627,102,39379,35379,11784,512,300,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,6.2,37,99200,772,1366,344,586,856,102,70891,52239,12372,554,90,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,5.8,30,99200,974,1366,358,792,979,94,99499,59130,11792,534,90,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,0.6,18,99200,1116,1366,362,930,1027,90,119570,63272,11669,525,90,0.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,1.5,18,99100,1188,1366,370,973,996,107,124733,62433,13799,621,90,2.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,6.0,24,99000,1184,1366,376,908,864,159,112865,57112,19874,921,170,5.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,2.4,19,98900,1105,1366,372,830,824,164,102065,56717,20215,950,180,2.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,3.1,20,98900,956,1366,372,698,774,157,84329,53601,19016,893,160,2.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,2.3,19,98900,748,1366,369,538,759,122,64028,49767,14619,661,160,3.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,1.3,19,98900,495,1366,365,332,672,88,38538,36386,10292,440,270,3.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,0.2,18,98900,215,1366,360,117,436,48,13082,5569,5396,214,270,3.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-1.7,17,99000,9,333,361,1,84,0,135,0,62,2,270,2.5,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,1.4,24,99000,0,0,345,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,2.6,28,99000,0,0,342,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,1.8,28,99000,0,0,336,0,0,0,0,0,0,0,320,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,2.4,31,99000,0,0,333,0,0,0,0,0,0,0,250,2.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,3.4,32,99000,0,0,338,0,0,0,0,0,0,0,330,2.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,4.1,36,98900,0,0,332,0,0,0,0,0,0,0,360,3.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,5.1,47,98900,0,0,319,0,0,0,0,0,0,0,190,1.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,5.3,53,98900,0,0,312,0,0,0,0,0,0,0,80,2.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,3.7,44,98900,0,0,316,0,0,0,0,0,0,0,50,2.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,3.2,45,98900,0,0,312,0,0,0,0,0,0,0,50,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,5.6,56,99000,19,491,310,6,432,0,1162,0,0,0,50,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,5.7,49,99000,250,1365,320,145,517,51,16432,9204,5762,231,50,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,6.1,43,99100,528,1365,332,373,758,81,43960,39407,9518,406,170,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,5.7,33,99100,777,1365,349,599,886,95,72981,53363,11629,519,170,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,3.4,24,99200,979,1365,361,789,962,99,98919,59697,12445,566,170,1.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,3.9,22,99100,1120,1365,372,924,1007,97,118202,61614,12479,565,170,3.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,4.1,21,99000,1191,1365,375,992,1028,95,128289,62255,12334,550,150,3.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,4.7,19,99000,1187,1365,387,988,1027,95,127651,61973,12347,551,150,3.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,2.3,15,98900,1108,1365,391,912,1004,97,116516,62060,12489,566,160,4.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,-0.5,12,98800,959,1365,386,770,955,99,96356,60510,12416,563,180,5.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,-1.7,12,98700,751,1365,382,575,875,94,69964,54586,11483,509,170,4.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,-1.6,12,98700,498,1365,377,347,738,78,40820,38983,9222,390,170,4.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,-1.6,13,98700,219,1365,374,123,480,46,13861,6185,5207,206,170,3.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,5.0,22,98800,10,349,376,2,276,0,311,0,8,0,290,2.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,5.0,25,98800,0,0,366,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,5.1,28,98900,0,0,357,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,5.6,32,99000,0,0,350,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,5.3,34,99100,0,0,345,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,4.7,36,99100,0,0,336,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.6,56,99100,0,0,334,0,0,0,0,0,0,0,90,1.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,10.7,66,99000,0,0,328,0,0,0,0,0,0,0,90,1.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.8,72,99000,0,0,323,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,9.4,69,99000,0,0,318,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.2,69,99000,0,0,317,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,8.3,66,98900,21,520,315,7,447,0,1357,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,8.5,58,98900,256,1365,325,144,468,56,16123,9179,6285,254,270,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,9.4,45,99000,533,1365,349,363,689,94,42221,36808,10920,472,160,0.5,0,0,16.1,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,8.6,33,99000,782,1365,370,579,808,116,69461,50067,13941,632,160,2.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,4.2,19,99000,984,1365,384,761,881,126,93753,57162,15540,719,90,2.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.6,2.5,15,99000,1125,1365,393,890,925,128,111741,59961,16109,742,100,2.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,-1.3,10,98900,1195,1365,399,955,945,127,121162,61866,16225,736,100,2.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,0.8,13,98800,1190,1365,395,951,944,127,120483,61243,16215,737,160,5.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,-0.4,12,98800,1111,1365,392,877,921,128,110054,60632,16079,741,170,6.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,1.6,15,98800,962,1365,385,741,874,125,91160,57558,15429,712,170,6.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,5.5,24,98800,754,1365,374,554,797,114,66344,50239,13673,616,130,5.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,8.8,36,98800,501,1365,362,336,670,90,38922,34588,10451,449,100,5.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,10.1,48,98800,222,1365,349,120,433,50,13431,4591,5577,223,100,4.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,10.1,57,98900,11,366,336,2,229,0,284,0,31,1,150,6.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,7.3,48,99000,0,0,332,0,0,0,0,0,0,0,90,3.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,7.5,51,99100,0,0,328,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,5.4,46,99100,0,0,323,0,0,0,0,0,0,0,150,2.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,4.2,42,99000,0,0,322,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,3.8,42,99000,0,0,320,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,6.8,54,99000,0,0,320,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,7.0,53,98800,0,0,322,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,5.6,50,98800,0,0,318,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,5.7,50,98700,0,0,319,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,6.0,51,98700,0,0,319,0,0,0,0,0,0,0,170,0.0,0,0,16.1,4572,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,5.6,50,98700,24,549,319,8,208,4,941,0,514,18,150,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,5.7,48,98800,262,1364,322,141,415,61,15737,10010,6852,278,150,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,6.1,46,98800,539,1364,328,322,487,129,36562,30669,14733,653,150,0.0,0,0,16.1,4572,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,6.4,44,98800,787,1364,333,488,506,196,56324,37946,22717,1071,150,0.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,7.9,45,98800,988,1364,339,637,548,240,74674,42024,28250,1373,150,2.9,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,8.4,46,98800,1129,1364,342,744,579,265,88325,44255,31631,1539,160,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,9.2,51,98700,1199,1364,357,616,233,412,71300,20690,47960,2376,160,4.4,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,5.0,1.0 +2016,4,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,10.9,61,98700,1194,1364,353,581,184,420,67049,16385,48769,2426,160,2.9,4,4,14.9,3002,9,999999999,200,0.0000,0,88,999.000,8.0,1.0 +2016,4,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.9,74,98600,1114,1364,351,528,169,390,60517,14709,44991,2263,300,1.6,4,4,8.0,2743,9,999999999,229,0.0000,0,88,999.000,5.0,1.0 +2016,4,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,13.5,78,98600,965,1364,350,470,204,326,53462,17154,37277,1859,300,2.1,4,4,8.8,2788,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,14.4,83,98500,757,1364,351,378,249,240,42536,19236,27129,1301,250,2.1,4,4,12.8,3025,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,14.7,82,98500,504,1364,353,249,276,147,27642,16816,16380,734,280,1.8,4,4,11.9,2872,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,14.9,83,98400,225,1364,354,88,161,61,9621,2166,6724,274,280,1.3,4,4,12.0,2697,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,14.3,81,98400,12,382,352,2,81,1,251,0,165,5,280,0.2,4,4,16.1,2483,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.7,81,98400,0,0,348,0,0,0,0,0,0,0,120,1.8,4,4,16.1,2743,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.8,84,98500,0,0,340,0,0,0,0,0,0,0,120,3.4,4,4,15.9,2834,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,98500,0,0,338,0,0,0,0,0,0,0,120,3.1,4,4,14.5,788,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,98500,0,0,338,0,0,0,0,0,0,0,110,1.5,4,4,12.9,624,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.2,84,98500,0,0,337,0,0,0,0,0,0,0,70,1.6,4,4,14.2,593,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.3,84,98500,0,0,335,0,0,0,0,0,0,0,10,0.0,3,3,15.4,3025,9,999999999,220,0.0000,0,88,999.000,3.0,1.0 +2016,4,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,98400,0,0,335,0,0,0,0,0,0,0,10,0.0,3,3,11.3,2735,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.8,87,98400,0,0,335,0,0,0,0,0,0,0,160,0.4,3,3,11.0,1728,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.7,90,98400,0,0,332,0,0,0,0,0,0,0,160,2.6,3,3,9.7,1148,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.7,90,98400,0,0,332,0,0,0,0,0,0,0,180,2.2,3,3,8.2,356,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98500,26,578,332,10,64,9,1114,0,978,37,120,0.2,3,3,9.2,1118,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.3,87,98500,268,1363,332,98,127,74,10829,3370,8114,336,120,1.7,3,3,6.7,1062,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.3,84,98500,544,1363,335,223,138,168,24779,9385,18730,851,170,3.0,3,3,10.7,437,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.8,84,98600,792,1363,338,331,120,261,37197,9657,29550,1431,180,2.0,3,3,9.3,391,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,98600,993,1363,335,421,109,341,47873,9357,39049,1955,170,2.1,3,3,10.6,291,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98600,1132,1363,340,533,163,398,61185,14203,45986,2311,160,1.8,3,3,9.7,361,9,999999999,229,0.0000,0,88,999.000,1.0,1.0 +2016,4,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.4,84,98600,1202,1363,341,595,198,421,68644,17211,48850,2426,130,2.6,3,3,11.6,637,9,999999999,240,0.0000,0,88,999.000,5.0,1.0 +2016,4,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.8,87,98600,1197,1363,338,635,266,402,73465,22615,46752,2319,140,2.5,2,2,4.8,550,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,13.5,87,98500,1117,1363,335,591,268,371,68014,22670,42990,2154,190,1.9,2,2,6.4,803,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,13.3,88,98500,968,1363,333,517,291,310,59013,23926,35615,1769,210,2.0,2,2,5.3,349,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,13.3,87,98500,760,1363,334,407,319,229,46006,24338,26059,1245,130,0.1,2,2,16.1,455,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,13.4,87,98500,507,1363,335,262,318,143,29171,19456,16055,717,160,2.7,2,2,16.1,402,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,13.3,86,98500,229,1363,335,95,195,62,10393,3042,6828,279,140,3.4,2,2,16.1,790,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,12.8,85,98500,13,399,333,3,97,2,365,0,256,9,150,3.3,2,2,16.1,927,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.7,86,98500,0,0,332,0,0,0,0,0,0,0,160,2.6,2,2,16.1,966,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.1,83,98600,0,0,331,0,0,0,0,0,0,0,140,2.5,2,2,16.1,523,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.6,84,98600,0,0,327,0,0,0,0,0,0,0,130,2.8,2,2,16.1,1118,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.2,84,98600,0,0,325,0,0,0,0,0,0,0,150,3.9,2,2,16.1,915,9,999999999,200,0.0000,0,88,999.000,6.0,1.0 +2016,4,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98600,0,0,328,0,0,0,0,0,0,0,130,0.4,2,2,16.1,560,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98600,0,0,324,0,0,0,0,0,0,0,160,1.5,1,1,16.1,669,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98600,0,0,324,0,0,0,0,0,0,0,120,1.5,1,1,16.1,1129,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98600,0,0,324,0,0,0,0,0,0,0,110,1.3,1,1,15.9,1728,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.9,86,98500,0,0,323,0,0,0,0,0,0,0,110,0.0,1,1,14.5,1011,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98500,0,0,321,0,0,0,0,0,0,0,120,0.2,1,1,15.8,1330,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.3,87,98600,29,607,325,11,107,9,1231,0,978,36,120,0.2,1,1,14.7,274,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.7,85,98600,274,1362,328,118,213,75,12985,5894,8304,344,120,1.7,1,1,16.1,420,9,999999999,229,0.0000,0,88,999.000,3.0,1.0 +2016,4,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.8,78,98600,550,1362,330,285,314,158,31831,20774,17728,802,140,4.0,1,1,16.1,506,9,999999999,209,0.0000,0,88,999.000,3.0,1.0 +2016,4,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.3,83,98600,797,1362,328,448,369,232,50902,28294,26494,1271,150,3.5,1,1,13.4,489,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.6,82,98600,997,1362,330,584,403,289,67420,32009,33569,1659,110,3.4,1,1,16.1,376,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,11.7,75,98600,1136,1362,332,681,425,327,79472,34233,38356,1896,130,4.9,1,1,16.1,657,9,999999999,209,0.0000,0,88,999.000,2.0,1.0 +2016,4,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.7,75,98500,1206,1362,331,729,435,344,85600,35101,40639,1983,130,4.4,1,1,11.9,1119,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.8,80,98500,1200,1362,327,725,435,343,85036,34698,40430,1977,170,3.6,0,0,16.1,1082,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.2,73,98400,1120,1362,324,669,422,322,78040,34153,37814,1871,140,4.4,0,0,16.1,1414,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2016,4,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.6,77,98400,970,1362,323,566,399,282,65230,31861,32662,1609,140,3.5,0,0,16.1,1769,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.2,73,98300,763,1362,324,425,363,222,48199,27743,25292,1204,160,3.1,0,0,16.1,1462,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,10.8,71,98300,510,1362,324,260,303,146,28966,19308,16357,731,140,2.8,0,0,16.1,1660,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.6,71,98300,232,1362,323,96,193,63,10543,3557,6951,284,140,2.8,0,0,16.1,1829,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.5,75,98300,14,415,319,3,97,2,367,0,249,8,110,3.1,0,0,16.1,1989,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.0,72,98300,0,0,318,0,0,0,0,0,0,0,110,0.0,0,0,16.1,2758,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.0,72,98300,0,0,318,0,0,0,0,0,0,0,110,0.0,0,0,16.1,1981,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.1,73,98300,0,0,318,0,0,0,0,0,0,0,110,0.0,0,0,16.1,1981,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.6,76,98300,0,0,319,0,0,0,0,0,0,0,330,0.0,0,0,16.1,2095,9,999999999,189,0.0000,0,88,999.000,2.0,1.0 +2016,4,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.7,80,98300,0,0,316,0,0,0,0,0,0,0,330,0.0,0,0,16.1,2743,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.0,85,98300,0,0,312,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,10.5,81,98200,0,0,313,0,0,0,0,0,0,0,330,0.2,0,0,16.1,2134,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.9,83,98200,0,0,308,0,0,0,0,0,0,0,330,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.4,84,98200,0,0,305,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.3,89,98200,0,0,301,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.9,86,98200,32,635,300,13,66,11,1431,0,1264,48,330,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,9.1,86,98300,279,1361,308,104,132,77,11502,4147,8547,355,330,0.0,1,1,16.1,1874,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,10.0,78,98400,555,1361,326,252,199,171,28059,13949,19099,869,200,0.0,3,3,16.1,2134,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.9,65,98400,802,1361,344,382,203,263,43139,16796,29796,1442,200,0.4,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,9.5,54,98400,1001,1361,356,550,319,315,63171,26914,36395,1807,200,2.5,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,9.9,54,98400,1140,1361,359,622,301,370,72027,25918,43114,2148,200,1.8,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,9.4,51,98400,1209,1361,360,652,283,401,75759,24754,46859,2307,200,0.3,5,5,16.1,1851,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,9.2,53,98400,1203,1361,355,596,199,421,68939,17805,48980,2425,200,2.4,5,5,16.1,2049,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.4,51,98400,1122,1361,354,576,237,381,66467,21003,44214,2212,220,3.9,5,5,16.1,2323,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,8.9,54,98400,973,1361,352,495,242,323,56591,20853,37092,1844,250,3.3,5,5,16.1,1625,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,8.4,53,98400,765,1361,350,397,284,238,44916,22842,27031,1292,220,4.0,5,5,16.1,1354,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,8.3,53,98500,513,1361,350,251,264,151,27943,17516,16907,757,210,3.2,5,5,16.1,1446,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.0,53,98500,235,1361,348,90,150,64,9919,3139,7085,289,210,2.5,5,5,16.1,1706,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.5,61,98500,15,432,347,4,75,3,475,0,378,13,150,2.1,5,5,16.1,2697,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.0,66,98600,0,0,344,0,0,0,0,0,0,0,120,2.2,5,5,16.1,2415,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.9,69,98700,0,0,340,0,0,0,0,0,0,0,140,2.5,5,5,16.1,2286,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,9.5,69,98700,0,0,337,0,0,0,0,0,0,0,120,2.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.1,70,98700,0,0,340,0,0,0,0,0,0,0,80,1.6,5,5,16.1,2506,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.5,75,98700,0,0,337,0,0,0,0,0,0,0,140,2.1,5,5,16.1,2850,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.2,76,98800,0,0,335,0,0,0,0,0,0,0,140,2.1,5,5,16.1,2430,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.2,81,98800,0,0,336,0,0,0,0,0,0,0,160,1.6,5,5,16.1,1278,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98800,0,0,336,0,0,0,0,0,0,0,130,0.5,5,5,15.7,513,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.2,81,98800,0,0,336,0,0,0,0,0,0,0,160,2.0,5,5,16.1,1453,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.7,86,98900,0,0,335,0,0,0,0,0,0,0,120,1.5,5,5,16.1,796,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.7,83,98900,35,663,337,14,52,12,1492,0,1351,52,120,1.3,5,5,16.1,827,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.5,80,99000,285,1361,339,99,103,78,10954,3175,8601,358,40,0.5,5,5,16.1,853,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.4,70,99000,560,1361,345,253,195,173,28197,13593,19337,882,100,1.3,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.1,60,99100,806,1361,346,395,224,262,44603,18437,29774,1442,100,0.5,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,10.3,55,99100,1005,1361,354,537,287,325,61563,24339,37484,1867,50,2.9,3,3,16.1,1034,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,9.0,49,99100,1144,1361,358,605,265,382,69911,23233,44459,2218,50,1.7,4,4,16.1,1367,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,9.4,48,99000,1212,1361,362,679,328,387,79173,28199,45430,2227,240,2.6,4,4,16.1,1341,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,9.6,43,99000,1206,1361,375,688,352,376,80316,29927,44192,2167,150,2.8,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,10.6,45,98900,1125,1361,375,690,459,310,80797,36668,36567,1802,180,3.9,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,10.5,47,98900,976,1361,353,721,791,154,87207,51493,18681,879,180,3.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,10.6,49,98900,768,1361,371,398,282,239,45018,22432,27147,1301,170,4.1,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,10.7,52,98900,516,1361,366,238,217,156,26477,14328,17408,783,300,4.1,5,5,16.1,1829,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,12.6,69,98900,239,1361,357,73,69,60,8022,1166,6698,273,300,4.0,5,5,16.1,1829,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,11.6,63,99000,16,449,354,4,35,4,471,0,423,15,290,3.3,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.0,65,99000,0,0,342,0,0,0,0,0,0,0,250,1.3,2,2,16.1,2743,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.6,68,99100,0,0,326,0,0,0,0,0,0,0,250,0.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.6,71,99100,0,0,323,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.6,76,99100,0,0,319,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.5,78,99100,0,0,316,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,10.0,78,99100,0,0,313,0,0,0,0,0,0,0,290,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.0,84,99100,0,0,308,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.9,86,99000,0,0,306,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.4,84,99000,0,0,305,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.4,85,99100,0,0,304,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,9.5,82,99100,38,691,307,17,219,11,1893,0,1220,46,70,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.2,74,99200,291,1360,317,160,438,67,17957,12216,7517,309,70,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.0,68,99200,565,1360,328,365,597,117,42009,34838,13491,597,70,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,10.7,58,99300,811,1360,338,560,677,156,65934,45086,18457,860,270,0.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.0,54,99300,1009,1360,346,711,701,191,85052,48231,22934,1098,270,2.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,10.8,48,99300,1147,1360,370,650,347,358,75557,29147,41837,2077,140,3.8,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.7,51,99200,1215,1360,370,709,380,369,82832,31441,43394,2119,120,2.3,3,3,16.1,1829,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.6,46,99200,1209,1360,377,727,425,349,85268,34448,41208,2009,140,3.8,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,11.1,46,99200,1128,1360,380,626,321,360,72426,27119,41908,2088,140,4.6,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,10.9,44,99100,978,1360,379,583,427,276,67431,33883,32091,1578,130,4.8,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,10.4,44,99100,771,1360,370,456,438,208,52117,32721,23853,1130,150,6.0,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,9.7,44,99100,519,1360,360,290,402,136,32603,25048,15387,684,140,5.0,1,1,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,9.3,45,99100,242,1360,349,126,383,58,14009,6941,6448,261,140,3.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,8.8,49,99100,17,465,338,5,192,3,605,0,315,11,120,2.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,8.6,55,99200,0,0,329,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,10.0,61,99200,0,0,330,0,0,0,0,0,0,0,320,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.0,66,99200,0,0,325,0,0,0,0,0,0,0,160,0.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,9.9,72,99200,0,0,335,0,0,0,0,0,0,0,160,1.8,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,9.6,70,99200,0,0,318,0,0,0,0,0,0,0,100,0.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.6,76,99200,0,0,318,0,0,0,0,0,0,0,100,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.6,85,99200,0,0,311,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.7,90,99200,0,0,307,0,0,0,0,0,0,0,140,1.3,0,0,15.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.7,90,99100,0,0,326,0,0,0,0,0,0,0,140,0.0,5,5,11.6,183,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.1,89,99100,0,0,328,0,0,0,0,0,0,0,190,0.2,5,5,9.4,192,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,11.0,88,99200,41,719,329,16,56,14,1738,0,1557,60,190,1.5,5,5,8.0,254,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,10.6,83,99200,296,1359,331,106,113,82,11740,3854,9057,378,60,0.0,5,5,9.7,318,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.6,76,99200,571,1359,337,231,129,177,25782,9176,19834,907,60,0.0,5,5,10.0,396,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.4,68,99200,815,1359,325,497,476,212,57211,35521,24477,1167,210,0.3,0,0,12.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.2,54,99200,1013,1359,334,692,645,212,82267,46546,25287,1218,210,2.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,8.5,45,99100,1151,1359,344,860,808,175,105632,53979,21668,1018,170,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,9.7,43,99000,1218,1359,375,740,439,346,87044,35853,41019,1988,170,3.8,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.6,49,99000,1211,1359,377,703,373,370,82091,30958,43523,2128,170,4.7,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.2,48,98900,1130,1359,374,669,406,331,78011,33118,38844,1923,160,4.9,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,11.7,48,98800,981,1359,358,698,720,178,83537,48402,21433,1020,160,4.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,11.9,51,98700,773,1359,356,535,684,146,62895,44071,17215,795,150,4.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,11.7,54,98700,522,1359,362,278,348,144,31122,21874,16249,727,130,4.3,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,11.7,58,98700,245,1359,362,89,127,67,9842,2695,7346,301,130,4.0,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.7,64,98700,18,482,348,5,64,4,584,0,485,17,150,3.6,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.7,71,98800,0,0,329,0,0,0,0,0,0,0,100,3.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.7,78,98800,0,0,322,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,98800,0,0,320,0,0,0,0,0,0,0,100,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.7,84,98700,0,0,317,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98700,0,0,315,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.6,87,98700,0,0,315,0,0,0,0,0,0,0,130,0.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.1,87,98700,0,0,312,0,0,0,0,0,0,0,130,1.7,0,0,15.5,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.1,87,98700,0,0,326,0,0,0,0,0,0,0,130,0.0,3,3,12.3,244,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.5,87,98700,0,0,322,0,0,0,0,0,0,0,130,0.0,3,3,11.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.1,87,98700,0,0,322,0,0,0,0,0,0,0,130,0.0,4,4,10.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.6,89,98700,44,747,317,18,156,13,1982,0,1426,54,180,0.0,2,2,12.9,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.8,86,98700,302,1358,311,149,313,79,16458,10467,8795,366,180,0.0,0,0,12.4,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.5,77,98800,576,1358,322,342,474,141,38842,29938,16124,725,180,0.2,0,0,10.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,10.3,59,98800,820,1358,335,560,657,163,65836,44552,19284,902,180,1.7,0,0,14.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,9.2,49,98700,1017,1358,342,750,785,162,90996,52171,19781,935,180,2.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,10.5,48,98700,1154,1358,370,690,420,334,80727,34223,39283,1936,160,3.4,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,9.8,45,98600,1221,1358,366,728,411,358,85480,34005,42342,2054,160,5.1,3,3,16.1,1524,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,8.9,42,98500,1214,1358,366,715,394,363,83792,32998,42825,2085,160,5.1,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,8.6,40,98400,1133,1358,371,654,371,345,76115,31255,40378,2001,150,4.7,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,7.3,36,98400,984,1358,368,608,480,260,70801,38091,30515,1492,130,2.7,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,8.1,39,98300,776,1358,364,477,493,196,54970,36563,22635,1067,120,3.1,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,8.4,41,98300,525,1358,358,299,427,134,33785,26772,15209,676,120,3.1,1,1,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,7.9,40,98300,248,1358,348,136,436,56,15198,8316,6294,254,120,4.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,2.0,28,98300,19,498,338,6,418,0,1056,0,1,0,360,9.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,0.3,27,98300,0,0,329,0,0,0,0,0,0,0,350,9.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-1.9,24,98300,0,0,324,0,0,0,0,0,0,0,360,9.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-5.8,19,98400,0,0,314,0,0,0,0,0,0,0,360,10.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,-3.1,25,98400,0,0,313,0,0,0,0,0,0,0,360,11.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,1.2,37,98400,0,0,313,0,0,0,0,0,0,0,360,12.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,1.8,40,98400,0,0,311,0,0,0,0,0,0,0,350,11.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,2.2,44,98300,0,0,307,0,0,0,0,0,0,0,360,10.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,1.8,44,98300,0,0,305,0,0,0,0,0,0,0,360,10.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-0.3,37,98300,0,0,304,0,0,0,0,0,0,0,340,6.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,1.1,44,98300,0,0,302,0,0,0,0,0,0,0,320,4.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,1.8,46,98400,47,774,302,24,256,15,2643,0,1666,64,350,10.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,2.1,46,98300,307,1358,304,181,513,65,20462,16789,7341,300,330,13.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,1.6,42,98300,580,1358,308,403,710,99,47276,42264,11651,508,350,16.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,1.0,37,98400,824,1358,313,617,820,119,74632,53825,14403,656,340,13.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,0.3,31,98500,1021,1358,321,795,889,126,98670,58756,15742,728,350,12.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,-1.9,23,98400,1157,1358,326,921,931,127,116370,61279,16153,738,350,10.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-2.9,19,98400,1224,1358,332,983,950,127,125310,62209,16197,724,340,9.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,-3.4,17,98400,1217,1358,339,976,948,127,124324,62257,16192,727,350,9.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,-3.8,16,98300,1135,1358,341,900,924,127,113495,61433,16121,740,340,7.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,-3.3,16,98300,986,1358,345,763,878,126,94352,58953,15579,719,330,7.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,-3.5,16,98300,779,1358,344,576,802,116,69382,53242,14002,633,340,8.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,-3.3,17,98300,528,1358,341,358,680,93,41785,39500,10940,471,340,9.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-3.3,17,98300,251,1358,337,140,457,55,15773,10628,6257,252,340,9.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,-3.2,19,98300,21,515,330,7,229,4,836,0,418,15,330,6.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-2.8,21,98400,0,0,326,0,0,0,0,0,0,0,340,6.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-2.8,21,98500,0,0,326,0,0,0,0,0,0,0,340,5.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,-3.0,22,98600,0,0,323,0,0,0,0,0,0,0,340,6.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-4.1,21,98600,0,0,319,0,0,0,0,0,0,0,330,4.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,-5.7,19,98700,0,0,314,0,0,0,0,0,0,0,340,3.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-9.3,13,98700,0,0,315,0,0,0,0,0,0,0,20,3.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-8.9,14,98700,0,0,311,0,0,0,0,0,0,0,310,2.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,-8.9,15,98700,0,0,307,0,0,0,0,0,0,0,330,4.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,-8.8,15,98700,0,0,309,0,0,0,0,0,0,0,340,6.9,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-8.2,17,98700,0,0,306,0,0,0,0,0,0,0,350,7.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,-7.6,17,98800,50,801,308,26,277,16,2872,0,1737,66,350,6.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,-6.9,16,98800,312,1357,319,190,555,62,21638,19224,7085,288,10,5.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-7.9,12,98800,585,1357,331,418,759,90,49566,45741,10756,465,10,7.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-8.4,10,98800,828,1357,341,638,873,105,78088,57465,12873,580,20,10.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,-8.9,9,98900,1025,1357,347,821,943,108,103209,62289,13683,625,20,8.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,-9.1,8,98900,1161,1357,353,949,985,107,121711,64235,13729,619,20,6.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,-10.1,7,98800,1227,1357,359,1013,1004,105,131060,65041,13607,599,20,7.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-10.6,6,98800,1219,1357,363,1005,1002,105,129965,65048,13628,602,50,8.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,-10.7,6,98700,1138,1357,365,928,978,107,118559,64198,13744,622,10,8.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-11.1,6,98700,988,1357,362,786,931,108,98441,61915,13602,621,40,8.4,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,-7.9,8,98600,781,1357,363,594,853,103,72312,55742,12556,562,350,6.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,-5.4,11,98600,531,1357,360,370,727,86,43554,41434,10134,434,300,6.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,-6.4,11,98600,255,1357,351,146,494,54,16547,11640,6075,243,290,4.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,-7.2,11,98600,22,532,340,7,420,0,1037,0,23,1,290,3.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-3.6,17,98700,0,0,337,0,0,0,0,0,0,0,270,3.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,-1.9,22,98700,0,0,331,0,0,0,0,0,0,0,250,4.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,0.1,28,98800,0,0,326,0,0,0,0,0,0,0,290,2.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,0.8,31,98800,0,0,323,0,0,0,0,0,0,0,310,2.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,1.8,34,98800,0,0,324,0,0,0,0,0,0,0,320,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,2.1,35,98700,0,0,322,0,0,0,0,0,0,0,320,2.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,1.4,33,98700,0,0,322,0,0,0,0,0,0,0,290,3.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-0.8,26,98700,0,0,325,0,0,0,0,0,0,0,340,5.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-2.4,22,98700,0,0,327,0,0,0,0,0,0,0,350,6.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-3.4,20,98800,0,0,326,0,0,0,0,0,0,0,360,5.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,-3.7,19,98800,54,828,327,28,266,17,3066,0,1911,73,360,4.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,-3.2,17,98900,318,1356,341,190,532,65,21591,18995,7448,305,360,3.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,-5.8,11,98900,590,1356,355,414,726,98,48798,44607,11557,503,10,4.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,-7.2,9,98900,833,1356,362,629,836,115,76477,56114,14079,639,40,5.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,-7.1,8,98900,1028,1356,365,808,905,122,100758,60809,15229,702,70,4.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-6.6,8,98900,1164,1356,368,933,946,122,118560,62660,15505,705,20,6.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,-6.2,8,98800,1230,1356,372,995,964,121,127492,63263,15503,688,350,6.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,-7.0,7,98700,1222,1356,376,987,962,121,126407,63326,15495,690,350,7.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,-9.2,6,98700,1140,1356,373,911,939,122,115435,62792,15480,707,360,8.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,-10.5,5,98600,991,1356,373,773,892,121,95988,60582,15080,694,360,6.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,-7.8,7,98600,784,1356,372,585,817,113,70689,54522,13669,616,360,2.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,-5.2,10,98600,533,1356,368,365,694,92,42750,40544,10808,465,300,4.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,-1.9,14,98700,258,1356,365,145,471,56,16403,11351,6328,255,300,5.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,-3.3,14,98700,23,548,352,8,461,0,1325,0,3,0,270,2.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,-3.2,16,98700,0,0,345,0,0,0,0,0,0,0,290,2.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,-2.5,18,98800,0,0,341,0,0,0,0,0,0,0,280,2.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,-0.8,22,98800,0,0,338,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,0.8,27,98800,0,0,332,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,1.8,33,98800,0,0,325,0,0,0,0,0,0,0,350,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,2.4,38,98800,0,0,319,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,3.3,43,98700,0,0,315,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,3.4,47,98700,0,0,310,0,0,0,0,0,0,0,290,1.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,3.8,55,98700,0,0,302,0,0,0,0,0,0,0,360,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,3.4,53,98800,0,0,302,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,3.8,51,98900,57,854,306,30,286,18,3285,0,1962,75,360,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,3.1,40,99000,323,1355,319,199,572,63,22679,19141,7167,293,140,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,2.0,28,99000,595,1355,338,428,773,89,50840,44722,10640,461,140,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,-0.1,19,99100,837,1355,354,649,885,102,79592,56357,12570,567,140,0.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,-3.7,12,99100,1032,1355,363,832,955,105,104946,61703,13227,603,140,3.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-2.9,11,99100,1167,1355,373,960,997,102,123519,63305,13178,592,90,2.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,-2.7,11,99000,1232,1355,377,1023,1015,100,132857,63862,13024,570,110,1.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,0.4,14,99000,1224,1355,382,1015,1013,100,131569,62937,13043,574,130,4.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,-0.8,13,98900,1142,1355,379,937,990,103,120019,62492,13209,596,170,5.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,-1.9,12,98900,993,1355,379,795,942,105,99731,60609,13166,600,170,5.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,-1.7,12,98800,786,1355,378,602,865,100,73397,55062,12275,550,150,5.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,-1.7,13,98800,536,1355,383,377,739,85,44425,41464,10018,429,330,4.4,1,1,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,-1.8,13,98800,261,1355,370,152,507,54,17163,12005,6125,246,330,3.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,-2.1,14,98800,25,565,362,9,492,0,1755,0,0,0,310,2.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,-1.7,16,98800,0,0,354,0,0,0,0,0,0,0,300,2.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,-1.7,18,98800,0,0,347,0,0,0,0,0,0,0,330,1.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,-1.4,20,98800,0,0,341,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,0.2,26,98800,0,0,332,0,0,0,0,0,0,0,340,1.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,1.2,30,98800,0,0,327,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,1.9,35,98800,0,0,321,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,2.9,41,98700,0,0,317,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,3.3,46,98700,0,0,311,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,3.2,45,98600,0,0,312,0,0,0,0,0,0,0,250,1.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,2.9,43,98600,0,0,313,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,3.5,44,98700,61,880,315,31,287,18,3433,0,2018,78,300,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,4.4,40,98700,328,1355,326,203,575,64,23126,19476,7270,298,300,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,3.9,32,98800,599,1355,340,432,774,90,51291,44449,10723,466,190,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,0.8,20,98800,841,1355,358,652,885,103,80021,56198,12651,571,190,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,-0.9,15,98800,1035,1355,366,835,955,105,105293,61049,13294,607,190,1.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,0.2,15,98800,1170,1355,375,963,996,103,123793,62471,13242,594,190,2.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,0.4,15,98700,1235,1355,379,1026,1015,101,133078,62997,13091,573,160,3.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,-3.6,10,98700,1226,1355,382,1017,1012,101,131937,63992,13126,576,160,5.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,-5.1,9,98600,1145,1355,374,939,989,103,120383,63520,13296,600,220,4.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,-5.5,9,98600,995,1355,369,797,942,105,100030,61373,13238,604,210,3.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-6.0,9,98600,789,1355,369,604,864,101,73705,55944,12355,553,220,2.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,-5.6,9,98600,539,1355,369,379,739,85,44735,42312,10102,433,210,2.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,-6.1,9,98500,264,1355,368,154,509,55,17441,12938,6211,249,210,2.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,-5.6,10,98500,26,582,362,10,255,5,1172,0,591,21,270,2.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,-3.0,15,98500,0,0,353,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,-4.2,15,98500,0,0,341,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-3.3,17,98600,0,0,337,0,0,0,0,0,0,0,260,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-2.8,21,98500,0,0,328,0,0,0,0,0,0,0,330,1.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,0.2,29,98500,0,0,324,0,0,0,0,0,0,0,340,1.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,1.2,34,98500,0,0,320,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,1.4,38,98500,0,0,313,0,0,0,0,0,0,0,350,0.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,0.1,37,98500,0,0,307,0,0,0,0,0,0,0,350,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,0.8,40,98500,0,0,306,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,1.5,42,98500,0,0,306,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,0.6,41,98500,64,906,304,33,291,19,3606,0,2085,80,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,0.4,31,98600,333,1354,320,207,582,64,23675,20927,7323,300,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,-0.9,23,98600,604,1354,334,437,779,90,52010,46050,10706,465,170,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,-3.0,15,98700,845,1354,350,657,890,102,80825,57330,12546,566,170,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,-4.2,12,98700,1039,1354,356,840,960,104,106153,61959,13127,598,170,0.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,-3.3,12,98700,1173,1354,365,968,1001,101,124714,63495,13043,584,170,2.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,-3.9,11,98600,1238,1354,368,1030,1019,99,134017,64219,12875,561,170,3.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,-7.2,8,98600,1229,1354,370,1022,1017,99,132811,64822,12908,565,150,4.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,-7.3,8,98500,1147,1354,369,943,993,102,121120,64020,13090,589,140,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,-7.6,8,98500,998,1354,366,801,946,104,100691,61879,13081,596,180,4.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,-6.2,9,98400,791,1354,366,608,869,100,74226,56160,12246,548,170,5.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,-4.7,11,98400,542,1354,363,382,743,85,45140,42459,10059,431,270,4.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,-3.6,13,98400,267,1354,360,156,514,55,17730,13097,6246,251,270,3.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,-5.0,13,98400,28,599,347,11,257,6,1280,0,664,24,290,2.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,-5.0,15,98500,0,0,335,0,0,0,0,0,0,0,260,3.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,-4.9,16,98500,0,0,330,0,0,0,0,0,0,0,280,2.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-4.5,18,98500,0,0,326,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-4.8,19,98500,0,0,318,0,0,0,0,0,0,0,320,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,-3.9,22,98500,0,0,314,0,0,0,0,0,0,0,320,1.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,-3.8,24,98400,0,0,310,0,0,0,0,0,0,0,340,1.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,-3.1,27,98400,0,0,306,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-1.6,33,98400,0,0,303,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-0.8,36,98300,0,0,303,0,0,0,0,0,0,0,300,0.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,0.8,43,98300,0,0,301,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,1.4,45,98400,68,932,301,35,115,29,3694,0,3088,122,300,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,-0.4,33,98400,338,1353,330,152,230,95,16897,10863,10564,446,300,1.5,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,0.3,28,98400,608,1353,347,341,392,165,38730,28707,18823,857,300,1.5,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,-1.7,19,98500,848,1353,362,540,536,204,63038,41857,23925,1136,160,1.3,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,-1.5,17,98500,1042,1353,372,701,612,229,83438,47650,27473,1326,160,0.4,4,4,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,-0.7,17,98500,1176,1353,358,950,959,117,121131,61683,14931,675,160,2.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,-1.2,15,98400,1240,1353,384,796,526,315,95127,43383,37809,1787,160,3.3,4,4,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,-1.9,13,98400,1231,1353,369,966,901,146,122036,60391,18500,831,160,4.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,-3.5,12,98400,1149,1353,367,919,939,122,116486,61707,15523,708,150,3.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,-3.5,12,98300,1000,1353,365,767,857,133,94597,58289,16518,766,150,4.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,0.3,17,98300,793,1353,364,564,726,138,67139,49830,16527,759,310,3.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,3.6,24,98300,544,1353,361,348,583,114,40126,35524,13147,577,310,4.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,5.2,29,98300,270,1353,358,140,369,66,15628,10324,7427,304,310,4.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,6.4,35,98300,29,616,350,12,185,8,1358,0,904,33,300,4.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,7.8,45,98400,0,0,340,0,0,0,0,0,0,0,270,3.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,8.0,52,98400,0,0,330,0,0,0,0,0,0,0,270,2.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,9.7,62,98500,0,0,327,0,0,0,0,0,0,0,260,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,98500,0,0,324,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.1,75,98400,0,0,322,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.1,79,98400,0,0,319,0,0,0,0,0,0,0,270,1.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.9,82,98400,0,0,314,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.1,78,98400,0,0,313,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,98400,0,0,311,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.6,87,98400,0,0,309,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.5,84,98500,72,957,311,34,238,21,3684,0,2305,89,80,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.1,71,98600,343,1352,320,198,477,77,22248,17694,8678,362,80,0.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,10.7,62,98600,612,1352,333,416,667,114,48416,39263,13296,591,80,2.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,10.9,57,98600,852,1352,341,611,738,146,72865,47819,17511,815,140,4.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,10.1,46,98700,1045,1352,352,782,807,158,95441,52563,19332,911,160,5.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,10.3,46,98700,1178,1352,353,846,728,212,102916,50224,25885,1224,150,4.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,8.7,39,98600,1242,1352,356,925,799,192,114393,53593,23822,1087,130,5.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,8.1,35,98600,1233,1352,360,911,782,198,112219,53254,24493,1126,160,6.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,9.7,39,98600,1151,1352,382,715,474,311,84103,37791,36854,1805,160,5.5,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,8.5,39,98600,1002,1352,366,607,447,276,70664,35848,32287,1587,280,4.1,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,8.8,43,98700,796,1352,349,523,591,175,60992,41689,20499,961,270,4.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,9.4,48,98700,547,1352,344,321,460,135,36459,28916,15415,688,260,5.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,9.5,52,98700,274,1352,339,137,336,69,15248,9235,7731,318,260,5.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.0,59,98700,31,633,332,13,168,9,1456,0,1025,38,280,3.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,10.0,63,98700,0,0,328,0,0,0,0,0,0,0,280,2.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,9.8,63,98700,0,0,327,0,0,0,0,0,0,0,360,2.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.0,63,98800,0,0,322,0,0,0,0,0,0,0,290,2.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,9.5,68,98700,0,0,320,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,9.9,74,98700,0,0,316,0,0,0,0,0,0,0,260,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,9.2,72,98700,0,0,314,0,0,0,0,0,0,0,300,2.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.1,65,98700,0,0,309,0,0,0,0,0,0,0,310,3.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,3.2,46,98700,0,0,311,0,0,0,0,0,0,0,350,4.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,2.7,46,98700,0,0,308,0,0,0,0,0,0,0,350,4.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,2.1,45,98700,0,0,305,0,0,0,0,0,0,0,360,6.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,1.7,43,98800,75,982,306,36,524,7,4333,0,799,28,10,8.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,1.7,39,98900,347,1352,313,210,539,72,23920,21384,8176,338,360,8.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,1.7,35,98900,616,1352,320,432,719,104,50893,44083,12316,542,360,6.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,1.5,32,98900,856,1352,325,643,822,122,78019,54188,14919,683,330,7.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,0.3,26,98900,1048,1352,334,817,887,129,101723,58735,16142,747,350,4.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,-1.3,20,98900,1181,1352,342,940,927,129,119030,60906,16461,748,330,3.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,-2.3,16,98800,1245,1352,351,999,945,129,127611,61779,16494,728,340,5.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,-2.1,16,98700,1235,1352,355,990,942,129,126322,61649,16502,732,40,4.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,1.7,21,98700,1153,1352,358,914,919,130,115268,59769,16409,751,290,3.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,1.6,21,98600,1004,1352,356,777,873,128,96106,57607,15924,738,290,5.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,1.7,22,98600,798,1352,355,591,800,119,71261,52326,14401,654,270,4.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,1.7,23,98600,550,1352,350,375,682,97,43797,39784,11405,495,300,5.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,2.5,25,98600,277,1352,350,157,472,60,17707,12920,6830,277,300,6.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,3.2,28,98600,33,649,345,14,236,8,1589,0,941,35,320,5.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,-0.6,24,98600,0,0,333,0,0,0,0,0,0,0,350,4.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-0.7,25,98700,0,0,328,0,0,0,0,0,0,0,350,3.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,-1.4,25,98700,0,0,325,0,0,0,0,0,0,0,360,4.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-2.7,22,98600,0,0,323,0,0,0,0,0,0,0,10,6.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-2.1,25,98600,0,0,320,0,0,0,0,0,0,0,10,5.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-1.6,26,98600,0,0,319,0,0,0,0,0,0,0,340,5.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-1.2,30,98500,0,0,314,0,0,0,0,0,0,0,30,4.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,-1.4,30,98400,0,0,312,0,0,0,0,0,0,0,40,2.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,0.7,40,98400,0,0,305,0,0,0,0,0,0,0,40,0.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,1.2,39,98400,0,0,310,0,0,0,0,0,0,0,40,3.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,1.8,47,98400,79,1006,301,36,472,9,4317,0,1029,37,40,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,2.1,41,98500,352,1351,312,211,526,74,23987,21442,8450,351,40,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,1.9,33,98500,621,1351,325,423,671,115,49506,42490,13453,597,40,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,3.2,33,98500,859,1351,335,656,851,114,80018,54687,14003,639,170,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,3.5,29,98500,1051,1351,344,812,869,136,100627,57187,16925,787,170,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,7.5,38,98500,1183,1351,350,852,731,211,103854,51465,25885,1220,170,3.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.8,45,98500,1247,1351,346,852,632,268,102733,46826,32517,1514,170,5.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,8.4,38,98400,1237,1351,356,882,713,229,107546,50479,28123,1303,150,6.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,8.8,37,98300,1155,1351,360,874,827,166,107936,54266,20648,964,170,4.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,8.0,37,98300,1006,1351,375,638,516,254,74814,40107,29965,1463,160,6.3,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,6.5,34,98200,800,1351,364,491,483,205,56687,36690,23757,1127,150,6.5,2,2,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,4.8,31,98200,552,1351,354,312,407,145,35285,27400,16514,740,180,5.2,1,1,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,3.9,31,98200,280,1351,343,159,471,61,17889,13002,6928,282,180,3.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,4.0,33,98200,34,666,338,15,235,9,1694,0,1019,38,280,3.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,5.2,41,98200,0,0,329,0,0,0,0,0,0,0,100,3.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,9.5,64,98200,0,0,324,0,0,0,0,0,0,0,130,3.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.0,73,98300,0,0,317,0,0,0,0,0,0,0,150,2.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.9,76,98300,0,0,314,0,0,0,0,0,0,0,110,3.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,9.4,73,98300,0,0,328,0,0,0,0,0,0,0,100,2.1,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.4,75,98300,0,0,331,0,0,0,0,0,0,0,250,1.3,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.3,77,98200,0,0,326,0,0,0,0,0,0,0,330,0.3,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.7,77,98200,0,0,307,0,0,0,0,0,0,0,330,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.7,75,98200,0,0,303,0,0,0,0,0,0,0,300,1.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,7.1,76,98300,0,0,299,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,6.7,73,98300,83,1030,299,38,209,26,4193,0,2797,109,270,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,6.5,67,98400,356,1350,304,197,419,86,22084,18142,9715,409,270,1.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,4.8,52,98400,624,1350,312,415,630,124,48326,40338,14460,646,270,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,0.6,33,98400,863,1350,317,631,773,137,76104,52753,16631,768,60,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,0.6,29,98500,1054,1350,326,812,862,139,100588,57831,17232,802,60,0.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,1.2,29,98400,1186,1350,331,908,851,161,113256,57809,20123,927,60,2.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,4.1,34,98300,1249,1350,352,777,472,341,92216,39102,40683,1921,140,4.2,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,2.2,30,98300,1239,1350,352,732,393,371,86226,34087,43961,2101,260,4.5,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,2.5,31,98200,1157,1350,334,848,767,191,104003,54328,23574,1109,280,4.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,4.0,37,98200,1008,1350,331,700,669,201,83690,49047,24111,1155,250,6.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,4.2,39,98100,803,1350,328,542,633,165,63670,45071,19488,909,260,5.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,3.5,39,98200,555,1350,324,352,566,119,40490,35316,13784,608,330,8.1,0,0,16.1,2896,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,0.3,37,98300,283,1350,308,145,353,71,16156,11681,7937,326,360,10.5,0,0,16.1,1981,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-4.0,25,98200,36,683,306,16,176,11,1783,0,1259,47,340,8.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,-4.4,25,98300,0,0,305,0,0,0,0,0,0,0,340,8.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-4.6,25,98400,0,0,302,0,0,0,0,0,0,0,350,3.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,-5.7,24,98500,0,0,299,0,0,0,0,0,0,0,360,3.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-5.9,23,98500,0,0,301,0,0,0,0,0,0,0,320,2.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,4,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-4.6,26,98500,0,0,299,0,0,0,0,0,0,0,340,0.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,-1.7,37,98500,0,0,295,0,0,0,0,0,0,0,340,2.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,1.4,53,98500,0,0,291,0,0,0,0,0,0,0,30,0.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,3.0,60,98500,0,0,292,0,0,0,0,0,0,0,30,2.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,1.3,55,98500,0,0,288,0,0,0,0,0,0,0,80,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,2.3,59,98600,0,0,289,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,3.0,62,98600,87,1054,289,43,520,9,5087,0,1119,40,130,0.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,3.9,54,98700,361,1349,304,226,587,69,25919,23167,7966,329,130,2.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,3.9,47,98700,628,1349,313,448,747,100,53058,44881,11906,524,120,2.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,3.8,42,98700,866,1349,320,653,829,121,79463,53852,14810,679,150,3.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,3.6,36,98800,1057,1349,330,793,811,157,97283,55230,19387,911,150,2.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,5.0,37,98700,1188,1349,336,886,798,183,109355,54819,22669,1054,140,3.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,5.3,36,98700,1251,1349,361,737,390,376,86812,33357,44543,2115,140,3.7,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,7.2,40,98700,1241,1349,361,734,396,370,86380,33418,43848,2096,190,4.3,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,7.0,39,98700,1159,1349,345,867,806,175,106863,54265,21701,1015,170,5.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,5.8,37,98600,1010,1349,341,732,748,172,88557,51865,20950,993,170,3.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,3.7,32,98600,805,1349,339,586,765,129,70191,50636,15534,711,190,3.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,2.0,28,98600,558,1349,337,385,701,95,45148,40707,11190,485,280,2.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,0.7,26,98600,286,1349,334,175,569,54,19959,15249,6225,251,280,2.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,1.4,30,98600,38,700,330,17,284,9,1931,0,1025,38,310,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,3.2,36,98600,0,0,327,0,0,0,0,0,0,0,310,2.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,2.8,40,98600,0,0,317,0,0,0,0,0,0,0,180,2.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,2.9,43,98600,0,0,313,0,0,0,0,0,0,0,120,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,3.6,47,98500,0,0,311,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,5.9,57,98500,0,0,311,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.8,68,98500,0,0,310,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,7.9,75,98400,0,0,304,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.3,77,98400,0,0,304,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.1,77,98400,0,0,304,0,0,0,0,0,0,0,10,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,7.3,75,98400,0,0,301,0,0,0,0,0,0,0,10,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,7.7,76,98400,103,1221,303,51,434,18,5834,0,2075,78,10,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.3,66,98400,365,1349,309,212,476,83,23892,20268,9373,394,10,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.7,58,98400,632,1349,320,427,652,121,49741,40587,14165,633,10,1.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,7.0,49,98400,869,1349,329,631,757,143,75764,50338,17277,803,150,1.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,5.9,40,98400,1060,1349,335,796,812,158,97570,54496,19410,913,150,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,5.4,34,98300,1191,1349,346,930,890,145,116836,57634,18290,836,150,0.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,7.7,39,98200,1253,1349,349,955,841,174,119184,55333,21775,976,150,5.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,7.0,36,98200,1243,1349,370,768,460,344,90929,37768,40959,1943,150,6.5,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,5.6,31,98100,1161,1349,354,886,845,159,110126,56108,19900,924,170,5.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,3.1,27,98000,1012,1349,347,764,824,146,93727,55529,17940,839,240,4.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,4.5,32,98000,807,1349,344,572,716,143,68012,48605,17081,788,260,6.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,6.6,40,97900,560,1349,340,347,530,127,39741,33284,14608,649,230,5.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,8.2,48,97900,289,1349,337,149,357,72,16563,11142,8084,334,230,4.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,8.9,57,97900,40,717,348,17,178,12,1938,0,1359,51,240,3.4,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,8.8,62,97900,0,0,339,0,0,0,0,0,0,0,190,2.7,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,7.9,57,97900,0,0,333,0,0,0,0,0,0,0,220,3.1,2,2,16.1,975,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,5.4,55,97900,0,0,310,0,0,0,0,0,0,0,220,3.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,4.4,54,97900,0,0,313,0,0,0,0,0,0,0,220,2.9,1,1,16.1,701,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,4.4,58,97900,0,0,312,0,0,0,0,0,0,0,250,2.1,2,2,16.1,1162,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,4.5,60,97900,0,0,313,0,0,0,0,0,0,0,260,1.8,3,3,16.1,1006,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,5.0,64,97900,0,0,314,0,0,0,0,0,0,0,220,3.4,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,4.9,66,97900,0,0,296,0,0,0,0,0,0,0,290,2.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,4.4,64,97900,0,0,295,0,0,0,0,0,0,0,290,1.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,4.4,68,98000,0,0,309,0,0,0,0,0,0,0,200,0.2,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,4.4,65,98100,106,1240,312,39,181,25,4361,0,2777,106,200,1.3,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,4.5,58,98200,369,1348,320,162,203,106,17967,10469,11833,506,260,0.2,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,4.9,50,98200,636,1348,330,357,386,175,40523,28344,19942,917,260,1.6,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,4.2,43,98200,872,1348,321,646,793,133,78124,52597,16138,745,130,2.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,3.1,34,98200,1062,1348,331,827,881,132,102861,57696,16529,767,170,3.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,2.5,30,98200,1193,1348,336,918,860,157,114765,57678,19762,906,150,2.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,4.4,32,98200,1255,1348,344,988,906,145,125195,58550,18435,813,150,5.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,4.2,32,98200,1245,1348,343,929,800,190,115239,55227,23717,1075,170,5.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,3.5,30,98200,1162,1348,343,881,829,166,109187,56270,20694,962,150,5.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,4.7,34,98200,1014,1348,341,720,708,187,86611,50592,22638,1079,130,5.9,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,6.3,38,98200,809,1348,360,467,396,229,53506,31415,26394,1264,150,6.5,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,7.6,44,98200,563,1348,351,310,373,154,34914,25333,17412,786,130,5.2,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,8.5,51,98200,292,1348,335,158,411,69,17680,12391,7761,319,130,4.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,9.4,63,98300,42,733,335,20,205,13,2170,0,1477,56,120,4.9,2,2,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.4,72,98300,0,0,315,0,0,0,0,0,0,0,140,4.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,9.4,75,98400,0,0,312,0,0,0,0,0,0,0,140,4.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,98500,0,0,308,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,98600,0,0,308,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,98600,0,0,308,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,98600,0,0,308,0,0,0,0,0,0,0,90,0.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,98600,0,0,318,0,0,0,0,0,0,0,90,2.1,2,2,16.1,399,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,8.9,78,98600,0,0,323,0,0,0,0,0,0,0,90,1.5,4,4,16.1,457,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.5,78,98700,0,0,323,0,0,0,0,0,0,0,110,0.8,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,8.9,82,98700,0,0,322,0,0,0,0,0,0,0,90,0.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,8.8,76,98800,110,1256,326,40,86,33,4360,0,3610,142,90,0.0,5,5,16.1,574,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,8.3,71,98800,373,1347,328,156,172,108,17256,8679,12043,517,160,0.2,5,5,16.1,558,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.3,67,98800,639,1347,332,301,211,201,33732,16100,22638,1054,160,1.2,5,5,16.1,610,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,8.4,60,98900,875,1347,339,454,266,281,51714,22324,32203,1577,120,2.2,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,8.8,57,98900,1065,1347,339,610,362,324,70733,30243,37819,1878,120,0.0,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,8.5,50,98800,1195,1347,336,875,764,198,107394,52219,24432,1140,160,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,9.5,49,98800,1257,1347,361,764,436,358,90327,35595,42583,2006,160,1.9,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,9.9,49,98700,1246,1347,347,946,833,176,117818,54023,21975,991,160,4.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,9.4,46,98600,1164,1347,348,891,848,158,110622,54549,19730,915,170,5.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,9.3,47,98600,1016,1347,345,732,735,178,88239,50039,21547,1025,150,5.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,9.1,48,98500,811,1347,342,561,672,156,66166,45323,18486,861,160,6.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,8.9,50,98500,565,1347,338,357,557,123,40994,33993,14201,631,150,5.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,8.9,53,98400,295,1347,334,159,403,71,17745,12436,7912,326,150,5.4,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,8.9,57,98400,43,750,328,21,202,15,2304,0,1596,61,130,3.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,8.8,63,98400,0,0,321,0,0,0,0,0,0,0,130,3.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.4,65,98400,0,0,316,0,0,0,0,0,0,0,90,2.7,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.9,71,98400,0,0,314,0,0,0,0,0,0,0,110,2.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,8.9,75,98400,0,0,310,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.9,75,98300,0,0,309,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.0,78,98300,0,0,307,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,98200,0,0,311,0,0,0,0,0,0,0,140,1.8,1,1,16.1,554,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.4,80,98200,0,0,318,0,0,0,0,0,0,0,90,2.5,2,2,16.1,375,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,98100,0,0,321,0,0,0,0,0,0,0,100,2.2,3,3,16.1,436,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.4,83,98100,0,0,322,0,0,0,0,0,0,0,180,2.0,4,4,16.1,467,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,9.6,83,98200,113,1269,320,43,95,35,4711,0,3856,152,180,1.7,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,9.8,78,98200,377,1347,328,163,191,109,18014,9589,12152,523,180,0.4,4,4,16.1,488,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,8.8,65,98200,643,1347,335,328,280,194,36900,20990,21972,1021,170,2.5,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,8.2,54,98200,878,1347,328,621,706,160,73971,48055,19165,899,170,2.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,8.0,46,98100,1067,1347,356,641,426,303,74777,34808,35612,1758,180,2.8,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,8.8,48,98100,1197,1347,351,736,454,332,86814,36826,39462,1912,180,6.5,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,8.3,45,98100,1259,1347,343,924,765,208,113814,52484,25780,1164,150,5.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,8.2,42,98100,1248,1347,346,901,735,220,110470,51361,27137,1240,170,6.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,7.8,42,98000,1166,1347,355,738,501,304,87284,39869,36210,1760,160,7.3,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,7.8,42,98000,1017,1347,344,739,750,173,89478,51246,21005,996,150,5.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,7.8,43,98000,814,1347,343,572,700,149,67810,47000,17697,821,120,4.9,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,7.8,44,98000,568,1347,352,323,413,149,36602,27634,16952,764,150,3.7,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,7.7,45,98000,298,1347,356,135,240,82,14925,8671,9096,379,150,2.4,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,7.3,44,98100,45,767,338,23,120,19,2475,0,2048,80,110,1.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,7.9,55,98100,0,0,336,0,0,0,0,0,0,0,110,2.5,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,8.3,62,98100,0,0,320,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,8.3,61,98200,0,0,321,0,0,0,0,0,0,0,110,0.4,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,8.4,66,98200,0,0,316,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,4,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.9,72,98200,0,0,312,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,8.8,72,98200,0,0,311,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,8.3,74,98200,0,0,307,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.2,72,98200,0,0,309,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.0,73,98300,0,0,307,0,0,0,0,0,0,0,100,0.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,8.5,75,98300,0,0,314,0,0,0,0,0,0,0,50,1.3,1,1,16.1,366,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,9.5,77,98400,116,1282,321,48,230,28,5286,0,3086,119,50,0.0,2,2,16.1,380,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,10.0,74,98400,381,1346,330,179,250,108,19827,12500,12017,517,50,1.3,3,3,16.1,466,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,9.9,70,98500,646,1346,336,321,254,199,36026,19063,22460,1047,50,0.0,4,4,16.1,518,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,8.9,55,98500,881,1346,331,612,675,170,72609,46542,20274,956,120,1.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,9.0,50,98500,1070,1346,339,774,740,186,93758,50660,22614,1077,120,2.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,9.4,46,98500,1199,1346,347,918,848,163,114315,54610,20340,934,120,2.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,9.6,43,98500,1260,1346,354,975,870,161,122470,55225,20273,897,140,3.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,10.6,45,98500,1250,1346,357,954,844,171,119080,53948,21429,961,160,5.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,10.5,45,98500,1167,1346,372,742,509,301,87835,39571,35820,1741,160,4.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,9.8,44,98500,1019,1346,369,615,436,285,71556,34826,33325,1642,170,4.5,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,9.6,43,98400,816,1346,375,450,339,245,51266,26976,28026,1352,150,3.6,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,9.4,44,98500,570,1346,372,291,292,168,32640,20349,18870,859,150,3.9,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,9.5,47,98500,301,1346,364,133,223,83,14729,8055,9252,387,150,4.0,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,10.0,57,98500,47,784,349,22,112,18,2351,0,1932,75,160,3.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,10.1,64,98600,0,0,338,0,0,0,0,0,0,0,120,3.4,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.6,72,98700,0,0,322,0,0,0,0,0,0,0,110,2.3,0,0,15.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.6,72,98700,0,0,336,0,0,0,0,0,0,0,90,3.0,3,3,12.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.7,74,98700,0,0,331,0,0,0,0,0,0,0,110,2.5,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.0,80,98800,0,0,317,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,98800,0,0,330,0,0,0,0,0,0,0,60,1.8,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.6,81,98700,0,0,325,0,0,0,0,0,0,0,60,0.0,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.5,81,98700,0,0,314,0,0,0,0,0,0,0,60,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.0,80,98700,0,0,311,0,0,0,0,0,0,0,60,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.1,81,98700,0,0,311,0,0,0,0,0,0,0,50,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,10.6,82,98800,119,1295,313,58,360,26,6465,0,2898,111,50,0.0,0,0,15.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,10.7,74,98800,385,1345,320,227,495,86,25701,21355,9724,411,50,0.0,0,0,14.5,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.0,67,98900,649,1345,329,435,635,128,50555,39274,14985,676,50,0.2,0,0,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.5,53,98900,884,1345,343,659,802,132,79649,50496,15981,740,50,1.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,10.1,45,98900,1072,1345,353,830,870,137,102906,54421,17023,793,140,2.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,10.7,41,98800,1201,1345,386,748,473,325,88324,37482,38647,1867,140,3.0,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,10.6,36,98800,1262,1345,394,837,577,296,100423,43396,35677,1647,170,2.8,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,7.5,28,98700,1251,1345,374,1021,974,115,131258,58898,14855,646,180,3.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,5.4,23,98700,1169,1345,378,976,1017,92,126333,60755,11944,532,200,4.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,5.2,23,98600,1021,1345,375,792,874,129,98117,56383,16036,744,190,3.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,7.3,27,98600,818,1345,376,611,810,118,73798,51103,14346,654,300,6.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,9.1,32,98600,573,1345,382,326,410,151,36834,27310,17157,775,290,4.9,1,1,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,9.0,33,98600,304,1345,387,143,271,82,15863,9785,9132,381,290,3.5,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,9.2,39,98600,49,800,372,24,135,19,2612,0,2084,81,290,3.0,2,2,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,7.8,39,98600,0,0,351,0,0,0,0,0,0,0,280,2.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.0,42,98700,0,0,345,0,0,0,0,0,0,0,270,2.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,8.9,49,98700,0,0,339,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,9.3,53,98700,0,0,336,0,0,0,0,0,0,0,110,0.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.6,72,98700,0,0,327,0,0,0,0,0,0,0,110,3.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.1,72,98700,0,0,324,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,98600,0,0,324,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.0,75,98600,0,0,322,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.6,75,98500,0,0,319,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,10.7,75,98600,0,0,320,0,0,0,0,0,0,0,130,0.0,0,0,14.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.1,74,98600,122,1308,323,59,348,27,6581,0,3054,118,130,0.0,0,0,9.3,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.1,66,98700,389,1345,331,247,594,75,28200,23753,8593,360,130,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,10.8,56,98700,653,1345,341,471,763,101,55894,43681,12037,533,130,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,9.2,41,98700,886,1345,356,683,864,114,83598,52992,13966,640,130,0.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,8.1,30,98700,1074,1345,372,857,928,116,107741,57004,14617,672,130,2.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,9.6,30,98700,1203,1345,385,979,967,114,125155,57597,14600,653,150,3.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,6.4,22,98600,1264,1345,389,1037,984,112,133879,59681,14490,622,140,4.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,1.7,16,98600,1253,1345,384,1026,981,112,132519,61418,14535,629,150,5.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,1.7,16,98500,1170,1345,383,948,958,114,121053,60679,14668,662,170,3.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,1.9,16,98500,1023,1345,384,809,912,116,101205,58645,14557,670,150,4.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,3.4,18,98400,820,1345,384,622,838,111,75608,53386,13565,615,160,4.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,5.9,23,98400,575,1345,380,403,722,95,47453,41126,11175,486,130,4.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,8.1,29,98400,307,1345,376,182,519,64,20592,15596,7225,296,130,3.9,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,10.2,43,98400,51,817,358,27,259,17,2939,0,1865,72,150,3.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.1,60,98400,0,0,338,0,0,0,0,0,0,0,130,3.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.1,68,98500,0,0,328,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.2,75,98600,0,0,323,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.6,75,98600,0,0,325,0,0,0,0,0,0,0,60,1.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.1,75,98600,0,0,322,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.1,78,98600,0,0,320,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.1,78,98500,0,0,319,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.1,81,98500,0,0,317,0,0,0,0,0,0,0,120,1.5,0,0,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.2,82,98400,0,0,316,0,0,0,0,0,0,0,130,1.8,0,0,13.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.8,88,98500,0,0,315,0,0,0,0,0,0,0,130,2.2,0,0,7.6,251,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,12.1,91,98500,126,1322,314,55,257,31,6072,0,3418,133,130,2.7,0,0,5.3,130,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98600,392,1344,315,226,459,92,25418,20565,10375,441,160,2.6,0,0,6.2,213,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.2,90,98600,656,1344,316,429,597,138,49662,37508,16033,728,150,0.1,0,0,5.0,246,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.7,81,98600,889,1344,320,620,682,170,73610,45706,20218,955,200,1.5,0,0,4.8,276,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.7,71,98600,1076,1344,329,778,738,187,94230,49365,22794,1087,110,2.7,0,0,6.4,396,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.2,64,98600,1204,1344,340,888,773,195,109028,50761,24080,1119,130,2.6,0,0,7.4,396,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.1,55,98500,1265,1344,350,940,789,198,116207,51416,24545,1096,110,3.6,0,0,12.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.6,50,98500,1254,1344,356,930,786,197,114914,51576,24475,1103,120,3.8,0,0,12.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,11.0,49,98500,1172,1344,353,860,764,193,105292,51005,23800,1118,160,5.2,0,0,13.4,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,10.5,46,98400,1024,1344,355,734,723,183,88478,49088,22185,1058,170,5.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,10.3,45,98400,822,1344,355,565,659,162,66565,44481,19124,895,140,4.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,10.3,48,98300,578,1344,350,367,563,125,42181,34228,14446,644,150,5.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,10.6,53,98300,309,1344,344,167,398,75,18617,13202,8396,349,150,6.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.6,69,98400,53,834,325,25,199,17,2736,0,1876,72,140,4.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.5,76,98400,0,0,318,0,0,0,0,0,0,0,160,4.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.0,77,98500,0,0,314,0,0,0,0,0,0,0,150,3.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.0,75,98500,0,0,316,0,0,0,0,0,0,0,120,3.1,0,0,16.1,1026,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,9.9,74,98500,0,0,316,0,0,0,0,0,0,0,160,2.6,0,0,16.1,970,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,9.4,72,98500,0,0,315,0,0,0,0,0,0,0,160,0.3,0,0,16.1,876,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.4,70,98500,0,0,317,0,0,0,0,0,0,0,220,2.1,0,0,16.1,894,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.3,72,98400,0,0,315,0,0,0,0,0,0,0,220,2.1,0,0,16.1,1132,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.9,72,98400,0,0,312,0,0,0,0,0,0,0,250,1.8,0,0,16.1,1167,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.0,72,98400,0,0,312,0,0,0,0,0,0,0,250,0.0,0,0,16.1,1232,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.4,74,98400,0,0,313,0,0,0,0,0,0,0,130,0.2,0,0,16.1,1320,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,9.4,72,98400,129,1336,316,54,219,33,5941,0,3629,141,130,1.5,0,0,16.1,1390,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,9.4,68,98500,396,1343,319,217,400,99,24353,19458,11170,478,120,1.3,0,0,16.1,1498,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,9.2,63,98500,659,1343,323,411,522,155,47187,35300,17869,818,190,0.5,0,0,16.1,1524,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,8.3,56,98500,891,1343,327,592,597,196,69636,43264,23211,1107,190,3.2,0,0,16.1,1524,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,8.4,54,98500,1078,1343,329,742,647,223,88867,46991,26810,1292,160,3.4,0,0,16.1,1524,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,8.8,55,98500,1206,1343,330,846,679,236,102646,48686,28833,1354,170,3.1,0,0,16.1,1569,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,8.2,51,98500,1266,1343,333,896,694,242,109335,49620,29662,1339,170,5.5,0,0,16.1,1769,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,7.8,52,98500,1255,1343,328,887,691,241,108101,49627,29523,1345,170,4.4,0,0,16.1,1442,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,7.7,51,98400,1173,1343,329,820,671,233,99115,48647,28365,1347,180,3.5,0,0,16.1,1521,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,7.4,49,98400,1026,1343,330,700,634,216,83438,46419,25896,1248,170,5.7,0,0,16.1,1644,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,7.9,52,98300,824,1343,329,539,577,185,62947,41576,21742,1027,170,5.5,0,0,16.1,1467,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,8.3,56,98300,580,1343,326,351,491,139,40069,31788,15937,716,220,3.9,0,0,16.1,1498,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,8.2,58,98300,312,1343,323,160,347,80,17873,12692,8917,372,220,2.6,0,0,16.1,1482,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,7.7,59,98300,55,851,319,24,173,17,2679,0,1899,73,180,2.6,0,0,16.1,1204,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.2,58,98300,0,0,318,0,0,0,0,0,0,0,220,2.5,0,0,16.1,949,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.2,60,98300,0,0,315,0,0,0,0,0,0,0,200,1.8,0,0,16.1,979,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.2,60,98400,0,0,315,0,0,0,0,0,0,0,310,0.2,0,0,16.1,1024,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.5,61,98400,0,0,315,0,0,0,0,0,0,0,310,1.5,0,0,16.1,1182,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.0,71,98300,0,0,314,0,0,0,0,0,0,0,300,1.5,0,0,16.1,1544,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.2,74,98300,0,0,312,0,0,0,0,0,0,0,360,1.3,0,0,16.1,1920,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,8.5,72,98200,0,0,310,0,0,0,0,0,0,0,360,0.0,0,0,16.1,2438,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.3,74,98200,0,0,312,0,0,0,0,0,0,0,290,0.0,0,0,16.1,2438,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.0,75,98200,0,0,310,0,0,0,0,0,0,0,290,0.2,0,0,16.1,2415,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,9.4,77,98200,0,7,311,0,0,0,0,0,0,0,290,1.3,0,0,16.1,2167,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.4,74,98300,132,1343,313,54,207,34,6002,0,3759,147,290,0.0,0,0,16.1,1498,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.3,70,98300,399,1343,316,216,384,102,24210,19071,11473,492,190,0.0,0,0,16.1,1661,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,8.7,61,98300,661,1343,322,407,500,160,46636,34440,18476,848,190,0.4,0,0,16.1,2460,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,7.9,56,98400,894,1343,324,585,571,205,68630,42162,24150,1156,190,2.6,0,0,16.1,2522,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,8.2,55,98400,1080,1343,327,733,620,234,87428,45787,28066,1357,220,2.2,0,0,16.1,2088,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,8.1,54,98400,1208,1343,328,835,651,249,100915,47679,30322,1428,170,0.6,0,0,16.1,1989,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.7,62,98400,1268,1343,327,884,665,256,107344,47830,31234,1413,170,4.3,0,0,16.1,2574,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,8.1,51,98400,1257,1343,332,874,662,255,106194,48277,31089,1420,180,5.2,0,0,16.1,827,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,10.0,63,98400,1175,1343,328,808,643,246,97295,46555,29746,1419,310,3.1,0,0,16.1,1155,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.1,66,98300,1028,1343,326,691,607,226,81972,44244,26995,1307,290,3.4,0,0,16.1,1129,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.5,67,98300,826,1343,326,532,552,193,61925,39553,22543,1069,310,2.6,0,0,16.1,1407,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.6,69,98400,582,1343,325,348,470,144,39544,30259,16402,740,310,2.3,0,0,16.1,2047,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,10.5,67,98400,315,1343,326,160,333,82,17766,12066,9118,381,230,2.1,0,0,16.1,2371,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.2,67,98400,57,867,325,25,166,18,2711,0,1934,74,230,2.3,0,0,14.8,1066,9,999999999,189,0.0000,0,88,999.000,13.0,1.0 +2016,5,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.7,77,98400,0,0,318,0,0,0,0,0,0,0,280,2.4,0,0,6.5,732,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.2,84,98400,0,0,315,0,0,0,0,0,0,0,150,1.3,0,0,16.1,732,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98500,0,0,315,0,0,0,0,0,0,0,130,0.1,0,0,16.1,1053,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.8,87,98500,0,0,315,0,0,0,0,0,0,0,150,1.2,0,0,16.1,1586,9,999999999,209,0.0000,0,88,999.000,43.0,1.0 +2016,5,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98500,0,0,315,0,0,0,0,0,0,0,180,1.5,0,0,16.1,290,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.1,87,98500,0,0,312,0,0,0,0,0,0,0,220,1.5,0,0,16.1,2286,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.1,87,98500,0,0,312,0,0,0,0,0,0,0,160,1.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.1,88,98500,0,0,327,0,0,0,0,0,0,0,140,0.5,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,10.6,89,98500,0,0,326,0,0,0,0,0,0,0,140,0.0,5,5,16.1,433,9,999999999,189,0.0000,0,88,999.000,3.0,1.0 +2016,5,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.1,89,98600,0,21,328,0,0,0,0,0,0,0,60,0.0,5,5,14.6,518,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.9,88,98600,135,1342,328,45,105,34,4945,0,3789,148,60,0.2,5,5,10.7,636,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.0,80,98700,403,1342,330,169,170,118,18749,9187,13169,572,70,1.3,5,5,16.1,1316,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.1,76,98700,664,1342,334,307,192,212,34425,14804,23876,1121,160,0.6,5,5,16.1,1516,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,10.5,71,98700,896,1342,342,444,220,297,50496,18484,34009,1677,90,2.5,5,5,16.1,1472,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,9.7,61,98700,1082,1342,348,570,262,359,65813,22604,41726,2085,90,2.0,5,5,16.1,1569,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.5,55,98700,1209,1342,348,654,281,401,76263,24586,47048,2293,190,1.8,5,5,16.1,1829,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,9.3,59,98700,1269,1342,348,673,255,432,78546,22455,50749,2382,190,3.7,5,5,16.1,1943,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,8.8,54,98600,1258,1342,352,689,293,415,80614,25505,48862,2311,170,4.0,5,5,16.1,2613,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.2,50,98600,1176,1342,353,687,380,355,80529,31907,41809,2047,150,3.6,5,5,16.1,2523,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,7.9,51,98600,1029,1342,351,594,373,308,68892,31008,35969,1781,250,3.5,5,5,16.1,1339,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,8.1,51,98600,828,1342,351,460,346,247,52581,27833,28370,1370,300,3.1,5,5,16.1,1756,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,8.3,52,98600,585,1342,351,301,296,172,33792,21067,19416,887,300,3.1,5,5,16.1,2289,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,8.2,52,98600,318,1342,350,143,230,89,15850,9288,9846,414,300,3.1,5,5,16.1,2743,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,7.8,53,98500,60,884,344,29,115,24,3084,0,2542,100,270,2.9,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,7.7,56,98600,0,0,323,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.2,58,98600,0,0,318,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,7.3,61,98600,0,0,315,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,7.8,65,98600,0,0,313,0,0,0,0,0,0,0,250,1.5,0,0,16.1,2134,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,7.8,65,98600,0,0,313,0,0,0,0,0,0,0,260,1.5,0,0,16.1,2156,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.0,66,98600,0,0,313,0,0,0,0,0,0,0,260,1.5,0,0,16.1,2286,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.0,76,98500,0,0,309,0,0,0,0,0,0,0,250,1.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.3,80,98500,0,0,323,0,0,0,0,0,0,0,250,1.3,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.0,81,98500,0,0,318,0,0,0,0,0,0,0,250,0.0,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,98500,0,36,324,0,0,0,0,0,0,0,250,0.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,9.5,83,98600,139,1341,324,46,105,35,5070,0,3886,152,250,0.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.0,82,98600,406,1341,328,169,163,120,18708,8916,13295,578,160,0.0,5,5,16.1,1524,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,9.7,72,98600,667,1341,333,344,285,202,38742,21536,22884,1071,160,0.0,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,8.0,54,98600,898,1341,327,652,749,150,78321,49904,18090,846,160,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,8.9,50,98600,1084,1341,355,664,452,298,77756,36290,35146,1731,160,0.5,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,8.9,49,98600,1211,1341,357,729,421,349,85906,34606,41433,1997,160,3.6,4,4,16.1,1216,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,9.0,52,98600,1270,1341,354,718,330,406,84231,28284,47923,2233,130,4.0,4,4,16.1,1353,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,9.5,57,98600,1259,1341,350,664,251,429,77489,22050,50404,2386,180,6.0,4,4,16.1,1236,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,10.0,58,98600,1177,1341,351,652,310,380,75913,26479,44525,2191,160,4.4,4,4,16.1,1199,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,9.8,56,98600,1031,1341,353,590,362,312,68346,29891,36337,1803,150,3.7,4,4,16.1,1405,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,9.3,56,98500,829,1341,347,492,428,227,56592,33013,26256,1261,130,4.1,3,3,16.1,1245,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,8.9,55,98500,587,1341,345,326,377,161,36802,25919,18237,829,110,3.8,3,3,16.1,1214,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,8.9,56,98600,321,1341,343,151,264,88,16736,10541,9772,411,110,3.4,3,3,16.1,1184,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.0,59,98500,62,900,341,30,132,24,3197,0,2550,100,120,2.2,3,3,16.1,1194,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.5,63,98600,0,0,339,0,0,0,0,0,0,0,120,0.0,3,3,16.1,1466,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.1,68,98600,0,0,337,0,0,0,0,0,0,0,290,0.0,3,3,16.1,1603,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.0,69,98700,0,0,335,0,0,0,0,0,0,0,270,1.4,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.0,73,98700,0,0,331,0,0,0,0,0,0,0,270,0.0,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.0,77,98600,0,0,324,0,0,0,0,0,0,0,270,0.0,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,10.0,78,98600,0,0,319,0,0,0,0,0,0,0,270,0.0,1,1,16.1,1829,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.9,83,98600,0,0,308,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.3,83,98600,0,0,305,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.9,81,98600,0,0,305,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,9.1,83,98600,0,51,304,0,0,0,0,0,0,0,180,0.0,0,0,16.1,352,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.1,81,98600,142,1341,311,72,137,57,7602,431,6086,247,180,0.0,0,0,15.1,274,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,10.6,82,98700,409,1341,319,199,274,115,22108,14593,12864,558,180,0.0,1,1,10.4,302,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,10.6,77,98700,669,1341,323,364,340,194,41121,25001,22053,1029,180,0.3,1,1,14.8,388,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,11.1,76,98700,900,1341,331,475,280,287,54251,23052,32995,1624,170,2.3,2,2,16.1,585,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.0,68,98700,1085,1341,339,612,338,338,70971,28148,39459,1963,180,3.1,2,2,16.1,805,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,10.6,62,98700,1212,1341,346,698,356,375,81664,29807,44250,2144,180,2.5,3,3,16.1,889,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,10.6,58,98700,1272,1341,352,783,450,355,92751,36174,42394,1954,190,2.8,3,3,16.1,862,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,10.6,54,98700,1260,1341,360,774,448,353,91684,36021,42067,1960,160,3.3,4,4,16.1,927,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,10.6,51,98600,1179,1341,365,765,540,290,90992,41212,34737,1675,180,2.1,4,4,16.1,1006,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.6,51,98600,1032,1341,364,641,475,275,74900,36979,32338,1589,160,5.4,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,10.5,52,98500,831,1341,356,513,485,213,59347,36044,24707,1181,180,3.7,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,10.3,54,98500,589,1341,347,328,379,161,37034,25804,18287,833,160,4.5,1,1,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,10.0,55,98500,324,1341,337,182,445,75,20461,15545,8410,349,160,4.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,10.0,61,98500,64,916,330,34,223,23,3632,0,2490,97,160,3.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.0,66,98500,0,0,325,0,0,0,0,0,0,0,140,2.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.0,70,98600,0,0,321,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.0,73,98600,0,0,318,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.0,75,98600,0,0,315,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.0,77,98600,0,0,314,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,10.0,78,98600,0,0,313,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.9,83,98600,0,0,308,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,98600,0,0,306,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.4,83,98600,0,0,306,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,9.5,84,98600,0,65,306,0,0,0,0,0,0,0,360,0.2,0,0,15.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.0,83,98700,145,1340,309,71,345,34,7932,0,3803,148,360,1.3,0,0,14.7,431,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,10.7,83,98700,412,1340,312,237,456,97,26765,22014,11010,471,360,0.0,0,0,14.1,440,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.1,81,98800,672,1340,323,359,322,198,40579,23796,22470,1051,80,0.1,1,1,9.7,427,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,10.7,75,98800,902,1340,330,483,294,285,55190,24179,32762,1611,80,1.6,2,2,10.9,434,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,11.1,72,98800,1087,1340,336,599,310,348,69286,26029,40476,2018,230,0.2,2,2,11.5,527,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.1,69,98800,1213,1340,342,672,307,394,78337,26094,46243,2247,230,1.5,3,3,12.9,592,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,11.1,64,98700,1273,1340,350,733,354,397,86145,29648,46918,2176,210,1.5,4,4,12.9,671,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,11.4,58,98700,1261,1340,363,753,405,372,88759,32993,44145,2062,340,2.0,5,5,12.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.1,54,98700,1180,1340,358,815,649,244,98238,46345,29510,1404,240,0.0,2,2,13.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.2,48,98600,1034,1340,356,851,983,92,107992,56195,11701,531,170,0.7,0,0,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.4,49,98600,833,1340,355,643,865,105,78440,50911,12825,582,170,4.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,11.4,52,98600,592,1340,351,412,705,101,48314,39252,11841,520,160,4.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.1,54,98600,327,1340,346,183,442,76,20578,15415,8527,355,160,4.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.1,59,98600,66,933,339,34,221,23,3698,0,2526,99,150,3.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.1,66,98600,0,0,331,0,0,0,0,0,0,0,140,2.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.1,73,98700,0,0,324,0,0,0,0,0,0,0,150,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.1,75,98700,0,0,322,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.2,79,98800,0,0,319,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98800,0,0,315,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98800,0,0,315,0,0,0,0,0,0,0,80,1.5,0,0,15.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98700,0,0,315,0,0,0,0,0,0,0,130,1.7,0,0,11.3,213,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,98700,0,0,321,0,0,0,0,0,0,0,200,2.5,1,1,11.3,208,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,98700,0,0,319,0,0,0,0,0,0,0,170,1.8,1,1,11.0,183,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.7,89,98800,0,80,323,0,0,0,0,0,0,0,170,0.0,2,2,9.4,187,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.7,86,98800,148,1339,326,57,169,39,6296,0,4254,167,170,0.0,2,2,8.0,217,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.7,83,98900,415,1339,332,194,242,119,21556,13043,13305,580,170,0.0,3,3,8.0,248,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.7,81,98900,674,1339,334,345,276,206,38825,20671,23294,1094,20,0.0,3,3,8.0,283,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.7,77,98900,904,1339,340,453,228,299,51521,18982,34216,1690,20,1.3,4,4,8.3,354,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,12.2,71,98900,1088,1339,350,581,273,359,66992,23069,41634,2081,20,0.4,4,4,9.7,457,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,12.2,62,98900,1214,1339,343,885,749,206,108493,49835,25352,1174,20,0.0,0,0,12.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,12.1,51,98800,1274,1339,356,1038,968,117,133533,55967,15143,642,20,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,11.7,41,98800,1262,1339,371,1111,1115,60,149583,58991,8039,330,160,0.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,11.8,37,98700,1181,1339,381,1062,1154,45,144462,59493,6075,257,160,2.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,12.2,40,98700,1035,1339,378,854,988,90,108543,55611,11492,521,160,4.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,12.0,39,98600,835,1339,379,631,828,115,76522,49591,14013,641,160,4.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,11.9,41,98600,594,1339,373,389,606,121,44995,35866,14000,624,120,3.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,11.8,43,98600,329,1339,368,190,478,73,21451,16137,8240,342,120,3.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,12.2,53,98600,68,949,354,33,239,21,3637,0,2309,90,110,3.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.2,66,98700,0,0,337,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.2,73,98700,0,0,330,0,0,0,0,0,0,0,80,2.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.2,75,98800,0,0,328,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.2,79,98800,0,0,325,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,98800,0,0,321,0,0,0,0,0,0,0,110,1.3,0,0,15.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.2,84,98800,0,0,320,0,0,0,0,0,0,0,110,0.0,0,0,14.2,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.2,87,98700,0,0,318,0,0,0,0,0,0,0,130,0.2,0,0,12.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.1,89,98700,0,0,316,0,0,0,0,0,0,0,130,1.3,0,0,12.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98700,0,0,315,0,0,0,0,0,0,0,130,0.0,0,0,12.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.8,87,98700,1,94,315,0,0,0,0,0,0,0,130,0.0,0,0,10.8,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.3,88,98800,151,1339,317,73,324,36,8063,0,4033,158,170,0.0,0,0,8.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,12.8,79,98800,417,1339,328,263,574,84,29989,24980,9583,406,170,0.2,0,0,8.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,12.7,65,98800,676,1339,341,480,728,113,56718,42458,13357,599,170,1.5,0,0,9.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,12.1,51,98800,906,1339,356,684,822,128,83209,50426,15628,724,110,1.6,0,0,12.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,11.8,41,98800,1090,1339,373,852,884,132,106167,53788,16556,769,110,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,12.3,36,98800,1216,1339,387,969,922,132,122682,54751,16727,749,110,2.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,12.7,36,98800,1275,1339,389,1024,938,130,130684,54922,16685,711,110,3.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,12.2,34,98700,1264,1339,393,1013,935,131,129155,55175,16715,722,130,3.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,12.0,33,98700,1182,1339,394,938,912,132,118256,54659,16714,760,120,2.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,11.1,29,98600,1037,1339,399,804,868,132,99439,53454,16375,762,130,3.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,11.6,33,98600,837,1339,391,622,797,125,75031,48936,15071,693,130,5.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,12.1,38,98600,596,1339,380,411,687,105,48077,38592,12327,544,140,5.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,12.6,44,98600,332,1339,372,196,504,71,22137,16555,8048,334,140,5.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,11.8,48,98600,71,965,360,33,252,20,3672,0,2214,85,110,3.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.2,58,98600,0,0,347,0,0,0,0,0,0,0,80,3.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.2,64,98700,0,0,340,0,0,0,0,0,0,0,100,3.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.2,70,98700,0,0,333,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.2,72,98700,0,0,331,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.2,73,98700,0,0,330,0,0,0,0,0,0,0,120,2.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,12.2,76,98700,0,0,327,0,0,0,0,0,0,0,130,1.6,0,0,15.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,98700,0,0,323,0,0,0,0,0,0,0,110,1.8,0,0,11.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,12.2,84,98600,0,0,320,0,0,0,0,0,0,0,120,0.5,0,0,9.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.8,93,98600,0,0,335,0,0,0,0,0,0,0,100,2.1,5,5,6.4,152,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.8,93,98600,1,109,335,0,0,0,0,0,0,0,100,0.0,5,5,2.4,122,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.8,90,98700,154,1338,338,49,91,39,5417,0,4273,168,100,0.2,5,5,2.4,126,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.8,86,98700,420,1338,341,180,179,124,19967,9799,13801,604,30,1.5,5,5,3.0,167,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,12.8,75,98700,678,1338,349,365,327,199,41228,23843,22624,1061,30,0.1,4,4,6.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.3,68,98800,907,1338,353,542,429,251,62571,32634,29138,1422,30,1.5,2,2,6.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.3,58,98800,1091,1338,354,834,841,149,102962,51671,18453,864,30,1.7,0,0,8.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,13.2,52,98800,1217,1338,363,950,882,148,119234,53168,18689,844,160,2.7,0,0,9.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,12.2,40,98800,1276,1338,378,1082,1045,86,142320,57359,11338,469,160,3.2,0,0,12.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,8.2,27,98700,1265,1338,383,1104,1099,65,148059,60973,8743,359,160,3.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,4.7,21,98700,1183,1338,381,1047,1123,54,141127,63189,7284,311,140,3.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,7.1,24,98600,1038,1338,386,844,958,100,106730,57825,12700,579,150,4.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,7.9,26,98600,839,1338,384,628,808,121,76003,51049,14734,675,150,6.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,9.4,32,98600,598,1338,377,394,612,121,45664,37205,14021,625,150,5.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,9.7,37,98600,335,1338,367,179,382,83,19986,14951,9350,392,150,5.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,11.9,54,98600,73,981,351,31,191,21,3428,0,2290,88,150,5.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.8,69,98600,0,0,338,0,0,0,0,0,0,0,120,3.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.8,78,98700,0,0,328,0,0,0,0,0,0,0,120,3.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.8,81,98700,0,0,326,0,0,0,0,0,0,0,100,2.5,0,0,15.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,12.8,85,98700,0,0,323,0,0,0,0,0,0,0,130,2.5,0,0,13.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,98700,0,0,321,0,0,0,0,0,0,0,130,3.0,0,0,11.3,213,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,98700,0,0,321,0,0,0,0,0,0,0,170,2.2,0,0,11.0,222,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.8,86,98700,0,0,322,0,0,0,0,0,0,0,220,0.4,0,0,10.1,281,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.8,83,98700,0,0,331,0,0,0,0,0,0,0,220,0.0,1,1,9.7,344,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98700,0,0,332,0,0,0,0,0,0,0,220,0.0,1,1,9.7,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.7,80,98600,1,122,333,0,0,0,0,0,0,0,220,0.0,1,1,9.4,400,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,12.4,77,98700,156,1337,334,64,197,41,7020,0,4504,178,110,0.0,1,1,8.0,437,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.2,77,98700,422,1337,337,199,246,122,22130,13414,13568,593,110,0.0,2,2,8.0,461,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,12.2,71,98700,680,1337,343,363,317,202,40978,23373,22875,1073,110,0.4,2,2,8.3,501,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,12.2,62,98700,909,1337,353,523,377,266,60070,29656,30790,1508,110,2.6,2,2,10.1,579,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.2,58,98700,1092,1337,359,662,435,307,77391,34280,36075,1781,150,2.8,2,2,13.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.2,53,98700,1218,1337,355,908,792,187,112148,51209,23205,1064,200,3.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,12.2,49,98600,1277,1337,360,960,809,188,119443,51816,23459,1022,150,2.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,12.2,48,98600,1265,1337,362,960,825,179,119604,52275,22407,985,150,5.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.2,50,98500,1184,1337,359,880,785,185,108344,50932,22845,1063,160,5.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,12.1,52,98500,1039,1337,356,726,671,204,86891,46235,24563,1181,170,6.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,11.9,54,98500,840,1337,351,557,593,184,65155,41124,21645,1026,140,5.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,11.7,57,98400,601,1337,345,366,496,144,41835,31664,16464,745,160,5.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,11.7,62,98400,337,1337,339,177,360,86,19685,14032,9614,405,160,6.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.7,71,98400,75,997,329,35,180,25,3806,0,2716,106,130,4.9,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.7,76,98500,0,0,338,0,0,0,0,0,0,0,140,3.6,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,11.8,80,98500,0,0,335,0,0,0,0,0,0,0,180,2.7,3,3,16.1,626,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.1,77,98500,0,0,340,0,0,0,0,0,0,0,140,3.2,3,3,16.1,549,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.7,75,98500,0,0,339,0,0,0,0,0,0,0,160,3.4,3,3,16.1,553,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.7,75,98500,0,0,339,0,0,0,0,0,0,0,150,2.8,3,3,16.1,569,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.7,75,98400,0,0,339,0,0,0,0,0,0,0,140,3.4,3,3,16.1,545,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.6,75,98400,0,0,339,0,0,0,0,0,0,0,140,2.5,3,3,16.1,705,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.1,75,98400,0,0,336,0,0,0,0,0,0,0,140,2.3,3,3,16.1,736,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.2,75,98400,0,0,336,0,0,0,0,0,0,0,170,2.9,3,3,16.1,739,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.7,78,98400,1,136,337,0,0,0,0,0,0,0,160,2.2,3,3,16.1,619,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.7,77,98400,159,1337,337,61,161,42,6700,0,4613,183,160,2.5,3,3,16.1,661,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.7,75,98500,425,1337,339,199,240,123,22123,13290,13708,599,150,2.1,3,3,16.1,596,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,11.7,74,98500,682,1337,343,335,237,214,37693,18050,24212,1142,160,2.0,4,4,16.1,531,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,11.7,69,98500,911,1337,348,468,250,297,53344,20743,34108,1685,160,1.5,4,4,16.1,742,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,11.7,64,98500,1093,1337,354,587,279,359,67828,23591,41739,2084,160,1.3,4,4,16.1,871,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,11.1,53,98500,1219,1337,365,732,415,354,86220,33636,41949,2012,200,1.7,4,4,16.1,1040,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.2,53,98500,1278,1337,366,778,432,365,92087,34824,43448,1981,140,2.8,4,4,16.1,1089,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,11.6,53,98500,1266,1337,369,781,452,353,92481,35888,42063,1939,160,4.1,4,4,16.1,1223,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.1,51,98400,1186,1337,368,719,430,337,84599,34560,39949,1941,170,4.1,4,4,16.1,1245,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.0,52,98400,1041,1337,366,612,395,304,71115,31866,35579,1762,150,4.3,4,4,16.1,1214,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.6,51,98400,842,1337,364,481,376,245,55118,29438,28166,1363,140,5.1,4,4,16.1,1193,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,10.3,51,98400,603,1337,362,323,333,173,36367,23379,19567,898,150,5.4,4,4,16.1,1224,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,10.1,54,98400,340,1337,358,157,241,95,17332,10459,10577,449,150,5.5,4,4,16.1,1250,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.6,59,98400,78,1013,356,31,121,24,3431,0,2675,104,140,4.0,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.6,62,98400,0,0,350,0,0,0,0,0,0,0,140,3.4,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.6,68,98400,0,0,340,0,0,0,0,0,0,0,120,2.4,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.6,70,98500,0,0,343,0,0,0,0,0,0,0,150,1.5,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.7,73,98500,0,0,338,0,0,0,0,0,0,0,150,1.6,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.1,78,98500,0,0,320,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.3,80,98500,0,0,333,0,0,0,0,0,0,0,150,2.1,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98400,0,0,334,0,0,0,0,0,0,0,160,1.4,4,4,16.1,457,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,11.1,82,98400,0,0,316,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.1,81,98400,0,0,316,0,0,0,0,0,0,0,200,1.5,0,0,16.1,569,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.1,83,98400,2,150,321,0,0,0,0,0,0,0,250,1.5,1,1,16.1,522,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,11.1,80,98400,162,1336,328,65,183,43,7110,0,4692,186,270,1.5,2,2,15.9,544,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.1,74,98500,427,1336,334,214,295,119,23792,16171,13352,582,270,1.6,2,2,14.7,527,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.1,69,98500,684,1336,342,379,357,196,42893,26183,22305,1044,160,2.1,3,3,16.1,592,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.1,62,98500,912,1336,350,529,388,264,60908,30647,30608,1498,160,2.3,3,3,16.1,698,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,11.2,57,98500,1095,1336,361,629,361,334,73127,29640,39038,1938,160,3.0,4,4,16.1,853,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,11.6,54,98500,1220,1336,370,694,340,384,81227,28413,45184,2179,150,5.0,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,11.7,51,98500,1278,1336,372,777,429,366,91906,34461,43611,1985,140,5.5,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.7,50,98400,1267,1336,356,949,800,191,117793,51752,23790,1047,150,4.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.7,50,98400,1187,1336,368,773,544,290,91989,40945,34724,1667,150,4.8,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.7,51,98400,1042,1336,355,751,728,183,90734,48644,22234,1060,170,5.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,11.8,53,98300,844,1336,352,580,653,167,68395,43805,19822,933,190,3.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.7,56,98300,605,1336,347,381,542,136,43777,33836,15646,705,190,3.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,11.6,57,98300,343,1336,345,193,439,80,21629,16514,9035,379,190,3.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.0,59,98300,80,1028,338,42,219,28,4482,0,3078,121,150,4.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,10.6,63,98400,0,0,331,0,0,0,0,0,0,0,170,3.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.7,66,98400,0,0,328,0,0,0,0,0,0,0,150,3.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.1,70,98400,0,0,327,0,0,0,0,0,0,0,130,2.1,0,0,16.1,885,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.7,71,98400,0,0,336,0,0,0,0,0,0,0,120,2.1,1,1,16.1,671,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.6,72,98400,0,0,334,0,0,0,0,0,0,0,140,2.2,1,1,16.1,675,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.2,70,98400,0,0,333,0,0,0,0,0,0,0,140,2.4,1,1,16.1,705,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.6,75,98300,0,0,335,0,0,0,0,0,0,0,140,1.3,2,2,16.1,722,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,11.4,78,98300,0,0,332,0,0,0,0,0,0,0,140,0.6,2,2,16.1,671,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.7,81,98300,0,0,334,0,0,0,0,0,0,0,140,0.0,3,3,16.1,630,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,11.7,80,98400,2,164,334,0,0,0,0,0,0,0,140,0.0,3,3,16.1,569,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.8,77,98400,164,1336,338,64,173,43,7096,0,4771,189,150,0.0,3,3,16.1,527,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,12.1,74,98400,429,1336,346,205,254,124,22793,14077,13777,603,150,0.2,4,4,16.1,583,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.7,69,98500,686,1336,348,361,300,207,40702,22446,23424,1102,150,1.6,4,4,16.1,632,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.7,62,98500,913,1336,357,503,323,282,57645,26144,32500,1599,100,2.0,4,4,16.1,766,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,11.7,59,98600,1096,1336,364,580,264,364,66987,22404,42304,2114,160,1.6,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.7,52,98600,1220,1336,370,723,395,363,85012,32128,42923,2059,160,2.9,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,11.8,48,98500,1279,1336,359,972,827,180,121292,52522,22570,974,160,2.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,12.1,47,98500,1268,1336,384,779,445,356,92185,35317,42433,1951,160,3.3,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,11.7,45,98400,1188,1336,382,767,529,297,91184,40179,35460,1704,160,4.4,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,11.7,46,98400,1043,1336,362,764,757,173,92710,49667,21073,1001,150,3.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,11.6,46,98400,845,1336,361,602,716,149,71752,46363,17832,832,150,3.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,11.4,47,98400,607,1336,358,403,621,121,46748,37144,14038,627,150,4.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.2,49,98400,345,1336,354,203,496,75,22964,18093,8521,355,150,5.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.6,56,98400,82,1044,347,42,248,27,4567,0,2919,114,160,4.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.0,59,98500,0,0,338,0,0,0,0,0,0,0,130,3.9,0,0,16.1,3353,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,10.7,64,98600,0,0,331,0,0,0,0,0,0,0,120,2.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.1,68,98600,0,0,329,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.1,70,98700,0,0,327,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.1,70,98700,0,0,326,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.2,76,98600,0,0,322,0,0,0,0,0,0,0,130,1.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,11.6,82,98600,0,0,319,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.1,86,98600,0,0,312,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98600,0,0,328,0,0,0,0,0,0,0,110,2.1,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.2,89,98600,2,177,335,0,0,0,0,0,0,0,80,1.3,5,5,9.7,161,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.2,86,98700,166,1335,337,59,124,43,6495,0,4801,191,150,0.3,5,5,9.7,222,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.2,82,98700,431,1335,341,188,186,128,20835,10528,14229,625,150,1.8,5,5,9.9,283,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,12.2,76,98800,688,1335,346,339,239,216,38106,18135,24410,1153,190,0.0,5,5,11.3,335,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,12.2,68,98700,915,1335,350,521,363,272,59797,28727,31432,1543,190,1.6,3,3,12.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,12.2,55,98700,1097,1335,366,691,492,286,81253,37671,33893,1663,170,1.8,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,12.3,47,98700,1221,1335,376,841,641,255,101577,45438,30970,1447,130,0.6,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,12.9,44,98600,1280,1335,373,1075,1023,94,140473,56338,12334,508,130,4.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,13.3,47,98600,1269,1335,371,989,877,155,124549,52953,19639,849,150,5.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,13.3,49,98500,1189,1335,386,721,429,338,84695,33804,40042,1944,130,4.8,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.3,54,98500,1045,1335,360,677,541,254,79757,39696,30056,1470,130,5.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,13.4,57,98400,847,1335,355,535,514,209,61984,36727,24302,1164,130,4.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,13.3,60,98400,609,1335,351,363,461,153,41296,29732,17431,794,150,4.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,13.3,63,98400,348,1335,347,190,401,85,21198,15457,9563,403,150,4.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,13.3,67,98400,96,1202,343,50,200,35,5312,0,3781,150,130,3.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,13.3,76,98500,0,0,334,0,0,0,0,0,0,0,100,3.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,13.3,81,98500,0,0,335,0,0,0,0,0,0,0,120,3.6,1,1,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.3,84,98600,0,0,343,0,0,0,0,0,0,0,130,3.0,4,4,13.1,248,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,13.3,86,98600,0,0,342,0,0,0,0,0,0,0,170,2.4,4,4,14.2,274,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.3,84,98600,0,0,344,0,0,0,0,0,0,0,140,1.5,4,4,12.9,274,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,13.2,82,98600,0,0,344,0,0,0,0,0,0,0,90,1.6,4,4,12.6,287,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.8,78,98500,0,0,345,0,0,0,0,0,0,0,140,2.3,4,4,11.3,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98500,0,0,343,0,0,0,0,0,0,0,150,2.9,4,4,11.3,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98500,0,0,343,0,0,0,0,0,0,0,110,1.7,4,4,11.3,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98500,3,189,340,0,0,0,0,0,0,0,90,1.7,3,3,7.9,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98500,169,1335,340,65,159,45,7113,0,4920,196,140,2.9,3,3,6.9,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.8,80,98600,433,1335,341,198,219,127,21990,12275,14158,622,210,2.0,3,3,9.7,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.8,78,98600,689,1335,343,344,249,215,38664,18757,24348,1150,120,1.5,3,3,9.4,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.8,78,98600,916,1335,343,456,221,305,51941,18291,34903,1729,90,0.0,3,3,8.5,370,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.8,77,98500,1097,1335,344,552,213,377,63504,18174,43674,2189,220,0.6,3,3,10.9,409,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.8,72,98500,1222,1335,349,649,258,413,75535,22040,48345,2340,250,1.8,3,3,9.7,501,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.9,67,98500,1281,1335,355,749,373,391,88153,30424,46371,2110,250,0.3,3,3,10.3,579,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.9,58,98400,1270,1335,369,810,505,329,96431,38533,39478,1799,180,0.3,4,4,13.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,13.3,53,98300,1190,1335,373,857,724,212,104466,48198,25942,1216,180,2.4,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,13.3,52,98200,1046,1335,363,854,965,98,108053,54320,12449,568,130,4.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,13.1,51,98200,849,1335,363,650,846,111,79098,49589,13614,622,150,4.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,13.0,54,98100,611,1335,358,408,630,120,47391,36905,13933,623,160,4.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,12.8,57,98100,350,1335,353,198,442,82,22234,16847,9235,388,160,5.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,12.8,67,98100,98,1214,340,45,350,20,5116,0,2216,84,150,5.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.8,76,98200,0,0,350,0,0,0,0,0,0,0,140,3.9,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,12.2,79,98200,0,0,344,0,0,0,0,0,0,0,150,2.8,5,5,15.0,447,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.2,78,98200,0,0,345,0,0,0,0,0,0,0,170,2.6,5,5,14.5,425,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,98300,0,0,340,0,0,0,0,0,0,0,180,3.5,5,5,16.1,330,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,98200,0,0,340,0,0,0,0,0,0,0,140,2.8,5,5,16.1,285,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.6,81,98200,0,0,339,0,0,0,0,0,0,0,160,3.9,5,5,16.1,437,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,11.4,84,98100,0,0,335,0,0,0,0,0,0,0,180,3.1,5,5,16.1,728,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.4,82,98100,0,0,336,0,0,0,0,0,0,0,160,3.6,5,5,16.1,439,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.0,80,98100,0,0,336,0,0,0,0,0,0,0,150,3.0,5,5,16.1,563,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,98200,3,201,335,0,0,0,0,0,0,0,170,1.6,5,5,16.1,959,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.0,75,98200,171,1334,334,60,118,45,6582,0,4933,196,160,3.1,5,5,16.1,619,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.0,74,98300,435,1334,336,186,173,130,20640,10126,14443,634,180,2.9,5,5,16.1,827,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,9.8,64,98300,691,1334,345,347,256,215,39139,19762,24336,1148,170,4.4,5,5,16.1,956,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,9.0,59,98300,917,1334,346,472,251,300,53968,21256,34427,1700,160,6.3,5,5,16.1,978,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,9.3,59,98300,1098,1334,348,568,238,371,65555,20769,43173,2157,200,5.4,5,5,16.1,888,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,9.2,51,98300,1223,1334,358,662,278,407,77227,24208,47780,2303,180,4.4,5,5,16.1,1065,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,8.3,45,98300,1281,1334,362,749,372,391,88376,31441,46498,2106,150,3.9,5,5,16.1,1402,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,8.3,46,98300,1270,1334,359,792,468,346,94217,37776,41422,1887,170,5.5,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,8.3,49,98300,1190,1334,347,736,459,327,87064,37051,38889,1876,180,4.7,2,2,16.1,1981,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,8.1,49,98300,1047,1334,335,717,633,220,85655,46129,26373,1272,200,5.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,7.0,45,98300,850,1334,334,591,670,164,70075,46399,19486,914,150,5.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,6.3,44,98200,613,1334,332,421,673,111,49277,41003,13088,580,150,5.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,5.7,44,98200,353,1334,328,214,531,73,24316,21007,8352,347,150,5.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,6.4,52,98300,101,1227,321,52,464,17,5995,0,1985,74,140,4.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.9,63,98400,0,0,315,0,0,0,0,0,0,0,130,3.9,0,0,16.1,1372,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.4,70,98400,0,0,312,0,0,0,0,0,0,0,120,3.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.0,73,98500,0,0,312,0,0,0,0,0,0,0,140,3.4,0,0,16.1,1240,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.4,77,98500,0,0,316,0,0,0,0,0,0,0,120,2.2,1,1,16.1,1220,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.4,77,98500,0,0,316,0,0,0,0,0,0,0,110,2.6,1,1,16.1,1406,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.1,76,98500,0,0,320,0,0,0,0,0,0,0,120,1.9,2,2,16.1,1377,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.9,78,98500,0,0,317,0,0,0,0,0,0,0,130,2.5,2,2,16.1,1280,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.9,81,98500,0,0,318,0,0,0,0,0,0,0,140,1.9,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.9,80,98500,0,0,323,0,0,0,0,0,0,0,120,0.0,5,5,16.1,901,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,8.9,80,98500,3,213,324,0,0,0,0,0,0,0,120,0.0,5,5,16.1,853,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,8.8,76,98600,173,1333,327,63,137,46,6990,152,5044,201,140,0.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,8.3,66,98700,437,1333,334,208,247,127,23104,14531,14141,619,140,1.7,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,7.4,59,98700,692,1333,333,377,336,202,42715,25688,23043,1081,130,1.8,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,5.1,46,98700,918,1333,335,544,416,258,63032,33757,30066,1465,170,3.6,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,5.6,44,98700,1099,1333,341,645,388,326,75432,32654,38286,1890,140,3.7,3,3,16.1,1390,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,5.8,42,98700,1223,1333,347,746,435,346,88248,36126,41249,1960,170,4.3,3,3,16.1,1544,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,7.0,43,98800,1282,1333,353,799,467,349,95151,38025,41888,1877,190,5.5,3,3,16.1,1829,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,5.7,38,98700,1271,1333,353,813,511,326,97294,40919,39300,1778,160,4.3,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,5.9,40,98700,1191,1333,353,736,457,327,87122,37473,38997,1878,190,4.9,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,4.9,40,98700,1048,1333,330,734,673,205,88268,48888,24751,1186,210,3.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,4.3,39,98700,852,1333,328,581,638,173,68716,45771,20560,967,200,3.5,0,0,16.1,1840,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,3.8,38,98700,615,1333,326,410,627,121,47821,40016,14166,632,230,3.0,0,0,16.1,1916,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,3.5,37,98700,355,1333,326,223,582,68,25596,22753,7829,323,230,2.5,0,0,16.1,1935,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,4.5,40,98700,103,1237,328,61,291,39,6585,0,4192,167,290,2.4,0,0,16.1,1676,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,5.2,48,98800,0,0,319,0,0,0,0,0,0,0,290,3.9,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,6.4,57,98800,0,0,314,0,0,0,0,0,0,0,280,2.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.8,67,98800,0,0,311,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.9,70,98900,0,0,308,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.3,75,98800,0,0,307,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.3,77,98800,0,0,304,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.2,77,98800,0,0,304,0,0,0,0,0,0,0,350,0.0,0,0,16.1,1676,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.8,78,98800,0,0,301,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.5,79,98800,0,0,299,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,6.1,73,98900,4,225,296,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,6.3,68,98900,175,1333,302,89,364,41,9910,0,4584,180,350,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,7.3,64,98900,439,1333,322,238,377,114,26790,21194,12887,560,350,0.0,2,2,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,7.6,60,99000,693,1333,318,491,717,118,58098,44777,14023,631,350,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,6.5,47,99000,919,1333,328,693,816,131,84590,52866,16055,744,300,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,5.4,39,98900,1100,1333,334,834,820,157,103048,54724,19459,910,300,1.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,5.0,35,98900,1224,1333,341,958,884,147,120979,57178,18623,831,300,3.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,8.1,40,98800,1282,1333,349,980,837,175,122934,54589,22008,936,170,7.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,7.2,38,98700,1272,1333,349,964,821,181,120484,54438,22690,982,160,4.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,7.0,36,98700,1192,1333,351,917,849,158,114666,55308,19805,904,170,4.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,5.9,33,98600,1050,1333,351,794,817,151,97725,54185,18630,873,240,2.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,5.4,33,98600,854,1333,348,634,788,129,76650,51474,15627,720,300,4.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,5.0,33,98600,617,1333,344,423,668,113,49534,41396,13293,590,310,4.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,4.8,34,98600,358,1333,342,217,534,74,24758,21723,8471,352,310,4.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,4.2,35,98500,105,1245,336,57,511,17,6586,0,1972,73,290,3.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,6.2,44,98600,0,0,331,0,0,0,0,0,0,0,280,2.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,6.9,50,98600,0,0,327,0,0,0,0,0,0,0,290,1.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,8.2,58,98600,0,0,324,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,7.9,59,98600,0,0,320,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.5,66,98600,0,0,316,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,9.4,73,98500,0,0,314,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.3,77,98400,0,0,310,0,0,0,0,0,0,0,70,0.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,8.8,74,98400,0,0,310,0,0,0,0,0,0,0,70,2.4,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,8.2,72,98400,0,0,308,0,0,0,0,0,0,0,60,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,7.8,74,98400,4,235,305,0,0,0,0,0,0,0,60,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,8.0,69,98500,177,1332,310,89,151,69,9528,2533,7414,305,130,0.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,9.2,68,98600,440,1332,331,223,302,123,24867,17371,13770,602,160,2.9,3,3,16.1,518,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,9.3,61,98600,694,1332,340,406,422,186,46336,30700,21310,994,160,1.7,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,8.8,57,98600,920,1332,348,495,296,291,56739,24709,33509,1651,180,2.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,8.2,49,98600,1100,1332,352,634,363,334,73955,30445,39221,1942,180,0.3,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,8.0,45,98600,1224,1332,354,732,406,359,86338,33736,42576,2027,150,2.5,3,3,16.1,1342,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,9.0,46,98500,1283,1332,357,820,509,330,98071,39974,39752,1769,150,4.8,2,2,16.1,1524,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,9.2,45,98500,1272,1332,355,829,540,313,99348,41654,37754,1699,180,6.2,1,1,16.1,1524,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,8.2,41,98400,1193,1332,348,914,841,161,114055,54521,20184,923,170,5.9,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,7.8,44,98400,1051,1332,356,634,430,295,74156,34899,34692,1710,180,4.0,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,8.4,46,98300,855,1332,361,463,309,265,52878,25302,30414,1481,170,3.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,8.1,46,98300,619,1332,359,314,273,187,35306,20226,21134,977,160,3.9,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,8.0,47,98300,360,1332,358,169,249,101,18709,11952,11268,481,160,4.3,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,5.8,43,98300,107,1255,350,44,243,25,4945,0,2778,106,170,5.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,4.7,43,98300,0,0,340,0,0,0,0,0,0,0,160,3.9,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,6.5,53,98400,0,0,333,0,0,0,0,0,0,0,150,2.8,3,3,16.1,1372,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.1,66,98500,0,0,333,0,0,0,0,0,0,0,150,3.9,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.0,73,98500,0,0,332,0,0,0,0,0,0,0,130,3.1,3,3,16.1,1676,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.0,75,98400,0,0,329,0,0,0,0,0,0,0,140,3.0,3,3,16.1,1721,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.9,77,98500,0,0,327,0,0,0,0,0,0,0,130,2.6,3,3,16.1,1825,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.4,77,98400,0,0,324,0,0,0,0,0,0,0,120,2.4,3,3,16.1,1031,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.5,78,98500,0,0,324,0,0,0,0,0,0,0,120,1.3,3,3,16.1,1450,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.0,80,98500,0,0,324,0,0,0,0,0,0,0,120,0.0,3,3,16.1,813,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.0,77,98500,4,246,327,0,0,0,0,0,0,0,120,1.5,3,3,16.1,632,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.0,77,98600,179,1332,328,73,189,47,8008,486,5235,209,120,1.3,3,3,16.1,734,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.0,74,98600,442,1332,333,209,244,128,23286,14273,14343,630,210,0.4,4,4,16.1,749,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,9.4,66,98700,695,1332,337,356,272,214,40228,21040,24306,1147,200,2.6,4,4,16.1,797,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,8.9,60,98700,920,1332,342,495,296,291,56784,24660,33566,1654,180,1.6,4,4,16.1,940,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,8.9,58,98800,1101,1332,344,593,281,361,68749,24241,42069,2095,180,2.1,4,4,16.1,950,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,8.9,55,98800,1225,1332,348,672,294,402,78578,25439,47325,2272,180,2.3,4,4,16.1,1258,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,8.9,50,98800,1283,1332,356,759,388,385,89689,32374,45841,2060,160,2.5,4,4,16.1,1760,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,8.8,45,98800,1273,1332,363,814,508,328,97214,39962,39477,1780,160,2.9,4,4,16.1,1463,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,8.2,44,98700,1194,1332,361,783,553,287,93556,42503,34556,1647,160,4.8,4,4,16.1,1981,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,7.7,43,98700,1052,1332,362,624,403,305,72715,33154,35770,1767,150,5.8,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,7.0,40,98700,857,1332,363,492,378,248,56542,30458,28717,1391,150,6.1,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,6.9,41,98700,621,1332,361,338,344,177,38175,25054,20138,926,170,5.6,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,6.6,41,98700,363,1332,359,175,274,100,19470,13315,11206,478,170,4.9,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,6.6,46,98700,109,1264,347,45,243,26,5071,0,2865,110,200,3.7,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.5,66,98800,0,0,338,0,0,0,0,0,0,0,140,3.9,4,4,16.1,1548,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.0,73,98800,0,0,331,0,0,0,0,0,0,0,100,2.7,3,3,16.1,853,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.0,75,98900,0,0,334,0,0,0,0,0,0,0,100,2.5,5,5,16.1,732,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.9,77,98900,0,0,313,0,0,0,0,0,0,0,80,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.3,74,98900,0,0,313,0,0,0,0,0,0,0,240,0.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,9.2,76,98900,0,0,311,0,0,0,0,0,0,0,250,2.1,0,0,16.1,617,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.9,77,98800,0,0,308,0,0,0,0,0,0,0,250,1.5,0,0,16.1,1358,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,8.9,79,98800,0,0,312,0,0,0,0,0,0,0,220,1.5,1,1,16.1,608,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,9.0,77,98900,0,0,314,0,0,0,0,0,0,0,250,0.0,1,1,16.1,988,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,9.4,77,98900,5,255,317,0,0,0,0,0,0,0,250,0.0,1,1,16.1,1181,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,9.5,74,98900,180,1331,324,79,236,47,8718,700,5203,207,230,0.2,2,2,16.1,1806,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,9.9,74,99000,443,1331,326,224,302,124,25018,17311,13875,608,230,1.5,2,2,16.1,1676,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,9.2,67,99000,696,1331,329,375,323,206,42499,24591,23452,1103,260,1.3,2,2,16.1,1698,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,8.2,59,99000,921,1331,336,502,309,288,57573,25742,33254,1637,260,0.0,3,3,16.1,1760,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,7.9,55,99000,1101,1331,339,611,315,351,71027,26976,40988,2036,130,0.2,3,3,16.1,1417,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,8.3,53,99100,1225,1331,344,708,359,378,83197,30361,44713,2135,130,1.7,3,3,16.1,1698,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,8.3,50,99000,1284,1331,351,753,377,390,88994,31747,46361,2081,130,3.1,4,4,16.1,1806,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,8.0,49,99000,1273,1331,352,771,423,367,91440,34932,43736,1984,110,3.3,4,4,16.1,1676,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,6.1,40,99000,1195,1331,355,770,524,300,91811,41430,35984,1718,150,4.2,4,4,16.1,1676,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,6.0,38,98900,1053,1331,362,657,478,279,77215,38312,32928,1614,200,2.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,6.0,38,98900,858,1331,360,524,463,226,60743,36040,26324,1265,200,5.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,6.5,41,98900,623,1331,358,343,357,175,38818,26002,19965,918,160,4.8,5,5,16.1,1524,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,7.4,46,98900,365,1331,355,165,223,104,18320,11015,11596,496,160,4.3,5,5,16.1,1524,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,8.5,50,98900,111,1273,355,44,212,27,4945,0,2984,115,120,4.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,9.5,61,98900,0,0,344,0,0,0,0,0,0,0,100,1.7,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.0,68,98900,0,0,322,0,0,0,0,0,0,0,100,2.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,9.9,72,99000,0,0,318,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.5,73,99000,0,0,315,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,9.9,77,99000,0,0,313,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,9.6,76,98900,0,0,312,0,0,0,0,0,0,0,80,1.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.4,85,98900,0,0,309,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.4,77,98900,0,0,321,0,0,0,0,0,0,0,60,1.3,2,2,16.1,366,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.4,77,98900,0,0,329,0,0,0,0,0,0,0,60,0.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,10.5,83,98900,5,265,330,0,0,0,0,0,0,0,60,0.0,5,5,16.1,344,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,9.8,75,99000,182,1331,333,67,139,48,7415,533,5333,213,180,0.0,5,5,16.1,414,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,10.0,74,99000,444,1331,335,199,201,132,22087,11932,14709,648,180,0.2,5,5,16.1,488,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.6,66,99000,697,1331,341,348,248,218,39278,19308,24748,1170,180,0.6,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.3,55,99000,922,1331,348,546,412,260,63117,32696,30269,1479,40,1.5,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,8.9,48,99000,1102,1331,356,688,477,293,81070,37743,34742,1703,40,1.3,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,9.2,44,98900,1225,1331,364,793,529,306,94694,40968,36739,1726,150,0.5,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,10.6,45,98900,1284,1331,373,832,529,321,99589,40594,38728,1712,150,4.0,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,10.6,44,98800,1274,1331,370,835,550,309,100190,41711,37270,1669,160,6.0,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,10.6,43,98800,1195,1331,360,914,836,163,113888,53195,20411,933,170,5.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,10.5,43,98700,1054,1331,359,771,752,175,93756,50043,21397,1015,160,5.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,10.5,45,98600,860,1331,356,611,709,153,72894,46712,18353,859,140,5.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,10.3,47,98600,625,1331,352,409,595,130,47437,37163,15097,679,140,4.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,10.6,50,98600,367,1331,348,211,457,85,23774,19158,9592,404,140,4.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,10.5,55,98600,113,1281,340,55,365,24,6177,0,2711,103,140,4.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.9,59,98600,0,0,332,0,0,0,0,0,0,0,130,3.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,9.4,63,98600,0,0,325,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,9.5,66,98700,0,0,322,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.0,72,98700,0,0,318,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.0,73,98600,0,0,318,0,0,0,0,0,0,0,80,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.0,75,98700,0,0,315,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.0,77,98600,0,0,314,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.9,77,98500,0,0,313,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.5,78,98500,0,0,310,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.0,83,98500,5,273,309,1,57,1,130,0,99,3,110,0.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.1,83,98600,183,1330,333,64,115,48,7053,372,5322,213,130,2.1,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.1,74,98600,445,1330,342,211,241,130,23409,14058,14494,638,120,0.0,5,5,15.0,274,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.7,73,98600,698,1330,344,374,318,207,42353,23775,23587,1112,120,0.2,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.7,62,98600,922,1330,350,562,454,248,65201,34601,28895,1408,120,1.7,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.7,56,98500,1102,1330,347,795,726,194,96557,48709,23651,1126,120,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,11.6,48,98500,1226,1330,358,952,866,153,119522,53522,19356,866,140,0.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,11.3,42,98400,1285,1330,367,1023,918,137,130492,55046,17588,731,140,3.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,12.2,42,98400,1274,1330,374,1031,947,124,132214,55148,15922,667,160,4.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,12.2,41,98300,1196,1330,376,956,922,127,121219,54511,16157,726,140,3.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,12.2,43,98200,1055,1330,372,777,765,170,94588,49603,20841,988,160,5.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,12.4,44,98200,861,1330,370,603,683,161,71627,44867,19218,904,130,4.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,12.5,47,98200,627,1330,365,404,569,136,46586,35319,15703,710,110,3.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.7,49,98200,369,1330,364,218,491,82,24623,19495,9264,390,110,3.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,12.2,55,98200,115,1289,351,55,340,26,6128,0,2858,110,130,4.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.2,69,98300,0,0,334,0,0,0,0,0,0,0,120,2.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.1,78,98300,0,0,325,0,0,0,0,0,0,0,100,2.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.7,79,98400,0,0,322,0,0,0,0,0,0,0,120,2.9,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98300,0,0,317,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98300,0,0,317,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.8,84,98300,0,0,318,0,0,0,0,0,0,0,90,1.2,0,0,15.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.9,82,98200,0,0,320,0,0,0,0,0,0,0,160,0.0,0,0,12.9,287,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98200,0,0,324,0,0,0,0,0,0,0,160,0.0,1,1,11.3,274,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.2,86,98200,0,0,325,0,0,0,0,0,0,0,170,1.8,1,1,9.9,274,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,98200,6,281,331,1,91,1,132,0,80,2,170,0.4,2,2,10.4,282,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,12.2,83,98300,185,1330,335,74,182,49,8195,614,5430,217,170,0.2,3,3,9.7,314,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,12.1,79,98400,446,1330,338,217,263,128,24101,15060,14350,631,120,1.5,3,3,9.7,370,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.9,72,98400,699,1330,347,356,266,216,40137,20201,24525,1160,120,1.9,4,4,9.7,417,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.1,68,98400,923,1330,352,492,285,294,56277,23284,33877,1674,140,2.7,4,4,9.7,488,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,12.2,62,98400,1102,1330,360,617,325,348,71626,26861,40633,2020,150,2.7,4,4,12.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.2,53,98400,1226,1330,367,779,499,319,92636,38329,38153,1799,120,3.5,2,2,13.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,12.2,49,98400,1285,1330,360,991,854,166,124585,52880,21010,884,120,3.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,12.3,47,98400,1275,1330,365,1006,898,145,127574,53959,18488,782,80,2.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,12.7,46,98300,1197,1330,368,923,853,156,115332,52466,19580,893,150,5.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,12.2,45,98300,1056,1330,367,790,794,160,96674,50551,19623,926,130,4.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.2,47,98300,862,1330,363,609,695,158,72385,45421,18871,886,130,5.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,12.2,52,98300,629,1330,356,399,546,141,45929,34535,16288,739,140,4.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,12.2,56,98300,372,1330,350,202,388,93,22550,16964,10471,445,140,4.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,12.1,66,98400,117,1299,351,40,129,29,4478,0,3230,125,140,3.7,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.7,76,98500,0,0,341,0,0,0,0,0,0,0,120,4.1,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.7,81,98500,0,0,320,0,0,0,0,0,0,0,130,3.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98600,0,0,317,0,0,0,0,0,0,0,130,2.6,0,0,16.1,244,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98600,0,0,317,0,0,0,0,0,0,0,140,2.5,0,0,16.1,248,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98600,0,0,317,0,0,0,0,0,0,0,150,2.2,0,0,16.1,281,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98600,0,0,317,0,0,0,0,0,0,0,180,0.1,0,0,16.0,475,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.7,84,98600,0,0,317,0,0,0,0,0,0,0,170,0.0,0,0,11.9,286,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98600,0,0,318,0,0,0,0,0,0,0,170,0.0,0,0,9.9,323,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98600,0,0,318,0,0,0,0,0,0,0,170,0.0,0,0,10.5,442,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.2,86,98700,6,289,318,1,205,0,152,0,10,0,150,0.0,0,0,9.7,356,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.7,81,98700,186,1329,320,93,343,45,10288,459,4980,198,150,0.0,0,0,12.9,396,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.7,78,98800,447,1329,323,261,461,106,29524,23945,12035,522,150,0.0,0,0,16.1,481,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,11.7,75,98800,699,1329,326,431,494,171,49573,34021,19779,919,150,1.8,0,0,16.1,614,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.6,71,98800,923,1329,329,579,495,235,67411,36991,27542,1337,160,0.4,0,0,16.1,644,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,11.1,64,98800,1103,1329,333,717,541,268,84956,40656,31951,1557,160,2.5,0,0,16.1,680,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.1,59,98800,1226,1329,339,837,621,264,100976,44934,32011,1487,80,2.1,0,0,16.1,783,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,11.1,52,98800,1285,1329,348,960,791,195,119303,51588,24425,1037,80,0.4,0,0,16.1,1067,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,11.1,49,98800,1275,1329,354,994,873,156,125458,54013,19778,839,70,2.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,11.1,47,98700,1198,1329,357,959,925,125,121797,55230,15998,717,70,2.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.1,48,98600,1057,1329,367,689,548,254,81500,40834,30149,1470,180,3.4,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,11.0,48,98600,864,1329,354,620,726,149,74181,47115,17857,834,180,5.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,10.8,49,98600,631,1329,358,366,421,166,41608,28938,18991,872,150,4.8,1,1,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,10.6,50,98600,374,1329,364,189,312,101,21016,14773,11280,483,150,4.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.5,53,98600,119,1308,358,50,230,30,5546,0,3277,127,160,4.4,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.0,59,98700,0,0,343,0,0,0,0,0,0,0,150,3.4,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.0,63,98700,0,0,328,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.0,65,98800,0,0,325,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.0,68,98800,0,0,323,0,0,0,0,0,0,0,120,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.0,69,98700,0,0,321,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.0,70,98700,0,0,320,0,0,0,0,0,0,0,80,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.1,76,98700,0,0,315,0,0,0,0,0,0,0,80,1.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.7,81,98700,0,0,314,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.0,83,98700,0,0,314,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.7,84,98700,6,296,312,1,187,0,148,0,15,0,90,1.3,0,0,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,11.1,85,98800,187,1329,313,88,290,47,9743,994,5242,209,90,0.0,0,0,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.6,78,98800,448,1329,341,203,207,133,22510,12183,14824,654,90,0.0,5,5,16.1,427,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,11.6,73,98800,700,1329,346,350,249,219,39451,19057,24827,1176,170,0.0,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.1,62,98800,923,1329,356,509,322,286,58445,26177,32965,1624,170,0.6,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,11.7,60,98800,1103,1329,359,623,335,345,72354,27700,40291,2001,170,0.6,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.7,52,98800,1226,1329,352,913,785,189,112970,51021,23551,1068,170,2.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.8,48,98700,1285,1329,360,983,836,174,123190,52593,21936,923,170,3.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,12.2,45,98600,1276,1329,367,1021,926,133,130384,54637,17000,713,170,3.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,12.2,47,98600,1198,1329,365,919,841,161,114576,52399,20163,920,150,5.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,12.2,47,98500,1058,1329,365,778,761,172,94697,49461,21076,1000,140,4.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,12.3,47,98500,865,1329,365,611,696,158,72743,45448,18876,887,140,4.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.2,47,98400,632,1329,370,381,470,157,43500,31135,18031,825,120,3.8,1,1,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,12.2,49,98400,376,1329,373,198,352,98,22041,16015,10977,469,120,3.7,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.1,55,98400,121,1316,350,59,342,28,6546,0,3090,119,140,4.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,11.7,60,98400,0,0,359,0,0,0,0,0,0,0,150,3.4,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.7,66,98500,0,0,345,0,0,0,0,0,0,0,140,2.1,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.7,71,98500,0,0,330,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.7,73,98500,0,0,327,0,0,0,0,0,0,0,80,2.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.7,76,98400,0,0,325,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.7,79,98400,0,0,322,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.8,85,98300,0,0,317,0,0,0,0,0,0,0,150,1.6,0,0,15.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.2,90,98300,0,0,322,0,0,0,0,0,0,0,90,1.9,1,1,11.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.2,90,98300,0,0,332,0,0,0,0,0,0,0,140,2.6,4,4,6.7,91,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,12.3,90,98300,7,303,330,1,77,1,132,0,81,3,70,2.2,3,3,7.6,91,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.8,92,98400,188,1329,331,72,154,50,7928,647,5544,222,70,0.0,3,3,5.1,95,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.8,90,98400,449,1329,330,212,239,131,23543,13756,14648,646,180,0.4,2,2,6.4,127,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.8,86,98400,700,1329,328,357,264,217,40176,19946,24608,1165,180,0.2,1,1,8.0,165,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.8,78,98400,924,1329,328,583,503,233,67881,37037,27278,1324,160,1.8,0,0,8.0,274,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.3,70,98400,1103,1329,339,752,621,236,89852,43651,28406,1373,180,2.7,0,0,9.7,366,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,13.3,57,98400,1226,1329,355,942,843,163,117666,51842,20517,921,140,1.7,0,0,10.4,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,13.4,50,98300,1286,1329,367,1062,987,107,137740,55089,13949,567,170,3.0,0,0,14.2,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,13.9,48,98300,1276,1329,373,1060,997,102,137772,54905,13323,548,170,5.0,0,0,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,13.9,48,98300,1199,1329,373,941,886,142,118367,52500,17911,810,160,4.6,0,0,13.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,13.9,49,98200,1059,1329,372,775,752,176,94134,48222,21479,1021,120,4.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,14.0,52,98200,867,1329,367,593,640,176,69932,42432,20801,986,130,5.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.9,56,98200,634,1329,360,399,531,145,45787,33365,16750,763,150,4.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,13.9,60,98200,378,1329,355,205,384,96,22881,16760,10714,457,150,4.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,13.8,66,98200,123,1325,347,55,264,30,6064,0,3378,131,150,4.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.3,74,98300,0,0,336,0,0,0,0,0,0,0,140,3.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.3,79,98300,0,0,331,0,0,0,0,0,0,0,120,3.3,0,0,15.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.4,84,98400,0,0,346,0,0,0,0,0,0,0,140,2.4,5,5,12.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.9,87,98400,0,0,347,0,0,0,0,0,0,0,110,2.6,5,5,11.3,217,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,5,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,13.9,86,98400,0,0,347,0,0,0,0,0,0,0,160,2.4,5,5,11.3,248,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.9,84,98400,0,0,350,0,0,0,0,0,0,0,200,1.7,5,5,10.8,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.9,84,98300,0,0,350,0,0,0,0,0,0,0,170,1.5,5,5,9.7,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.8,84,98300,0,0,349,0,0,0,0,0,0,0,180,1.5,5,5,9.4,305,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.3,84,98300,0,0,346,0,0,0,0,0,0,0,180,1.7,5,5,8.0,305,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.3,84,98400,7,309,346,1,54,1,130,0,94,3,170,3.1,5,5,7.8,300,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,13.3,83,98400,189,1328,347,65,107,49,7125,377,5462,219,170,2.5,5,5,6.4,278,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.9,84,98500,449,1328,350,191,167,135,21197,9639,15001,664,150,2.9,5,5,6.4,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,13.9,83,98500,701,1328,351,312,160,228,35008,12229,25660,1220,190,1.6,5,5,6.4,309,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,13.9,74,98500,924,1328,360,451,202,311,51335,16626,35577,1767,100,2.1,5,5,6.7,353,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,13.9,65,98500,1103,1328,367,612,313,352,70870,25597,41009,2042,120,2.1,4,4,8.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,14.0,58,98500,1227,1328,358,908,771,195,111844,49271,24200,1100,140,2.7,0,0,10.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,14.4,51,98500,1286,1328,371,1017,901,144,129010,52549,18365,761,140,3.2,0,0,13.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,14.4,49,98500,1277,1328,376,1021,923,134,130064,53016,17121,717,140,3.8,0,0,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,14.4,49,98400,1200,1328,375,937,877,146,117607,51895,18343,831,140,4.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,14.4,50,98400,1060,1328,373,765,726,186,92490,47010,22581,1078,160,4.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,14.5,51,98400,868,1328,372,600,659,170,70965,42904,20182,955,120,4.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,14.4,53,98400,636,1328,368,418,599,131,48378,35890,15264,690,160,4.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,14.3,56,98400,380,1328,363,220,460,88,24713,18966,9915,421,160,4.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.9,62,98400,125,1328,352,57,280,31,6301,0,3400,132,140,4.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,13.9,69,98500,0,6,344,0,0,0,0,0,0,0,140,2.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.9,77,98500,0,0,337,0,0,0,0,0,0,0,120,2.7,0,0,15.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.9,82,98600,0,0,331,0,0,0,0,0,0,0,120,3.0,0,0,14.2,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.9,87,98600,0,0,327,0,0,0,0,0,0,0,170,2.5,0,0,12.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.9,87,98600,0,0,347,0,0,0,0,0,0,0,150,1.5,5,5,9.7,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.9,84,98600,0,0,350,0,0,0,0,0,0,0,90,2.0,5,5,9.4,217,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.9,84,98500,0,0,350,0,0,0,0,0,0,0,170,1.3,5,5,8.0,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.9,84,98500,0,0,350,0,0,0,0,0,0,0,250,0.0,5,5,8.0,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.9,84,98500,0,0,350,0,0,0,0,0,0,0,250,0.0,5,5,8.0,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,14.0,87,98500,7,314,347,1,58,1,131,0,90,3,250,0.2,5,5,4.8,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,14.4,85,98600,190,1328,351,67,116,50,7334,371,5528,222,230,1.0,5,5,5.3,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,14.4,79,98600,450,1328,348,225,286,128,24991,15881,14271,629,230,0.2,2,2,6.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,14.4,68,98600,701,1328,349,476,642,137,55604,39327,16058,735,100,1.3,0,0,8.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,14.4,53,98700,924,1328,384,599,546,219,70074,38605,25748,1246,100,0.4,3,3,11.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,14.4,43,98700,1103,1328,399,797,726,194,96595,47197,23621,1125,100,2.6,2,2,12.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,14.4,37,98700,1227,1328,400,1060,1070,71,140386,55679,9421,399,130,2.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,14.3,34,98700,1286,1328,421,935,737,221,114949,48022,27322,1166,110,3.2,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,13.8,31,98600,1277,1328,411,1031,941,126,132009,53844,16172,673,150,3.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.3,13.3,28,98600,1200,1328,417,970,942,119,123619,54157,15194,678,140,4.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.7,13.1,29,98500,1061,1328,414,817,846,140,100938,51537,17407,813,130,4.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,12.6,29,98500,869,1328,411,647,788,131,78112,48427,15844,734,120,4.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,12.2,30,98500,637,1328,404,429,633,125,49894,38236,14554,655,130,4.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,12.3,31,98500,382,1328,400,230,516,82,26126,21206,9317,393,130,4.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,12.7,36,98500,127,1328,391,62,340,30,6887,0,3295,127,100,3.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,12.3,42,98500,0,13,375,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,12.8,47,98500,0,0,367,0,0,0,0,0,0,0,90,3.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,12.8,50,98600,0,0,362,0,0,0,0,0,0,0,120,2.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,12.9,54,98600,0,0,357,0,0,0,0,0,0,0,90,2.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,13.3,58,98600,0,0,354,0,0,0,0,0,0,0,90,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.3,62,98600,0,0,349,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.3,70,98600,0,0,340,0,0,0,0,0,0,0,170,1.3,0,0,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.3,70,98600,0,0,339,0,0,0,0,0,0,0,170,0.0,0,0,14.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,13.3,74,98600,0,0,335,0,0,0,0,0,0,0,150,0.2,0,0,14.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,13.4,82,98600,7,319,328,1,125,0,138,0,42,1,150,1.3,0,0,11.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.9,76,98700,191,1327,337,102,417,42,11415,0,4738,188,150,0.0,0,0,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,13.9,64,98700,450,1327,350,306,679,76,35511,29091,8799,372,150,0.0,0,0,9.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,13.8,54,98800,701,1327,364,531,831,92,63968,45201,11096,493,140,0.0,0,0,11.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,12.7,41,98800,924,1327,380,741,926,96,92341,52635,11994,546,140,0.3,0,0,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,9.4,26,98800,1103,1327,394,914,989,93,117363,57363,11916,537,140,2.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,9.4,23,98800,1227,1327,408,1035,1026,87,135569,58421,11449,490,140,2.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,9.2,20,98700,1286,1327,417,1094,1042,84,144608,58886,11137,443,140,3.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.9,7.6,17,98700,1277,1327,423,1085,1040,85,143342,59730,11211,452,110,3.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.8,6.5,15,98600,1201,1327,427,1010,1018,88,131836,59758,11578,504,160,3.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.7,5.4,14,98600,1062,1327,425,874,975,94,111693,58818,12006,543,120,4.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.6,5.0,14,98500,870,1327,423,690,906,96,85610,55340,11929,539,140,5.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.6,4.7,14,98500,639,1327,418,474,799,89,56827,46450,10690,467,130,4.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,5.0,15,98500,384,1327,413,250,624,69,28818,25906,8013,332,130,3.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,5.3,18,98500,128,1327,398,64,354,30,7124,0,3308,127,150,4.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,7.2,26,98500,0,21,381,0,0,0,0,0,0,0,100,3.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,10.4,38,98500,0,0,369,0,0,0,0,0,0,0,110,2.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,12.9,49,98600,0,0,364,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,13.5,56,98600,0,0,357,0,0,0,0,0,0,0,90,1.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,14.4,64,98600,0,0,353,0,0,0,0,0,0,0,100,1.8,0,0,15.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,14.4,71,98500,0,0,345,0,0,0,0,0,0,0,100,0.0,0,0,11.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,14.4,75,98500,0,0,341,0,0,0,0,0,0,0,100,0.0,0,0,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,14.4,75,98500,0,0,341,0,0,0,0,0,0,0,100,0.0,0,0,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,14.3,76,98500,0,0,340,0,0,0,0,0,0,0,90,0.0,0,0,9.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,14.0,77,98500,8,323,336,1,117,0,138,0,45,1,90,0.0,0,0,8.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,14.4,73,98500,191,1327,343,98,373,45,10941,149,4985,198,90,0.0,0,0,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,14.3,61,98600,451,1327,357,293,612,86,33733,27589,9861,421,90,0.2,0,0,9.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,13.6,46,98700,701,1327,375,509,755,110,60517,43401,13100,589,90,1.7,0,0,12.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,11.8,34,98700,924,1327,389,710,846,121,87055,51207,14882,688,100,2.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,9.7,25,98700,1103,1327,401,876,906,123,110186,55235,15484,712,170,2.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,11.1,24,98700,1227,1327,416,992,943,120,126894,55622,15428,676,150,2.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,7.6,18,98600,1286,1327,416,1048,960,118,135418,57942,15335,623,150,4.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,6.9,18,98600,1277,1327,412,1040,957,118,134260,58216,15354,633,140,5.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,7.6,19,98500,1201,1327,410,968,936,121,123622,57295,15482,689,130,5.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,6.6,18,98500,1063,1327,410,839,894,123,105048,56183,15440,712,140,5.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,5.8,17,98400,872,1327,405,662,826,119,80848,52739,14624,671,100,5.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,5.8,19,98400,641,1327,398,455,726,105,53944,43946,12473,553,100,3.9,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,6.3,20,98400,386,1327,394,241,563,77,27565,24457,8857,371,90,2.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,9.9,31,98500,130,1327,385,62,316,31,6919,0,3477,135,90,2.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,9.6,35,98500,0,31,371,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,10.7,41,98500,0,0,366,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,11.2,43,98500,0,0,365,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.9,51,98500,0,0,355,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.3,64,98400,0,0,347,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,13.3,69,98400,0,0,341,0,0,0,0,0,0,0,120,1.8,0,0,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.3,78,98400,0,0,331,0,0,0,0,0,0,0,120,0.2,0,0,14.2,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.3,81,98300,0,0,329,0,0,0,0,0,0,0,120,1.5,0,0,12.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.3,84,98400,0,0,326,0,0,0,0,0,0,0,90,1.5,0,0,10.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,13.3,85,98400,8,327,325,1,111,0,137,0,48,1,100,1.3,0,0,7.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,13.3,79,98400,192,1327,330,94,328,47,10455,860,5216,208,100,0.0,0,0,6.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.3,74,98400,451,1327,336,273,508,101,31041,25224,11467,496,110,0.2,0,0,8.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.3,64,98500,701,1327,347,480,653,134,56172,40286,15795,721,110,1.7,0,0,8.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.1,53,98500,924,1327,359,678,760,149,81811,47916,18011,846,100,2.8,0,0,11.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,12.3,45,98500,1103,1327,368,846,839,149,104777,51972,18496,863,100,4.1,0,0,14.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,12.6,44,98400,1226,1327,372,917,790,187,113486,50639,23243,1051,140,4.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,11.7,38,98400,1286,1327,379,972,811,186,121260,51836,23292,977,130,4.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,11.7,36,98400,1278,1327,383,977,835,173,122479,52547,21836,925,130,4.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,11.6,36,98300,1202,1327,383,927,850,157,115950,52958,19698,894,130,5.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,10.8,35,98300,1064,1327,379,784,764,172,95653,50255,21049,997,150,6.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,9.6,33,98300,873,1327,377,624,714,154,74565,47373,18483,866,120,5.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,9.1,33,98200,642,1327,380,390,477,159,44639,32650,18246,836,120,4.5,1,1,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,9.2,34,98200,388,1327,383,209,376,99,23438,18257,11151,477,120,4.0,2,2,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,10.8,43,98200,132,1327,361,64,322,32,7073,0,3516,136,120,3.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.2,56,98200,0,41,362,0,0,0,0,0,0,0,130,2.6,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.2,64,98200,0,0,340,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.2,68,98200,0,0,335,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.2,73,98200,0,0,330,0,0,0,0,0,0,0,110,1.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.2,80,98200,0,0,324,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,12.2,79,98200,0,0,324,0,0,0,0,0,0,0,160,1.9,0,0,15.3,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98200,0,0,332,0,0,0,0,0,0,0,110,3.2,3,3,11.3,152,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98200,0,0,332,0,0,0,0,0,0,0,130,2.9,3,3,11.0,178,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98100,0,0,332,0,0,0,0,0,0,0,150,2.1,3,3,9.7,156,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.2,87,98200,8,331,331,1,100,0,136,0,55,2,120,2.3,3,3,8.9,173,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98200,192,1326,332,75,160,51,8219,969,5678,228,130,2.1,3,3,4.9,153,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,12.2,83,98300,451,1326,338,205,208,134,22734,12234,14939,660,160,2.6,4,4,6.4,196,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.2,79,98300,701,1326,341,340,221,223,38286,17001,25253,1198,110,1.3,4,4,6.4,310,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,12.6,72,98300,924,1326,351,489,276,297,55879,22481,34140,1689,170,2.4,4,4,9.7,416,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.8,65,98400,1103,1326,354,599,289,359,69430,24283,41853,2084,160,2.7,4,4,11.3,549,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,12.2,59,98300,1226,1326,364,717,373,372,84274,30433,44043,2094,160,2.8,4,4,11.3,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,12.2,49,98300,1286,1326,361,994,856,164,125201,52820,20763,863,140,3.9,0,0,11.5,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,12.2,44,98200,1278,1326,369,1058,989,105,137381,55880,13680,559,140,3.1,0,0,12.6,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,12.2,42,98200,1202,1326,385,875,738,206,107226,49077,25326,1171,140,3.4,2,2,12.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,12.1,43,98100,1065,1326,371,816,837,144,100788,51856,17820,833,160,5.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,11.9,42,98100,874,1326,372,645,773,136,77806,48354,16450,764,160,4.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,11.7,42,98100,644,1326,369,446,684,115,52407,40368,13492,604,140,4.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,11.8,45,98100,390,1326,366,240,545,80,27364,22638,9163,386,140,3.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,12.1,52,98100,134,1326,371,52,170,35,5729,0,3844,150,140,3.9,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,11.7,58,98200,0,50,356,0,0,0,0,0,0,0,170,2.9,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,11.8,64,98300,0,0,337,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.2,68,98300,0,0,335,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.2,73,98300,0,0,330,0,0,0,0,0,0,0,80,2.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.2,75,98300,0,0,328,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,12.2,79,98300,0,0,324,0,0,0,0,0,0,0,90,2.5,0,0,15.6,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.7,90,98200,0,0,337,0,0,0,0,0,0,0,120,2.7,5,5,10.2,152,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.8,90,98200,0,0,338,0,0,0,0,0,0,0,170,2.1,5,5,9.9,183,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,98300,0,0,340,0,0,0,0,0,0,0,140,2.2,5,5,11.0,187,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,98300,8,333,340,1,99,0,136,0,54,2,160,2.6,5,5,9.2,213,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,12.8,86,98400,193,1326,341,69,123,51,7594,677,5644,227,140,2.6,5,5,6.4,217,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,12.8,82,98400,451,1326,344,195,174,135,21597,10243,15081,667,140,2.6,5,5,6.7,253,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.8,77,98500,701,1326,349,328,192,226,36816,14751,25549,1214,80,2.0,5,5,7.8,318,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.8,71,98500,923,1326,355,458,215,309,52243,17821,35397,1756,50,1.7,5,5,6.9,414,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,12.8,66,98500,1103,1326,361,570,236,374,65742,19997,43397,2169,100,2.0,5,5,8.7,518,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,12.8,54,98500,1226,1326,377,716,370,374,84072,30093,44153,2100,150,2.8,5,5,10.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,12.9,48,98400,1286,1326,386,847,555,308,101725,41058,37256,1619,150,3.4,4,4,13.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,13.2,43,98400,1278,1326,377,1081,1030,88,142037,55934,11651,470,140,2.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,12.8,42,98300,1203,1326,377,966,927,124,122777,54130,15862,708,140,3.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,12.8,42,98300,1065,1326,378,820,845,141,101400,51649,17502,818,150,5.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,12.8,45,98300,875,1326,371,606,657,172,71721,43771,20422,966,150,5.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,12.8,50,98300,645,1326,363,410,542,146,47150,34563,16871,770,120,4.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.8,52,98300,391,1326,359,214,390,99,23947,18064,11100,476,120,4.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,12.8,56,98300,136,1326,354,62,282,34,6911,0,3721,145,120,4.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.7,60,98300,0,59,348,0,0,0,0,0,0,0,110,3.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.3,66,98400,0,0,338,0,0,0,0,0,0,0,100,2.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.8,71,98400,0,0,335,0,0,0,0,0,0,0,120,2.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.8,76,98400,0,0,330,0,0,0,0,0,0,0,110,1.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.8,81,98400,0,0,326,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.8,84,98300,0,0,324,0,0,0,0,0,0,0,120,1.8,0,0,15.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.7,87,98300,0,0,321,0,0,0,0,0,0,0,150,0.2,0,0,14.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.3,87,98200,0,0,318,0,0,0,0,0,0,0,150,1.6,0,0,12.6,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.8,91,98200,0,0,324,0,0,0,0,0,0,0,130,2.1,1,1,10.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,12.8,89,98300,8,336,339,1,94,0,135,0,57,2,100,2.9,5,5,6.4,183,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.9,83,98300,193,1325,344,72,142,51,7930,805,5682,228,90,1.8,5,5,6.4,187,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,13.3,82,98400,451,1325,347,205,209,134,22751,12108,14934,660,90,0.0,5,5,6.4,230,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,13.3,74,98400,701,1325,355,349,243,220,39290,18385,24938,1183,240,0.0,5,5,7.0,335,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,13.9,66,98400,923,1325,348,632,635,190,74734,42785,22544,1079,240,1.6,0,0,8.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.9,55,98400,1102,1325,363,836,817,157,103021,50307,19383,909,130,2.3,0,0,10.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,13.9,48,98400,1226,1325,374,971,902,137,122877,52783,17390,769,130,3.1,0,0,13.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,13.9,43,98400,1286,1325,383,1037,939,127,132956,53622,16300,665,130,3.1,0,0,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,14.0,38,98300,1278,1325,395,1061,995,102,138003,54643,13338,544,140,3.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,14.4,39,98300,1203,1325,395,961,918,128,121829,52750,16281,728,140,4.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.3,42,98300,1066,1325,388,792,779,166,96738,48781,20339,962,140,4.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,14.1,43,98200,876,1325,384,587,604,188,69023,40893,22232,1060,160,5.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,13.9,46,98200,647,1325,378,408,534,148,46945,33815,17058,779,150,5.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,13.9,48,98200,393,1325,374,227,455,92,25535,19849,10384,443,150,4.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,13.8,51,98200,138,1325,367,65,305,33,7194,0,3699,144,130,4.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.3,58,98200,0,67,354,0,0,0,0,0,0,0,140,3.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.3,66,98300,0,0,344,0,0,0,0,0,0,0,90,3.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.3,68,98300,0,0,341,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.3,70,98300,0,0,339,0,0,0,0,0,0,0,100,2.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.2,73,98300,0,0,336,0,0,0,0,0,0,0,110,2.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,12.8,73,98300,0,0,333,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.8,78,98200,0,0,328,0,0,0,0,0,0,0,120,1.6,0,0,15.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.9,82,98300,0,0,326,0,0,0,0,0,0,0,130,2.1,0,0,14.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,13.2,86,98300,0,0,324,0,0,0,0,0,0,0,120,1.7,0,0,10.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,13.3,86,98400,8,337,325,1,89,0,135,0,60,2,120,1.5,0,0,4.8,1473,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,13.4,83,98400,193,1325,328,93,314,48,10346,1020,5304,212,90,1.3,0,0,4.8,7620,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,13.9,79,98500,451,1325,334,269,483,104,30405,24193,11827,513,110,0.3,0,0,4.8,7620,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.0,67,98500,701,1325,347,472,629,140,55099,38980,16374,750,110,2.3,0,0,5.1,7620,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,14.4,63,98500,923,1325,355,648,679,175,77104,44285,20909,995,140,3.6,0,0,6.9,7620,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,14.4,60,98500,1102,1325,358,769,661,219,92376,44716,26458,1272,140,3.3,0,0,10.1,7620,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,14.4,53,98500,1226,1325,369,871,694,230,106094,46283,28118,1291,140,1.5,0,0,13.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,14.5,49,98500,1286,1325,376,948,763,208,117178,48672,25792,1089,140,2.1,0,0,14.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,15.0,51,98400,1279,1325,375,953,783,197,118056,48970,24518,1046,140,5.9,0,0,15.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,15.0,56,98400,1204,1325,367,816,607,264,97965,42401,31936,1505,170,6.9,0,0,14.5,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,15.0,59,98400,1067,1325,363,686,522,266,80749,37920,31448,1541,150,5.0,0,0,14.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,15.1,58,98400,877,1325,385,487,333,267,55646,25638,30642,1502,130,4.6,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,15.0,58,98300,648,1325,377,387,455,165,44089,29724,18852,870,120,4.6,2,2,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,14.9,60,98300,395,1325,361,240,527,84,27277,21372,9519,403,120,4.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,14.4,67,98400,139,1325,350,63,267,35,6940,0,3855,151,140,4.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,14.4,76,98400,0,76,340,0,0,0,0,0,0,0,130,2.4,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.4,79,98400,0,0,338,0,0,0,0,0,0,0,110,1.5,0,0,15.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,14.4,81,98400,0,0,336,0,0,0,0,0,0,0,170,1.7,0,0,14.2,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,14.4,81,98500,0,0,335,0,0,0,0,0,0,0,160,2.5,0,0,12.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,14.4,85,98400,0,0,332,0,0,0,0,0,0,0,140,2.1,0,0,11.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,14.4,89,98400,0,0,328,0,0,0,0,0,0,0,140,2.3,0,0,9.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,14.4,86,98500,0,0,331,0,0,0,0,0,0,0,130,2.9,0,0,7.8,152,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,14.4,86,98500,0,0,337,0,0,0,0,0,0,0,120,1.8,1,1,6.4,156,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,14.4,86,98500,0,0,337,0,0,0,0,0,0,0,140,0.3,1,1,6.4,187,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,14.4,83,98500,8,338,344,1,89,0,135,0,60,2,140,2.2,2,2,6.2,222,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,14.4,81,98600,193,1325,347,82,214,51,9049,931,5637,227,140,2.8,2,2,5.3,283,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,14.4,81,98700,451,1325,350,217,251,131,24062,14186,14622,646,130,3.4,3,3,8.0,309,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,14.4,80,98700,701,1325,351,337,215,224,37885,16168,25257,1200,180,2.4,3,3,8.3,339,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,14.3,74,98700,923,1325,359,447,194,312,50796,15925,35651,1772,190,1.6,4,4,9.7,405,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,14.9,67,98700,1102,1325,371,597,285,360,68947,23267,41869,2090,190,2.5,4,4,10.1,610,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,14.4,58,98700,1226,1325,382,695,331,388,81273,26980,45734,2184,110,2.1,5,5,13.8,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,14.3,49,98600,1286,1325,394,852,566,303,102386,40939,36651,1589,150,3.5,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,13.9,48,98600,1279,1325,374,991,860,161,124758,51813,20395,856,170,0.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,13.6,42,98500,1204,1325,383,973,940,119,124082,53809,15252,678,170,4.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,12.0,39,98500,1068,1325,378,798,790,162,97833,50468,19912,939,160,4.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,10.6,36,98400,878,1325,376,662,809,125,80416,50186,15302,707,170,3.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,9.8,35,98400,649,1325,372,446,666,120,52304,40756,14068,631,180,4.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,9.0,35,98400,396,1325,368,247,560,80,28291,24482,9167,386,180,5.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,9.7,42,98400,141,1325,357,66,302,34,7365,0,3813,149,170,4.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.0,57,98400,1,84,347,0,0,0,0,0,0,0,170,3.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.9,71,98400,0,0,342,0,0,0,0,0,0,0,160,4.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.9,77,98500,0,0,337,0,0,0,0,0,0,0,160,3.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,13.9,81,98500,0,0,332,0,0,0,0,0,0,0,170,2.9,0,0,16.1,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,13.9,80,98500,0,0,333,0,0,0,0,0,0,0,170,2.7,0,0,14.7,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,13.7,78,98500,0,0,334,0,0,0,0,0,0,0,160,3.1,0,0,16.1,391,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.8,80,98500,0,0,327,0,0,0,0,0,0,0,160,3.2,0,0,16.1,370,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.8,78,98500,0,0,329,0,0,0,0,0,0,0,160,3.4,0,0,16.1,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.8,78,98500,0,0,329,0,0,0,0,0,0,0,170,2.6,0,0,16.1,400,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.8,78,98500,8,339,329,1,89,0,135,0,60,2,180,2.7,0,0,16.1,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.8,78,98600,193,1324,329,81,207,51,8949,1160,5650,227,140,2.4,0,0,16.1,447,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.8,75,98600,451,1324,331,240,347,121,26805,19183,13629,598,130,2.5,0,0,16.1,452,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,13.4,78,98600,700,1324,332,414,434,185,47291,30282,21187,991,170,2.6,0,0,15.0,421,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,14.3,85,98700,922,1324,331,578,492,235,67198,35771,27536,1339,180,3.2,0,0,10.7,326,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,13.9,81,98700,1101,1324,332,713,532,271,84294,39011,32191,1571,170,3.6,0,0,9.9,398,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,13.9,80,98700,1225,1324,333,808,558,291,96641,40666,35048,1637,180,2.6,0,0,16.1,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,13.9,76,98700,1286,1324,337,854,571,300,102761,41349,36321,1572,160,2.8,0,0,15.0,433,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.9,78,98700,1279,1324,335,849,569,299,102052,41274,36177,1586,180,3.1,0,0,16.1,492,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,13.8,77,98700,1205,1324,336,792,554,288,94563,40452,34597,1638,170,0.6,0,0,16.1,522,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.2,73,98700,1068,1324,336,688,525,265,81155,38808,31395,1536,170,4.0,0,0,16.1,562,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.8,72,98600,879,1324,335,546,481,226,63311,35404,26388,1275,190,3.6,0,0,16.1,637,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,12.5,71,98600,651,1324,334,379,420,172,43063,28808,19706,911,180,3.9,0,0,16.1,622,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,12.2,70,98600,398,1324,333,204,323,107,22781,16021,12010,518,180,3.8,0,0,16.1,628,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,12.2,70,98600,143,1324,333,56,179,37,6212,0,4099,161,170,2.2,0,0,16.1,732,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.0,69,98700,1,93,333,0,0,0,0,0,0,0,180,2.7,0,0,16.1,741,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.2,68,98700,0,0,329,0,0,0,0,0,0,0,180,2.9,0,0,16.1,773,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.8,71,98700,0,0,330,0,0,0,0,0,0,0,190,2.2,0,0,16.1,661,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.3,76,98800,0,0,328,0,0,0,0,0,0,0,160,2.4,0,0,15.9,614,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98800,0,0,326,0,0,0,0,0,0,0,170,1.7,0,0,14.7,640,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.7,80,98700,0,0,326,0,0,0,0,0,0,0,100,2.5,0,0,16.1,644,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.1,77,98700,0,0,326,0,0,0,0,0,0,0,120,2.2,0,0,16.1,661,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.7,72,98700,0,0,328,0,0,0,0,0,0,0,160,2.5,0,0,16.1,605,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.7,72,98800,0,0,328,0,0,0,0,0,0,0,130,2.1,0,0,16.1,610,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.8,73,98800,8,339,328,1,89,0,135,0,60,2,140,2.2,0,0,16.1,816,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.8,73,98900,193,1324,328,87,256,50,9613,1423,5523,221,140,2.7,0,0,16.1,865,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,12.2,74,98900,450,1324,329,256,426,111,28905,22665,12604,549,150,2.9,0,0,16.1,780,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.2,73,99000,700,1324,330,444,532,162,51207,35660,18829,872,140,2.1,0,0,16.1,890,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,12.2,74,99000,922,1324,329,619,602,200,72979,42091,23700,1137,190,1.9,0,0,16.1,899,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.1,69,99000,1101,1324,334,764,650,223,91743,45365,26947,1295,170,2.4,0,0,16.1,832,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,11.8,65,99100,1225,1324,336,865,682,235,105360,47114,28751,1320,190,1.5,0,0,16.1,870,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,12.1,64,99100,1286,1324,339,915,696,239,112130,47618,29497,1254,200,1.5,0,0,16.1,820,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.6,56,99100,1279,1324,347,910,694,239,111392,47779,29426,1266,80,1.5,0,0,16.1,1040,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,11.1,51,99000,1205,1324,351,849,676,233,103174,47184,28503,1326,80,1.6,0,0,16.1,1071,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,11.2,50,99000,1069,1324,352,738,642,220,88398,45266,26441,1274,160,2.0,0,0,16.1,1343,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.5,52,99000,880,1324,352,586,590,194,68843,41424,22871,1092,160,1.6,0,0,16.1,2743,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,11.7,54,99000,652,1324,350,407,515,153,46735,33908,17687,810,190,2.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,11.6,55,99000,399,1324,348,220,398,100,24693,19120,11260,483,190,3.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.1,54,99000,144,1324,346,61,222,37,6752,0,4097,161,170,2.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.1,59,99000,1,100,339,0,0,0,0,0,0,0,150,2.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.1,64,99000,0,0,333,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.1,68,99000,0,0,329,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.0,70,99000,0,0,326,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,10.6,72,99000,0,0,322,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.7,74,99000,0,0,321,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.7,79,99000,0,0,316,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,10.2,73,99000,0,0,319,0,0,0,0,0,0,0,270,0.0,0,0,16.1,818,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.0,78,99000,0,0,325,0,0,0,0,0,0,0,270,0.0,1,1,16.1,778,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.5,77,99100,8,338,327,1,89,0,135,0,60,2,270,0.2,2,2,16.1,710,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.2,74,99100,192,1324,328,78,182,51,8594,1359,5689,228,270,1.3,2,2,16.1,752,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,11.1,71,99100,450,1324,339,224,283,128,24996,16424,14323,630,270,0.0,3,3,16.1,701,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.1,66,99200,699,1324,348,364,286,213,41180,21737,24234,1145,210,0.2,4,4,16.1,701,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,11.1,60,99200,921,1324,355,510,326,284,58616,26404,32765,1613,210,1.5,4,4,16.1,701,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.1,53,99100,1100,1324,369,611,313,351,70941,26202,40963,2036,110,2.4,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.3,51,99100,1225,1324,370,722,384,367,85027,31378,43512,2065,170,1.9,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,12.2,48,99100,1286,1324,362,960,787,196,119399,50763,24460,1025,170,4.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,12.2,48,99000,1279,1324,362,935,746,215,115356,49369,26612,1136,150,5.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,12.2,49,99000,1205,1324,360,872,725,211,106698,48564,26004,1201,150,3.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,12.1,48,98900,1070,1324,361,757,685,203,91169,46694,24545,1176,160,5.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.9,48,98900,881,1324,360,623,694,161,74272,45647,19328,910,160,4.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.7,50,98800,653,1324,356,448,663,121,52458,39956,14243,641,110,3.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.7,51,98800,401,1324,355,244,522,86,27696,22975,9767,414,110,3.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,11.8,57,98800,145,1324,346,67,280,36,7398,0,4014,157,150,4.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,12.2,71,98800,1,107,332,0,0,0,0,0,0,0,130,3.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.2,78,98800,0,0,325,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,98800,0,0,323,0,0,0,0,0,0,0,80,2.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,98800,0,0,321,0,0,0,0,0,0,0,90,2.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,12.2,84,98800,0,0,320,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.2,89,98700,0,0,316,0,0,0,0,0,0,0,160,1.3,0,0,15.6,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98600,0,0,318,0,0,0,0,0,0,0,160,0.0,0,0,12.9,213,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.2,86,98600,0,0,318,0,0,0,0,0,0,0,60,0.4,0,0,12.9,217,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.1,83,98600,0,0,320,0,0,0,0,0,0,0,60,2.4,0,0,12.9,244,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.8,84,98600,8,337,318,1,89,0,135,0,61,2,60,1.6,0,0,12.6,248,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.2,83,98700,192,1324,321,90,284,49,9946,1307,5413,217,160,2.1,0,0,11.0,274,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,12.2,83,98700,450,1324,321,265,471,105,30017,24284,11963,519,90,2.0,0,0,9.0,280,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.8,78,98700,699,1324,323,459,586,150,53301,38190,17453,803,150,1.3,0,0,6.4,318,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,12.2,76,98700,921,1324,327,640,661,180,76104,44662,21526,1025,40,0.3,0,0,6.4,407,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.8,67,98700,1100,1324,334,790,713,197,95837,48040,24054,1146,40,0.2,0,0,6.4,510,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,12.2,59,98700,1224,1324,345,896,747,205,110152,49357,25331,1152,130,1.6,0,0,6.7,692,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,12.2,53,98700,1286,1324,354,948,762,208,117358,49951,25841,1087,100,3.1,0,0,9.4,945,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,12.3,51,98600,1279,1324,358,943,761,207,116611,49841,25783,1097,160,3.5,0,0,8.3,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,12.8,49,98600,1206,1324,364,880,742,204,107953,48847,25169,1160,160,5.7,0,0,10.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,12.8,52,98500,1070,1324,360,765,705,195,92471,47113,23678,1132,170,5.5,0,0,13.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.8,52,98400,882,1324,359,608,649,176,72004,43487,20874,990,140,4.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,12.8,54,98400,654,1324,357,423,568,142,48910,35922,16515,753,160,4.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,12.8,56,98400,402,1324,354,230,442,96,25906,20413,10824,463,160,4.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,12.8,62,98400,147,1324,346,65,249,37,7161,0,4122,162,140,3.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.8,69,98400,1,114,338,0,0,0,0,0,0,0,140,3.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.8,76,98500,0,0,330,0,0,0,0,0,0,0,140,2.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.8,81,98500,0,0,326,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.8,83,98500,0,0,324,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.8,83,98500,0,0,324,0,0,0,0,0,0,0,140,2.1,0,0,16.1,288,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98400,0,0,326,0,0,0,0,0,0,0,130,2.0,0,0,12.6,309,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.7,80,98400,0,0,326,0,0,0,0,0,0,0,170,1.6,0,0,11.3,339,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.2,78,98400,0,0,332,0,0,0,0,0,0,0,130,1.8,1,1,11.3,370,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.2,77,98400,0,0,332,0,0,0,0,0,0,0,160,0.6,1,1,11.9,407,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.1,77,98400,8,335,332,1,94,0,135,0,58,2,170,3.6,1,1,16.1,461,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,11.8,76,98500,192,1323,336,78,189,51,8632,1147,5643,227,150,3.5,2,2,15.9,492,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.1,77,98600,449,1323,337,214,246,131,23807,14252,14601,644,170,3.1,2,2,14.2,522,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.7,71,98600,698,1323,340,349,247,219,39328,18880,24783,1173,170,3.3,2,2,13.4,558,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,12.0,69,98700,920,1323,344,482,264,298,55057,21732,34248,1694,170,4.4,2,2,16.1,604,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,13.2,69,98800,1099,1323,355,596,286,358,69008,23763,41744,2081,150,3.5,3,3,16.1,823,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,12.8,64,98700,1224,1323,358,689,322,391,80604,26703,46052,2198,110,2.6,3,3,16.1,891,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,12.2,53,98800,1285,1323,369,806,473,346,95943,36757,41536,1813,170,3.7,3,3,16.1,1167,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.3,53,98800,1279,1323,373,797,463,349,94762,36146,41807,1847,170,4.0,4,4,16.1,1214,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.8,52,98700,1206,1323,377,776,516,305,92291,38882,36510,1732,160,3.8,4,4,16.1,1170,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,12.8,56,98700,1071,1323,372,632,393,314,73623,31213,36766,1821,180,4.7,4,4,16.1,1067,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,12.6,56,98700,883,1323,373,492,336,268,56364,26542,30836,1510,180,5.1,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.5,57,98600,655,1323,371,344,301,195,38830,21850,22143,1034,180,4.8,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,12.2,55,98600,403,1323,369,208,324,109,23147,16297,12192,527,180,4.7,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.0,57,98700,148,1323,363,62,216,38,6879,0,4228,166,150,4.7,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,10.9,57,98700,1,120,352,0,0,0,0,0,0,0,310,2.6,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.0,59,98700,0,0,333,0,0,0,0,0,0,0,320,2.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,9.8,60,98800,0,0,330,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.9,59,98700,0,0,327,0,0,0,0,0,0,0,280,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,8.9,60,98700,0,0,324,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,8.8,63,98700,0,0,321,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,8.3,67,98600,0,0,314,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,8.3,67,98600,0,0,313,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.3,70,98600,0,0,311,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,8.5,72,98700,8,333,310,1,99,0,136,0,55,2,100,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,9.6,71,98700,191,1323,317,95,337,46,10556,1577,5164,205,100,0.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.5,64,98800,448,1323,330,281,553,93,32094,27435,10714,460,100,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,9.9,55,98900,697,1323,337,486,684,126,57284,42740,14875,674,80,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,9.3,47,98900,919,1323,346,678,769,144,82149,49930,17561,821,80,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,9.0,43,98900,1099,1323,350,838,826,152,103776,53185,18906,883,150,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,9.4,38,98900,1224,1323,362,950,862,153,119550,54358,19369,862,150,4.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,9.2,35,98900,1285,1323,367,1006,879,153,127566,54958,19453,799,160,3.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,8.1,32,98900,1279,1323,368,1001,877,153,126891,55450,19463,808,150,5.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,7.1,30,98800,1206,1323,367,935,857,153,117479,55239,19334,870,150,5.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,6.8,28,98800,1072,1323,370,814,818,151,100520,53736,18768,878,120,4.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,7.0,28,98700,884,1323,371,647,756,142,78133,50013,17242,803,170,4.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,7.2,29,98700,656,1323,369,451,665,121,52982,41857,14273,641,330,3.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,7.2,31,98700,404,1323,366,246,523,86,28066,24617,9889,419,330,2.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,7.1,32,98700,149,1323,360,70,299,37,7794,0,4066,159,290,1.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,6.7,34,98700,1,126,354,0,0,0,0,0,0,0,290,2.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,6.6,37,98800,0,0,346,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,6.2,39,98800,0,0,341,0,0,0,0,0,0,0,300,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,6.8,43,98800,0,0,337,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,7.3,46,98800,0,0,334,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,7.9,51,98700,0,0,330,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,8.4,55,98700,0,0,328,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.0,61,98700,0,0,324,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.3,67,98700,0,0,320,0,0,0,0,0,0,0,360,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,9.0,67,98800,8,331,318,1,105,0,137,0,52,2,360,1.3,0,0,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,9.4,63,98900,190,1323,324,99,380,44,11031,1315,4941,196,280,0.2,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,9.2,52,98900,448,1323,337,292,616,84,33757,29595,9717,413,280,1.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,8.2,42,98900,697,1323,348,507,758,108,60505,45899,12908,578,280,0.6,0,0,16.1,1153,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,7.4,35,99000,919,1323,356,708,848,119,87046,53287,14655,675,280,0.3,0,0,15.9,1105,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,5.2,24,99000,1098,1323,371,875,909,120,110356,57214,15215,697,130,2.1,0,0,13.3,975,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,6.0,23,99000,1223,1323,383,992,946,118,127381,58154,15152,661,130,2.0,0,0,6.2,984,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,5.5,21,98900,1285,1323,388,1051,963,115,136114,58832,15013,604,130,2.0,0,0,5.6,1031,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,5.0,19,98900,1279,1323,390,1045,961,116,135338,58992,15031,611,130,4.7,0,0,10.4,1006,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,5.1,19,98800,1207,1323,393,977,941,118,125164,58394,15183,670,170,5.1,0,0,14.7,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,5.8,19,98800,1072,1323,395,850,901,120,106871,56639,15189,699,170,5.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,6.4,21,98700,885,1323,393,677,836,118,82899,52912,14473,665,300,4.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,6.4,22,98700,657,1323,388,472,739,105,56093,44715,12492,555,300,3.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,6.0,23,98700,405,1323,383,258,586,79,29669,26681,9072,381,300,3.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,5.4,24,98700,150,1323,374,74,340,36,8257,0,3968,155,300,4.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,4.7,25,98800,1,131,365,0,0,0,0,0,0,0,280,2.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,6.4,31,98800,0,0,360,0,0,0,0,0,0,0,300,2.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,7.9,36,98800,0,0,356,0,0,0,0,0,0,0,260,1.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,8.4,40,98800,0,0,351,0,0,0,0,0,0,0,280,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,8.9,45,98900,0,0,347,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,9.0,47,98800,0,0,343,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,9.4,50,98800,0,0,342,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.4,57,98700,0,0,332,0,0,0,0,0,0,0,360,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,9.4,60,98700,0,0,328,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,9.5,59,98800,8,327,329,1,111,0,137,0,49,1,350,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,10.0,55,98800,190,1323,338,100,401,43,11217,905,4809,190,260,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,9.9,44,98900,447,1323,354,298,647,79,34529,30039,9213,390,260,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,9.2,35,98900,696,1323,369,517,794,99,62043,46530,11946,532,260,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,7.5,26,98900,918,1323,383,722,886,107,89469,54332,13280,607,120,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,5.3,19,98900,1097,1323,394,892,948,106,113601,58211,13502,614,120,0.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,3.0,15,98900,1223,1323,399,1012,985,102,131450,60316,13241,572,120,2.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.2,1.1,12,98900,1285,1323,405,1072,1002,99,140589,61406,13013,517,270,2.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,0.8,11,98800,1279,1323,410,1067,1001,99,139821,61470,13041,524,290,2.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.5,-1.0,9,98800,1207,1323,409,997,981,102,129314,61431,13304,580,290,3.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.4,-0.3,10,98700,1073,1323,404,868,940,106,110367,59771,13538,616,330,6.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,-1.9,9,98700,885,1323,400,691,874,106,85555,56586,13194,600,300,4.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,-1.9,10,98700,658,1323,395,483,775,97,57864,48124,11655,513,290,4.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,-1.2,11,98700,407,1323,393,264,617,75,30582,29059,8681,363,290,4.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,2.5,16,98800,151,1323,387,76,361,35,8515,0,3918,152,300,5.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,6.4,24,98800,1,135,381,0,0,0,0,0,0,0,300,3.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,5.2,24,98800,0,0,372,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,6.1,27,98800,0,0,367,0,0,0,0,0,0,0,260,2.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,6.2,29,98700,0,0,362,0,0,0,0,0,0,0,280,1.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,6.8,33,98700,0,0,358,0,0,0,0,0,0,0,310,2.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,7.4,35,98700,0,0,356,0,0,0,0,0,0,0,310,2.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,8.3,39,98600,0,0,354,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,8.4,40,98600,0,0,351,0,0,0,0,0,0,0,310,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,9.0,45,98500,0,0,346,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,9.3,49,98500,7,323,342,1,117,0,138,0,46,1,340,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,8.9,41,98600,189,1322,352,99,392,43,11071,1111,4827,191,300,0.4,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,8.6,33,98600,446,1322,369,315,739,66,37017,32216,7732,322,300,2.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,6.2,23,98700,695,1322,385,575,989,55,72174,52378,6941,296,300,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,2.5,14,98600,917,1322,397,763,993,75,97225,58999,9533,424,270,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.5,-4.1,7,98600,1097,1322,404,918,1004,85,118932,62505,11104,496,270,0.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.2,-10.2,4,98600,1222,1322,409,1042,1042,79,138017,64903,10536,446,270,2.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.7,-11.5,3,98500,1284,1322,415,1094,1041,83,145496,65092,11055,433,170,1.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.2,-8.8,4,98500,1279,1322,422,1057,983,106,138098,63144,13931,561,310,2.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.5,-8.1,4,98400,1207,1322,425,959,904,133,122183,60665,17016,755,310,4.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.8,-6.9,5,98400,1073,1322,431,724,602,236,86859,47420,28428,1369,300,5.1,1,1,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.9,-7.7,4,98400,886,1322,435,560,507,220,65662,40856,25949,1244,300,5.1,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.7,-8.1,5,98300,659,1322,427,390,440,171,44788,33451,19708,905,310,4.8,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.5,-7.0,5,98300,407,1322,423,211,329,110,23722,19127,12380,532,310,4.5,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,0.7,11,98400,152,1322,422,63,207,39,7010,0,4387,172,290,3.5,2,2,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,1.4,12,98400,1,139,403,0,0,0,0,0,0,0,290,2.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.6,3.4,16,98400,0,0,395,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,3.9,18,98400,0,0,390,0,0,0,0,0,0,0,280,2.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,4.1,19,98400,0,0,384,0,0,0,0,0,0,0,300,1.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,6,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,5.3,22,98400,0,0,380,0,0,0,0,0,0,0,320,1.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,6.9,27,98400,0,0,375,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,7.8,33,98300,0,0,365,0,0,0,0,0,0,0,310,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,7.9,34,98300,0,0,362,0,0,0,0,0,0,0,310,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,8.2,35,98400,0,0,362,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,7.9,35,98400,7,319,358,1,130,0,139,0,39,1,310,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,7.8,32,98400,188,1322,367,100,406,42,11191,1115,4738,187,290,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,5.2,22,98500,445,1322,379,298,657,77,34699,31644,9027,381,290,0.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,5.8,18,98400,694,1322,402,518,804,96,62434,48103,11641,516,290,2.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.8,3.2,12,98400,916,1322,416,725,897,103,90184,56240,12844,585,290,2.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.9,0.4,8,98500,1096,1322,435,896,959,101,114625,60167,12989,588,270,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,43.0,5.4,10,98500,1222,1322,454,1017,996,97,132474,59617,12638,544,220,2.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,44.3,1.2,7,98400,1284,1322,455,1078,1014,94,141899,61624,12378,490,150,3.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,44.0,1.6,8,98400,1279,1322,454,1073,1012,94,141155,61464,12414,497,250,4.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,44.9,0.9,7,98400,1207,1322,458,1004,992,97,130575,61162,12707,552,260,2.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,43.7,-1.5,6,98400,1074,1322,447,874,952,102,111523,60382,13012,590,260,3.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,42.8,-2.7,6,98300,887,1322,440,697,886,103,86503,57140,12786,580,310,4.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.8,-4.2,5,98300,660,1322,432,487,787,94,58570,48977,11382,500,300,5.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.9,-4.7,5,98300,408,1322,427,268,628,74,31031,30003,8565,357,300,5.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.7,-6.7,5,98400,153,1322,417,78,369,35,8708,0,3940,153,310,4.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,-6.0,6,98400,1,143,409,0,0,0,0,0,0,0,280,2.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,-1.5,9,98400,0,0,404,0,0,0,0,0,0,0,230,0.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,2.5,14,98500,0,0,402,0,0,0,0,0,0,0,230,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,5.7,20,98500,0,0,394,0,0,0,0,0,0,0,90,1.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,6,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,15.6,53,98500,0,0,376,0,0,0,0,0,0,0,110,3.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,15.5,56,98400,0,0,371,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,15.0,56,98400,0,0,367,0,0,0,0,0,0,0,130,0.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.1,61,98400,0,0,362,0,0,0,0,0,0,0,130,4.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,15.5,65,98400,0,0,358,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,15.1,61,98500,7,314,361,1,138,0,140,0,36,1,110,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,15.3,60,98600,187,1322,364,95,360,44,10559,0,4924,196,120,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,14.0,50,98700,444,1322,371,286,593,86,32760,26834,9954,425,120,1.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,14.3,46,98700,693,1322,380,467,629,138,54516,38628,16127,738,120,3.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,13.8,41,98700,915,1322,386,635,657,180,75381,43635,21457,1022,110,4.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,13.2,34,98700,1095,1322,411,681,468,294,80059,35717,34746,1707,150,3.6,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,12.8,30,98700,1221,1322,406,915,791,184,113333,50431,22888,1035,130,3.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,13.1,29,98700,1284,1322,430,841,544,312,100854,40317,37698,1634,110,3.7,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,15.3,32,98700,1279,1322,437,828,525,320,98999,38418,38490,1688,160,4.6,3,3,15.6,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,16.5,39,98600,1208,1322,422,726,412,350,85321,31480,41389,1986,140,6.8,2,2,13.4,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,15.7,41,98600,1074,1322,399,694,528,265,81742,37873,31402,1538,150,4.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,15.4,41,98600,887,1322,396,550,476,230,63663,34198,26789,1300,170,4.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,15.1,42,98600,661,1322,393,423,552,147,48776,34399,17052,781,170,4.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,14.4,40,98600,409,1322,391,249,520,88,28256,22496,10018,427,170,4.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,14.7,44,98600,154,1322,386,76,341,36,8436,0,4045,159,180,4.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,16.3,56,98600,2,149,376,0,0,0,0,0,0,0,140,3.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,17.1,66,98600,0,0,368,0,0,0,0,0,0,0,130,2.9,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,16.5,63,98700,0,0,367,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,15.6,60,98700,0,0,366,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,15.5,59,98600,0,0,366,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,14.5,56,98500,0,0,364,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,12.2,52,98500,0,0,356,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,15.3,67,98500,0,0,355,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,16.5,75,98500,0,0,353,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,15.5,72,98600,7,309,351,1,153,0,142,0,29,1,130,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,15.2,66,98600,186,1322,356,92,331,45,10170,0,5026,200,150,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,15.7,63,98600,443,1322,363,276,548,93,31458,24840,10594,455,150,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,12.9,45,98700,692,1322,373,481,680,125,56581,41104,14802,672,130,2.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,10.7,34,98700,914,1322,381,674,765,145,81473,49106,17566,822,150,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,11.0,32,98700,1095,1322,390,834,823,152,103115,52071,18926,885,150,1.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,10.4,27,98600,1221,1322,400,947,859,154,119047,53740,19413,866,170,3.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,9.2,23,98600,1284,1322,404,1004,876,153,127301,54871,19514,802,170,5.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,7.7,21,98600,1279,1322,403,1000,875,153,126813,55535,19521,809,160,4.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,7.4,20,98500,1208,1322,406,936,856,154,117584,55048,19405,872,150,4.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,8.4,22,98500,1074,1322,404,816,817,152,100748,53040,18834,882,160,6.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,8.8,24,98500,888,1322,399,651,756,143,78493,49331,17305,807,160,6.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,9.5,27,98500,661,1322,393,455,666,122,53432,41229,14375,647,130,5.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,10.3,30,98500,410,1322,389,250,525,88,28519,24203,9998,425,130,5.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,11.9,38,98500,155,1322,379,73,303,38,8117,0,4211,165,140,4.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,13.4,49,98500,2,152,368,0,0,0,0,0,0,0,130,3.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.1,57,98500,0,0,360,0,0,0,0,0,0,0,120,3.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,15.1,65,98500,0,0,356,0,0,0,0,0,0,0,110,3.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,15.7,72,98600,0,0,352,0,0,0,0,0,0,0,130,2.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,16.1,79,98600,0,0,347,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,16.1,83,98600,0,0,344,0,0,0,0,0,0,0,130,2.0,0,0,15.6,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,16.1,93,98600,0,0,335,0,0,0,0,0,0,0,130,1.5,0,0,12.6,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,16.1,94,98500,0,0,334,0,0,0,0,0,0,0,160,1.2,0,0,10.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,16.1,96,98500,0,0,347,0,0,0,0,0,0,0,160,1.5,3,3,8.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,16.1,93,98600,7,304,350,1,66,1,131,0,87,3,160,1.3,3,3,6.2,213,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.1,89,98600,185,1322,355,68,133,49,7432,62,5411,217,160,0.0,4,4,5.1,217,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,16.2,85,98700,442,1322,359,202,215,130,22381,11686,14505,641,160,0.4,4,4,6.4,258,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.7,79,98700,691,1322,369,340,234,218,38161,16940,24578,1167,160,0.0,4,4,4.8,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,16.0,64,98700,913,1322,363,619,618,192,73009,40841,22800,1093,110,1.6,0,0,10.6,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,15.5,52,98700,1094,1322,377,813,777,171,99423,47973,20953,991,110,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,15.1,43,98700,1220,1322,391,971,909,132,123055,51947,16852,746,110,3.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,15.6,42,98700,1283,1322,396,999,867,158,125922,50666,19966,826,110,3.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,15.7,40,98600,1279,1322,403,999,873,154,126098,50745,19543,813,110,3.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,16.0,41,98600,1208,1322,401,880,737,206,107657,46710,25357,1169,140,4.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,15.5,41,98500,1075,1322,399,779,728,186,94294,46363,22686,1082,140,4.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,15.3,42,98500,888,1322,394,600,611,189,70542,40708,22300,1066,130,5.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,15.0,44,98500,662,1322,389,429,569,144,49545,35176,16686,763,150,5.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,15.0,45,98500,411,1322,387,237,451,97,26703,20446,10966,471,150,5.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,15.0,48,98500,155,1322,381,74,306,38,8168,0,4207,166,120,4.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,15.0,53,98500,2,155,372,0,0,0,0,0,0,0,120,3.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,15.1,59,98500,0,0,365,0,0,0,0,0,0,0,120,2.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,15.6,65,98500,0,0,360,0,0,0,0,0,0,0,80,3.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.7,70,98600,0,0,355,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.1,76,98600,0,0,350,0,0,0,0,0,0,0,100,2.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,16.1,79,98600,0,0,347,0,0,0,0,0,0,0,120,1.6,0,0,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,16.1,84,98500,0,0,342,0,0,0,0,0,0,0,140,2.0,0,0,14.2,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.1,88,98500,0,0,339,0,0,0,0,0,0,0,90,1.5,0,0,12.4,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,16.1,90,98500,0,0,344,0,0,0,0,0,0,0,100,1.6,1,1,9.3,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,16.1,96,98500,6,298,350,1,41,1,129,0,104,3,140,2.2,4,4,4.2,188,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,16.7,99,98600,184,1322,351,58,81,47,6367,0,5140,206,160,1.5,4,4,2.4,131,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,16.6,91,98600,441,1322,354,192,183,131,21280,9942,14597,645,130,2.2,3,3,3.0,183,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,16.2,75,98600,690,1322,363,372,322,204,41987,22770,23118,1091,120,2.6,2,2,6.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,16.6,69,98600,912,1322,360,617,614,194,72693,40333,22914,1100,150,2.8,0,0,8.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,16.1,59,98600,1093,1322,371,783,707,198,94574,45318,24080,1152,140,4.1,0,0,9.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,16.1,53,98600,1219,1322,379,874,706,222,106473,45629,27235,1252,150,4.2,0,0,14.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,16.0,50,98500,1283,1322,384,941,752,212,116058,47257,26246,1109,160,4.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,15.7,46,98500,1279,1322,389,954,784,196,118320,48425,24398,1033,110,4.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,16.1,46,98400,1208,1322,391,892,763,195,109627,47457,24039,1104,150,5.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,16.1,50,98400,1075,1322,385,757,675,207,90855,44106,25030,1204,150,4.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,16.1,51,98400,889,1322,383,593,591,195,69522,39431,22993,1102,150,4.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,16.1,53,98400,662,1322,379,416,521,155,47730,32663,17835,821,150,4.9,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,16.1,55,98300,411,1322,377,236,444,98,26548,19831,11067,476,150,5.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,16.0,58,98300,156,1322,371,72,283,39,7961,0,4293,169,140,4.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,15.7,65,98300,2,158,359,0,0,0,0,0,0,0,130,3.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,16.1,74,98400,0,0,352,0,0,0,0,0,0,0,140,3.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,16.1,79,98400,0,0,347,0,0,0,0,0,0,0,150,2.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,16.0,81,98400,0,0,344,0,0,0,0,0,0,0,150,2.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.7,82,98400,0,0,342,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,16.1,88,98400,0,0,339,0,0,0,0,0,0,0,150,1.6,0,0,15.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,16.1,93,98300,0,0,352,0,0,0,0,0,0,0,150,2.0,4,4,9.4,244,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,16.0,93,98300,0,0,349,0,0,0,0,0,0,0,130,1.6,3,3,8.0,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,15.7,91,98300,0,0,345,0,0,0,0,0,0,0,80,1.8,2,2,8.0,253,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,15.6,90,98300,6,292,341,1,204,0,152,0,9,0,110,0.3,1,1,6.4,309,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,15.5,85,98300,183,1321,338,90,327,44,9922,0,4935,196,110,1.8,0,0,6.7,339,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,15.0,78,98400,439,1321,342,274,548,92,31214,24948,10481,450,110,0.0,0,0,8.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,15.6,71,98400,689,1321,353,480,684,123,56372,39665,14544,660,100,0.2,0,0,8.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,15.6,59,98400,911,1321,368,674,772,142,81336,46456,17174,805,100,1.7,0,0,11.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,15.6,51,98400,1092,1321,379,836,831,149,103183,49391,18419,862,110,3.2,0,0,14.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,15.6,44,98400,1219,1321,393,950,869,149,119303,50629,18813,841,120,3.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,15.4,39,98400,1282,1321,401,1008,886,148,127638,51225,18877,778,100,3.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,14.4,34,98300,1279,1321,408,1005,885,149,127249,51946,18893,784,150,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,14.5,33,98300,1208,1321,411,941,866,149,118021,51356,18815,846,170,2.7,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,15.0,34,98200,1075,1321,412,820,826,148,101133,49611,18335,860,140,3.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,14.6,36,98200,889,1321,405,654,764,140,78827,46617,16972,793,150,5.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,14.4,39,98200,663,1321,395,458,673,121,53679,39232,14195,640,120,5.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,13.9,39,98200,412,1321,391,252,529,87,28680,23105,9959,424,120,4.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,14.1,43,98200,156,1321,384,74,303,38,8194,0,4244,167,100,4.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,15.0,55,98200,2,160,369,0,0,0,0,0,0,0,100,3.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.1,61,98300,0,0,362,0,0,0,0,0,0,0,100,3.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,15.7,67,98300,0,0,357,0,0,0,0,0,0,0,120,3.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,16.1,71,98400,0,0,355,0,0,0,0,0,0,0,120,2.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,16.2,77,98400,0,0,350,0,0,0,0,0,0,0,130,2.5,0,0,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.7,84,98400,0,0,346,0,0,0,0,0,0,0,130,1.8,0,0,14.2,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,16.6,84,98300,0,0,345,0,0,0,0,0,0,0,130,0.0,0,0,12.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.2,84,98300,0,0,343,0,0,0,0,0,0,0,130,0.0,0,0,12.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,16.5,87,98300,0,0,343,0,0,0,0,0,0,0,130,0.0,0,0,12.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,15.7,84,98300,6,285,340,1,222,0,160,0,4,0,180,0.0,0,0,12.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,16.2,80,98400,181,1321,347,91,347,43,10065,0,4807,191,180,0.0,0,0,12.4,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,16.7,74,98400,438,1321,356,279,580,87,31891,24755,9952,426,180,0.2,0,0,10.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,16.5,61,98400,687,1321,371,490,723,114,57859,40191,13506,610,180,1.5,0,0,13.4,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,15.3,44,98500,910,1321,391,689,814,128,83787,47836,15618,726,70,1.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,14.1,34,98500,1091,1321,406,855,876,131,106592,51573,16445,762,70,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,14.7,30,98500,1218,1321,421,972,914,130,123370,52329,16544,732,110,2.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.7,12.9,24,98500,1282,1321,430,1032,931,128,132228,54039,16481,672,130,2.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.9,13.0,24,98400,1279,1321,431,1029,931,128,131762,53955,16493,677,140,3.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.5,11.5,21,98400,1208,1321,432,963,911,130,122269,54418,16581,737,150,4.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,13.5,26,98300,1076,1321,426,840,871,131,104593,51795,16420,763,140,4.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,12.9,27,98300,890,1321,418,670,807,127,81423,48918,15501,718,140,5.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,12.7,30,98300,663,1321,407,469,712,112,55370,41377,13260,594,120,5.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,14.1,38,98300,412,1321,396,258,561,83,29484,23808,9537,405,120,5.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,15.0,48,98400,156,1321,380,76,323,38,8411,0,4183,165,110,4.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,15.3,57,98400,2,161,368,0,0,0,0,0,0,0,100,3.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,17.2,67,98400,0,0,367,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,17.2,71,98500,0,0,362,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,17.2,74,98500,0,0,359,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,17.2,77,98500,0,0,356,0,0,0,0,0,0,0,120,3.4,0,0,15.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,17.2,80,98400,0,0,352,0,0,0,0,0,0,0,80,1.8,0,0,14.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,17.2,79,98400,0,0,353,0,0,0,0,0,0,0,210,0.2,0,0,14.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,17.2,83,98400,0,0,350,0,0,0,0,0,0,0,210,1.3,0,0,14.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,17.2,81,98500,0,0,352,0,0,0,0,0,0,0,210,0.0,0,0,14.2,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,17.2,80,98500,5,277,352,1,239,0,178,0,0,0,210,0.0,0,0,12.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,17.3,77,98500,180,1321,356,89,336,43,9847,0,4807,191,120,0.2,0,0,13.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,17.8,67,98600,437,1321,370,276,566,88,31402,23747,10114,434,120,1.5,0,0,14.5,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,17.7,60,98600,686,1321,380,485,708,117,57075,38918,13838,626,120,1.3,0,0,14.7,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,17.1,48,98600,909,1321,395,683,799,133,82682,46106,16115,752,120,0.2,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,16.7,40,98600,1090,1321,409,847,861,137,105147,49249,17063,795,100,1.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,16.5,36,98600,1218,1321,416,964,899,136,121782,50575,17267,768,100,2.7,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,15.4,33,98600,1282,1321,419,1024,917,135,130518,51888,17239,707,110,3.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,14.4,28,98600,1279,1321,426,1021,916,135,130174,52633,17251,711,160,3.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.3,14.3,27,98500,1208,1321,429,956,896,136,120732,52219,17292,773,140,5.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.0,14.0,25,98500,1076,1321,433,834,856,137,103463,51082,17061,795,140,5.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.5,14.1,26,98500,890,1321,430,665,792,132,80554,47780,16006,744,130,5.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,14.4,28,98500,664,1321,425,466,698,115,54778,40053,13597,611,130,4.2,0,0,16.1,4572,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,14.8,30,98500,413,1321,421,256,549,85,29208,23253,9711,413,130,3.2,0,0,16.1,4572,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,17.0,40,98500,157,1321,412,75,314,38,8314,0,4212,166,140,3.9,0,0,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,16.4,42,98500,2,161,402,0,0,0,0,0,0,0,100,2.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,18.2,53,98500,0,0,393,0,0,0,0,0,0,0,110,2.4,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,17.8,57,98500,0,0,384,0,0,0,0,0,0,0,80,1.6,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,17.8,61,98500,0,0,379,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,17.8,65,98500,0,0,373,0,0,0,0,0,0,0,110,3.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,17.8,72,98500,0,0,365,0,0,0,0,0,0,0,90,1.8,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,17.7,73,98500,0,0,363,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,17.2,72,98500,0,0,362,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,17.2,76,98500,0,0,357,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,17.3,76,98600,5,269,358,0,0,0,0,0,0,0,180,0.0,0,0,15.6,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,17.7,75,98600,178,1321,361,83,277,45,9088,0,4986,199,250,0.5,0,0,13.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,17.0,69,98600,435,1321,364,251,443,105,28185,20759,11832,514,250,3.5,0,0,14.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,16.4,57,98600,685,1321,376,445,572,149,51482,35142,17288,796,70,3.1,0,0,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,17.5,50,98700,908,1321,415,521,370,267,59774,27383,30827,1517,130,3.0,4,4,14.7,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,15.9,43,98700,1090,1321,409,666,441,302,77876,33157,35524,1753,90,2.5,2,2,16.1,4572,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,15.2,38,98700,1217,1321,404,897,761,197,110399,47979,24317,1109,110,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,16.1,35,98700,1281,1321,416,947,765,205,116975,47566,25440,1076,110,2.8,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,15.9,33,98600,1278,1321,423,1005,886,148,127207,50833,18789,780,160,3.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.4,15.2,28,98600,1208,1321,431,982,949,114,125623,52650,14659,647,180,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,16.1,34,98500,1076,1321,428,678,489,280,79584,35657,33078,1627,140,2.7,1,1,16.1,4572,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,16.3,37,98500,890,1321,431,502,348,267,57386,26307,30752,1510,140,3.2,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,16.4,40,98500,664,1321,424,326,235,208,36504,16756,23415,1104,100,3.7,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,16.8,43,98400,413,1321,416,190,225,120,21046,11283,13322,583,100,3.8,2,2,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,17.2,49,98400,157,1321,393,69,113,55,7359,0,5952,242,100,2.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,17.3,50,98400,2,162,392,0,0,0,0,0,0,0,100,1.7,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,17.8,59,98400,0,0,381,0,0,0,0,0,0,0,130,2.5,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,17.8,67,98500,0,0,371,0,0,0,0,0,0,0,90,2.2,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,17.8,70,98500,0,0,368,0,0,0,0,0,0,0,110,2.4,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,17.8,74,98500,0,0,363,0,0,0,0,0,0,0,90,1.6,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,17.6,76,98500,0,0,360,0,0,0,0,0,0,0,90,1.8,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,16.8,74,98500,0,0,356,0,0,0,0,0,0,0,130,0.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,17.2,79,98400,0,0,354,0,0,0,0,0,0,0,130,1.8,0,0,15.6,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,17.2,81,98500,0,0,351,0,0,0,0,0,0,0,80,0.2,0,0,12.4,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,17.3,84,98500,5,262,361,0,0,0,0,0,0,0,80,1.3,2,2,9.2,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,17.8,83,98500,177,1321,354,80,120,64,8578,798,6894,284,80,0.0,0,0,6.4,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,17.7,74,98500,434,1321,377,205,239,126,22644,12361,14007,617,80,0.0,3,3,6.9,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,17.1,62,98600,683,1321,385,378,351,196,42676,24064,22293,1049,110,0.0,2,2,10.6,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,16.7,51,98600,907,1321,387,656,730,154,78499,44392,18550,875,110,0.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,16.5,41,98500,1089,1321,406,850,869,134,105636,49608,16686,776,110,3.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,15.7,35,98500,1216,1321,413,962,895,138,121385,51148,17452,777,100,2.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,16.0,33,98500,1281,1321,421,1006,884,149,127261,50711,18960,784,150,3.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,15.6,32,98400,1278,1321,421,952,780,197,117922,48346,24569,1042,170,6.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,15.5,31,98400,1208,1321,424,898,776,188,110731,48240,23326,1067,150,5.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,14.8,30,98300,1076,1321,423,787,746,179,95665,47366,21899,1041,140,5.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,14.1,28,98300,890,1321,423,650,748,145,78104,46445,17553,822,120,4.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,13.6,29,98300,664,1321,418,456,661,124,53389,39326,14524,656,130,4.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,13.5,30,98300,413,1321,412,246,489,93,27818,22277,10559,452,130,5.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,14.3,39,98200,157,1321,394,65,207,41,7206,0,4509,178,100,4.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,14.0,44,98300,2,162,382,0,0,0,0,0,0,0,100,4.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,14.1,50,98300,0,0,372,0,0,0,0,0,0,0,90,3.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,12.5,48,98300,0,0,364,0,0,0,0,0,0,0,110,3.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,14.1,55,98400,0,0,363,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,15.2,63,98300,0,0,359,0,0,0,0,0,0,0,130,2.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,16.2,72,98300,0,0,355,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.7,79,98300,0,0,351,0,0,0,0,0,0,0,140,2.1,0,0,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,16.8,82,98300,0,0,349,0,0,0,0,0,0,0,120,2.0,0,0,14.2,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,17.1,84,98300,0,0,348,0,0,0,0,0,0,0,140,1.6,0,0,11.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.8,88,98300,5,253,343,0,0,0,0,0,0,0,110,2.0,0,0,6.4,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,17.2,89,98400,175,1321,345,83,292,44,9101,0,4848,193,110,1.3,0,0,6.4,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,17.2,82,98400,432,1321,351,261,505,96,29542,22330,10878,469,110,0.0,0,0,6.7,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,17.1,69,98400,682,1321,364,463,639,133,53914,37123,15516,708,150,0.2,0,0,8.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,16.8,57,98400,906,1321,379,653,726,155,78173,44192,18667,881,150,1.5,0,0,12.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,17.3,49,98400,1088,1321,394,813,786,166,99361,46879,20350,962,150,1.7,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,17.8,49,98400,1215,1321,398,926,823,169,114997,47778,21031,952,150,3.2,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,17.8,45,98400,1280,1321,407,984,841,169,123191,48260,21217,887,140,3.9,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,17.3,41,98400,1278,1321,411,982,841,169,122916,48665,21226,891,140,5.7,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,14.3,34,98300,1208,1321,407,920,821,168,114403,50342,21051,955,150,5.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,13.9,33,98200,1076,1321,406,802,782,165,98211,49075,20314,959,120,4.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,13.4,33,98200,891,1321,402,640,721,154,76661,45946,18528,871,130,5.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,13.6,36,98100,664,1321,397,448,632,130,52235,38296,15261,692,140,5.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,13.5,37,98100,413,1321,393,246,492,92,27898,22367,10509,449,140,5.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,14.7,46,98100,157,1321,383,72,276,39,7966,0,4354,172,150,4.1,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,16.2,59,98200,2,162,371,0,0,0,0,0,0,0,110,4.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,16.8,70,98300,0,0,361,0,0,0,0,0,0,0,130,3.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,17.1,79,98300,0,0,353,0,0,0,0,0,0,0,100,3.6,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.7,85,98400,0,0,345,0,0,0,0,0,0,0,140,3.5,0,0,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,6,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98400,0,0,340,0,0,0,0,0,0,0,140,2.6,0,0,14.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98400,0,0,340,0,0,0,0,0,0,0,130,2.4,0,0,13.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98400,0,0,347,0,0,0,0,0,0,0,120,0.0,1,1,11.3,286,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,16.7,90,98400,0,0,352,0,0,0,0,0,0,0,100,0.2,2,2,9.7,335,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.7,87,98400,0,0,358,0,0,0,0,0,0,0,100,1.5,3,3,9.4,335,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.7,87,98400,4,245,361,0,0,0,0,0,0,0,170,1.5,4,4,8.3,335,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.7,85,98400,174,1321,362,61,117,45,6687,0,5010,200,350,0.0,4,4,9.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,16.8,78,98500,431,1321,352,246,433,105,27616,20276,11826,513,150,0.4,0,0,9.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,17.2,72,98500,681,1321,361,423,505,163,48489,31808,18791,871,150,2.2,0,0,10.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,17.2,67,98500,905,1321,367,584,538,216,68115,36609,25268,1223,160,0.5,0,0,12.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,17.2,57,98600,1087,1321,381,745,629,228,88935,41659,27362,1324,160,3.1,0,0,13.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,17.1,52,98600,1215,1321,389,865,693,227,105050,44495,27715,1281,150,3.3,0,0,14.7,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,16.7,48,98600,1280,1321,392,938,749,212,115532,46666,26287,1118,140,4.4,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,16.7,49,98500,1278,1321,390,891,656,256,108209,43484,31313,1355,140,3.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,16.6,47,98500,1208,1321,393,846,664,239,102346,43731,29085,1355,120,4.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,16.1,45,98400,1076,1321,394,760,681,205,91320,44290,24798,1191,160,3.8,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,16.2,48,98400,891,1321,390,615,650,177,72713,41760,20993,999,140,5.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,16.4,51,98400,664,1321,385,421,534,152,48373,33104,17587,809,150,4.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,16.7,55,98400,413,1321,381,224,374,107,24981,17436,11970,519,150,4.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,16.7,58,98400,157,1321,376,71,259,40,7769,0,4392,174,130,4.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,16.7,68,98500,2,161,363,0,0,0,0,0,0,0,150,3.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,16.7,76,98500,0,0,353,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,16.7,80,98600,0,0,350,0,0,0,0,0,0,0,140,3.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98600,0,0,340,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.5,89,98600,0,0,340,0,0,0,0,0,0,0,140,2.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.0,86,98600,0,0,340,0,0,0,0,0,0,0,140,2.6,0,0,15.9,339,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.6,84,98600,0,0,339,0,0,0,0,0,0,0,160,2.6,0,0,14.5,370,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,15.5,84,98600,0,0,345,0,0,0,0,0,0,0,160,2.2,1,1,14.5,396,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.1,84,98600,0,0,343,0,0,0,0,0,0,0,150,0.4,1,1,14.2,396,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,15.6,86,98600,4,236,344,0,0,0,0,0,0,0,150,2.4,1,1,12.9,396,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.5,84,98700,172,1321,350,63,133,45,6887,0,4996,199,160,1.5,2,2,12.6,396,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,15.2,81,98800,429,1321,352,191,199,127,21181,10729,14102,620,180,1.6,2,2,11.8,405,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,15.0,74,98800,679,1321,357,328,219,215,36775,16112,24293,1149,180,0.7,2,2,14.8,457,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,15.0,64,98800,903,1321,357,572,507,225,66523,36086,26350,1277,180,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,14.8,54,98800,1086,1321,370,761,668,212,91494,44617,25638,1232,130,0.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,13.7,43,98800,1214,1321,382,931,835,163,116167,51114,20483,923,130,3.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,12.7,37,98800,1279,1321,388,1004,881,150,127154,52999,19112,792,130,4.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,12.3,35,98700,1277,1321,389,981,839,169,123168,52148,21383,896,120,3.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,12.6,37,98700,1208,1321,387,868,711,217,106030,47767,26713,1233,130,3.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,11.9,37,98700,1076,1321,383,740,633,224,88560,44530,26983,1301,150,5.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,11.9,38,98700,891,1321,379,586,568,203,68694,40275,23915,1147,150,4.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,12.2,42,98700,664,1321,374,415,512,157,47687,33897,18158,835,170,4.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,11.7,43,98700,413,1321,368,227,392,105,25495,19603,11800,509,170,5.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.9,48,98700,157,1321,360,69,241,40,7592,0,4446,175,140,4.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,13.4,59,98700,2,160,353,0,0,0,0,0,0,0,150,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,14.0,71,98800,0,0,343,0,0,0,0,0,0,0,170,2.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,14.4,73,98900,0,0,343,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,14.4,76,98900,0,0,340,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,14.5,79,98900,0,0,338,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,15.0,82,98800,0,0,338,0,0,0,0,0,0,0,120,1.6,0,0,15.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,15.0,90,98800,0,0,331,0,0,0,0,0,0,0,130,1.8,0,0,14.0,234,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,15.0,93,98800,0,0,335,0,0,0,0,0,0,0,130,0.0,1,1,11.3,192,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,15.0,93,98800,0,0,340,0,0,0,0,0,0,0,130,0.0,2,2,11.3,248,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,14.8,89,98800,4,226,345,0,0,0,0,0,0,0,200,0.0,3,3,11.3,283,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,14.4,84,98900,170,1321,347,63,139,45,6915,0,4953,197,200,0.2,3,3,11.5,348,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,14.4,82,98900,427,1321,352,181,166,127,20029,9094,14138,621,200,1.6,4,4,13.2,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,14.3,71,99000,678,1321,355,340,251,211,38174,18454,23828,1124,170,2.1,2,2,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.8,64,99000,902,1321,350,568,499,227,66091,36164,26579,1288,180,2.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,13.4,54,99000,1085,1321,361,749,642,222,89829,44274,26791,1291,180,1.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,13.9,46,99000,1213,1321,376,897,764,194,110442,48897,24076,1099,180,1.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,13.9,44,99000,1279,1321,381,977,829,174,122314,50877,21937,920,140,3.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,13.7,42,98900,1277,1321,384,971,821,178,121443,50778,22332,941,140,5.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,12.8,38,98900,1208,1321,385,882,743,203,108341,48794,25096,1153,140,4.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,12.9,39,98800,1076,1321,384,775,716,191,93824,47419,23267,1110,160,5.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,13.3,42,98800,891,1321,381,612,640,180,72368,42935,21372,1016,130,4.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,13.6,46,98800,664,1321,376,417,522,155,47997,33807,17901,823,150,4.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,13.9,49,98800,413,1321,371,223,371,107,24931,18193,12019,520,150,5.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,13.8,55,98800,156,1321,362,66,216,41,7287,0,4490,178,140,4.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.4,63,98800,2,157,349,0,0,0,0,0,0,0,140,3.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.9,73,98800,0,0,340,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.0,77,98800,0,0,337,0,0,0,0,0,0,0,80,2.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,14.4,81,98900,0,0,336,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,14.3,81,98900,0,0,335,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,14.0,85,98900,0,0,330,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,14.4,90,98800,0,0,328,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,14.4,93,98800,0,0,342,0,0,0,0,0,0,0,130,1.5,4,4,16.1,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,15.0,96,98800,0,0,344,0,0,0,0,0,0,0,170,2.0,4,4,15.9,217,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,14.9,93,98900,3,217,343,0,0,0,0,0,0,0,180,1.3,3,3,14.2,244,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,14.4,90,98900,168,1321,339,61,128,44,6664,0,4882,194,180,0.2,2,2,13.1,248,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,14.4,89,98900,426,1321,339,181,171,127,20084,9289,14063,618,200,1.1,2,2,14.5,281,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,14.4,82,99000,676,1321,341,314,190,217,35202,14126,24450,1156,200,1.3,1,1,16.1,323,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,14.8,74,99000,901,1321,345,551,456,240,63765,33413,27938,1360,60,0.0,0,0,16.1,446,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,14.5,61,99000,1084,1321,358,750,643,222,89783,43791,26687,1287,60,1.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,14.9,54,98900,1213,1321,369,895,763,195,110190,48233,24107,1102,60,2.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,14.4,48,98900,1278,1321,377,977,829,174,122254,50557,21898,919,150,3.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,14.2,44,98900,1277,1321,383,977,832,173,122335,50762,21725,914,150,4.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,13.0,38,98800,1208,1321,388,937,857,153,117431,52145,19242,866,120,4.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,11.0,34,98800,1076,1321,383,808,795,160,99248,51084,19802,931,150,3.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,9.4,30,98700,891,1321,382,650,747,146,78270,48784,17674,826,180,3.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,9.0,30,98700,664,1321,379,446,624,132,52052,39876,15485,701,170,3.4,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,8.5,30,98700,413,1321,375,249,510,90,28387,24482,10291,438,170,3.7,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,12.5,45,98700,156,1321,369,70,256,40,7705,0,4385,173,150,4.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.8,58,98700,2,154,357,0,0,0,0,0,0,0,130,2.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.5,63,98700,0,0,349,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,14.5,76,98800,0,0,340,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,15.0,82,98800,0,0,338,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,15.0,84,98800,0,0,336,0,0,0,0,0,0,0,110,2.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.0,87,98800,0,0,333,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,14.9,93,98700,0,0,328,0,0,0,0,0,0,0,90,1.8,0,0,16.1,274,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,14.4,89,98700,0,0,329,0,0,0,0,0,0,0,190,0.5,0,0,16.1,294,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,14.3,89,98700,0,0,328,0,0,0,0,0,0,0,190,2.0,0,0,16.1,344,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.9,84,98800,3,207,330,0,0,0,0,0,0,0,150,1.5,0,0,16.1,407,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,13.9,81,98800,167,1321,332,76,271,42,8419,0,4666,185,200,0.0,0,0,16.1,466,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,13.9,80,98800,424,1321,333,251,482,97,28426,22594,10969,471,220,0.3,0,0,16.1,527,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,13.9,75,98800,675,1321,338,452,619,136,52608,37976,15856,723,220,1.8,0,0,16.1,579,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,13.8,66,98900,899,1321,347,642,708,160,76740,45359,19221,907,80,1.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,13.4,58,98900,1083,1321,355,802,768,172,97937,48965,21093,998,80,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,13.9,51,98800,1212,1321,368,915,807,175,113614,50186,21868,992,100,0.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,13.9,45,98800,1278,1321,379,974,825,176,121885,50772,22104,930,100,4.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,13.9,42,98700,1276,1321,384,973,825,176,121702,50761,22100,932,130,3.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,13.9,41,98700,1207,1321,386,912,805,175,113078,50146,21858,995,170,5.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,13.5,40,98600,1076,1321,386,796,766,171,97119,48812,21030,995,150,4.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,11.6,36,98600,890,1321,383,634,704,159,75819,46246,19134,901,140,5.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,10.5,35,98600,664,1321,377,443,614,134,51620,38946,15698,712,140,5.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,10.4,36,98600,412,1321,373,242,474,95,27453,22790,10749,459,140,5.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,13.0,47,98600,155,1321,369,70,262,39,7738,0,4353,172,130,4.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,14.0,60,98600,2,151,355,0,0,0,0,0,0,0,130,3.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,14.4,66,98600,0,0,350,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,14.4,70,98700,0,0,346,0,0,0,0,0,0,0,120,1.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,14.4,71,98700,0,0,345,0,0,0,0,0,0,0,160,0.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,14.5,77,98700,0,0,340,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,15.1,85,98700,0,0,336,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.5,93,98700,0,0,338,0,0,0,0,0,0,0,120,2.1,1,1,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.0,90,98700,0,0,351,0,0,0,0,0,0,0,130,2.2,5,5,16.1,244,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.0,90,98700,0,0,351,0,0,0,0,0,0,0,120,0.2,5,5,16.1,253,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,15.0,89,98700,3,196,351,0,0,0,0,0,0,0,120,0.3,5,5,15.1,305,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,15.0,86,98800,165,1321,354,51,78,41,5587,0,4532,179,120,1.8,5,5,10.1,314,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,14.9,83,98800,422,1321,357,164,124,125,18199,6651,13860,608,60,0.3,5,5,13.1,375,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,14.4,78,98800,673,1321,358,277,118,217,31027,8814,24402,1153,60,1.7,5,5,14.5,472,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,14.4,69,98800,898,1321,368,394,129,306,44713,10599,34950,1733,60,0.0,5,5,13.2,549,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,14.4,62,98800,1082,1321,355,688,503,276,81056,37192,32718,1604,70,0.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,14.2,55,98800,1211,1321,365,849,665,239,102904,45181,29112,1352,70,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,13.5,43,98700,1277,1321,380,989,856,162,124538,51848,20463,856,70,3.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,14.3,45,98700,1276,1321,382,986,852,163,123977,51204,20637,867,160,5.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,13.8,42,98600,1207,1321,385,931,846,158,116364,51328,19786,894,180,4.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,13.2,44,98600,1076,1321,377,732,616,231,87414,43212,27696,1340,160,6.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,12.8,43,98600,890,1321,375,595,594,194,69972,41157,22981,1099,160,4.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,12.5,44,98600,664,1321,372,411,500,160,47144,33179,18403,847,130,4.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,12.1,44,98500,412,1321,369,237,446,98,26712,21336,11090,476,130,4.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,11.9,46,98500,155,1321,363,72,283,39,7941,0,4281,168,120,4.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,13.4,58,98500,2,147,354,0,0,0,0,0,0,0,120,4.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,14.0,66,98600,0,0,348,0,0,0,0,0,0,0,130,2.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,14.5,71,98600,0,0,346,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.0,76,98600,0,0,343,0,0,0,0,0,0,0,90,1.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,15.0,79,98600,0,0,341,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,15.0,85,98600,0,0,335,0,0,0,0,0,0,0,100,2.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,15.4,96,98500,0,0,343,0,0,0,0,0,0,0,120,2.6,3,3,14.0,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.6,93,98600,0,0,346,0,0,0,0,0,0,0,130,2.1,3,3,12.9,161,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,15.6,93,98600,0,0,347,0,0,0,0,0,0,0,180,1.8,3,3,12.9,217,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,15.6,90,98600,2,186,349,0,0,0,0,0,0,0,230,0.2,3,3,8.0,278,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,15.6,90,98600,163,1321,352,53,93,41,5816,0,4566,181,180,2.0,4,4,8.3,309,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,15.5,85,98700,420,1321,355,171,146,125,18933,7740,13845,608,150,1.5,4,4,9.9,344,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,15.0,77,98800,671,1321,361,297,159,217,33309,11785,24379,1153,100,1.7,4,4,11.3,396,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,15.6,73,98800,897,1321,369,417,166,304,47324,13435,34733,1723,100,1.5,4,4,11.3,518,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.5,62,98700,1081,1321,362,712,560,254,84265,39536,30244,1475,170,2.4,0,0,11.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,14.8,52,98700,1210,1321,373,869,711,218,106042,46545,26753,1235,110,1.9,0,0,14.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,14.0,41,98700,1277,1321,387,1009,895,144,128069,52464,18310,761,110,3.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,14.3,40,98600,1276,1321,391,1004,888,147,127260,52089,18672,779,160,2.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,13.2,36,98600,1207,1321,394,946,877,144,119024,52515,18222,818,160,4.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,8.6,26,98600,1075,1321,388,805,789,163,98872,51996,20081,945,180,6.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,8.1,25,98500,890,1321,389,655,764,140,79227,49910,17031,793,140,5.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,8.3,26,98500,663,1321,386,452,649,126,52986,41077,14845,670,150,4.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,9.3,29,98500,411,1321,384,246,495,92,27906,23705,10445,445,150,4.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,9.2,33,98500,154,1321,373,70,264,39,7713,0,4314,170,150,4.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,10.9,43,98500,1,143,362,0,0,0,0,0,0,0,150,3.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.0,55,98500,0,0,356,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,14.1,65,98600,0,0,350,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,15.0,73,98600,0,0,346,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.1,77,98600,0,0,343,0,0,0,0,0,0,0,70,2.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,15.6,82,98600,0,0,341,0,0,0,0,0,0,0,100,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,15.5,87,98600,0,0,336,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.0,87,98600,0,0,333,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,15.0,91,98600,0,0,330,0,0,0,0,0,0,0,120,1.6,0,0,15.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,15.7,97,98700,2,175,349,0,0,0,0,0,0,0,160,2.0,5,5,7.8,178,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,16.0,94,98700,161,1321,353,45,57,38,4963,0,4211,166,150,1.3,5,5,6.7,165,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,15.6,85,98800,418,1321,359,164,126,124,18085,6624,13718,601,120,0.0,5,5,8.7,268,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,15.6,73,98800,670,1321,371,311,191,214,34833,13959,24130,1140,160,2.9,5,5,10.6,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,15.6,67,98800,895,1321,357,581,546,211,67812,37677,24759,1194,150,2.1,0,0,11.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,15.6,58,98800,1079,1321,368,738,623,229,88038,42326,27456,1329,150,2.2,0,0,12.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,15.4,49,98800,1209,1321,381,870,714,216,106173,46303,26531,1225,160,3.0,0,0,13.4,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.2,41,98800,1276,1321,388,977,833,172,122327,50779,21652,913,160,3.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,12.9,34,98700,1275,1321,395,1012,903,140,128757,53404,17874,743,130,1.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,10.7,27,98600,1207,1321,401,973,932,121,124143,55391,15513,687,130,3.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,11.2,30,98600,1075,1321,396,815,813,153,100430,51540,18959,889,140,5.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,10.8,30,98600,890,1321,394,632,699,161,75471,46394,19323,910,160,5.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,11.1,32,98600,663,1321,390,418,526,154,48114,34890,17780,815,110,4.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,10.7,32,98600,411,1321,387,236,445,98,26644,21667,11059,474,110,4.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,11.5,37,98600,153,1321,379,70,267,39,7692,0,4285,169,120,3.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,13.9,49,98600,1,138,371,0,0,0,0,0,0,0,110,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,13.8,54,98600,0,0,364,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.6,55,98700,0,0,360,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,15.1,67,98700,0,0,354,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,15.7,72,98700,0,0,352,0,0,0,0,0,0,0,110,1.7,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,16.1,80,98700,0,0,346,0,0,0,0,0,0,0,80,2.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.1,87,98700,0,0,340,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.1,87,98700,0,0,340,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.0,86,98700,0,0,340,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,15.7,84,98800,2,164,340,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,16.1,83,98800,159,1321,344,73,282,40,8104,0,4378,173,200,0.0,0,0,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,16.1,77,98900,416,1321,349,252,514,91,28605,22074,10291,440,200,0.0,0,0,14.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,16.0,67,98900,668,1321,360,460,666,123,53798,38248,14487,656,200,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,15.7,57,98900,894,1321,371,658,762,142,79148,45914,17136,802,200,1.7,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,16.0,48,98900,1078,1321,387,823,827,148,101480,48935,18349,861,110,3.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,15.3,42,98900,1208,1321,395,942,868,148,118235,50833,18686,841,140,3.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,13.7,35,98900,1275,1321,399,1004,888,147,127219,52495,18717,781,140,4.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,12.7,31,98800,1275,1321,403,1003,887,147,127183,53145,18728,782,130,5.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,12.0,29,98800,1206,1321,405,940,867,148,118170,53010,18722,842,140,5.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,10.6,26,98800,1075,1321,405,820,826,148,101377,52252,18378,859,150,5.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,9.7,24,98700,889,1321,404,653,760,142,78863,49096,17156,800,140,5.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,9.6,25,98700,662,1321,401,455,663,123,53405,41084,14470,652,130,4.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,9.1,24,98700,410,1321,399,248,510,89,28158,24111,10211,434,130,4.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,10.5,30,98600,152,1321,392,70,277,38,7747,0,4219,166,130,3.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,13.5,42,98600,1,132,381,0,0,0,0,0,0,0,120,2.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,14.5,53,98600,0,0,369,0,0,0,0,0,0,0,80,3.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.1,61,98700,0,0,362,0,0,0,0,0,0,0,100,2.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,15.7,67,98700,0,0,357,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,16.0,71,98700,0,0,355,0,0,0,0,0,0,0,90,2.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,15.7,74,98700,0,0,349,0,0,0,0,0,0,0,120,2.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.1,81,98700,0,0,345,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,16.1,82,98700,0,0,345,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.2,84,98700,0,0,343,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.7,87,98700,2,153,343,0,0,0,0,0,0,0,80,2.0,0,0,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,16.8,87,98700,156,1321,344,70,259,40,7747,0,4377,173,170,1.3,0,0,14.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,17.1,82,98700,414,1321,350,244,478,95,27550,20532,10705,460,170,0.2,0,0,11.3,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,16.6,71,98700,666,1321,358,447,623,133,51922,36422,15494,706,180,1.6,0,0,12.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,15.9,59,98700,893,1321,369,640,716,156,76407,44303,18742,884,180,2.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,14.7,46,98700,1077,1321,383,802,779,167,98048,48485,20467,967,160,4.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,13.0,37,98600,1208,1321,389,918,819,169,114232,51090,21163,960,100,3.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,14.0,37,98600,1275,1321,396,978,838,169,122685,51064,21344,901,160,3.4,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,14.4,36,98500,1274,1321,402,978,838,169,122574,50788,21324,902,180,2.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,14.3,35,98400,1206,1321,404,916,819,169,113907,50257,21150,961,180,3.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,13.9,35,98300,1074,1321,401,799,778,166,97749,48944,20453,967,170,5.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,14.4,37,98300,889,1321,401,636,714,156,76054,45125,18704,881,130,5.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,14.5,39,98300,662,1321,396,443,620,132,51522,37357,15450,702,110,4.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.7,43,98300,409,1321,389,240,474,94,27147,21139,10616,455,110,3.9,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,13.4,44,98300,151,1321,377,68,255,38,7458,0,4245,167,110,2.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.9,55,98300,1,127,363,0,0,0,0,0,0,0,130,4.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,14.0,62,98300,0,0,353,0,0,0,0,0,0,0,100,3.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,14.6,67,98300,0,0,350,0,0,0,0,0,0,0,140,3.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,15.6,76,98300,0,0,347,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,15.6,76,98300,0,0,347,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.6,79,98300,0,0,344,0,0,0,0,0,0,0,140,0.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.6,82,98300,0,0,342,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.6,84,98300,0,0,339,0,0,0,0,0,0,0,80,1.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,15.6,85,98300,0,0,339,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.7,88,98400,1,142,337,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.1,90,98400,154,1321,355,45,66,37,4964,0,4122,162,110,2.0,4,4,14.8,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.1,89,98500,412,1321,358,141,79,117,15682,3938,13005,568,150,2.7,5,5,12.9,257,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.1,81,98500,665,1321,366,265,106,212,29709,7677,23869,1127,190,0.6,5,5,13.6,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,15.4,66,98500,891,1321,376,425,185,300,48257,14954,34272,1698,130,2.4,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,14.2,52,98500,1076,1321,368,754,669,210,90664,44927,25348,1218,220,1.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,12.8,42,98500,1207,1321,378,905,794,180,112145,50461,22427,1023,220,1.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,13.0,38,98400,1274,1321,387,973,828,174,121778,51413,21905,928,160,0.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,14.4,39,98400,1274,1321,396,980,844,167,122988,50931,21027,889,160,4.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,14.4,38,98300,1205,1321,396,901,788,183,111381,49293,22709,1038,140,4.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,14.4,38,98300,1074,1321,398,788,752,177,95893,47810,21586,1025,170,3.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,14.4,39,98200,888,1321,395,609,639,180,71994,42295,21322,1014,130,4.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,14.4,41,98200,661,1321,389,419,536,151,48234,34028,17442,800,130,4.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,14.4,43,98200,408,1321,386,221,375,105,24712,17974,11802,510,130,5.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,14.5,48,98200,150,1321,377,63,216,39,6977,0,4289,169,150,4.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,15.0,59,98300,1,120,364,0,0,0,0,0,0,0,160,4.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,14.8,63,98300,0,0,356,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,13.9,62,98400,0,0,353,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,13.9,64,98400,0,0,350,0,0,0,0,0,0,0,90,3.4,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,13.9,66,98400,0,0,348,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,14.2,71,98400,0,0,343,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,15.6,92,98400,0,0,333,0,0,0,0,0,0,0,160,1.9,0,0,15.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,16.1,88,98400,0,0,339,0,0,0,0,0,0,0,140,0.0,0,0,14.5,466,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.0,86,98400,0,0,340,0,0,0,0,0,0,0,40,0.2,0,0,14.5,549,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,15.6,84,98500,1,130,346,0,0,0,0,0,0,0,40,1.3,1,1,14.2,539,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,15.6,81,98500,152,1321,349,54,122,40,5892,0,4355,172,40,0.3,1,1,12.9,497,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,15.6,77,98600,410,1321,357,178,183,121,19624,9371,13420,587,130,2.2,2,2,13.1,553,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,15.5,70,98600,663,1321,365,318,217,209,35649,15727,23582,1111,130,2.5,2,2,14.7,579,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,15.0,63,98600,890,1321,370,436,207,297,49541,16679,33919,1678,120,1.5,2,2,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,14.9,56,98600,1075,1321,367,693,526,266,81764,38116,31525,1543,120,1.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,14.2,48,98600,1206,1321,375,823,619,259,99158,43234,31330,1469,120,1.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,13.6,40,98500,1273,1321,387,954,792,191,118615,50002,23816,1017,120,1.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,15.6,43,98500,1273,1321,394,965,815,180,120313,49327,22567,962,120,3.7,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,15.6,45,98500,1205,1321,391,883,749,200,108289,47329,24635,1135,140,4.7,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,15.5,44,98400,1073,1321,391,746,652,216,89285,43549,25969,1252,160,5.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,15.1,43,98400,888,1321,391,599,613,188,70564,40857,22189,1060,150,4.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.4,42,98400,660,1321,388,431,581,141,49895,35890,16349,746,150,5.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,13.8,42,98300,407,1321,385,233,443,97,26275,20409,10958,470,150,5.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,13.3,43,98400,149,1321,378,68,275,37,7534,0,4119,162,160,3.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,13.4,49,98400,1,113,368,0,0,0,0,0,0,0,140,2.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,14.1,59,98400,0,0,358,0,0,0,0,0,0,0,120,2.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.1,67,98500,0,0,354,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,15.6,74,98500,0,0,350,0,0,0,0,0,0,0,80,1.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,15.6,76,98500,0,0,347,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.7,80,98500,0,0,344,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,16.0,84,98500,0,0,342,0,0,0,0,0,0,0,80,2.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.7,85,98500,0,0,339,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.1,88,98500,0,0,339,0,0,0,0,0,0,0,120,1.3,0,0,15.6,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.1,89,98600,1,119,338,0,0,0,0,0,0,0,110,0.2,0,0,12.6,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,16.1,86,98700,150,1321,341,68,268,38,7503,0,4163,164,110,1.3,0,0,11.3,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,16.1,80,98700,408,1321,346,244,500,90,27644,21157,10238,437,180,0.2,0,0,11.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,16.1,69,98700,661,1321,357,452,655,124,52758,37645,14556,659,180,1.6,0,0,13.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,16.2,61,98800,888,1321,369,650,754,143,78097,45261,17261,809,130,2.2,0,0,14.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,16.4,53,98800,1074,1321,382,817,821,150,100525,48457,18510,870,110,2.6,0,0,14.2,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.9,43,98700,1205,1321,389,937,863,150,117419,50997,18882,852,110,0.3,0,0,13.4,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,14.1,36,98700,1273,1321,399,999,883,149,126437,52110,18907,795,170,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,12.2,29,98600,1272,1321,405,999,883,149,126540,53347,18931,795,170,3.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,12.2,28,98600,1204,1321,409,936,863,150,117535,52769,18910,852,160,3.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,11.9,29,98600,1073,1321,404,816,821,150,100693,51389,18557,869,160,6.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,11.6,28,98600,887,1321,404,649,754,143,78170,47946,17299,808,140,5.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,11.3,29,98500,659,1321,400,451,655,124,52756,40011,14574,657,140,5.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,12.2,32,98500,406,1321,398,243,498,90,27535,22532,10222,435,140,4.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,12.1,34,98600,148,1321,391,67,265,37,7371,0,4106,161,100,3.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,11.9,39,98600,1,106,377,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,13.2,47,98600,0,0,370,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,15.8,61,98700,0,0,365,0,0,0,0,0,0,0,120,1.7,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,16.7,69,98700,0,0,361,0,0,0,0,0,0,0,130,2.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,16.7,74,98700,0,0,356,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,16.7,79,98600,0,0,350,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,16.7,85,98600,0,0,345,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.6,87,98700,0,0,343,0,0,0,0,0,0,0,110,1.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,16.1,84,98700,0,0,342,0,0,0,0,0,0,0,90,2.5,0,0,15.6,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,16.2,89,98800,1,107,339,0,0,0,0,0,0,0,110,2.2,0,0,11.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,16.8,96,98800,148,1321,356,34,33,31,3847,0,3445,134,100,2.0,5,5,3.2,152,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,17.0,90,98900,406,1321,363,137,76,114,15207,3625,12689,553,140,1.5,5,5,3.7,152,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,16.6,75,98800,659,1321,354,393,450,169,44777,29089,19305,895,50,0.3,0,0,6.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,16.0,58,98900,887,1321,372,623,680,166,73923,42944,19822,939,150,2.2,0,0,14.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,15.5,46,98900,1073,1321,387,814,815,152,100045,48961,18750,881,110,3.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,14.9,39,98900,1204,1321,398,943,877,144,118517,51331,18157,817,110,3.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,13.7,33,98800,1272,1321,405,988,862,158,124495,51877,19994,845,160,4.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,8.9,23,98800,1272,1321,403,982,851,163,123754,54251,20682,874,150,4.7,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,6.4,19,98700,1204,1321,400,906,801,177,112690,53652,22090,1005,130,5.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,8.0,22,98700,1072,1321,401,781,739,181,95163,50455,22187,1052,140,5.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,7.9,22,98600,886,1321,398,611,648,176,72527,45375,21025,995,140,5.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,7.9,23,98600,658,1321,396,430,582,140,49958,38339,16320,741,120,5.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,7.0,22,98600,405,1321,391,232,443,96,26204,22123,10922,466,120,4.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,6.4,22,98500,146,1321,387,71,323,35,7867,0,3901,152,120,3.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,8.4,28,98500,1,98,381,0,0,0,0,0,0,0,90,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.9,41,98600,0,0,374,0,0,0,0,0,0,0,100,2.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,13.5,51,98600,0,0,365,0,0,0,0,0,0,0,110,1.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,14.6,61,98600,0,0,359,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.8,70,98600,0,0,355,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,16.7,80,98600,0,0,350,0,0,0,0,0,0,0,80,1.8,0,0,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,16.7,88,98600,0,0,343,0,0,0,0,0,0,0,100,0.3,0,0,14.2,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.7,91,98600,0,0,340,0,0,0,0,0,0,0,100,2.1,0,0,12.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,16.6,93,98700,0,0,338,0,0,0,0,0,0,0,110,2.0,0,0,12.4,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,16.2,93,98700,1,96,335,0,0,0,0,0,0,0,80,1.5,0,0,9.4,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.7,93,98700,146,1322,353,42,67,35,4675,0,3873,152,160,1.5,3,3,8.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,16.6,89,98800,404,1322,356,158,128,119,17406,6326,13154,574,140,2.2,3,3,8.0,244,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,16.1,79,98800,657,1322,365,284,146,211,31762,10586,23761,1120,120,3.1,4,4,8.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,15.9,66,98800,885,1322,360,561,510,219,65149,35704,25615,1238,210,0.3,0,0,10.4,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,14.9,52,98700,1071,1322,373,752,670,209,90283,44611,25170,1210,210,2.2,0,0,14.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.0,41,98700,1203,1322,388,931,854,154,116515,51421,19362,876,80,2.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,11.6,31,98700,1271,1322,396,1023,930,128,131004,54897,16464,686,160,3.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,10.8,27,98600,1271,1322,402,1026,936,125,131649,55513,16161,672,120,4.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,9.5,25,98600,1203,1322,399,917,824,167,114389,53142,20885,948,140,5.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,9.4,24,98500,1071,1322,404,805,796,159,98952,51909,19670,925,140,5.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,7.7,21,98400,885,1322,402,638,725,152,76561,48594,18355,859,140,5.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,6.7,20,98400,657,1322,397,452,666,121,53136,42058,14296,642,130,5.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,7.7,23,98400,403,1322,394,233,454,95,26357,22261,10747,458,130,5.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,10.5,32,98400,145,1322,386,62,225,37,6822,0,4116,161,90,3.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,10.3,36,98400,1,90,373,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,11.8,43,98400,0,0,369,0,0,0,0,0,0,0,150,0.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.6,52,98500,0,0,359,0,0,0,0,0,0,0,150,2.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,15.3,68,98500,0,0,354,0,0,0,0,0,0,0,140,3.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.6,85,98500,0,0,345,0,0,0,0,0,0,0,130,3.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,16.1,89,98500,0,0,338,0,0,0,0,0,0,0,120,1.7,0,0,15.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,16.1,93,98500,0,0,335,0,0,0,0,0,0,0,140,1.9,0,0,14.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,16.0,96,98500,0,0,347,0,0,0,0,0,0,0,120,2.5,3,3,11.0,208,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.6,93,98500,0,0,346,0,0,0,0,0,0,0,130,1.8,3,3,9.7,183,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,15.6,93,98500,1,84,350,0,0,0,0,0,0,0,130,0.2,4,4,9.4,192,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,15.6,89,98600,143,1322,353,44,79,35,4825,0,3895,153,90,1.8,4,4,8.5,259,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.0,81,98600,401,1322,359,151,111,117,16686,5617,12996,566,90,0.0,5,5,9.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,15.1,74,98600,656,1322,357,310,207,208,34756,15044,23383,1100,130,0.7,2,2,11.5,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,15.6,65,98700,884,1322,359,565,525,214,65776,36571,25081,1210,130,4.2,0,0,12.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,15.5,58,98700,1070,1322,368,715,585,242,84894,40716,28821,1402,160,2.3,0,0,12.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,14.6,49,98700,1202,1322,376,854,691,226,103799,45944,27617,1286,160,3.5,0,0,13.4,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,11.5,34,98600,1270,1322,388,977,842,168,122686,52708,21143,899,160,2.9,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,6.3,22,98500,1270,1322,389,1033,952,119,133357,58170,15393,638,160,2.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,1.7,14,98500,1202,1322,391,1007,1007,92,131488,61243,11989,521,160,4.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.6,1.6,14,98400,1071,1322,392,850,901,120,106964,58072,15139,695,140,5.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,4.3,18,98400,884,1322,391,643,741,147,77480,50333,17758,828,140,5.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,7.3,24,98400,656,1322,387,413,527,152,47692,35912,17577,803,120,4.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,9.4,30,98400,402,1322,382,206,320,109,23023,16661,12201,526,120,4.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,9.4,33,98400,143,1322,374,59,207,37,6568,0,4102,161,120,4.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,9.8,38,98400,0,82,366,0,0,0,0,0,0,0,110,3.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,12.5,53,98400,0,0,356,0,0,0,0,0,0,0,90,2.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,14.2,66,98400,0,0,350,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.6,79,98500,0,0,344,0,0,0,0,0,0,0,100,2.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.7,82,98500,0,0,342,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,16.1,88,98500,0,0,339,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,16.1,93,98500,0,0,335,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,15.9,93,98500,0,0,334,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,15.0,93,98400,0,0,329,0,0,0,0,0,0,0,180,1.3,0,0,15.6,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,15.1,93,98500,0,73,329,0,0,0,0,0,0,0,170,0.2,0,0,12.6,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,15.6,91,98500,141,1322,333,59,68,52,6287,0,5538,224,170,1.6,0,0,11.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.7,82,98600,399,1322,363,158,135,117,17469,6739,13006,567,150,2.5,5,5,13.6,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.9,80,98600,654,1322,363,291,164,210,32502,11864,23563,1109,120,2.5,4,4,12.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,14.9,61,98700,882,1322,359,581,573,199,68064,39159,23417,1123,120,2.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,14.4,49,98700,1069,1322,374,749,669,209,89968,44814,25168,1210,120,2.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,14.2,44,98700,1201,1322,382,904,800,177,111897,49808,22028,1008,120,4.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,12.6,37,98700,1270,1322,386,948,786,194,117728,50413,24155,1041,160,3.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,11.3,31,98700,1270,1322,395,970,829,174,121472,52438,21841,933,160,4.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,9.0,26,98600,1202,1322,392,912,816,170,113548,53107,21310,969,150,5.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,9.4,27,98600,1070,1322,392,798,782,164,97809,51444,20254,954,170,4.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,9.6,28,98600,883,1322,391,609,647,176,72186,44736,20991,994,150,4.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,10.4,31,98600,655,1322,387,421,558,145,48676,36382,16795,766,120,4.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,11.1,34,98600,400,1322,384,221,402,100,24871,19439,11261,483,120,3.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,11.4,39,98600,141,1322,374,60,227,36,6677,0,4005,157,140,4.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,13.5,52,98600,0,73,365,0,0,0,0,0,0,0,120,3.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,14.5,62,98700,0,0,356,0,0,0,0,0,0,0,130,2.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,15.1,72,98700,0,0,349,0,0,0,0,0,0,0,90,2.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.6,79,98800,0,0,344,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.6,82,98800,0,0,342,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,15.7,86,98800,0,0,338,0,0,0,0,0,0,0,90,1.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,16.1,93,98700,0,0,335,0,0,0,0,0,0,0,90,0.0,0,0,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,16.0,93,98800,0,0,334,0,0,0,0,0,0,0,140,0.2,0,0,14.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,15.6,94,98800,0,0,331,0,0,0,0,0,0,0,140,1.6,0,0,13.8,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,15.3,97,98800,0,62,338,0,0,0,0,0,0,0,170,1.8,2,2,8.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,16.1,93,98900,139,1322,355,38,54,32,4172,0,3551,138,160,0.0,5,5,6.7,217,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,16.1,88,98900,397,1322,359,146,103,115,16102,5002,12738,554,200,0.0,5,5,8.5,244,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,16.0,74,98900,652,1322,352,418,555,144,48137,33847,16697,764,200,1.3,0,0,11.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,15.5,62,98900,881,1322,363,586,589,194,68687,39552,22817,1092,200,0.0,0,0,14.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,14.7,48,98900,1068,1322,379,787,760,172,95774,47882,21101,1001,120,0.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,12.0,34,98900,1200,1322,391,939,876,144,118173,53254,18222,821,120,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,6.5,21,98900,1269,1322,392,1029,946,121,132559,57952,15652,652,140,2.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,2.5,15,98900,1269,1322,392,1017,923,131,130406,58847,16904,707,120,3.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,1.0,13,98800,1201,1322,392,927,850,155,116578,57038,19626,885,170,4.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.6,1.4,14,98800,1069,1322,392,801,791,161,98614,54504,19898,934,160,5.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,1.8,15,98700,882,1322,390,628,705,158,75329,49509,19016,891,150,5.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,3.6,18,98700,653,1322,387,423,571,141,49185,38787,16487,748,130,4.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,5.7,21,98700,399,1322,385,222,411,98,25047,20867,11125,475,130,4.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,10.2,34,98700,140,1322,378,58,212,36,6436,0,3979,156,120,4.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,11.2,41,98700,0,63,368,0,0,0,0,0,0,0,140,3.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,11.9,48,98800,0,0,361,0,0,0,0,0,0,0,130,3.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,13.0,55,98800,0,0,357,0,0,0,0,0,0,0,90,2.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,14.6,64,98800,0,0,354,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,15.6,71,98800,0,0,353,0,0,0,0,0,0,0,90,0.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,15.5,72,98800,0,0,351,0,0,0,0,0,0,0,90,1.8,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,15.1,77,98800,0,0,343,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,15.6,84,98800,0,0,340,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.5,81,98800,0,0,342,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,14.9,81,98800,0,50,339,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,14.3,76,98800,136,1322,339,63,289,33,6986,0,3705,145,250,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,14.0,64,98900,395,1322,350,245,553,80,27942,22347,9163,387,250,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,14.1,55,98900,650,1322,364,465,733,105,54969,40809,12400,552,130,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,11.6,38,98900,879,1322,378,676,846,114,82732,50650,13971,641,130,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,8.6,25,98900,1066,1322,393,854,919,113,107621,55817,14267,654,130,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,8.5,22,98900,1199,1322,404,982,964,108,126342,57361,13946,615,130,3.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,-3.7,9,98800,1268,1322,392,1049,985,105,136877,62226,13695,564,130,3.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,-6.0,7,98800,1268,1322,394,1049,985,104,136989,62699,13680,563,130,3.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,-5.3,7,98700,1200,1322,398,983,964,108,126973,61938,13994,615,130,4.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,-2.8,9,98700,1068,1322,401,855,920,113,108229,59737,14306,654,140,4.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,-0.2,11,98600,881,1322,405,678,847,114,83365,55226,14037,641,130,3.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,1.9,13,98600,652,1322,405,467,735,105,55527,45689,12484,553,130,1.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,3.6,14,98600,397,1322,406,247,555,80,28291,25778,9249,389,300,0.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,4.4,17,98500,138,1322,395,64,290,34,7101,0,3763,146,300,3.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,1.4,16,98600,0,53,380,0,0,0,0,0,0,0,280,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,3.5,20,98600,0,0,375,0,0,0,0,0,0,0,220,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,7.8,29,98700,0,0,375,0,0,0,0,0,0,0,220,2.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,11.8,42,98700,0,0,371,0,0,0,0,0,0,0,230,1.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.6,63,98700,0,0,362,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,15.5,67,98700,0,0,357,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,15.1,69,98700,0,0,351,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,15.4,73,98600,0,0,349,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,14.5,71,98600,0,0,346,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,15.0,73,98600,0,38,347,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.9,71,98700,134,1322,348,62,290,33,6862,0,3633,142,350,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,14.2,59,98700,392,1322,358,245,558,79,27874,22173,9030,381,350,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,12.6,44,98800,648,1322,371,466,742,102,55178,41797,12156,540,350,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,9.0,28,98800,877,1322,386,678,856,110,83292,52246,13594,622,350,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,8.9,23,98800,1065,1322,403,858,930,109,108374,55945,13769,630,350,0.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,5.5,15,98700,1198,1322,414,987,975,103,127495,59040,13403,589,150,2.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.4,3.0,12,98700,1267,1322,419,1054,997,100,137823,60583,13062,538,150,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.3,7.0,15,98700,1267,1322,430,1055,997,100,137704,58917,13056,538,150,4.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.3,2.4,11,98600,1199,1322,423,988,976,103,127808,60230,13398,588,170,5.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.2,3.5,12,98600,1067,1322,424,860,931,109,108863,58282,13798,630,130,4.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.8,3.3,12,98500,880,1322,422,681,857,111,83776,54550,13653,623,130,3.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.8,3.1,12,98500,650,1322,416,468,743,102,55724,45619,12230,541,280,4.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,1.7,12,98500,395,1322,409,247,560,79,28281,26138,9126,383,280,4.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,-0.3,11,98500,135,1322,396,63,291,33,7013,0,3700,143,280,3.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,4.8,19,98600,0,42,387,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,7.5,26,98600,0,0,383,0,0,0,0,0,0,0,270,1.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,9.0,31,98600,0,0,377,0,0,0,0,0,0,0,250,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,9.4,33,98600,0,0,374,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,9.4,35,98600,0,0,369,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,10.0,38,98600,0,0,366,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,13.1,55,98600,0,0,357,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,11.8,53,98600,0,0,351,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,12.1,55,98600,0,0,351,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,11.6,54,98600,0,26,360,0,0,0,0,0,0,0,150,0.0,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.3,51,98600,131,1323,352,61,286,32,6723,0,3587,139,120,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,11.8,45,98700,390,1323,365,242,554,79,27659,22906,9042,380,120,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,9.2,30,98700,646,1323,381,464,740,102,55013,43278,12200,541,120,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,7.8,22,98800,876,1323,397,677,855,111,83087,52761,13658,624,120,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.3,7.1,19,98800,1064,1323,409,856,929,109,108248,56818,13833,633,120,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.9,3.0,12,98800,1197,1323,417,986,975,104,127425,60031,13459,592,170,0.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.3,4.1,12,98700,1266,1323,426,1054,996,100,137638,60201,13111,541,170,4.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.4,2.1,11,98700,1266,1323,424,1054,996,100,137782,60932,13112,541,170,3.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.0,1.1,10,98600,1198,1323,425,987,975,104,127696,60671,13448,591,180,4.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.2,-1.2,8,98600,1066,1323,423,859,930,109,108826,59694,13855,632,140,4.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.9,1.1,10,98600,878,1323,425,679,856,111,83643,55183,13698,625,280,3.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,3.1,12,98500,649,1323,423,466,742,103,55502,45522,12260,542,270,3.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.5,2.2,11,98500,393,1323,419,245,557,79,28051,25814,9131,383,270,3.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,2.5,13,98500,133,1323,410,62,287,33,6861,0,3650,141,310,2.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,4.1,16,98600,0,32,398,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,5.5,20,98600,0,0,389,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,8.5,27,98600,0,0,387,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,9.5,30,98600,0,0,382,0,0,0,0,0,0,0,190,0.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,10.5,36,98600,0,0,375,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,13.3,49,98500,0,0,368,0,0,0,0,0,0,0,130,1.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,13.3,51,98500,0,0,364,0,0,0,0,0,0,0,180,0.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,13.4,57,98500,0,0,356,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,13.9,58,98500,0,0,358,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,13.8,59,98500,0,15,356,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,13.1,53,98600,129,1323,360,60,294,31,6654,0,3486,135,160,0.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,12.0,41,98700,388,1323,374,243,568,77,27793,22928,8794,369,160,2.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,10.3,29,98700,644,1323,392,467,758,98,55560,43271,11710,518,160,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,8.6,23,98700,874,1323,400,683,875,105,84149,52948,12928,589,160,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,6.5,17,98700,1062,1323,416,865,950,102,109853,57612,12943,589,100,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.5,6.0,15,98700,1196,1323,424,996,996,95,129315,59338,12427,544,100,1.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.5,8.2,15,98600,1265,1323,439,1064,1017,92,139662,58794,12050,496,100,3.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.2,7.6,14,98500,1266,1323,442,1065,1018,91,139792,59115,12043,495,130,4.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.2,7.0,13,98400,1197,1323,446,997,996,95,129472,58885,12426,544,130,4.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.7,7.9,13,98400,1065,1323,451,867,951,101,110115,56988,12928,589,90,2.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,42.0,5.6,11,98300,877,1323,449,685,876,105,84617,54299,12962,590,330,4.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,41.4,3.2,10,98300,647,1323,442,470,760,98,56098,46022,11766,519,290,3.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,40.7,4.6,11,98300,391,1323,440,246,571,77,28194,25491,8867,371,290,2.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.1,7.0,15,98300,131,1323,429,61,295,32,6798,0,3558,138,350,2.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.0,-3.9,7,98300,0,21,407,0,0,0,0,0,0,0,350,5.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.4,-3.5,8,98300,0,0,399,0,0,0,0,0,0,0,350,6.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,-2.1,10,98300,0,0,397,0,0,0,0,0,0,0,320,6.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.8,-7.8,6,98300,0,0,390,0,0,0,0,0,0,0,320,3.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,7,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.7,-7.6,6,98300,0,0,385,0,0,0,0,0,0,0,360,3.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,-6.4,7,98300,0,0,380,0,0,0,0,0,0,0,360,6.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,-3.8,10,98200,0,0,395,0,0,0,0,0,0,0,360,4.0,4,4,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,4.2,21,98200,0,0,396,0,0,0,0,0,0,0,40,3.1,4,4,16.1,1243,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.5,45,98200,0,0,385,0,0,0,0,0,0,0,40,0.0,3,3,16.1,1086,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,14.4,55,98200,0,3,377,0,0,0,0,0,0,0,80,0.2,2,2,16.1,1321,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,13.7,51,98200,127,1323,379,37,69,30,4090,0,3361,130,80,1.3,2,2,16.1,1072,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,9.5,37,98300,385,1323,373,172,208,112,19106,10811,12427,536,260,0.3,1,1,16.1,1312,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,9.9,32,98300,642,1323,381,434,638,124,50631,39457,14515,653,260,2.0,0,0,16.1,1494,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,9.6,26,98300,873,1323,397,635,746,143,76407,48479,17290,806,140,1.3,0,0,15.6,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.2,10.0,24,98300,1061,1323,420,638,419,302,74529,33602,35452,1749,70,0.2,2,2,12.4,1829,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,6.5,16,98300,1195,1323,438,717,409,347,84550,34047,41245,1984,70,1.5,4,4,9.9,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.0,6.0,14,98200,1264,1323,427,996,890,145,126512,56691,18564,790,150,2.0,0,0,11.5,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.2,8.5,16,98200,1265,1323,437,1018,932,127,130473,56687,16355,690,160,4.8,0,0,13.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,9.7,19,98200,1196,1323,427,866,727,209,106073,49727,25717,1192,160,5.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,12.1,29,98200,1063,1323,426,488,143,373,56051,12387,43094,2163,140,4.9,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,14.4,38,98200,876,1323,417,335,71,288,38010,5709,32861,1619,160,3.6,4,4,16.1,3070,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,15.1,44,98200,645,1323,407,244,87,202,27379,6261,22735,1065,160,3.3,3,3,16.1,3223,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,15.7,48,98200,389,1323,398,147,116,113,16212,5546,12511,543,160,3.2,2,2,16.1,3353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,16.0,51,98200,129,1323,390,46,58,40,4947,0,4350,173,120,3.4,1,1,16.1,3353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,15.8,52,98200,0,12,379,0,0,0,0,0,0,0,140,2.2,0,0,16.1,3353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,16.9,60,98300,0,0,375,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,17.7,67,98300,0,0,370,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,17.3,63,98300,0,0,373,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,7,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,17.8,69,98300,0,0,368,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,17.5,71,98200,0,0,364,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,16.1,69,98200,0,0,357,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,16.1,74,98200,0,0,353,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,15.8,75,98300,0,0,349,0,0,0,0,0,0,0,10,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,13.7,68,98300,0,0,344,0,0,0,0,0,0,0,10,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.0,59,98400,124,1317,351,59,314,30,6558,0,3287,127,10,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,13.7,53,98400,383,1323,363,233,529,80,26497,21042,9155,386,10,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,12.4,40,98500,640,1323,378,468,773,94,55722,42459,11244,496,140,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,10.3,30,98600,871,1323,402,525,440,236,60739,33709,27392,1325,140,0.5,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,12.8,33,98600,1060,1323,400,776,749,176,94319,48615,21446,1018,140,3.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,15.8,38,98600,1193,1323,407,825,641,247,99344,43335,29871,1409,120,5.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,13.7,31,98600,1263,1323,411,879,654,255,106752,45093,31150,1387,160,5.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,9.6,22,98600,1264,1323,411,922,743,213,113829,50479,26374,1156,130,4.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.8,7.8,19,98600,1195,1323,426,750,478,318,89078,38197,38035,1818,170,6.0,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,10.5,24,98500,1062,1323,412,776,746,177,94468,49664,21677,1028,190,5.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,8.6,20,98500,874,1323,412,628,722,151,75242,48017,18169,850,160,4.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,7.8,20,98500,643,1323,410,433,631,126,50517,39952,14744,663,170,4.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,8.8,21,98400,386,1323,409,234,520,82,26632,22778,9377,395,170,3.7,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,11.8,30,98400,127,1323,400,60,303,31,6609,0,3399,132,180,4.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,12.8,36,98400,0,1,391,0,0,0,0,0,0,0,160,3.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,16.4,53,98500,0,0,381,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,17.8,59,98500,0,0,382,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,17.8,61,98500,0,0,378,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,18.0,68,98500,0,0,370,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,19.0,80,98500,0,0,364,0,0,0,0,0,0,0,130,2.2,0,0,15.9,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,19.4,87,98500,0,0,360,0,0,0,0,0,0,0,130,2.4,0,0,14.5,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,19.4,87,98500,0,0,359,0,0,0,0,0,0,0,120,1.3,0,0,14.5,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,19.4,90,98500,0,0,357,0,0,0,0,0,0,0,120,0.0,0,0,14.5,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,19.3,89,98600,0,0,357,0,0,0,0,0,0,0,120,0.0,0,0,14.2,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,18.9,83,98600,122,1307,360,55,271,30,6028,0,3279,128,150,0.0,0,0,12.9,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,18.0,70,98700,380,1324,369,230,518,81,25992,18631,9198,389,150,0.5,0,0,13.4,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,12.3,39,98800,638,1324,381,447,700,110,52589,40400,12946,577,150,3.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,8.9,26,98800,869,1324,390,656,813,122,79868,50965,14950,688,120,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,6.0,20,98800,1058,1324,395,833,887,124,104299,56136,15563,718,120,2.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,5.5,17,98700,1192,1324,403,961,933,121,122651,58013,15452,689,180,1.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,4.4,15,98700,1262,1324,409,1027,954,118,132585,59075,15233,641,180,3.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,1.1,11,98600,1262,1324,408,1028,954,118,132796,60216,15249,640,180,2.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.8,1.2,11,98500,1194,1324,414,962,933,120,123054,59536,15454,688,150,2.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.2,2.4,12,98400,1061,1324,417,836,888,124,104760,57447,15585,719,150,2.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.3,4.6,13,98400,872,1324,421,659,815,122,80409,52724,14989,689,150,6.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.3,7.0,17,98400,641,1324,419,450,702,110,53120,42759,13030,580,140,5.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,7.3,18,98300,384,1324,413,233,521,82,26498,23038,9325,392,140,5.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,8.0,24,98400,124,1313,394,56,271,30,6205,0,3390,131,120,4.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,9.6,31,98400,0,0,382,0,0,0,0,0,0,0,110,4.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,10.8,39,98500,0,0,371,0,0,0,0,0,0,0,120,2.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,12.1,43,98500,0,0,370,0,0,0,0,0,0,0,70,1.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,11.9,44,98500,0,0,367,0,0,0,0,0,0,0,90,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,13.0,48,98500,0,0,368,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,14.2,53,98500,0,0,366,0,0,0,0,0,0,0,100,2.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,12.8,50,98500,0,0,363,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,12.8,50,98500,0,0,362,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,12.9,52,98500,0,0,360,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,13.4,54,98500,0,0,361,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.9,55,98500,120,1296,363,56,317,28,6259,0,3077,119,210,1.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,13.9,49,98500,378,1324,372,222,478,85,24999,19431,9649,408,210,1.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,13.6,41,98500,636,1324,385,431,644,121,50182,37857,14209,639,210,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,11.5,30,98500,867,1324,398,638,766,136,76907,48206,16499,766,100,0.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,8.3,21,98500,1057,1324,409,816,850,137,101212,54052,17125,797,100,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,10.8,24,98500,1191,1324,415,881,769,190,108587,50744,23503,1086,150,5.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.2,9.2,21,98500,1261,1324,434,731,358,390,86086,30105,46231,2128,150,4.5,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.3,7.5,17,98400,1261,1324,434,748,390,377,88437,32670,44814,2054,120,3.7,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.2,6.2,15,98300,1193,1324,423,907,821,167,113029,54454,20957,957,110,4.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,6.7,16,98300,1059,1324,423,805,820,149,99422,53824,18461,864,100,3.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,6.1,15,98300,871,1324,422,637,754,141,76762,50110,17011,790,100,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.4,5.7,15,98300,639,1324,418,427,622,127,49879,40117,14858,668,310,2.9,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,4.5,14,98300,381,1324,413,223,475,86,25311,22175,9828,415,310,3.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,2.7,14,98300,122,1302,400,60,356,27,6726,0,3054,117,300,3.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,8.6,26,98300,0,0,390,0,0,0,0,0,0,0,140,3.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,10.5,32,98400,0,0,383,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,13.6,45,98400,0,0,376,0,0,0,0,0,0,0,130,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,15.0,54,98400,0,0,370,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,14.8,55,98400,0,0,368,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,14.0,52,98400,0,0,367,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,14.5,54,98400,0,0,367,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,14.9,58,98400,0,0,364,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,14.3,58,98400,0,0,360,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,14.2,57,98400,0,0,362,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,15.6,61,98500,117,1285,365,51,259,28,5667,0,3126,121,140,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,15.3,52,98600,376,1324,375,221,482,84,24882,18788,9503,402,140,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,12.5,39,98600,634,1324,381,433,657,118,50543,38770,13841,620,140,0.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,7.8,24,98600,866,1324,392,637,767,136,76932,49872,16453,763,140,2.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,8.4,21,98600,1055,1324,406,810,839,141,100290,53695,17552,819,140,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,11.2,24,98600,1190,1324,416,935,884,140,117718,53984,17720,802,110,2.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,8.3,19,98600,1260,1324,418,1000,906,138,127332,56146,17685,756,160,2.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.8,7.8,17,98500,1260,1324,423,1000,906,138,127428,56387,17695,756,160,3.9,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.0,5.5,14,98500,1191,1324,421,936,885,140,118229,56695,17759,801,150,5.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,8.5,19,98400,1058,1324,418,812,840,141,100594,53687,17553,819,150,4.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,9.5,21,98400,869,1324,418,640,768,136,77223,49248,16475,765,130,3.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,8.8,20,98400,637,1324,416,435,659,118,51009,40474,13910,622,100,3.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.8,8.5,20,98400,379,1324,413,223,484,85,25280,21352,9616,406,100,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,8.5,21,98400,119,1291,407,52,259,29,5801,0,3211,124,290,0.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,3.5,17,98400,0,0,392,0,0,0,0,0,0,0,290,2.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,5.9,22,98400,0,0,385,0,0,0,0,0,0,0,260,1.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,14.6,46,98400,0,0,381,0,0,0,0,0,0,0,150,2.1,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,15.7,52,98400,0,0,379,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,16.0,58,98500,0,0,372,0,0,0,0,0,0,0,110,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,15.7,59,98500,0,0,368,0,0,0,0,0,0,0,60,2.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.9,64,98400,0,0,363,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,15.1,65,98400,0,0,356,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,15.6,64,98400,0,0,360,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,15.8,67,98500,0,0,359,0,0,0,0,0,0,0,120,1.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,16.4,66,98500,115,1276,363,50,256,27,5502,0,3042,118,120,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,14.8,56,98500,373,1324,367,217,468,85,24412,18487,9596,406,120,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,13.3,44,98500,632,1324,376,427,641,121,49723,37772,14140,635,120,0.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,9.8,30,98500,864,1324,386,630,750,141,75738,48425,16985,790,120,2.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,9.3,26,98600,1054,1324,396,801,821,148,98799,52721,18278,856,120,3.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,11.9,29,98600,1189,1324,405,925,866,148,115960,53099,18593,846,140,3.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,12.9,29,98500,1259,1324,413,989,887,146,125171,53109,18586,801,140,3.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,12.6,26,98400,1259,1324,420,990,888,146,125259,53299,18575,800,100,2.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,9.5,20,98300,1190,1324,419,926,867,148,116306,54418,18609,845,150,1.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,12.7,25,98300,1056,1324,423,803,822,148,98894,50965,18257,856,150,3.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.0,11.6,24,98200,867,1324,419,632,751,141,75978,47647,17001,792,130,5.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,10.3,24,98200,635,1324,411,429,643,121,50135,39234,14211,637,120,4.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,9.0,23,98200,376,1324,405,219,471,85,24760,20622,9688,409,120,4.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,9.5,26,98200,117,1280,397,50,255,28,5614,0,3116,120,120,3.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,10.2,31,98300,0,0,386,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,11.7,36,98300,0,0,382,0,0,0,0,0,0,0,120,2.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,14.9,49,98300,0,0,379,0,0,0,0,0,0,0,90,2.4,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,14.2,48,98300,0,0,375,0,0,0,0,0,0,0,70,1.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,13.6,47,98300,0,0,374,0,0,0,0,0,0,0,80,1.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,15.0,55,98300,0,0,369,0,0,0,0,0,0,0,90,2.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,14.9,59,98200,0,0,363,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,14.5,56,98200,0,0,364,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,14.9,61,98200,0,0,360,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,14.4,59,98200,0,0,360,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,14.4,56,98300,113,1266,363,48,254,27,5360,0,2963,114,160,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,14.3,49,98300,371,1325,374,213,456,86,23981,18204,9668,409,160,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,13.8,43,98300,630,1325,383,422,627,124,48991,36975,14428,649,160,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,13.1,35,98300,862,1325,396,623,734,145,74566,46255,17481,816,160,1.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,12.7,29,98300,1053,1325,410,793,805,154,97325,50467,18949,892,140,1.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,15.4,31,98300,1187,1325,423,916,849,155,114180,50380,19386,887,140,4.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,14.3,30,98300,1257,1325,420,980,871,154,123405,51782,19467,845,140,4.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,13.9,27,98200,1258,1325,426,981,871,154,123506,52067,19474,844,140,5.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,13.7,26,98200,1189,1325,427,917,850,155,114481,51575,19410,887,150,5.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,12.6,25,98100,1055,1325,425,795,806,154,97580,50552,18956,892,110,4.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.2,11.8,24,98100,865,1325,420,625,735,146,74930,47005,17507,817,130,4.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,11.7,25,98100,632,1325,415,424,628,124,49340,38066,14496,652,120,3.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,11.6,26,98100,373,1325,411,215,458,86,24257,19354,9742,412,120,3.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,11.4,29,98100,114,1268,402,49,253,27,5436,0,3013,116,100,3.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,13.4,37,98100,0,0,393,0,0,0,0,0,0,0,80,2.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,13.9,43,98100,0,0,382,0,0,0,0,0,0,0,90,2.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,13.7,47,98200,0,0,373,0,0,0,0,0,0,0,110,2.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,12.9,49,98200,0,0,365,0,0,0,0,0,0,0,120,3.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,7,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,13.3,52,98200,0,0,363,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,13.6,53,98200,0,0,363,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,14.9,61,98100,0,0,359,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,14.6,63,98100,0,0,356,0,0,0,0,0,0,0,140,1.9,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.7,70,98200,0,0,355,0,0,0,0,0,0,0,110,3.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,16.1,75,98200,0,0,352,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,16.2,70,98300,111,1257,357,51,315,25,5671,0,2737,105,190,0.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,16.7,65,98400,368,1325,366,208,433,87,23271,16539,9832,417,190,0.0,0,0,16.1,809,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,16.6,59,98400,627,1325,374,406,573,135,46719,33517,15563,706,30,0.2,0,0,15.4,732,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,16.2,51,98400,861,1325,383,569,581,192,66439,38644,22492,1074,30,1.7,0,0,10.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,17.5,48,98500,1051,1325,397,717,623,223,85227,41177,26625,1292,120,2.2,0,0,6.4,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,19.0,50,98500,1186,1325,425,622,245,403,71848,19467,46872,2311,130,3.0,4,4,7.4,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,19.3,52,98400,1256,1325,411,685,283,417,79618,22175,48815,2292,160,2.1,1,1,12.0,823,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,18.1,43,98300,1257,1325,412,871,647,258,105218,42276,31300,1416,240,1.7,0,0,6.9,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,16.7,35,98300,1187,1325,423,906,828,164,112344,48868,20387,938,190,3.6,0,0,10.6,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,13.6,28,98200,1053,1325,420,840,915,113,105376,52767,14277,658,150,6.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,14.0,32,98200,863,1325,412,617,717,151,73630,45174,18056,846,140,6.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,15.2,38,98200,630,1325,402,368,428,165,41744,27881,18771,864,150,6.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,17.7,50,98200,370,1325,396,166,216,106,18345,9287,11750,507,150,5.9,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,17.3,52,98300,112,1259,389,47,108,38,5077,0,4112,164,160,4.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,17.8,57,98300,0,0,384,0,0,0,0,0,0,0,140,3.2,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,17.8,61,98300,0,0,379,0,0,0,0,0,0,0,150,3.5,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,17.6,64,98400,0,0,373,0,0,0,0,0,0,0,130,2.6,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,16.6,62,98400,0,0,369,0,0,0,0,0,0,0,130,2.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,16.3,63,98400,0,0,366,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,17.1,69,98400,0,0,364,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,16.9,75,98400,0,0,356,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,17.9,82,98300,0,0,355,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,18.3,87,98400,0,0,353,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,18.4,87,98400,0,0,354,0,0,0,0,0,0,0,180,1.5,0,0,15.9,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,18.9,86,98500,109,1247,358,46,250,25,5060,0,2793,108,150,1.5,0,0,14.5,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,18.8,77,98600,366,1325,365,206,434,87,23057,15436,9719,413,120,1.6,0,0,14.7,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,18.1,69,98600,625,1325,371,412,601,128,47500,33561,14840,671,150,2.2,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,17.2,59,98600,859,1325,378,610,706,153,72504,42750,18265,859,150,2.7,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,17.0,51,98600,1050,1325,390,779,776,164,94700,46741,20079,952,140,3.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,15.4,39,98600,1185,1325,401,900,819,167,111458,49603,20802,959,140,4.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,13.7,33,98500,1255,1325,405,963,841,167,120519,51425,20998,920,150,3.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,9.7,24,98500,1255,1325,406,963,841,167,120817,53683,21043,919,150,5.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,10.2,26,98500,1186,1325,401,900,820,167,111938,52718,20863,958,160,5.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,4.8,18,98400,1051,1325,392,780,776,164,95518,52947,20221,953,180,5.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,4.6,18,98400,861,1325,394,612,707,153,73244,48640,18409,859,160,4.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,6.4,21,98400,627,1325,394,413,602,128,48054,38707,14974,673,150,4.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,9.1,26,98400,367,1325,392,208,435,87,23373,18968,9824,415,150,4.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,14.1,44,98400,110,1248,382,46,249,25,5113,0,2829,109,130,5.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,15.0,53,98400,0,0,373,0,0,0,0,0,0,0,130,4.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,15.0,56,98500,0,0,367,0,0,0,0,0,0,0,110,3.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,15.0,60,98500,0,0,363,0,0,0,0,0,0,0,110,3.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,15.0,60,98500,0,0,362,0,0,0,0,0,0,0,130,2.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,7,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,14.9,61,98500,0,0,359,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,14.7,63,98500,0,0,356,0,0,0,0,0,0,0,90,1.8,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,16.8,76,98500,0,0,354,0,0,0,0,0,0,0,140,0.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,17.3,79,98500,0,0,354,0,0,0,0,0,0,0,140,2.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,17.8,82,98500,0,0,355,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,17.8,83,98600,0,0,353,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,17.8,80,98600,107,1238,356,45,258,24,4995,0,2701,104,110,1.6,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,17.8,75,98700,363,1326,362,206,440,85,23033,15855,9591,407,150,1.8,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,17.5,65,98700,623,1326,372,413,610,126,47671,34170,14611,659,150,0.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,15.8,53,98700,857,1326,377,613,716,150,72968,44023,17920,840,160,0.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,14.5,42,98700,1048,1326,389,782,787,160,95464,48818,19639,928,160,4.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,14.2,38,98700,1183,1326,397,904,831,162,112310,50760,20265,932,140,1.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,9.4,25,98700,1254,1326,399,968,852,162,121635,54188,20462,894,140,3.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,9.4,23,98600,1254,1326,405,968,852,162,121661,54189,20467,894,140,4.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.7,9.3,22,98600,1184,1326,408,905,831,162,112713,53523,20329,932,160,4.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,9.1,23,98500,1049,1326,403,783,787,160,95881,51714,19712,929,160,5.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,9.3,24,98500,858,1326,401,614,717,150,73405,47397,18010,841,150,5.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,9.7,26,98500,625,1326,396,414,610,126,48064,37929,14711,661,120,5.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,9.6,28,98500,364,1326,391,207,441,86,23263,18777,9668,408,120,4.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,10.6,35,98500,107,1236,378,45,260,24,5046,0,2714,104,120,3.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,11.1,41,98600,0,0,368,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.1,57,98600,0,0,360,0,0,0,0,0,0,0,100,2.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,14.9,66,98700,0,0,354,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,14.7,68,98700,0,0,351,0,0,0,0,0,0,0,100,2.4,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,16.2,79,98800,0,0,348,0,0,0,0,0,0,0,130,1.7,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,16.6,82,98800,0,0,347,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.1,84,98700,0,0,343,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,16.1,84,98700,0,0,342,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,16.2,87,98700,0,0,340,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,16.7,87,98800,0,0,344,0,0,0,0,0,0,0,120,0.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.8,85,98800,105,1229,346,49,82,42,5156,0,4488,181,120,2.1,0,0,15.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,17.2,87,98900,360,1326,353,149,164,104,16398,6953,11537,497,140,1.8,1,1,8.5,335,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,17.2,81,98900,621,1326,364,278,173,197,30952,11953,22060,1030,100,0.9,2,2,11.8,335,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,17.1,68,98900,855,1326,365,524,464,224,60338,32566,25986,1257,100,0.4,0,0,14.7,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,16.6,55,98900,1047,1326,380,725,651,211,86524,42837,25359,1225,110,2.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,15.4,45,98800,1182,1326,390,885,792,179,109050,48868,22111,1025,170,3.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,11.0,29,98800,1252,1326,396,983,886,147,124390,54285,18640,811,150,4.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,10.8,28,98700,1252,1326,400,968,854,161,121569,53534,20326,890,120,4.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,9.3,24,98600,1182,1326,401,906,837,159,113024,53714,19978,916,160,4.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,8.7,23,98600,1047,1326,400,775,772,166,94697,51375,20307,959,140,4.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,7.9,22,98500,856,1326,400,615,726,147,73719,48266,17636,821,110,4.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,7.8,23,98500,622,1326,396,414,620,123,48224,38854,14411,645,130,4.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,7.9,24,98500,361,1326,391,203,429,86,22803,18605,9695,408,130,4.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,8.7,30,98500,104,1223,378,49,359,21,5552,0,2375,90,110,3.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,11.4,41,98600,0,0,370,0,0,0,0,0,0,0,110,3.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,13.4,55,98700,0,0,359,0,0,0,0,0,0,0,110,3.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,16.6,76,98800,0,0,353,0,0,0,0,0,0,0,120,3.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,16.2,76,98800,0,0,351,0,0,0,0,0,0,0,120,2.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.7,79,98800,0,0,351,0,0,0,0,0,0,0,100,1.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,16.6,81,98800,0,0,348,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,16.1,79,98700,0,0,347,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,16.2,82,98700,0,0,345,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.7,87,98700,0,0,343,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,17.2,90,98700,0,0,355,0,0,0,0,0,0,0,140,1.8,2,2,15.6,396,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,17.2,86,98700,102,1218,366,35,141,24,3857,0,2660,102,110,1.6,4,4,14.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,17.2,77,98800,358,1327,355,198,414,87,22144,15161,9714,412,110,1.8,0,0,14.7,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,17.1,72,98800,619,1327,361,379,492,149,43131,29814,17067,780,90,0.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,16.7,63,98800,853,1327,369,541,516,209,62683,35370,24338,1170,90,0.4,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,16.7,53,98800,1045,1327,383,699,590,234,82744,40266,27890,1358,90,2.9,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,16.4,46,98800,1181,1327,394,849,716,212,103188,45810,25899,1218,120,4.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,14.7,38,98700,1251,1327,400,940,800,186,116569,49691,23153,1028,120,3.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,12.8,31,98600,1251,1327,404,947,814,179,117862,51282,22434,993,140,4.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.6,9.9,25,98600,1181,1327,403,899,825,165,111784,53059,20604,948,160,4.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,9.2,25,98500,1045,1327,397,758,734,180,91995,49804,21908,1041,160,5.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,8.3,24,98500,854,1327,396,594,668,164,70470,45799,19540,918,160,5.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,8.6,25,98500,619,1327,392,392,541,139,45115,35211,16091,727,160,5.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,9.7,28,98500,357,1327,390,198,417,86,22290,17590,9717,410,160,4.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,14.4,48,98500,101,1210,377,44,300,21,4974,0,2411,92,120,4.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,14.7,54,98500,0,0,369,0,0,0,0,0,0,0,120,3.7,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,16.3,66,98500,0,0,363,0,0,0,0,0,0,0,110,4.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,17.2,76,98600,0,0,357,0,0,0,0,0,0,0,100,3.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,17.2,79,98600,0,0,354,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,17.2,81,98600,0,0,351,0,0,0,0,0,0,0,130,2.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,17.4,86,98500,0,0,348,0,0,0,0,0,0,0,150,1.2,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,17.2,90,98500,0,0,362,0,0,0,0,0,0,0,150,1.5,4,4,14.4,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,17.2,93,98500,0,0,361,0,0,0,0,0,0,0,150,2.6,5,5,11.3,244,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,17.8,93,98500,0,0,366,0,0,0,0,0,0,0,110,2.6,5,5,9.7,248,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,17.8,90,98500,0,0,368,0,0,0,0,0,0,0,160,0.0,5,5,9.7,287,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,17.1,85,98600,100,1206,368,33,60,29,3649,0,3166,124,160,2.1,5,5,10.2,355,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,16.7,78,98600,355,1327,372,134,120,102,14760,5006,11267,484,130,1.5,5,5,12.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,16.0,69,98600,617,1327,357,365,446,157,41376,28160,17939,822,170,0.3,0,0,13.4,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,15.5,60,98600,852,1327,365,531,492,216,61425,34686,25051,1206,170,2.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,15.0,50,98600,1043,1327,377,700,595,232,82964,41367,27669,1345,170,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,15.1,41,98500,1179,1327,395,882,791,179,108655,49060,22159,1029,130,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,15.4,38,98400,1249,1327,404,969,862,157,121562,50836,19834,873,130,1.8,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,14.4,34,98400,1249,1327,408,973,869,154,122276,51742,19479,855,130,3.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,14.5,33,98300,1179,1327,411,878,782,183,108014,49189,22596,1051,150,3.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,15.0,34,98200,1043,1327,411,758,738,178,91709,46973,21613,1030,140,3.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,14.9,35,98200,851,1327,408,585,650,169,69041,42112,19986,944,130,4.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,15.0,38,98200,616,1327,401,379,500,147,43237,31021,16811,765,110,4.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,14.7,40,98200,354,1327,394,180,322,94,19974,13178,10470,446,110,4.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,13.2,43,98200,98,1194,377,43,310,20,4846,0,2271,86,130,4.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,15.7,61,98300,0,0,365,0,0,0,0,0,0,0,110,3.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,16.1,69,98300,0,0,358,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,16.1,71,98400,0,0,355,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,16.1,75,98400,0,0,351,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.1,76,98400,0,0,350,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,16.1,79,98300,0,0,347,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.2,82,98300,0,0,345,0,0,0,0,0,0,0,110,1.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.7,85,98300,0,0,345,0,0,0,0,0,0,0,80,2.2,0,0,15.6,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98300,0,0,355,0,0,0,0,0,0,0,140,2.2,3,3,11.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,16.7,90,98400,0,0,359,0,0,0,0,0,0,0,120,1.5,4,4,11.0,230,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,16.7,87,98400,98,1193,361,33,140,22,3624,0,2481,95,180,1.3,4,4,9.7,314,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,16.7,84,98500,353,1327,361,142,153,102,15662,6333,11245,482,180,0.2,3,3,9.9,379,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,16.7,79,98500,615,1327,366,274,173,194,30574,11969,21782,1015,170,1.1,3,3,11.3,457,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,16.1,66,98500,850,1327,361,519,460,224,59739,32751,25917,1252,170,0.4,0,0,13.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,16.1,55,98500,1042,1327,377,711,624,221,84457,42038,26365,1278,170,2.2,0,0,14.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,16.2,49,98500,1178,1327,388,865,756,194,105772,47247,23822,1115,170,0.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,16.8,47,98400,1248,1327,394,922,768,200,113494,47297,24708,1109,120,2.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,17.1,44,98300,1248,1327,402,918,760,203,112801,46831,25139,1131,120,5.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,16.8,44,98300,1177,1327,401,846,716,211,102771,45539,25793,1215,150,4.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,17.2,46,98200,1041,1327,399,728,670,203,87042,43149,24410,1177,130,4.9,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,17.1,48,98200,848,1327,395,549,550,198,63808,36678,23090,1105,120,4.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,16.9,50,98200,613,1327,390,364,453,155,41263,27987,17630,807,140,4.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,16.7,51,98200,350,1327,386,178,324,93,19750,12451,10324,440,140,3.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,16.7,55,98200,84,1039,380,40,162,29,4255,0,3165,125,100,3.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,16.7,63,98200,0,0,368,0,0,0,0,0,0,0,130,2.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,16.7,72,98300,0,0,358,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,16.6,76,98300,0,0,353,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.0,75,98300,0,0,350,0,0,0,0,0,0,0,110,2.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,15.7,77,98300,0,0,346,0,0,0,0,0,0,0,100,3.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,16.0,84,98300,0,0,342,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.6,87,98300,0,0,337,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,15.5,87,98300,0,0,336,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,16.1,88,98300,0,0,345,0,0,0,0,0,0,0,130,0.8,1,1,15.5,285,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.1,90,98300,0,0,349,0,0,0,0,0,0,0,130,0.0,2,2,14.2,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,16.1,89,98400,84,1037,353,29,65,25,3131,0,2694,105,110,0.3,3,3,12.9,309,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,16.1,83,98400,350,1328,361,135,129,101,14825,5357,11121,476,110,1.8,4,4,12.9,335,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.1,76,98400,612,1328,368,273,172,194,30449,12018,21709,1011,110,0.0,4,4,13.4,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,16.1,65,98400,848,1328,362,542,530,204,62878,36271,23757,1139,110,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,16.2,59,98400,1040,1328,371,686,567,242,80930,39459,28728,1402,110,0.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,16.6,53,98300,1176,1328,382,827,675,229,99817,44233,27823,1319,130,2.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,16.1,47,98300,1246,1328,391,897,718,223,109566,46229,27384,1241,130,1.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,16.1,43,98200,1246,1328,398,937,801,185,116011,48779,22967,1027,130,1.8,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,16.1,42,98200,1175,1328,400,874,781,183,107404,48099,22562,1052,130,3.7,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,16.1,44,98100,1039,1328,397,739,700,192,88750,44954,23134,1110,160,4.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,15.9,44,98100,846,1328,394,560,586,186,65407,38926,21885,1042,130,4.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,15.8,47,98100,609,1328,389,364,462,152,41384,28798,17369,793,120,4.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,15.7,49,98100,347,1328,384,178,334,91,19746,12832,10117,429,120,4.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,16.2,56,98100,81,1018,376,37,167,27,4015,0,2929,115,100,3.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,16.7,68,98100,0,0,363,0,0,0,0,0,0,0,130,3.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,16.7,77,98100,0,0,353,0,0,0,0,0,0,0,130,3.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,16.7,82,98200,0,0,348,0,0,0,0,0,0,0,80,3.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.7,85,98200,0,0,345,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.7,91,98300,0,0,347,0,0,0,0,0,0,0,100,2.1,1,1,15.6,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.7,93,98200,0,0,358,0,0,0,0,0,0,0,110,2.5,5,5,14.5,187,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,16.7,94,98200,0,0,358,0,0,0,0,0,0,0,150,1.8,5,5,14.0,213,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,16.7,96,98200,0,0,356,0,0,0,0,0,0,0,180,0.2,5,5,11.3,213,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.7,93,98200,0,0,358,0,0,0,0,0,0,0,180,1.5,5,5,11.3,217,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.7,93,98200,0,0,359,0,0,0,0,0,0,0,140,1.5,5,5,10.8,248,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,16.7,89,98200,81,1022,362,26,60,23,2872,0,2477,96,140,1.0,5,5,8.6,285,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,16.6,83,98200,347,1328,367,130,119,99,14360,4823,10965,469,140,1.5,5,5,8.3,335,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,16.1,72,98300,610,1328,373,283,200,191,31593,13896,21436,996,80,1.3,4,4,9.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,16.0,64,98300,846,1328,375,429,243,274,48618,18984,31265,1533,80,0.0,2,2,11.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,15.5,54,98300,1039,1328,374,698,599,230,82696,41288,27350,1329,190,0.4,0,0,10.6,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,15.1,44,98200,1175,1328,389,859,748,197,104946,47745,24177,1133,190,2.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,15.6,41,98200,1245,1328,399,946,823,174,117691,49741,21808,973,140,4.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,15.8,39,98200,1244,1328,405,954,840,167,118994,50014,20936,931,140,3.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,16.7,45,98100,1173,1328,399,814,651,239,97888,43260,28890,1376,140,5.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,16.7,45,98100,1036,1328,398,701,609,225,83019,41064,26833,1304,130,4.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,16.7,46,98100,843,1328,396,537,525,204,62190,35692,23715,1137,130,4.6,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,16.7,49,98000,606,1328,391,369,490,146,42055,29543,16684,759,150,4.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,16.8,52,98000,343,1328,386,173,320,91,19205,11887,10095,429,150,4.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,17.2,61,98000,78,997,374,34,160,25,3723,0,2720,107,120,4.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,17.2,72,98100,0,0,361,0,0,0,0,0,0,0,90,3.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,17.2,79,98100,0,0,353,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,17.2,84,98100,0,0,349,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,17.2,88,98100,0,0,346,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,17.1,90,98200,0,0,343,0,0,0,0,0,0,0,160,0.3,0,0,15.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.8,91,98200,0,0,341,0,0,0,0,0,0,0,160,2.0,0,0,13.8,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,17.1,92,98100,0,0,341,0,0,0,0,0,0,0,100,1.5,0,0,9.7,217,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,16.7,88,98100,0,0,343,0,0,0,0,0,0,0,60,1.6,0,0,9.7,248,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98200,0,0,347,0,0,0,0,0,0,0,50,2.2,1,1,9.7,280,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,16.7,90,98200,0,0,348,0,0,0,0,0,0,0,50,0.0,1,1,9.4,309,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,16.7,86,98200,79,1007,356,29,94,23,3133,0,2526,98,50,0.0,2,2,8.0,339,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,16.7,80,98200,345,1329,361,148,189,99,16266,7553,10915,467,160,0.4,2,2,8.0,366,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,16.7,75,98300,608,1329,367,291,225,188,32504,15372,21117,981,150,2.0,2,2,8.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,16.7,66,98300,844,1329,365,528,498,212,61001,34380,24604,1183,90,1.7,0,0,9.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,16.7,61,98300,1037,1329,371,657,502,265,76871,36028,31221,1536,90,2.7,0,0,11.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,16.6,53,98300,1173,1329,383,804,630,248,96473,42504,29941,1430,140,3.0,0,0,13.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,16.1,46,98300,1243,1329,393,892,713,225,108864,46088,27591,1256,160,2.4,0,0,14.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,16.1,44,98200,1243,1329,395,915,761,203,112435,47638,25048,1132,140,4.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,16.2,44,98200,1171,1329,397,851,737,202,103681,46664,24681,1162,120,4.7,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,16.6,47,98100,1034,1329,394,710,637,215,84429,42263,25660,1242,140,5.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,16.3,47,98100,840,1329,391,552,574,189,64269,38100,22128,1054,150,5.7,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,16.1,50,98100,603,1329,385,355,443,154,40225,27639,17503,799,160,5.7,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,16.1,51,98100,339,1329,382,173,329,89,19159,12120,9898,419,160,5.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,16.2,57,98100,74,976,373,35,164,26,3770,0,2788,110,130,4.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,16.7,70,98100,0,0,361,0,0,0,0,0,0,0,130,3.6,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,16.8,80,98200,0,0,351,0,0,0,0,0,0,0,150,3.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,17.2,88,98200,0,0,346,0,0,0,0,0,0,0,140,3.1,0,0,15.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,17.2,90,98300,0,0,344,0,0,0,0,0,0,0,140,2.9,0,0,14.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,17.2,87,98300,0,0,346,0,0,0,0,0,0,0,150,3.0,0,0,12.9,309,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,17.1,87,98300,0,0,353,0,0,0,0,0,0,0,160,2.4,1,1,12.9,344,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.4,83,98200,0,0,352,0,0,0,0,0,0,0,160,1.8,1,1,13.6,423,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.1,81,98200,0,0,356,0,0,0,0,0,0,0,160,0.0,2,2,14.2,518,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.1,81,98200,0,0,356,0,0,0,0,0,0,0,180,0.3,2,2,13.1,518,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.1,81,98300,0,0,360,0,0,0,0,0,0,0,180,2.2,3,3,14.2,518,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.0,81,98300,77,991,360,27,61,24,2968,0,2592,101,170,2.4,3,3,12.6,518,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,15.6,77,98400,342,1329,364,129,122,98,14223,4943,10798,461,230,1.5,4,4,11.3,527,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,15.6,70,98400,606,1329,372,267,166,191,29756,11594,21434,995,130,1.6,4,4,11.3,579,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,15.7,64,98500,842,1329,374,414,215,277,46788,16972,31551,1548,130,2.2,2,2,11.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,16.1,61,98500,1035,1329,368,656,503,264,76839,36387,31110,1529,130,2.7,0,0,14.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,15.9,54,98400,1171,1329,376,774,566,276,92148,40068,32992,1589,150,3.2,0,0,14.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,14.7,44,98400,1242,1329,386,880,689,236,106999,46069,28819,1318,150,3.4,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,13.1,37,98400,1241,1329,389,926,788,190,114527,50364,23658,1065,130,2.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,11.6,32,98300,1169,1329,392,892,831,161,110830,52402,20093,929,140,5.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,10.9,32,98300,1031,1329,388,753,749,172,91360,49535,20982,996,160,4.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,10.5,31,98200,837,1329,388,589,693,153,70035,45726,18290,854,160,5.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,10.6,32,98200,599,1329,385,382,556,131,43973,34595,15152,680,130,4.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,11.3,36,98200,335,1329,381,182,395,82,20314,14991,9199,386,130,4.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.3,44,98200,71,954,369,34,198,23,3673,0,2530,99,160,4.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,13.0,53,98200,0,0,360,0,0,0,0,0,0,0,160,3.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,14.1,59,98300,0,0,358,0,0,0,0,0,0,0,120,2.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,15.2,70,98300,0,0,351,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,16.1,79,98400,0,0,347,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,16.1,85,98400,0,0,342,0,0,0,0,0,0,0,130,2.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.1,90,98400,0,0,338,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.1,90,98400,0,0,349,0,0,0,0,0,0,0,110,0.7,2,2,15.6,274,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.7,93,98400,0,0,353,0,0,0,0,0,0,0,90,2.0,3,3,12.4,239,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.7,93,98400,0,0,353,0,0,0,0,0,0,0,60,1.3,3,3,9.7,222,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.5,89,98400,0,0,355,0,0,0,0,0,0,0,250,0.0,3,3,9.7,282,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,16.1,86,98500,75,976,358,26,65,22,2825,0,2436,95,250,1.6,4,4,9.7,309,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.0,83,98500,339,1329,360,130,129,97,14313,5132,10715,457,180,1.8,4,4,9.9,353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.6,79,98600,603,1329,362,250,131,190,27825,9112,21318,989,180,0.3,4,4,11.3,457,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,15.5,67,98600,840,1329,368,408,207,278,46187,16396,31567,1548,180,2.0,2,2,10.8,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,14.9,58,98600,1033,1329,364,665,528,255,78141,38188,30088,1474,180,1.3,0,0,9.3,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,13.8,46,98600,1170,1329,377,852,741,199,103989,48318,24457,1149,110,0.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,10.5,32,98600,1240,1329,386,954,849,162,119610,53629,20457,910,110,2.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,10.3,29,98500,1239,1329,391,975,892,143,123294,54909,18211,804,200,3.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,11.0,30,98500,1167,1329,395,899,850,153,112084,53266,19154,882,140,5.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,6.8,22,98400,1029,1329,390,772,800,153,94628,53062,18801,883,140,5.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,5.3,21,98400,834,1329,384,590,703,150,70387,47934,17911,833,140,5.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,5.4,23,98400,596,1329,377,375,539,134,43174,35187,15441,692,150,4.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,6.5,26,98400,331,1329,373,169,335,86,18897,13936,9621,404,150,4.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,9.5,36,98400,68,932,368,33,168,25,3575,0,2657,104,150,4.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.0,53,98500,0,0,359,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,14.2,61,98500,0,0,355,0,0,0,0,0,0,0,90,2.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,15.7,75,98600,0,0,349,0,0,0,0,0,0,0,100,3.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,16.1,85,98600,0,0,342,0,0,0,0,0,0,0,140,2.9,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,16.1,90,98700,0,0,337,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,16.1,93,98600,0,0,335,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.1,89,98700,0,0,344,0,0,0,0,0,0,0,140,0.0,1,1,15.9,366,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,16.1,86,98700,0,0,352,0,0,0,0,0,0,0,80,0.3,2,2,14.8,384,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.6,81,98700,0,0,357,0,0,0,0,0,0,0,40,2.1,3,3,14.9,457,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.7,82,98700,0,0,360,0,0,0,0,0,0,0,10,2.0,4,4,8.0,457,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,15.6,80,98800,72,960,363,24,73,20,2676,0,2245,87,340,0.3,5,5,8.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,15.5,74,98800,337,1330,366,134,147,97,14719,5833,10669,455,120,2.0,4,4,10.8,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,15.0,67,98900,601,1330,364,287,222,186,32005,15443,20884,967,120,1.6,2,2,9.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,14.9,61,98900,838,1330,360,517,476,216,59594,34016,25078,1206,200,2.1,0,0,14.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,14.1,47,98900,1032,1330,377,708,637,214,84323,43637,25648,1239,200,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,12.3,38,98900,1168,1330,382,846,731,204,103160,48782,24994,1176,180,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,12.5,37,98900,1238,1330,386,907,754,205,111615,49620,25398,1153,180,1.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,10.9,31,98800,1237,1330,392,900,741,211,110596,49959,26079,1186,180,3.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,10.0,28,98800,1164,1330,393,862,774,185,106054,51405,22835,1067,180,4.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,10.0,28,98700,1026,1330,393,765,787,157,93366,51288,19280,909,160,4.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,9.5,27,98700,831,1330,392,589,705,149,70066,46515,17757,826,170,4.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,9.7,29,98700,592,1330,388,382,576,125,44068,35454,14529,649,140,4.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,9.1,29,98600,327,1330,385,181,420,78,20264,15512,8730,364,140,4.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,8.2,30,98600,65,909,376,34,210,24,3720,0,2626,103,130,4.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,14.1,55,98700,0,0,363,0,0,0,0,0,0,0,130,3.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.2,67,98700,0,0,354,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,16.1,75,98800,0,0,351,0,0,0,0,0,0,0,110,2.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.2,76,98800,0,0,350,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,16.7,82,98800,0,0,348,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,16.7,88,98800,0,0,343,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98800,0,0,340,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98800,0,0,340,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98800,0,0,340,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98800,0,0,340,0,0,0,0,0,0,0,140,0.0,0,0,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,16.7,89,98800,70,945,341,31,217,19,3374,0,2121,82,140,0.3,0,0,14.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,16.6,82,98900,334,1330,347,187,435,78,20956,14073,8767,368,140,1.8,0,0,14.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,16.1,70,98900,599,1330,357,397,620,118,45936,34458,13740,614,140,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,16.0,62,98900,836,1330,366,602,732,142,71681,44162,16939,789,140,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,15.6,50,98900,1030,1330,382,775,805,151,94582,48605,18553,875,90,0.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,15.3,43,98900,1166,1330,393,898,850,153,111714,50582,19107,883,90,2.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,13.9,35,98800,1236,1330,402,963,872,152,120907,52228,19209,856,90,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,14.2,32,98700,1235,1330,411,961,872,152,120694,52012,19214,857,130,3.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.2,15.5,35,98600,1162,1330,414,895,849,153,111171,50392,19077,883,130,3.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,15.2,35,98600,1023,1330,412,768,803,151,93780,48777,18523,873,150,3.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,15.7,35,98500,827,1330,414,594,728,141,70665,44090,16847,784,160,3.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,16.1,37,98500,588,1330,411,388,614,117,44847,33863,13569,605,120,3.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,16.1,39,98500,322,1330,406,179,425,76,19975,13134,8507,355,120,3.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,16.2,49,98500,62,886,387,28,212,18,3029,0,1955,75,120,4.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,16.6,58,98500,0,0,375,0,0,0,0,0,0,0,140,3.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,16.2,61,98600,0,0,368,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,16.7,70,98600,0,0,361,0,0,0,0,0,0,0,110,3.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,16.7,76,98600,0,0,353,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,16.7,79,98700,0,0,351,0,0,0,0,0,0,0,90,1.8,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,16.7,81,98600,0,0,349,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,16.7,81,98600,0,0,349,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,16.7,81,98600,0,0,349,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,16.7,81,98600,0,0,349,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,16.7,81,98600,0,0,349,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,16.8,81,98600,68,930,350,31,237,19,3395,0,2070,80,110,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,17.0,76,98600,331,1331,356,192,475,74,21527,14317,8285,346,110,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,16.0,60,98700,596,1331,369,409,674,107,47651,36054,12531,556,110,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,15.4,49,98700,834,1331,382,621,793,124,74699,46321,14965,690,110,0.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,14.3,38,98700,1028,1331,397,800,869,128,98899,51215,15935,742,110,1.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,13.8,32,98600,1165,1331,409,928,916,127,117058,53250,16042,731,110,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,13.7,27,98500,1234,1331,425,994,938,124,126687,53911,15909,700,140,0.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.2,16.0,30,98500,1233,1331,431,992,937,124,126252,52096,15896,701,140,4.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.7,15.6,29,98400,1160,1331,433,923,914,127,116258,51841,16021,732,160,4.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.9,14.7,27,98300,1020,1331,433,792,866,128,97867,50809,15900,741,170,2.7,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.2,11.9,22,98300,824,1331,431,611,788,124,73629,48150,14936,686,290,3.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.8,10.1,20,98300,584,1331,426,398,666,106,46518,38256,12425,548,290,3.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,10.6,22,98300,318,1331,422,182,462,71,20449,15262,8059,334,290,3.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,11.3,25,98300,58,862,412,27,231,17,3024,0,1914,74,270,3.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,15.7,42,98300,0,0,398,0,0,0,0,0,0,0,150,2.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,16.1,50,98300,0,0,385,0,0,0,0,0,0,0,110,1.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,16.2,55,98400,0,0,376,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,16.7,65,98400,0,0,366,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,16.8,69,98400,0,0,362,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,17.2,71,98400,0,0,362,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,17.1,73,98300,0,0,359,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,16.8,74,98300,0,0,357,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,17.2,76,98400,0,0,357,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,17.2,78,98400,0,0,355,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,17.1,74,98400,66,914,358,30,233,19,3292,0,2037,79,340,0.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,16.7,66,98500,329,1331,364,189,465,74,21161,14074,8301,346,340,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,16.4,54,98500,594,1331,380,405,663,109,47030,35403,12699,564,340,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,14.9,42,98600,832,1331,393,615,781,127,73877,46295,15300,706,190,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,14.2,34,98500,1026,1331,406,793,857,132,97837,50977,16386,765,190,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,13.1,27,98500,1163,1331,420,920,904,131,115832,53447,16577,758,190,1.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.1,11.1,20,98400,1232,1331,435,986,926,129,125457,55339,16506,728,190,2.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.7,9.0,16,98400,1231,1331,441,984,925,129,125315,56486,16539,730,280,4.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.1,15.6,27,98300,1157,1331,441,915,902,131,114899,51571,16545,759,110,5.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.0,14.4,26,98300,1017,1331,433,785,854,132,96671,50688,16349,763,90,4.4,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.4,11.5,22,98300,820,1331,426,604,776,126,72638,47912,15231,700,300,5.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,9.4,20,98300,580,1331,418,393,654,107,45761,37958,12560,554,300,5.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.8,9.0,21,98300,313,1331,414,177,451,71,19946,15071,8032,332,300,5.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,9.5,23,98300,55,838,408,26,225,17,2891,0,1866,72,300,3.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,10.2,26,98300,0,0,401,0,0,0,0,0,0,0,270,2.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,10.9,30,98400,0,0,393,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,9.7,30,98400,0,0,386,0,0,0,0,0,0,0,260,2.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,7.6,27,98400,0,0,378,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,6.6,26,98400,0,0,374,0,0,0,0,0,0,0,330,1.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,6.8,28,98400,0,0,370,0,0,0,0,0,0,0,290,1.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,11.1,44,98400,0,0,362,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,13.8,57,98300,0,0,358,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,13.2,57,98300,0,0,354,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,12.4,57,98400,0,0,349,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,10.2,47,98400,64,899,351,30,245,18,3295,0,2011,77,130,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,11.2,44,98500,326,1332,363,191,490,71,21523,16299,8016,332,130,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,11.7,38,98500,592,1332,378,411,696,102,48167,38804,11982,527,130,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,11.9,31,98600,830,1332,398,626,818,116,75839,49158,14108,645,130,1.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,12.5,28,98600,1024,1332,412,808,896,118,100553,53087,14803,685,130,2.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,10.3,21,98500,1161,1332,421,938,943,116,119270,56143,14750,668,140,1.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.5,5.2,14,98500,1230,1332,423,1005,966,113,129390,59284,14584,637,140,2.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.0,2.3,10,98400,1228,1332,427,1003,965,113,129194,60341,14605,638,170,3.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.3,-0.7,8,98400,1155,1332,424,932,941,116,118845,60471,14816,670,160,5.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.8,-0.6,9,98300,1014,1332,422,798,893,119,99739,58365,14862,684,160,5.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.9,-3.2,7,98300,817,1332,413,614,812,116,74612,53896,14101,641,130,1.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.7,-4.2,7,98300,576,1332,405,397,686,101,46724,42245,11859,518,290,2.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,-4.0,8,98300,309,1332,398,178,472,68,20106,17260,7738,317,290,3.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,-3.2,9,98300,52,814,388,26,236,16,2835,0,1818,69,300,3.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,1.8,15,98300,0,0,386,0,0,0,0,0,0,0,230,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,5.8,22,98400,0,0,383,0,0,0,0,0,0,0,230,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,6.8,26,98400,0,0,376,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,7.9,31,98400,0,0,369,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,12.2,46,98300,0,0,366,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.9,60,98300,0,0,361,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,13.8,61,98300,0,0,353,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,10.8,52,98300,0,0,346,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,11.5,59,98300,0,0,342,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,10.6,59,98300,0,0,337,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,10.5,57,98400,61,883,338,30,260,18,3282,0,1966,76,290,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,9.6,45,98500,323,1332,351,193,520,67,21900,16982,7631,314,290,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,6.9,30,98500,589,1332,364,419,736,93,49519,41802,11076,483,130,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,4.7,21,98500,828,1332,380,640,863,103,78374,53628,12689,574,130,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,3.2,16,98500,1022,1332,395,826,943,102,104286,58724,12958,591,130,1.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,1.8,12,98500,1159,1332,409,959,991,97,123811,61052,12621,563,130,3.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.3,-3.9,7,98400,1228,1332,403,1027,1012,94,134277,63298,12315,531,130,2.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.5,-4.1,7,98400,1226,1332,409,1025,1012,94,133935,63325,12322,532,130,4.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.9,-4.5,6,98300,1152,1332,416,952,988,98,122935,62659,12667,566,110,4.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.7,-1.8,8,98200,1011,1332,419,815,939,103,102846,59991,12985,592,100,4.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.8,-2.0,8,98200,813,1332,414,625,856,103,76621,55022,12646,570,330,3.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.8,-2.5,8,98200,572,1332,408,403,725,92,47678,43042,10932,474,310,3.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.8,-2.8,8,98200,304,1332,402,178,500,64,20263,17181,7335,299,310,4.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,-2.5,10,98200,49,790,392,25,250,16,2785,0,1775,68,300,3.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,1.1,15,98200,0,0,383,0,0,0,0,0,0,0,300,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,11.1,39,98300,0,0,373,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,14.0,55,98300,0,0,363,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,14.5,60,98300,0,0,359,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,15.0,63,98300,0,0,359,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,15.3,71,98300,0,0,351,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.4,78,98300,0,0,344,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,14.2,74,98300,0,0,341,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,12.6,68,98300,0,0,338,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,11.4,66,98300,0,0,332,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.2,56,98300,59,868,331,28,245,18,3138,0,1939,74,110,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,8.6,46,98400,321,1333,342,187,490,69,21165,16538,7867,325,110,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,9.9,40,98400,587,1333,363,409,700,100,47937,39524,11788,517,110,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,4.3,20,98400,826,1333,380,625,824,114,75977,52575,13900,633,110,0.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,-2.5,10,98400,1020,1333,386,807,903,116,101119,59192,14578,670,110,2.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,1.3,12,98400,1157,1333,402,938,950,113,119792,60191,14465,653,150,4.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,-4.7,7,98400,1226,1333,396,1005,972,110,129826,62435,14274,623,140,4.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,-10.3,5,98400,1224,1333,390,1002,971,110,129536,63366,14302,625,150,5.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.5,-14.8,3,98300,1149,1333,383,930,948,113,118983,63060,14516,655,140,5.0,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,-14.9,3,98300,1008,1333,380,795,898,116,99631,60817,14582,669,160,4.1,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,-12.8,4,98200,810,1333,382,609,817,113,74196,55283,13842,627,130,4.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,-10.8,5,98200,568,1333,381,392,688,98,46079,42728,11620,505,160,4.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,-11.2,5,98200,299,1333,377,171,469,66,19401,16851,7505,306,160,4.9,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,-11.0,5,98200,46,765,368,23,234,15,2542,0,1650,63,130,3.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,-7.5,9,98200,0,0,358,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,-8.1,9,98200,0,0,354,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,-1.4,16,98300,0,0,357,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,9.5,41,98300,0,0,358,0,0,0,0,0,0,0,20,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,9.5,45,98300,0,0,350,0,0,0,0,0,0,0,20,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,6.4,39,98300,0,0,341,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,4.4,39,98300,0,0,328,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,4.9,44,98300,0,0,323,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,7.8,54,98300,0,0,325,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,7.8,55,98400,0,0,324,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,7.7,53,98400,57,853,327,27,232,17,2995,0,1900,73,110,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,7.9,47,98500,318,1333,337,182,464,71,20479,15965,8042,332,110,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,11.7,51,98500,585,1333,354,399,668,106,46526,37661,12384,546,110,0.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,11.2,39,98500,824,1333,372,611,789,123,73622,48589,14918,685,110,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,8.7,28,98500,1018,1333,384,790,867,128,97884,54366,15946,740,110,3.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,10.7,29,98500,1155,1333,395,918,913,127,115839,55204,16079,735,80,3.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,7.1,21,98500,1224,1333,396,984,935,125,125531,57724,16009,709,170,3.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,-0.7,11,98400,1221,1333,393,981,934,125,125418,60426,16052,710,190,3.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,-4.4,8,98400,1146,1333,387,910,911,127,115224,60422,16157,736,170,4.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.2,-0.6,12,98300,1005,1333,392,777,862,128,96395,57324,15959,739,130,4.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,1.4,14,98300,806,1333,393,595,781,122,71729,51592,14829,677,130,4.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,3.8,17,98300,563,1333,391,380,655,104,44398,38962,12143,531,130,4.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,4.4,19,98200,294,1333,387,165,441,67,18522,14110,7579,311,130,4.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,2.3,18,98200,43,739,373,21,221,14,2320,0,1534,58,120,3.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,9.6,39,98300,0,0,363,0,0,0,0,0,0,0,150,3.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,10.8,47,98400,0,0,354,0,0,0,0,0,0,0,90,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,12.1,55,98400,0,0,350,0,0,0,0,0,0,0,90,2.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.6,70,98500,0,0,348,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,15.6,84,98500,0,0,340,0,0,0,0,0,0,0,120,1.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,15.5,82,98500,0,0,341,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,15.1,87,98400,0,0,334,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.5,86,98400,0,0,337,0,0,0,0,0,0,0,90,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,15.0,84,98400,0,0,336,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,14.9,86,98500,0,0,333,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,14.5,83,98500,55,837,334,27,190,19,2929,0,2078,81,90,0.0,0,0,15.9,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,14.9,76,98500,315,1334,343,168,380,78,18653,12111,8694,363,150,0.0,0,0,14.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,14.2,61,98500,582,1334,356,378,591,120,43577,33856,13933,621,150,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,13.1,48,98600,822,1334,369,583,708,146,69159,44913,17444,812,150,0.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,11.6,35,98600,1016,1334,385,776,835,139,95317,51986,17208,805,150,2.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,10.4,28,98600,1153,1334,395,897,871,144,112067,54278,18082,834,150,3.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,5.0,18,98600,1222,1334,396,966,904,138,122453,57776,17601,785,130,4.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,-1.4,10,98500,1219,1334,398,975,926,129,124352,60390,16464,731,120,3.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,-2.1,9,98500,1143,1334,402,922,942,115,117520,60864,14713,667,120,2.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.4,4.6,15,98400,1001,1334,411,783,882,121,97332,56424,15094,697,120,4.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,5.4,16,98300,802,1334,409,577,736,135,68943,48742,16156,743,110,5.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,6.5,18,98300,559,1334,413,298,335,158,33598,23219,17855,807,100,4.0,1,1,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,7.5,21,98300,289,1334,415,124,200,81,13713,7046,8949,373,100,2.9,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,9.2,27,98300,40,714,390,19,100,16,2060,0,1738,67,100,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,10.7,35,98400,0,0,378,0,0,0,0,0,0,0,140,1.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,11.5,42,98500,0,0,368,0,0,0,0,0,0,0,80,2.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,14.1,59,98500,0,0,358,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,15.1,69,98500,0,0,351,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,15.6,77,98600,0,0,346,0,0,0,0,0,0,0,110,3.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.6,81,98600,0,0,342,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.6,82,98500,0,0,342,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.6,84,98500,0,0,339,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,15.5,85,98500,0,0,338,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,15.0,86,98500,0,0,334,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,15.1,81,98500,53,822,340,27,188,19,2906,0,2098,82,210,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,15.6,77,98600,312,1335,346,165,376,77,18399,11604,8642,361,210,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.4,68,98600,580,1335,354,362,530,131,41315,30960,15081,677,50,1.8,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,14.2,54,98600,820,1335,366,544,595,178,63467,39872,20931,989,50,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,13.1,45,98600,1014,1335,386,569,335,314,65581,27089,36479,1815,50,1.7,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,11.4,33,98600,1151,1335,389,869,814,167,107349,52112,20749,968,140,3.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,10.5,27,98600,1220,1335,402,962,899,140,121474,55143,17810,799,140,3.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,13.2,32,98500,1216,1335,404,932,844,164,116199,52071,20499,933,140,4.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,12.8,31,98400,1140,1335,404,834,753,191,101815,49354,23403,1106,140,5.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,12.6,34,98400,998,1335,394,654,563,234,77059,40812,27670,1346,130,4.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,12.2,34,98400,798,1335,393,522,575,178,60787,39516,20880,983,100,3.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,11.7,33,98300,554,1335,390,337,496,131,38352,30098,14949,667,120,3.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,11.8,35,98300,284,1335,386,152,392,68,16966,10747,7663,316,120,3.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,12.2,39,98300,37,688,380,17,196,11,1884,0,1276,48,130,2.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,12.3,43,98300,0,0,372,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,13.0,49,98400,0,0,365,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,14.0,55,98400,0,0,363,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,14.4,62,98400,0,0,356,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,14.4,68,98400,0,0,348,0,0,0,0,0,0,0,120,2.4,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,14.5,71,98400,0,0,346,0,0,0,0,0,0,0,80,1.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.0,76,98400,0,0,344,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.0,76,98400,0,0,343,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.0,78,98400,0,0,341,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.0,79,98400,0,0,341,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,14.9,79,98500,52,807,340,25,215,16,2700,0,1798,69,120,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,14.3,66,98500,309,1335,350,172,430,72,19202,12761,8091,336,120,0.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.8,56,98600,577,1335,360,384,627,112,44395,35081,13053,578,120,2.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,13.1,47,98600,817,1335,370,591,745,135,70554,46095,16186,748,110,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,11.7,37,98600,1012,1335,380,766,820,144,93851,51499,17743,832,120,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,11.9,31,98600,1149,1335,397,891,866,146,111105,53332,18227,843,130,2.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,13.1,32,98500,1217,1335,404,954,888,145,120031,53291,18289,824,130,3.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,11.5,27,98500,1214,1335,407,951,887,145,119627,54248,18304,826,150,4.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,10.4,25,98400,1137,1335,406,881,863,145,109734,54038,18209,844,150,5.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,9.6,23,98400,994,1335,407,750,814,144,91715,52234,17657,827,140,3.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,9.9,24,98300,794,1335,408,570,735,133,67967,46891,15966,734,140,1.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,9.6,24,98300,550,1335,405,360,611,109,41658,35062,12640,555,310,2.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,8.7,24,98300,279,1335,399,150,401,66,16795,11141,7441,305,310,3.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,7.7,24,98300,35,662,391,15,200,10,1682,0,1100,41,260,2.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,8.2,27,98300,0,0,383,0,0,0,0,0,0,0,260,1.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,13.9,45,98300,0,0,380,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,14.0,49,98400,0,0,372,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,14.5,53,98400,0,0,369,0,0,0,0,0,0,0,130,0.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,14.9,60,98400,0,0,361,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,14.5,67,98400,0,0,350,0,0,0,0,0,0,0,90,3.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.0,76,98400,0,0,343,0,0,0,0,0,0,0,70,2.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.0,79,98400,0,0,341,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,15.0,82,98400,0,0,338,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,15.0,83,98400,0,0,337,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,15.0,77,98500,50,791,342,26,211,18,2793,0,1949,76,110,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,14.7,70,98500,307,1336,348,169,422,72,18866,12250,8073,335,110,0.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,12.9,52,98600,575,1336,360,382,630,111,44299,35497,12951,573,110,1.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,10.5,38,98600,815,1336,370,574,696,149,68038,45645,17700,823,110,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,10.2,33,98600,1010,1336,380,736,748,170,89067,49881,20648,979,130,2.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,10.8,31,98600,1147,1336,389,832,738,199,101369,49851,24321,1150,130,3.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,9.2,26,98500,1215,1336,393,883,740,209,108221,50815,25801,1194,130,3.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,7.4,22,98500,1211,1336,397,904,792,186,111788,53387,23101,1061,130,2.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,5.3,19,98500,1134,1336,392,834,764,185,102290,52958,22835,1075,130,4.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,7.0,22,98500,991,1336,393,716,735,171,86522,50531,20734,982,130,5.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,6.0,20,98500,789,1336,416,426,313,241,48481,25462,27557,1323,140,6.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,5.8,20,98500,545,1336,414,275,284,160,30906,19810,18011,813,130,5.9,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,6.0,22,98400,274,1336,406,116,197,76,12863,6390,8418,348,130,5.3,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,8.6,31,98400,32,635,376,13,99,11,1442,0,1182,45,120,2.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,10.3,38,98500,0,0,388,0,0,0,0,0,0,0,100,1.6,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,12.5,50,98500,0,0,362,0,0,0,0,0,0,0,110,2.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,14.0,58,98600,0,0,358,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,14.5,64,98600,0,0,354,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,15.0,69,98600,0,0,351,0,0,0,0,0,0,0,100,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,14.9,71,98600,0,0,348,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,14.4,73,98600,0,0,343,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,14.5,73,98600,0,0,343,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,14.9,76,98600,0,0,343,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,14.4,78,98700,0,0,338,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,14.4,74,98800,48,776,342,23,204,16,2532,0,1741,67,130,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,14.2,66,98800,304,1336,350,165,407,73,18420,11932,8117,337,130,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.2,54,98900,573,1336,359,373,599,117,43043,34223,13502,599,130,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.4,45,99000,813,1336,369,577,714,143,68558,45335,17074,792,130,0.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,10.2,34,99000,1008,1336,378,749,787,156,91256,51203,19029,897,130,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,11.0,32,98900,1144,1336,387,872,832,159,107960,52884,19797,922,130,3.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,10.5,28,98900,1213,1336,396,933,853,159,116646,53914,20017,910,140,4.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,9.3,26,98900,1208,1336,396,929,852,159,116138,54472,20013,912,140,4.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,5.8,19,98800,1131,1336,395,860,828,159,106529,55012,19785,922,160,5.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,7.0,22,98800,987,1336,394,730,779,155,88836,52137,18896,889,130,5.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,7.2,23,98700,785,1336,392,553,702,141,65651,46575,16769,773,150,5.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,7.4,24,98700,540,1336,387,347,580,112,39936,34233,12965,570,120,5.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,8.3,27,98700,269,1336,384,141,375,65,15705,9854,7314,299,120,4.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,8.3,30,98800,29,609,375,12,187,8,1359,0,893,33,90,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,8.6,33,98800,0,0,368,0,0,0,0,0,0,0,120,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,10.2,38,98900,0,0,367,0,0,0,0,0,0,0,110,0.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,11.4,45,98900,0,0,363,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.6,55,98900,0,0,360,0,0,0,0,0,0,0,90,2.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,14.8,63,98900,0,0,356,0,0,0,0,0,0,0,130,0.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,14.1,63,98900,0,0,353,0,0,0,0,0,0,0,130,1.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,15.0,71,98800,0,0,349,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,15.0,73,98800,0,0,346,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.0,76,98800,0,0,344,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.0,76,98800,0,0,343,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,15.0,77,98900,46,761,343,23,202,16,2473,0,1720,66,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,14.9,69,98900,301,1337,351,163,404,72,18167,11407,8060,334,200,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.2,57,98900,570,1337,361,371,596,117,42699,33559,13491,599,200,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,12.5,45,99000,811,1337,370,574,710,144,68151,45133,17149,796,200,1.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,10.8,34,98900,1006,1337,381,746,783,157,90731,50787,19168,904,200,1.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,11.4,31,98900,1142,1337,393,868,828,161,107353,52562,19982,932,120,2.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,10.1,27,98800,1210,1337,397,929,849,161,116026,54021,20226,922,170,0.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,10.7,26,98700,1205,1337,406,925,847,161,115379,53659,20192,923,170,3.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,11.1,27,98700,1128,1337,406,855,823,161,105585,52540,19919,932,150,4.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,11.2,27,98600,983,1337,405,726,775,156,87997,50149,18973,895,120,4.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,11.8,30,98600,781,1337,400,549,697,141,64884,44485,16773,774,120,4.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,12.0,33,98500,535,1337,392,342,576,112,39299,32294,12881,567,140,4.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,12.1,35,98500,263,1337,387,137,369,64,15249,8434,7176,294,140,4.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,11.5,41,98500,27,581,371,10,185,6,1146,0,721,26,110,3.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,10.6,44,98600,0,0,359,0,0,0,0,0,0,0,110,3.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,10.6,48,98600,0,0,351,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,10.8,52,98600,0,0,347,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,12.3,58,98600,0,0,348,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,12.7,61,98600,0,0,346,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,12.3,62,98600,0,0,343,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.9,69,98600,0,0,339,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.3,73,98500,0,0,336,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,13.3,75,98600,0,0,335,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,13.3,73,98600,0,0,337,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,13.4,72,98600,44,746,338,21,169,15,2270,0,1665,64,130,1.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,14.0,70,98700,298,1337,344,151,337,76,16801,10204,8490,354,70,1.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,14.4,64,98700,568,1337,353,346,503,133,39456,29873,15210,682,70,1.6,0,0,15.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.4,58,98700,808,1337,361,538,603,173,62785,39987,20327,957,120,2.2,0,0,13.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,14.5,51,98700,1004,1337,372,699,668,198,83314,44688,23665,1138,120,2.5,0,0,15.6,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,15.0,48,98600,1140,1337,380,813,709,209,98384,46590,25449,1214,120,2.4,0,0,13.4,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,15.0,45,98500,1207,1337,386,871,728,214,106137,47440,26161,1222,160,4.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,15.0,45,98500,1202,1337,387,866,727,213,105518,47369,26107,1222,170,4.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,14.9,46,98500,1124,1337,384,800,705,208,96657,46436,25266,1208,170,3.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,14.4,46,98400,979,1337,381,679,661,195,80676,44265,23292,1119,160,2.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,14.7,47,98400,776,1337,380,512,592,169,59550,38831,19694,923,120,3.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,15.1,51,98400,530,1337,377,318,484,126,36030,27415,14328,637,170,3.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,15.6,55,98400,258,1337,373,125,305,67,13854,6219,7376,303,170,4.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,15.7,61,98400,24,554,365,9,153,6,1026,0,709,26,160,3.9,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,16.1,71,98400,0,0,355,0,0,0,0,0,0,0,150,2.7,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,16.1,76,98500,0,0,350,0,0,0,0,0,0,0,120,3.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,16.1,82,98500,0,0,345,0,0,0,0,0,0,0,130,3.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,16.1,85,98500,0,0,341,0,0,0,0,0,0,0,120,2.0,0,0,15.6,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,16.1,92,98500,0,0,336,0,0,0,0,0,0,0,130,2.1,0,0,12.9,366,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,16.1,89,98500,0,0,338,0,0,0,0,0,0,0,150,1.7,0,0,11.3,318,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.1,84,98500,0,0,343,0,0,0,0,0,0,0,130,2.4,0,0,11.5,406,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.0,83,98500,0,0,343,0,0,0,0,0,0,0,130,2.2,0,0,13.1,461,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.4,81,98500,0,0,341,0,0,0,0,0,0,0,150,2.6,0,0,14.7,497,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,14.5,79,98600,0,0,338,0,0,0,0,0,0,0,120,2.4,0,0,15.6,544,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,15.0,81,98600,43,731,339,20,164,15,2180,0,1617,62,200,1.7,0,0,12.9,513,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.0,78,98600,295,1338,341,148,328,76,16441,9529,8464,353,150,3.0,0,0,12.9,483,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,15.0,77,98700,565,1338,342,342,490,135,38830,29012,15368,690,160,2.5,0,0,13.1,466,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.9,71,98700,806,1338,348,531,588,177,61871,39079,20716,977,140,2.2,0,0,14.7,536,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,14.3,62,98800,1001,1338,355,691,652,203,82149,44134,24281,1170,120,3.0,0,0,16.1,640,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,14.2,54,98800,1137,1338,366,804,692,216,97048,46429,26227,1254,110,3.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,13.2,46,98700,1205,1338,373,861,711,221,104727,47853,27041,1267,110,3.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,12.7,42,98600,1199,1338,377,856,709,221,104126,48045,26985,1267,130,3.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,12.4,40,98600,1121,1338,378,790,687,215,95326,47118,26042,1247,170,3.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,13.3,45,98500,975,1338,374,669,644,200,79428,44129,23862,1147,130,4.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,13.4,47,98500,772,1338,371,504,576,172,58537,38690,20035,939,140,4.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,13.6,50,98500,525,1338,367,311,471,127,35281,27246,14417,640,130,4.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.9,55,98500,252,1338,363,121,295,66,13385,6075,7266,298,130,4.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.9,62,98500,22,527,352,7,147,5,816,0,532,19,140,3.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,13.9,69,98600,0,0,344,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,14.0,74,98600,0,0,340,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.4,79,98600,0,0,338,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,14.4,81,98600,0,0,335,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,14.4,85,98600,0,0,332,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,14.8,92,98600,0,0,335,0,0,0,0,0,0,0,110,1.9,1,1,13.0,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.0,90,98600,0,0,346,0,0,0,0,0,0,0,160,1.6,3,3,11.6,258,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,15.0,89,98600,0,0,346,0,0,0,0,0,0,0,180,0.0,3,3,13.1,314,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,14.9,86,98600,0,0,348,0,0,0,0,0,0,0,180,0.0,3,3,13.5,366,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,14.4,84,98600,0,0,347,0,0,0,0,0,0,0,180,0.0,3,3,8.3,370,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,14.5,84,98700,41,716,350,18,60,16,1963,0,1771,69,180,0.2,4,4,9.7,396,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,15.0,86,98700,293,1339,352,107,120,81,11825,3688,8974,376,180,1.5,4,4,9.7,400,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,14.8,80,98800,562,1339,356,235,143,175,26181,9684,19579,897,160,1.5,4,4,9.7,450,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,15.0,80,98800,804,1339,358,330,106,266,37135,8401,30120,1466,180,0.3,4,4,11.5,506,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,14.9,69,98900,999,1339,368,458,151,346,52202,12593,39655,1990,180,1.7,4,4,13.2,610,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,14.3,58,98800,1135,1339,379,582,230,388,67137,19398,44978,2249,180,0.3,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,13.8,52,98800,1202,1339,366,854,700,226,103655,47150,27532,1294,90,1.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,13.3,45,98700,1196,1339,374,886,780,190,108917,50197,23412,1089,90,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,13.5,40,98600,1117,1339,386,871,877,138,108370,52626,17303,804,90,1.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,14.5,43,98600,971,1339,386,748,858,126,91825,50552,15553,723,140,3.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,14.8,45,98500,767,1339,385,550,736,129,65254,43901,15305,702,140,4.1,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,15.0,48,98500,520,1339,380,314,494,122,35568,27447,13851,613,130,4.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,15.0,52,98500,247,1339,374,120,307,63,13238,5508,7019,287,130,4.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.0,60,98600,20,499,362,6,153,4,707,0,439,16,140,3.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,15.0,66,98600,0,0,354,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,15.0,69,98700,0,0,351,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,15.0,73,98700,0,0,346,0,0,0,0,0,0,0,100,2.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.1,76,98700,0,0,344,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.6,79,98700,0,0,344,0,0,0,0,0,0,0,70,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,15.6,83,98800,0,0,341,0,0,0,0,0,0,0,120,1.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,15.6,90,98700,0,0,335,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.6,87,98700,0,0,337,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,15.5,87,98700,0,0,336,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,15.0,87,98700,0,0,334,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,15.1,86,98800,39,700,335,18,216,12,1992,0,1297,49,120,0.0,0,0,15.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,15.6,80,98900,290,1339,344,160,431,67,17873,10479,7480,308,140,0.0,0,0,14.2,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,15.4,68,98900,560,1339,355,373,637,107,43128,33799,12378,546,140,0.0,0,0,13.4,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,14.4,52,98900,801,1339,370,582,757,129,69453,45500,15465,712,140,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,14.2,43,98900,996,1339,385,758,833,138,92762,50330,16967,794,140,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,12.7,35,98800,1132,1339,392,883,879,139,110097,53249,17455,809,140,1.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,12.6,30,98800,1199,1339,406,945,900,139,118902,54009,17542,797,140,2.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,15.0,33,98700,1193,1339,414,939,898,139,117888,52270,17498,798,180,3.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,15.1,32,98700,1114,1339,417,866,873,139,107513,51386,17395,810,120,3.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,15.4,33,98600,967,1339,417,731,822,137,89029,48964,16802,787,120,3.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,12.3,27,98600,762,1339,414,548,741,126,65121,45349,15069,689,140,2.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,9.3,23,98600,515,1339,406,335,610,101,38695,33413,11713,509,290,2.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,6.1,19,98600,241,1339,400,126,383,57,14111,7667,6424,260,290,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,9.2,26,98600,18,471,393,5,370,0,750,0,16,0,280,2.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,10.8,34,98600,0,0,381,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,12.5,42,98700,0,0,375,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,14.2,50,98700,0,0,371,0,0,0,0,0,0,0,100,0.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,16.0,64,98700,0,0,363,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,15.6,69,98700,0,0,355,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,15.6,71,98700,0,0,352,0,0,0,0,0,0,0,80,1.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,15.5,73,98700,0,0,350,0,0,0,0,0,0,0,20,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,15.1,72,98600,0,0,349,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.6,79,98600,0,0,344,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.5,81,98600,0,0,342,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,15.1,77,98700,38,685,343,17,224,11,1891,0,1194,45,270,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,15.5,69,98700,287,1340,354,161,449,65,17971,10401,7249,298,270,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,14.9,58,98700,557,1340,364,377,662,102,43749,34674,11831,519,180,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,14.2,47,98700,799,1340,377,590,786,121,70647,46429,14567,667,180,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,13.2,37,98700,994,1340,390,768,863,128,94556,51786,15784,734,180,1.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,13.0,32,98700,1130,1340,402,895,910,128,112221,53827,16078,741,180,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,14.4,30,98600,1197,1340,418,957,931,126,121124,53474,16028,725,130,0.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.6,14.5,28,98500,1190,1340,426,951,929,126,120208,53344,16031,727,130,2.3,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,14.9,29,98400,1110,1340,427,876,903,128,109462,52254,16049,743,130,3.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.3,14.2,27,98400,963,1340,429,739,852,127,90533,50557,15656,728,120,3.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.2,11.2,21,98300,758,1340,430,553,767,119,65979,46670,14218,646,140,3.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.2,9.5,19,98300,509,1340,428,336,632,96,38909,33739,11178,484,270,2.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.7,7.9,17,98300,235,1340,423,125,396,55,13924,6807,6167,249,270,2.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,15.1,33,98300,16,442,415,4,327,0,578,0,26,1,130,2.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,15.6,41,98300,0,0,398,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,15.6,48,98400,0,0,384,0,0,0,0,0,0,0,140,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,15.5,55,98400,0,0,373,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,15.0,58,98400,0,0,365,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,15.0,60,98400,0,0,362,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,15.0,62,98400,0,0,360,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,15.1,65,98400,0,0,357,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,15.6,69,98300,0,0,355,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,15.6,71,98300,0,0,352,0,0,0,0,0,0,0,100,0.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,15.7,74,98300,0,0,350,0,0,0,0,0,0,0,100,3.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,16.2,78,98400,36,670,349,16,220,10,1782,0,1127,42,90,1.8,0,0,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,16.7,75,98400,284,1341,355,158,441,65,17632,9569,7233,298,90,0.0,0,0,14.2,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,16.6,64,98400,555,1341,367,373,653,103,43147,33304,11939,525,80,0.0,0,0,13.4,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,15.9,50,98400,796,1341,383,584,775,124,69751,44963,14837,681,80,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,14.9,39,98400,992,1341,398,762,852,131,93408,50349,16189,756,80,1.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,14.4,32,98400,1127,1341,413,887,898,132,110860,52593,16570,767,210,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.4,14.6,27,98300,1194,1341,430,949,919,131,119710,53104,16598,754,210,2.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.7,15.7,27,98200,1187,1341,439,943,917,131,118648,52172,16584,756,170,2.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.3,16.1,29,98200,1106,1341,438,868,891,132,108003,51065,16530,768,170,4.1,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.7,16.1,28,98100,958,1341,440,731,840,131,89173,48858,16023,748,130,4.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.2,16.6,30,98100,753,1341,438,545,756,121,64729,43006,14397,657,120,3.6,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,17.1,33,98100,504,1341,431,330,621,97,37935,29535,11182,486,120,3.6,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,17.9,38,98100,230,1341,424,120,386,54,13325,3246,6023,244,120,3.6,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,18.3,48,98100,14,414,404,3,265,0,420,0,39,1,100,3.5,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,18.3,56,98100,0,0,390,0,0,0,0,0,0,0,100,2.6,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,18.1,63,98200,0,0,379,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,17.0,64,98300,0,0,369,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,16.1,65,98300,0,0,363,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,16.2,68,98300,0,0,359,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,16.8,70,98300,0,0,361,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,17.2,76,98200,0,0,357,0,0,0,0,0,0,0,160,1.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,17.2,76,98200,0,0,357,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,17.1,76,98200,0,0,357,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,16.7,76,98200,0,0,354,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,16.6,75,98300,34,655,354,15,204,10,1671,0,1092,41,90,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,16.1,68,98300,281,1341,358,152,408,66,16894,9210,7408,305,90,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,16.0,55,98400,552,1341,375,361,609,110,41517,32286,12709,561,90,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,15.3,42,98400,794,1341,394,566,726,137,67125,43864,16251,751,90,1.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,14.5,34,98400,989,1341,408,739,800,149,89754,49177,18170,856,90,3.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,17.6,39,98400,1124,1341,417,861,845,152,106149,48816,18880,885,120,3.7,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,16.0,35,98400,1191,1341,417,921,865,153,114670,50790,19109,880,140,4.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,11.3,24,98300,1183,1341,419,914,863,153,114046,53847,19144,881,140,4.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.7,8.7,19,98300,1102,1341,418,841,838,152,103959,54177,18895,884,140,5.7,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.9,8.0,18,98300,954,1341,418,708,788,147,85888,51863,17954,841,120,5.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,8.5,20,98200,748,1341,415,526,707,132,62292,45561,15734,719,140,5.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,10.2,24,98200,498,1341,408,317,577,103,36380,31167,11829,514,150,4.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,11.5,29,98200,224,1341,401,113,353,54,12587,4574,6065,245,150,4.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,14.0,41,98200,12,386,387,3,341,0,575,0,0,0,100,2.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,14.5,49,98300,0,0,375,0,0,0,0,0,0,0,120,2.9,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,15.1,53,98300,0,0,373,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,15.4,58,98300,0,0,368,0,0,0,0,0,0,0,80,1.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,14.5,56,98400,0,0,364,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,8,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.1,61,98400,0,0,362,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,15.6,67,98400,0,0,357,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,15.6,74,98300,0,0,349,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.6,79,98300,0,0,344,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.6,79,98300,0,0,344,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.6,79,98300,0,0,344,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,15.6,80,98400,33,640,344,14,194,9,1565,0,1036,39,120,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,15.6,70,98500,278,1342,353,147,388,67,16388,8910,7484,308,120,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,15.4,64,98500,549,1342,360,353,582,114,40441,31627,13174,583,120,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,14.5,51,98500,791,1342,373,555,695,145,65439,43275,17145,795,120,0.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,15.0,43,98500,987,1342,390,724,767,160,87405,47857,19418,919,120,1.8,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,14.5,36,98500,1122,1342,402,844,811,166,103578,50271,20449,963,120,3.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,11.7,29,98500,1188,1342,402,903,831,167,111885,52742,20818,963,170,3.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.2,11.8,27,98400,1180,1342,409,895,828,167,110890,52599,20786,964,150,3.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,12.0,28,98300,1098,1342,407,823,804,165,100904,51471,20350,959,130,5.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,11.2,27,98300,949,1342,405,692,754,158,83311,49255,19104,901,160,6.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,11.6,30,98300,743,1342,399,513,675,140,60339,43023,16473,756,130,5.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,12.6,35,98300,493,1342,392,307,549,106,35096,29073,12129,529,130,4.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,13.6,40,98300,218,1342,387,108,332,54,11939,3404,5987,242,120,3.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,15.0,52,98300,10,358,374,2,244,0,293,0,19,1,120,3.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.1,61,98300,0,0,362,0,0,0,0,0,0,0,110,3.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.5,69,98400,0,0,354,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,15.0,71,98500,0,0,349,0,0,0,0,0,0,0,110,3.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,15.0,73,98500,0,0,346,0,0,0,0,0,0,0,100,2.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.1,77,98500,0,0,343,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.7,82,98500,0,0,342,0,0,0,0,0,0,0,110,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.2,88,98500,0,0,339,0,0,0,0,0,0,0,110,2.1,0,0,15.8,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,16.2,93,98400,0,0,335,0,0,0,0,0,0,0,180,2.1,0,0,12.4,269,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.6,92,98500,0,0,345,0,0,0,0,0,0,0,160,2.0,1,1,9.9,248,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.7,85,98500,0,0,351,0,0,0,0,0,0,0,70,0.3,2,2,11.3,299,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,16.1,86,98500,31,625,355,13,71,11,1425,0,1245,47,130,1.6,3,3,8.0,370,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.1,84,98600,275,1343,360,106,143,77,11610,3714,8427,351,140,1.8,4,4,8.0,405,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,15.6,75,98600,547,1343,369,228,143,169,25259,9385,18885,862,140,0.0,5,5,8.6,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,15.6,67,98600,789,1343,356,467,430,214,53343,30745,24580,1175,110,1.5,0,0,9.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,15.5,59,98600,984,1343,366,627,521,245,73217,37501,28793,1408,110,1.7,0,0,11.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,14.7,46,98500,1119,1343,383,810,739,195,98230,47886,23708,1130,110,2.9,0,0,14.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,12.8,37,98500,1185,1343,388,901,833,166,111650,52197,20673,958,150,4.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,12.7,36,98400,1176,1343,390,893,829,167,110479,52114,20726,963,120,4.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,12.3,35,98400,1094,1343,389,780,709,202,94091,48026,24510,1173,150,5.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,12.8,38,98300,945,1343,387,650,651,192,77025,44525,22817,1092,140,5.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,12.9,40,98300,738,1343,382,479,574,164,55538,38232,19073,887,130,5.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,13.4,44,98300,487,1343,376,282,447,120,31792,24753,13569,597,140,5.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,14.0,50,98300,212,1343,371,98,273,55,10796,2589,6070,245,140,4.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,14.6,57,98300,9,329,364,1,82,0,134,0,62,2,130,3.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.6,69,98300,0,0,354,0,0,0,0,0,0,0,130,3.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,15.7,74,98300,0,0,349,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,16.1,82,98300,0,0,345,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,16.1,85,98300,0,0,341,0,0,0,0,0,0,0,120,2.2,0,0,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,16.1,93,98300,0,0,352,0,0,0,0,0,0,0,140,3.1,4,4,11.6,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,16.6,93,98300,0,0,358,0,0,0,0,0,0,0,150,2.4,5,5,11.3,206,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,16.1,93,98300,0,0,355,0,0,0,0,0,0,0,190,0.7,5,5,11.3,441,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,15.5,83,98300,0,0,360,0,0,0,0,0,0,0,190,0.4,5,5,14.7,510,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.0,78,98300,0,0,362,0,0,0,0,0,0,0,150,2.5,5,5,16.1,635,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,14.9,78,98300,0,0,362,0,0,0,0,0,0,0,130,2.2,5,5,16.1,619,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,14.3,75,98400,30,610,361,12,57,11,1320,0,1184,45,140,3.1,5,5,16.1,671,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,13.8,72,98500,272,1343,361,97,113,75,10730,3034,8233,342,150,3.0,5,5,16.1,671,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,13.2,67,98500,544,1343,363,220,128,168,24417,8600,18745,853,180,2.3,5,5,16.1,689,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,13.0,60,98500,786,1343,370,328,118,260,37001,9442,29410,1424,170,3.0,5,5,16.1,792,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,13.1,57,98500,981,1343,366,482,204,333,54927,17153,38188,1908,170,2.6,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.1,47,98500,1116,1343,363,741,582,257,88053,42676,30744,1494,150,3.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,11.7,43,98400,1181,1343,368,822,664,238,99173,46801,28850,1373,150,2.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,11.9,39,98300,1173,1343,377,874,793,181,107406,51464,22383,1047,150,4.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,12.8,43,98300,1090,1343,374,773,700,204,93090,47429,24742,1186,180,5.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,12.7,43,98200,940,1343,375,668,711,171,79861,46888,20472,971,160,5.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,11.7,42,98200,732,1343,370,477,579,161,55342,38840,18776,871,140,5.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,11.3,44,98200,481,1343,364,289,496,111,32759,27074,12641,552,160,5.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,11.1,45,98200,206,1343,359,98,304,52,10893,2726,5758,231,160,5.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.9,62,98200,7,301,352,1,146,0,142,0,29,1,140,3.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.9,68,98200,0,0,345,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.8,71,98200,0,0,342,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,13.5,72,98200,0,0,339,0,0,0,0,0,0,0,130,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,14.5,82,98300,0,0,335,0,0,0,0,0,0,0,130,2.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.0,87,98300,0,0,333,0,0,0,0,0,0,0,150,2.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,14.8,87,98300,0,0,332,0,0,0,0,0,0,0,150,1.6,0,0,16.1,597,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.8,77,98200,0,0,335,0,0,0,0,0,0,0,170,2.2,0,0,16.1,710,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.2,74,98200,0,0,341,0,0,0,0,0,0,0,160,2.2,1,1,16.1,780,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,12.8,73,98300,0,0,340,0,0,0,0,0,0,0,220,0.0,1,1,16.1,903,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.9,74,98300,0,0,345,0,0,0,0,0,0,0,220,2.0,2,2,16.1,958,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,13.4,78,98300,28,595,343,11,84,9,1224,0,1027,39,210,1.3,2,2,16.1,1040,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,14.1,78,98300,269,1344,347,109,169,75,11932,4438,8248,342,120,1.0,2,2,16.1,880,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,14.4,78,98400,541,1344,353,233,162,167,25840,10747,18664,849,180,2.6,3,3,16.1,731,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,13.9,72,98400,783,1344,356,345,146,260,38781,11630,29367,1422,180,0.0,3,3,16.1,722,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,13.7,66,98400,979,1344,364,434,132,338,49372,11147,38671,1935,180,0.0,4,4,16.1,1179,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,12.6,54,98300,1113,1344,374,567,226,380,65302,19357,44052,2207,180,0.0,4,4,16.1,1128,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,11.8,48,98300,1178,1344,378,650,307,382,75594,25913,44634,2204,180,0.6,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,12.3,47,98200,1169,1344,377,707,429,334,82852,34156,39375,1930,180,4.2,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,12.8,48,98100,1086,1344,365,761,680,212,91383,46622,25556,1229,170,4.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,12.8,49,98100,936,1344,365,653,678,181,77557,45524,21591,1028,110,3.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,12.7,49,98100,727,1344,363,482,610,153,56108,39625,17817,823,160,6.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,12.5,51,98100,476,1344,360,288,511,107,32720,26924,12226,532,150,6.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,12.2,52,98100,200,1344,355,98,326,49,10824,1885,5473,219,150,6.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.2,58,98100,6,272,347,1,226,0,191,0,0,0,150,4.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.2,64,98100,0,0,340,0,0,0,0,0,0,0,140,3.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,12.3,70,98100,0,0,333,0,0,0,0,0,0,0,130,2.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,12.7,72,98200,0,0,345,0,0,0,0,0,0,0,90,1.5,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,12.2,71,98100,0,0,332,0,0,0,0,0,0,0,140,1.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.3,75,98100,0,0,328,0,0,0,0,0,0,0,160,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.8,78,98100,0,0,329,0,0,0,0,0,0,0,150,1.5,0,0,16.1,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,13.3,78,98100,0,0,332,0,0,0,0,0,0,0,150,0.0,0,0,16.1,553,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,13.3,77,98100,0,0,332,0,0,0,0,0,0,0,150,0.0,0,0,16.1,588,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.3,75,98100,0,0,335,0,0,0,0,0,0,0,170,0.0,0,0,16.1,640,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.3,75,98100,0,0,335,0,0,0,0,0,0,0,170,0.0,0,0,16.1,662,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,13.3,75,98100,27,580,335,10,175,6,1142,0,741,27,170,0.4,0,0,16.1,773,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,13.2,72,98200,266,1345,337,136,350,66,15060,8096,7392,304,170,2.2,0,0,16.1,693,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,12.8,67,98200,538,1345,340,303,401,142,34073,24863,16047,720,190,0.3,0,0,16.1,837,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,12.4,62,98200,781,1345,343,439,367,226,50008,27851,25902,1240,190,0.0,0,0,16.1,892,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.7,52,98200,976,1345,352,599,463,263,69562,35692,30681,1504,190,2.9,0,0,16.1,1067,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,11.6,49,98200,1110,1345,357,721,544,271,85218,40936,32276,1576,10,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,11.4,44,98100,1175,1345,365,829,690,226,100261,48017,27519,1308,150,2.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,12.8,45,98100,1165,1345,384,699,418,337,81835,33326,39691,1950,130,5.0,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,12.8,45,98000,1082,1345,371,774,717,197,93310,48061,23880,1143,170,4.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,12.8,47,98000,931,1345,368,642,657,187,76008,44671,22236,1061,160,5.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,13.1,50,98000,722,1345,365,465,563,163,53751,37367,18884,876,160,5.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,13.1,52,98000,470,1345,361,275,465,112,31037,24766,12728,556,170,5.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,13.2,55,98000,194,1345,357,92,298,49,10133,1110,5405,216,170,4.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,12.8,58,98000,5,244,351,0,0,0,0,0,0,0,150,3.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,12.8,61,98000,0,0,347,0,0,0,0,0,0,0,150,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,12.9,62,98100,0,0,347,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,13.3,66,98100,0,0,344,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.2,70,98100,0,0,339,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.8,71,98100,0,0,336,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,12.9,74,98100,0,0,333,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.4,81,98200,0,0,330,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.9,84,98200,0,0,330,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.8,87,98200,0,0,327,0,0,0,0,0,0,0,90,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,13.3,87,98200,0,0,324,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,13.3,88,98300,26,565,323,9,196,5,1043,0,609,22,90,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,13.3,79,98300,263,1345,330,140,393,63,15546,8289,7009,287,90,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,13.2,71,98300,536,1345,338,346,595,109,39733,32451,12581,553,350,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.8,60,98300,778,1345,348,549,710,138,64904,44491,16397,756,350,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,12.6,54,98300,973,1345,356,719,783,153,87035,49751,18591,876,350,0.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,11.6,44,98300,1107,1345,366,839,827,158,103243,52508,19558,918,350,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,10.9,36,98300,1172,1345,378,896,846,159,111266,53676,19870,922,350,0.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,10.7,31,98200,1161,1345,388,887,843,159,110030,53671,19817,921,140,2.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,14.3,38,98100,1078,1345,396,812,818,157,99477,50484,19350,912,140,4.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,13.8,37,98100,926,1345,395,678,767,150,81504,48078,18117,851,130,3.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,13.7,36,98100,716,1345,397,496,684,132,58238,41726,15536,709,100,3.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,13.6,37,98100,464,1345,393,288,551,98,32849,27095,11249,486,160,3.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,14.1,40,98100,188,1345,390,91,322,46,10065,132,5121,204,160,3.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,15.1,52,98100,4,215,375,0,0,0,0,0,0,0,120,2.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,15.7,63,98200,0,0,362,0,0,0,0,0,0,0,90,3.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,16.1,71,98200,0,0,355,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,16.2,77,98200,0,0,350,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.7,85,98300,0,0,345,0,0,0,0,0,0,0,90,2.4,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.7,91,98300,0,0,340,0,0,0,0,0,0,0,140,1.6,0,0,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.6,93,98300,0,0,338,0,0,0,0,0,0,0,120,1.8,0,0,14.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,16.0,90,98300,0,0,337,0,0,0,0,0,0,0,120,0.0,0,0,14.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.6,91,98300,0,0,334,0,0,0,0,0,0,0,350,0.0,0,0,14.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,15.5,93,98300,0,0,331,0,0,0,0,0,0,0,350,0.3,0,0,14.2,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,15.0,93,98300,0,0,329,0,0,0,0,0,0,0,350,1.8,0,0,13.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,15.1,89,98400,24,550,332,8,166,5,928,0,579,21,350,0.0,0,0,14.2,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.6,84,98500,260,1346,339,130,332,66,14380,6687,7298,300,130,0.0,0,0,12.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.6,69,98600,533,1346,354,325,510,123,36851,28292,14011,622,130,0.5,0,0,13.4,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,15.6,59,98700,775,1346,368,516,612,164,60093,39304,19138,895,130,3.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,15.6,52,98700,970,1346,378,677,677,189,80416,44331,22532,1080,80,2.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,15.6,49,98700,1104,1346,384,789,717,201,95160,46592,24367,1168,130,4.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,15.5,46,98700,1168,1346,389,844,735,206,102395,47485,25096,1190,170,5.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,15.1,43,98700,1158,1346,390,835,732,205,101229,47611,24993,1188,170,6.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,15.5,46,98700,1073,1346,388,763,708,199,91710,46194,23994,1152,150,5.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,15.2,47,98700,921,1346,384,636,662,183,75184,43515,21764,1038,160,4.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,15.2,48,98700,711,1346,381,465,588,154,53736,37226,17870,825,140,5.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,15.5,53,98800,458,1346,375,268,469,109,30207,23387,12273,535,150,5.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,15.2,56,98800,182,1346,370,83,268,46,9098,0,5125,205,150,4.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,16.2,68,98800,3,188,359,0,0,0,0,0,0,0,160,3.7,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,16.7,82,98900,0,0,348,0,0,0,0,0,0,0,150,4.0,0,0,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.7,87,99000,0,0,343,0,0,0,0,0,0,0,150,3.1,0,0,14.5,549,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.1,84,99000,0,0,343,0,0,0,0,0,0,0,170,2.7,0,0,14.2,396,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.1,84,99000,0,0,349,0,0,0,0,0,0,0,150,3.1,1,1,12.6,400,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,16.0,84,99000,0,0,349,0,0,0,0,0,0,0,120,3.1,1,1,11.5,427,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,15.5,84,99000,0,0,350,0,0,0,0,0,0,0,160,2.6,2,2,13.1,427,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.0,84,99000,0,0,347,0,0,0,0,0,0,0,190,0.0,2,2,14.9,434,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,15.0,87,99000,0,0,344,0,0,0,0,0,0,0,190,1.7,2,2,14.2,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.0,90,99000,0,0,331,0,0,0,0,0,0,0,180,2.2,0,0,13.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,15.0,86,99000,0,0,340,0,0,0,0,0,0,0,180,0.0,1,1,13.8,422,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,15.0,83,99100,23,536,351,8,87,7,907,0,739,27,70,0.0,3,3,9.9,400,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,15.0,80,99100,257,1347,358,104,174,71,11437,3912,7815,323,70,0.0,4,4,11.3,427,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,15.0,72,99100,530,1347,348,313,468,129,35388,26789,14640,652,70,1.7,0,0,11.5,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,14.7,63,99100,772,1347,356,469,470,199,53779,33083,22973,1089,160,3.0,0,0,13.4,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,13.1,48,99100,967,1347,367,648,607,212,76426,42702,25153,1214,120,2.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,12.1,41,99000,1101,1347,375,777,692,211,93441,47585,25497,1224,120,0.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,11.9,35,99000,1165,1347,387,882,827,167,108949,52600,20716,967,160,1.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,12.9,37,98900,1154,1347,388,843,758,194,102789,49808,23723,1122,160,2.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,13.5,39,98800,1069,1347,388,765,721,193,92214,47827,23382,1119,140,4.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,14.4,44,98800,916,1347,384,606,590,205,71034,40850,24170,1162,140,5.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,14.6,46,98700,705,1347,382,453,563,159,52269,36323,18366,849,150,4.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,14.7,49,98700,452,1347,377,262,457,109,29479,22978,12265,533,130,4.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,15.0,53,98700,176,1347,372,82,290,44,9024,0,4865,194,130,4.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,15.1,63,98700,2,160,359,0,0,0,0,0,0,0,130,3.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,15.6,72,98700,0,0,351,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.6,79,98800,0,0,344,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.6,79,98800,0,0,344,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.6,82,98800,0,0,342,0,0,0,0,0,0,0,110,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.6,84,98800,0,0,339,0,0,0,0,0,0,0,90,2.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,15.7,86,98800,0,0,338,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,16.1,93,98800,0,0,349,0,0,0,0,0,0,0,110,2.1,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,16.1,94,98800,0,0,354,0,0,0,0,0,0,0,110,2.2,5,5,14.2,208,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,16.0,95,98800,0,0,353,0,0,0,0,0,0,0,110,0.2,5,5,12.9,187,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,15.6,90,98800,0,0,354,0,0,0,0,0,0,0,170,1.6,5,5,12.9,217,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,15.6,90,98900,22,521,354,7,54,6,795,0,697,26,170,1.8,5,5,12.6,248,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,15.6,89,98900,254,1347,355,89,108,69,9789,2225,7574,312,240,0.0,5,5,11.3,284,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.6,81,98900,527,1347,362,215,136,162,23821,8669,18020,817,240,1.0,5,5,11.3,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,15.6,71,98900,769,1347,352,453,427,209,51644,30344,23929,1139,150,1.3,0,0,13.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,15.4,60,98900,964,1347,365,637,584,219,74730,40490,25870,1254,150,0.2,0,0,14.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,14.3,47,98800,1098,1347,378,797,748,188,96618,48461,22852,1090,200,1.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,13.8,39,98800,1161,1347,391,908,890,141,113329,53109,17668,816,200,1.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,13.6,35,98700,1150,1347,399,912,919,128,114573,53907,16124,742,200,2.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,14.7,35,98700,1064,1347,407,842,914,120,104988,52629,15072,698,120,3.4,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,12.7,32,98600,911,1347,401,682,812,133,82654,49986,16218,754,130,5.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,12.6,32,98600,700,1347,400,490,706,123,57640,42573,14575,660,130,4.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,12.8,35,98600,446,1347,393,267,504,100,30270,24909,11412,492,130,3.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,13.5,39,98600,169,1347,389,82,320,41,9019,0,4583,181,130,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,14.5,48,98700,1,132,377,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,14.9,58,98700,0,0,364,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,14.5,60,98800,0,0,359,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,15.1,65,98800,0,0,357,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,15.7,70,98800,0,0,355,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,16.1,76,98800,0,0,350,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,16.2,82,98700,0,0,345,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,16.6,88,98700,0,0,342,0,0,0,0,0,0,0,170,0.2,0,0,15.4,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.0,89,98700,0,0,338,0,0,0,0,0,0,0,170,1.3,0,0,11.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,15.7,85,98700,0,0,339,0,0,0,0,0,0,0,170,0.0,0,0,13.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.0,89,98800,0,0,337,0,0,0,0,0,0,0,170,0.0,0,0,14.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,15.6,86,98800,21,506,338,6,375,0,853,0,37,1,170,0.0,0,0,15.6,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,15.6,80,98900,251,1348,344,134,404,59,14917,6377,6558,267,170,0.0,0,0,12.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,15.5,68,98900,524,1348,355,342,616,103,39337,31401,11868,519,130,0.0,0,0,13.4,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,14.7,52,99000,767,1348,372,548,736,130,64875,44060,15410,707,130,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,13.0,41,99000,961,1348,381,720,809,143,87372,50299,17373,814,130,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,14.0,38,99000,1095,1348,394,840,854,147,103614,51839,18181,852,130,0.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,11.9,29,98900,1157,1348,402,897,873,147,111691,53911,18427,854,130,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,13.1,30,98900,1146,1348,410,886,869,147,110102,53039,18379,854,130,2.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,11.8,26,98800,1060,1348,413,808,842,146,99414,52707,18032,845,130,4.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.7,9.7,23,98800,906,1348,409,670,790,140,80967,50803,16943,789,120,4.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,10.4,25,98800,694,1348,406,485,704,123,57134,43402,14499,655,130,3.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,10.8,28,98800,440,1348,399,274,562,91,31299,26959,10415,445,100,3.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,10.8,30,98800,163,1348,392,78,320,40,8692,0,4415,174,100,3.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,11.4,38,98800,1,105,377,0,0,0,0,0,0,0,100,2.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,10.2,38,98900,0,0,369,0,0,0,0,0,0,0,80,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,11.4,45,98900,0,0,363,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,13.6,55,98900,0,0,360,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,15.1,67,98900,0,0,353,0,0,0,0,0,0,0,130,1.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,15.7,77,98900,0,0,347,0,0,0,0,0,0,0,80,2.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.1,82,98900,0,0,344,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.0,87,98900,0,0,339,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,15.6,88,98900,0,0,336,0,0,0,0,0,0,0,110,1.5,0,0,15.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.6,93,98900,0,0,332,0,0,0,0,0,0,0,150,1.3,0,0,14.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,15.5,93,99000,0,0,331,0,0,0,0,0,0,0,150,0.0,0,0,11.3,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,15.1,92,99000,19,491,330,6,190,3,714,0,388,14,150,0.0,0,0,11.3,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,15.6,85,99000,248,1349,338,129,380,60,14361,5951,6628,270,90,0.0,0,0,11.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,15.5,72,99100,521,1349,351,333,583,108,38111,30303,12376,543,90,0.0,0,0,13.4,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,14.4,52,99100,764,1349,370,534,698,139,62905,42981,16416,756,90,0.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,10.8,34,99100,958,1349,381,702,770,155,84773,50215,18849,887,90,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,9.3,28,99000,1091,1349,390,820,813,162,100583,53269,19991,941,150,2.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,8.6,25,98900,1154,1349,392,875,831,164,108236,54420,20376,951,150,4.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,7.1,23,98900,1141,1349,391,864,828,164,106802,54907,20316,950,160,5.8,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,9.3,27,98800,1055,1349,392,788,801,161,96241,52712,19726,930,120,6.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,9.0,27,98700,901,1349,388,652,750,151,78246,49691,18244,854,130,5.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,9.0,29,98600,688,1349,383,471,667,130,55120,42456,15328,694,110,5.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,9.4,32,98600,433,1349,377,264,529,94,30029,26060,10727,459,120,4.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,9.7,35,98600,157,1349,371,74,298,39,8154,0,4313,170,120,4.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,11.4,47,98600,1,79,359,0,0,0,0,0,0,0,130,3.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.9,60,98700,0,0,349,0,0,0,0,0,0,0,80,2.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,13.5,67,98700,0,0,344,0,0,0,0,0,0,0,140,2.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,14.4,79,98700,0,0,338,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,14.4,82,98700,0,0,335,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,14.4,87,98700,0,0,330,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,14.5,91,98700,0,0,328,0,0,0,0,0,0,0,90,2.2,0,0,15.4,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,15.0,96,98600,0,0,327,0,0,0,0,0,0,0,130,2.5,0,0,11.3,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,15.0,93,98600,0,0,335,0,0,0,0,0,0,0,150,2.1,1,1,11.3,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,14.9,93,98600,0,0,335,0,0,0,0,0,0,0,150,2.0,1,1,11.5,192,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,14.4,89,98600,0,0,335,0,0,0,0,0,0,0,50,1.0,1,1,12.9,263,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,14.4,86,98600,18,476,342,5,97,4,588,0,434,15,50,0.0,2,2,12.6,344,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,14.3,83,98700,245,1349,344,102,194,67,11211,3810,7374,303,50,0.0,2,2,11.0,414,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,13.9,77,98700,518,1349,351,234,199,158,25969,12773,17582,793,160,0.0,3,3,9.9,527,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.9,71,98700,761,1349,356,342,162,250,38368,12804,28240,1360,160,0.5,3,3,11.5,592,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.9,65,98700,955,1349,367,445,168,326,50555,14035,37315,1862,160,3.2,4,4,13.1,693,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.9,60,98700,1088,1349,373,546,216,372,62634,18293,42973,2159,120,3.7,4,4,14.8,823,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,13.9,55,98600,1150,1349,380,629,299,374,72750,24875,43531,2168,200,3.6,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,13.9,54,98600,1137,1349,364,784,652,235,93890,45215,28284,1364,120,3.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,13.9,54,98500,1050,1349,363,725,657,214,86432,45076,25582,1235,180,3.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,13.9,58,98500,895,1349,374,498,341,272,56845,26784,31200,1530,180,4.2,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,13.9,59,98400,683,1349,371,360,308,204,40508,22443,23094,1085,160,5.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,13.9,63,98400,427,1349,367,200,241,124,22138,12976,13747,602,180,5.4,3,3,16.1,853,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.9,66,98400,152,1349,365,51,113,39,5665,0,4283,169,180,5.3,4,4,16.1,853,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.8,71,98400,0,55,362,0,0,0,0,0,0,0,180,3.6,5,5,16.1,837,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,13.3,73,98400,0,0,357,0,0,0,0,0,0,0,180,3.6,5,5,16.1,850,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,13.3,73,98500,0,0,357,0,0,0,0,0,0,0,180,3.5,5,5,16.1,745,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.2,73,98500,0,0,356,0,0,0,0,0,0,0,170,2.6,5,5,16.1,809,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,12.9,73,98500,0,0,354,0,0,0,0,0,0,0,180,2.7,5,5,16.1,722,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.3,75,98500,0,0,354,0,0,0,0,0,0,0,230,3.5,5,5,16.1,666,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,13.4,76,98500,0,0,354,0,0,0,0,0,0,0,160,3.0,5,5,16.1,640,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,13.7,80,98400,0,0,352,0,0,0,0,0,0,0,200,2.8,5,5,16.1,671,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.9,76,98400,0,0,351,0,0,0,0,0,0,0,180,3.8,5,5,16.1,921,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,12.8,77,98400,0,0,349,0,0,0,0,0,0,0,180,3.8,5,5,16.1,1028,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.9,78,98500,0,0,349,0,0,0,0,0,0,0,170,3.4,5,5,16.1,1402,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,13.3,80,98500,17,461,350,5,59,4,581,0,494,18,190,2.3,5,5,16.1,1411,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,13.3,78,98600,242,1350,351,87,119,65,9543,2304,7223,296,160,3.9,5,5,16.1,1463,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.3,75,98600,515,1350,354,208,133,157,23101,8611,17542,791,170,5.1,5,5,16.1,1524,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,12.8,70,98700,758,1350,356,299,96,245,33672,7584,27766,1334,200,4.1,5,5,16.1,723,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,12.7,64,98700,952,1350,363,404,111,325,45909,9435,37207,1854,210,3.9,5,5,16.1,1270,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.1,58,98700,1084,1350,368,506,158,379,57980,13714,43765,2200,180,5.6,5,5,16.1,1219,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.6,52,98700,1146,1350,373,593,240,389,68444,20745,45244,2259,150,5.3,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.1,48,98700,1133,1350,376,615,292,370,71136,24870,43091,2148,170,5.9,5,5,16.1,1110,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,11.0,49,98700,1045,1350,373,563,290,339,64769,24477,39214,1958,180,4.1,5,5,16.1,1189,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,10.5,49,98600,890,1350,367,494,340,270,56552,27534,31058,1519,190,4.1,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,10.0,49,98600,677,1350,346,432,559,152,49883,37314,17619,807,190,4.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,10.0,51,98600,421,1350,355,212,307,116,23614,16661,13002,565,170,4.4,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,10.1,54,98700,146,1350,357,52,134,38,5740,0,4163,164,170,4.5,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.7,62,98600,0,31,345,0,0,0,0,0,0,0,180,3.4,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.1,65,98700,0,0,332,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.0,67,98800,0,0,340,0,0,0,0,0,0,0,260,1.5,2,2,16.1,1006,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.6,68,98800,0,0,343,0,0,0,0,0,0,0,300,1.5,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.6,70,98800,0,0,323,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.6,73,98800,0,0,321,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,10.6,76,98800,0,0,318,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.4,79,98800,0,0,314,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.6,76,98800,0,0,313,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.6,84,98800,0,0,311,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,10.5,86,98900,0,0,309,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,10.1,83,98900,16,446,310,4,317,0,571,0,33,1,130,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.6,79,99000,239,1351,315,121,356,59,13488,6239,6521,264,130,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,10.6,68,99000,512,1351,326,320,551,111,36533,30834,12710,556,130,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,10.6,58,99000,754,1351,338,516,662,147,60543,43289,17258,795,130,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,10.3,51,99000,949,1351,345,680,730,167,81515,48983,20129,952,130,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,8.8,43,99000,1081,1351,349,794,772,177,96667,52082,21609,1025,130,0.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,8.6,39,98900,1142,1351,356,847,789,180,103887,53047,22146,1043,130,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,10.5,41,98900,1128,1351,364,835,786,179,102190,52011,22006,1040,160,1.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,10.2,37,98800,1041,1351,370,759,759,174,91948,50807,21190,1006,160,2.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,11.1,40,98800,885,1351,369,625,709,161,74406,47096,19269,906,160,3.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,11.1,41,98700,671,1351,369,447,628,135,51976,39661,15788,716,150,3.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,10.8,42,98700,415,1351,364,245,493,94,27709,23279,10645,455,150,3.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,10.7,44,98700,140,1351,359,63,274,35,6982,0,3856,151,270,3.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,11.0,49,98700,0,8,354,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,10.7,56,98800,0,0,341,0,0,0,0,0,0,0,260,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,11.0,61,98800,0,0,336,0,0,0,0,0,0,0,250,3.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,10.6,63,98800,0,0,331,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.7,66,98800,0,0,328,0,0,0,0,0,0,0,280,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.1,70,98800,0,0,327,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.1,73,98800,0,0,324,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.0,78,98800,0,0,319,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,10.6,78,98700,0,0,316,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,10.6,81,98700,0,0,314,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,10.5,83,98700,0,0,311,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,10.1,80,98800,15,431,312,4,359,0,670,0,2,0,210,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,10.8,77,98800,236,1352,319,124,393,56,13806,6078,6200,250,210,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.7,66,98900,509,1352,335,329,605,101,37835,32065,11686,508,210,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.4,55,98900,751,1352,346,533,725,130,63023,45196,15421,704,210,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,9.5,43,98800,945,1352,353,702,798,145,85114,51698,17607,824,210,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,6.9,30,98800,1077,1352,366,820,841,150,101120,55220,18574,870,130,0.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,7.8,28,98700,1138,1352,377,875,860,151,108661,55679,18868,878,130,3.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,7.1,26,98700,1124,1352,378,862,855,151,106919,55794,18804,877,140,4.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,3.6,21,98600,1036,1352,373,783,828,149,96131,55708,18344,859,170,5.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,4.8,23,98600,879,1352,372,644,774,141,77564,51884,16995,788,180,5.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,4.2,23,98600,665,1352,370,459,687,121,53919,44073,14266,639,170,4.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,4.2,24,98500,408,1352,366,249,540,86,28429,25959,9884,418,150,4.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,4.5,26,98500,134,1336,362,63,308,32,6961,0,3568,138,150,4.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,5.6,32,98600,0,0,352,0,0,0,0,0,0,0,120,2.9,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,9.0,47,98600,0,0,343,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,9.5,49,98600,0,0,343,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,10.1,54,98600,0,0,340,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.8,60,98600,0,0,336,0,0,0,0,0,0,0,80,1.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.3,69,98600,0,0,335,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.7,78,98600,0,0,328,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.1,77,98500,0,0,325,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.6,75,98500,0,0,325,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.1,76,98500,0,0,321,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,11.0,80,98500,0,0,317,0,0,0,0,0,0,0,210,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,10.7,77,98600,14,416,318,3,260,0,419,0,43,1,210,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.2,71,98600,233,1352,326,122,393,55,13601,5622,6104,246,210,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,11.6,61,98600,506,1352,340,327,607,100,37609,31965,11568,502,210,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,10.8,49,98600,748,1352,351,530,726,129,62774,45429,15296,698,210,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,8.7,37,98600,942,1352,360,700,799,143,84860,52060,17464,816,210,1.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,8.1,31,98600,1074,1352,372,818,842,149,100729,54734,18437,864,120,1.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,9.6,31,98500,1134,1352,382,872,861,150,108188,54860,18720,872,170,2.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,7.3,25,98500,1120,1352,383,859,856,150,106468,55729,18675,871,150,2.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,7.6,26,98400,1031,1352,384,779,829,148,95507,54254,18162,851,130,4.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,6.5,24,98400,874,1352,381,640,775,139,76989,51252,16825,780,150,4.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,5.7,23,98400,659,1352,378,454,687,120,53332,43433,14092,631,130,3.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,5.6,25,98400,402,1352,373,245,538,85,27878,25102,9712,410,130,3.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,6.3,27,98400,129,1314,369,60,317,30,6675,0,3318,128,130,3.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,10.2,42,98400,0,0,361,0,0,0,0,0,0,0,100,3.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.3,51,98500,0,0,352,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.4,58,98500,0,0,348,0,0,0,0,0,0,0,110,2.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.4,66,98600,0,0,344,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,14.0,71,98600,0,0,342,0,0,0,0,0,0,0,90,1.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,14.5,76,98600,0,0,340,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,14.7,81,98500,0,0,337,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,13.2,78,98500,0,0,331,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.7,80,98400,0,0,326,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.0,78,98500,0,0,324,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,10.5,74,98500,0,0,319,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,10.1,69,98600,13,401,322,3,301,0,448,0,16,0,190,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.8,65,98600,229,1353,330,125,433,51,13946,5391,5757,231,190,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,11.6,59,98700,503,1353,342,337,666,90,39082,33433,10468,451,190,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,11.0,46,98700,745,1353,357,548,793,112,65554,47401,13381,604,190,0.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,10.7,39,98700,938,1353,370,724,870,120,88782,53221,14818,684,190,1.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,10.8,34,98700,1070,1353,382,846,915,122,105538,55426,15292,707,190,0.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,8.9,25,98600,1130,1353,394,902,934,122,113594,57217,15384,707,190,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,9.5,23,98500,1115,1353,407,888,929,122,111544,56722,15371,708,190,1.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,12.7,28,98500,1026,1353,414,805,901,122,99704,53629,15165,703,120,3.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,12.2,27,98400,868,1353,413,659,844,118,80064,50710,14375,660,120,3.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.7,12.3,27,98400,653,1353,412,467,751,105,55117,42629,12392,550,120,2.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,11.6,27,98400,395,1353,408,249,589,77,28465,23948,8840,371,280,2.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,10.8,27,98400,123,1292,404,59,362,26,6645,0,2964,114,280,2.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,9.1,27,98400,0,0,390,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,10.0,32,98400,0,0,380,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,10.1,36,98500,0,0,372,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,11.4,42,98500,0,0,367,0,0,0,0,0,0,0,110,0.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,16.1,69,98500,0,0,357,0,0,0,0,0,0,0,110,3.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,16.1,74,98500,0,0,352,0,0,0,0,0,0,0,80,1.8,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,16.0,78,98500,0,0,347,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,15.5,79,98400,0,0,343,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,15.0,82,98400,0,0,338,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,14.9,89,98400,0,0,332,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,14.3,84,98400,0,0,332,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,13.9,83,98500,12,386,331,3,341,0,575,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,13.7,71,98500,226,1354,340,128,486,47,14410,3823,5319,212,100,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,12.6,50,98600,499,1354,361,350,738,78,40968,34351,9125,388,100,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,11.0,34,98700,742,1354,384,570,875,91,69194,49458,11093,493,100,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,6.1,18,98700,935,1354,402,754,955,94,94267,57654,11796,534,100,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,-0.3,10,98600,1066,1354,413,881,1002,92,112565,62275,11793,533,100,0.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.4,-2.6,7,98600,1126,1354,422,939,1021,90,121190,63665,11659,523,100,3.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,39.3,-4.3,6,98600,1110,1354,419,924,1016,91,118990,63888,11708,526,170,5.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.9,-5.0,6,98500,1020,1354,416,836,986,93,106261,62714,11859,536,170,2.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.9,-4.8,6,98500,862,1354,416,684,927,94,84921,59082,11673,524,170,3.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.9,-4.2,6,98400,647,1354,417,483,828,87,58061,50002,10512,458,170,1.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,38.3,-2.6,7,98400,389,1354,416,256,653,68,29588,28354,7884,326,150,3.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.2,-1.1,9,98400,118,1270,412,59,419,23,6733,0,2598,98,150,3.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,2.9,15,98500,0,0,398,0,0,0,0,0,0,0,150,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,8.0,25,98500,0,0,387,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,12.7,42,98600,0,0,376,0,0,0,0,0,0,0,70,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.5,45,98600,0,0,369,0,0,0,0,0,0,0,70,1.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.2,57,98600,0,0,361,0,0,0,0,0,0,0,100,3.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,15.6,66,98600,0,0,358,0,0,0,0,0,0,0,10,1.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,15.5,67,98600,0,0,357,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,14.8,68,98600,0,0,351,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,13.8,65,98500,0,0,348,0,0,0,0,0,0,0,330,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,13.2,63,98600,0,0,347,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,13.0,64,98600,0,0,344,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,13.7,67,98700,11,371,346,2,206,0,278,0,43,1,290,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.6,59,98600,223,1355,348,114,368,54,12667,4158,5969,241,290,1.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,11.3,47,98600,496,1355,358,308,546,108,35093,29607,12349,538,330,1.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,8.8,32,98600,738,1355,385,423,399,206,48226,30248,23556,1111,280,1.8,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,8.4,24,98700,931,1355,397,737,919,105,91262,55663,13038,595,140,3.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,8.6,20,98600,1062,1355,416,899,1048,77,115942,59688,9932,444,60,3.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.8,8.2,18,98600,1122,1355,424,946,1043,83,122380,60098,10715,480,190,4.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.7,13.4,29,98600,1106,1355,422,660,417,319,76777,33051,37368,1852,190,5.2,1,1,16.1,3353,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,10.3,30,98700,1015,1355,401,492,192,348,56202,16711,40004,2002,130,1.8,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,9.0,27,98700,857,1355,398,428,234,280,48561,19673,31934,1560,130,0.4,1,1,16.1,4572,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,7.1,24,98700,641,1355,385,395,512,153,45282,35001,17567,800,280,2.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,6.5,24,98700,383,1355,381,244,611,72,28014,24947,8257,343,280,2.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,5.7,24,98700,113,1254,377,57,434,21,6505,0,2390,90,280,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,13.2,44,98800,0,0,375,0,0,0,0,0,0,0,160,5.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,12.5,50,98900,0,0,362,0,0,0,0,0,0,0,130,3.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,11.1,47,98900,0,0,356,0,0,0,0,0,0,0,20,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,11.2,47,98900,0,0,358,0,0,0,0,0,0,0,20,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,11.7,48,98900,0,0,358,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.7,50,98800,0,0,356,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,11.6,51,98800,0,0,353,0,0,0,0,0,0,0,310,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,11.0,49,98600,0,0,353,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,10.8,49,98600,0,0,352,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.7,52,98600,0,0,352,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.7,50,98600,0,0,356,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,11.6,49,98600,10,356,357,2,245,0,291,0,21,1,290,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,10.9,42,98700,220,1355,364,126,505,45,14240,3681,5032,200,290,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,10.3,33,98700,493,1355,381,334,683,85,38762,33798,9950,426,110,0.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,11.9,32,98700,735,1355,394,515,710,131,60736,44071,15443,704,110,3.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,13.4,33,98700,928,1355,403,655,706,172,77910,46409,20512,973,150,4.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,14.2,35,98700,1058,1355,425,552,256,352,63282,21395,40587,2036,140,5.4,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,16.2,41,98700,1117,1355,404,700,492,295,81983,36445,34696,1711,170,6.9,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,16.6,42,98600,1101,1355,411,589,280,362,67654,22698,41826,2099,180,5.1,1,1,16.1,4389,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,16.2,44,98600,1010,1355,411,546,299,323,62492,23923,37203,1859,150,5.1,2,2,16.1,3353,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,16.9,48,98500,851,1355,408,471,342,256,53457,25656,29257,1427,180,4.8,2,2,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,17.5,52,98500,635,1355,404,335,318,186,37501,21318,20917,973,200,3.1,2,2,16.1,3375,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,17.8,56,98500,376,1355,394,181,276,105,19963,11666,11569,499,170,3.1,1,1,16.1,3528,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,17.9,58,98500,108,1231,392,42,213,25,4609,0,2735,106,170,3.2,1,1,16.1,3658,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,18.3,63,98500,0,0,379,0,0,0,0,0,0,0,170,3.4,0,0,16.1,3658,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,18.4,67,98600,0,0,375,0,0,0,0,0,0,0,170,1.8,0,0,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,18.9,69,98600,0,0,375,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,19.0,72,98600,0,0,372,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,19.3,75,98600,0,0,370,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2016,9,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,18.8,74,98600,0,0,369,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,18.4,75,98500,0,0,365,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,18.8,82,98500,0,0,361,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,18.2,81,98400,0,0,358,0,0,0,0,0,0,0,280,0.3,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,17.8,79,98400,0,0,358,0,0,0,0,0,0,0,280,2.1,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,17.8,79,98400,0,0,357,0,0,0,0,0,0,0,260,1.8,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,17.9,80,98400,9,341,357,2,290,0,382,0,0,0,80,0.3,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,18.3,72,98500,216,1356,368,114,397,50,12584,1386,5581,225,80,2.1,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,18.3,66,98500,490,1356,376,295,508,112,33334,24915,12681,557,80,2.0,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,18.3,61,98500,732,1356,382,454,510,179,51845,32722,20525,963,230,1.5,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,18.3,56,98500,924,1356,390,574,491,239,66248,34330,27746,1354,230,1.6,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,18.3,52,98500,1054,1356,404,573,301,339,65619,23605,39039,1959,170,2.5,1,1,16.1,1158,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,18.2,47,98400,1113,1356,418,651,390,331,75351,29641,38566,1923,140,5.2,2,2,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,17.7,45,98300,1096,1356,405,762,671,220,90880,43737,26316,1274,160,5.6,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,17.2,46,98300,1005,1356,420,558,331,313,63908,25813,36030,1797,150,5.2,4,4,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,17.1,46,98200,845,1356,412,485,387,244,55180,28337,27892,1354,140,5.6,2,2,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,17.4,49,98200,628,1356,395,395,544,143,45081,32147,16378,745,120,4.7,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,16.7,49,98200,370,1356,391,216,492,82,24296,17723,9264,391,120,2.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,16.3,50,98200,91,1068,386,41,421,13,4760,0,1486,55,340,0.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,13.5,44,98300,0,0,390,0,0,0,0,0,0,0,340,2.2,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,11.9,42,98300,0,0,371,0,0,0,0,0,0,0,120,0.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,16.7,65,98300,0,0,366,0,0,0,0,0,0,0,120,3.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,16.7,72,98300,0,0,358,0,0,0,0,0,0,0,120,3.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,16.5,78,98300,0,0,350,0,0,0,0,0,0,0,120,3.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.3,77,98400,0,0,344,0,0,0,0,0,0,0,140,3.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,13.6,70,98400,0,0,342,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.4,66,98400,0,0,338,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,13.4,73,98400,0,0,337,0,0,0,0,0,0,0,130,1.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,14.3,82,98400,0,0,354,0,0,0,0,0,0,0,150,2.4,5,5,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,15.7,85,98400,0,0,360,0,0,0,0,0,0,0,300,0.4,5,5,14.9,339,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.2,88,98400,9,326,360,1,91,0,135,0,57,2,300,2.5,5,5,7.7,323,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,16.7,92,98500,213,1357,359,72,103,56,7930,783,6170,250,200,0.6,5,5,6.4,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,16.1,82,98500,486,1357,365,189,121,146,20950,7145,16248,727,260,1.6,5,5,16.1,474,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,15.6,72,98600,728,1357,372,300,119,236,33610,9050,26611,1273,260,1.8,5,5,16.1,818,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.3,56,98600,921,1357,378,431,176,312,48874,14690,35581,1765,170,0.4,5,5,16.1,853,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,13.1,49,98500,1050,1357,388,544,251,350,62394,21160,40406,2025,150,2.8,5,5,16.1,933,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,12.4,45,98500,1109,1357,390,596,285,363,68767,24132,42150,2109,120,3.3,5,5,16.1,1372,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,13.3,47,98400,1091,1357,393,594,301,352,68466,25031,40871,2045,180,4.1,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,12.1,44,98300,999,1357,388,556,333,310,63844,27317,35885,1782,300,1.9,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,5.3,25,98300,839,1357,369,626,812,123,75598,52502,14935,684,300,4.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,6.1,27,98300,622,1357,368,445,757,98,52662,44297,11603,509,280,3.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,5.5,28,98300,363,1357,363,235,639,64,27085,23778,7426,305,280,2.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,2.0,22,98300,86,1037,355,42,529,9,5036,0,1027,37,350,4.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,-5.7,14,98300,0,0,337,0,0,0,0,0,0,0,360,9.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,-5.4,15,98400,0,0,330,0,0,0,0,0,0,0,10,8.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,-1.5,22,98500,0,0,333,0,0,0,0,0,0,0,320,4.8,0,0,15.9,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,-0.4,24,98500,0,0,334,0,0,0,0,0,0,0,340,5.5,0,0,14.7,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,0.4,26,98600,0,0,332,0,0,0,0,0,0,0,310,4.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-0.3,26,98600,0,0,329,0,0,0,0,0,0,0,330,4.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,2.3,33,98500,0,0,328,0,0,0,0,0,0,0,330,4.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,9.4,61,98500,0,0,327,0,0,0,0,0,0,0,70,2.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.2,78,98600,0,0,325,0,0,0,0,0,0,0,110,2.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.1,80,98600,0,0,323,0,0,0,0,0,0,0,70,1.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.6,80,98600,0,0,320,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,11.2,77,98700,8,312,321,1,119,0,138,0,43,1,20,1.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,9.9,62,98800,210,1358,329,108,378,50,12018,3311,5529,221,290,0.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,-0.7,23,98800,483,1358,334,310,599,97,35664,33718,11155,479,290,3.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,-1.2,18,98800,725,1358,349,511,721,126,60525,48409,15005,678,30,4.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,-1.9,16,98900,917,1358,354,678,793,142,82173,54942,17312,804,50,5.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,-3.3,13,98800,1046,1358,360,793,836,149,97626,57953,18370,859,10,5.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,-3.4,12,98800,1104,1358,364,845,854,150,104729,58913,18725,873,30,5.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,-4.4,11,98700,1086,1358,367,829,848,150,102531,58824,18629,869,360,6.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,-4.7,10,98600,994,1358,371,746,819,146,91335,57225,17998,840,30,6.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,9.7,33,98600,834,1358,376,605,763,136,72314,49047,16350,755,120,6.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,11.5,41,98600,616,1358,371,419,672,114,48767,39249,13326,593,110,4.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,11.4,45,98600,356,1358,362,211,511,77,23835,19133,8725,365,110,3.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,11.9,48,98600,81,1006,361,38,493,8,4484,0,988,35,110,2.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,8.5,41,98600,0,0,352,0,0,0,0,0,0,0,100,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,3.6,30,98600,0,0,342,0,0,0,0,0,0,0,360,0.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,0.5,22,98700,0,0,346,0,0,0,0,0,0,0,360,3.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,0.0,21,98700,0,0,347,0,0,0,0,0,0,0,340,5.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-0.2,21,98700,0,0,347,0,0,0,0,0,0,0,350,4.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,-1.0,20,98700,0,0,342,0,0,0,0,0,0,0,320,3.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,-0.1,24,98700,0,0,337,0,0,0,0,0,0,0,300,2.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,2.6,35,98700,0,0,325,0,0,0,0,0,0,0,320,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,1.7,34,98700,0,0,323,0,0,0,0,0,0,0,320,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,1.7,37,98700,0,0,317,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,1.8,37,98800,0,0,317,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,2.5,40,98800,7,297,316,1,160,0,145,0,23,1,300,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,4.2,42,98800,207,1358,323,114,455,45,12777,3738,5013,198,300,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,3.0,29,98900,479,1358,341,329,711,78,38487,35940,9189,389,150,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,0.8,19,98900,721,1358,359,545,848,95,65936,52192,11507,509,150,0.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,-0.7,14,98900,913,1358,372,724,928,100,90007,59050,12508,567,150,2.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,-1.3,12,98900,1042,1358,385,847,974,100,107283,61777,12684,577,150,1.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,-2.3,10,98800,1100,1358,391,902,993,99,115258,62870,12653,573,150,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.0,-2.8,9,98800,1081,1358,393,885,987,99,112702,62738,12678,575,170,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.6,-2.9,9,98700,989,1358,396,796,956,100,100027,61224,12661,575,170,1.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,-2.7,9,98700,828,1358,400,644,895,99,79118,57118,12165,546,170,6.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.1,-1.0,11,98700,610,1358,396,444,792,89,52899,46694,10589,459,270,4.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,0.3,13,98700,350,1358,389,221,606,65,25392,23059,7492,307,270,3.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,-0.2,13,98700,76,975,384,38,597,5,4737,0,596,20,270,3.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,-1.0,14,98700,0,0,371,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,-0.5,17,98700,0,0,362,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,0.1,19,98800,0,0,355,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,0.7,21,98800,0,0,350,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,1.1,23,98700,0,0,347,0,0,0,0,0,0,0,300,3.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,1.3,26,98700,0,0,340,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,2.3,29,98700,0,0,336,0,0,0,0,0,0,0,20,1.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,2.9,32,98700,0,0,333,0,0,0,0,0,0,0,20,2.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,3.5,34,98700,0,0,333,0,0,0,0,0,0,0,280,2.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,4.3,38,98700,0,0,330,0,0,0,0,0,0,0,360,1.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,3.9,38,98700,0,0,328,0,0,0,0,0,0,0,300,2.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,4.0,39,98800,6,281,326,1,201,0,155,0,7,0,300,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,4.2,33,98900,203,1359,340,117,508,41,13179,2768,4603,181,300,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,3.2,24,98900,476,1359,357,336,759,71,39594,36708,8324,349,120,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,2.0,17,99000,717,1359,378,578,966,68,71565,54776,8429,364,120,0.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.7,-3.7,8,99000,909,1359,395,744,989,83,93782,61418,10453,467,120,3.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,-8.9,5,98900,1038,1359,412,727,689,201,87457,52594,24318,1161,10,8.4,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,-9.2,5,98800,1095,1359,412,718,568,260,85318,46488,31091,1509,10,7.5,3,3,15.3,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.3,-9.6,4,98700,1076,1359,400,794,785,173,97154,57171,21208,1000,10,9.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.7,-10.7,4,98700,983,1359,400,730,800,152,89010,57236,18562,868,30,9.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.1,-11.0,4,98600,822,1359,397,614,820,118,74467,55878,14401,654,10,8.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.6,-10.9,4,98600,603,1359,395,423,725,101,49882,45760,11934,521,30,6.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.1,-10.6,4,98600,343,1359,392,216,600,64,24795,23636,7418,303,20,6.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,-10.4,5,98600,71,944,389,37,300,21,4074,0,2352,91,20,6.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.7,-9.2,6,98600,0,0,382,0,0,0,0,0,0,0,360,5.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,-8.1,7,98600,0,0,378,0,0,0,0,0,0,0,10,5.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,-7.1,8,98700,0,0,371,0,0,0,0,0,0,0,40,2.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,-6.4,9,98700,0,0,363,0,0,0,0,0,0,0,360,2.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,-4.7,12,98700,0,0,352,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,9,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,-2.5,17,98700,0,0,342,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-0.8,20,98700,0,0,346,0,0,0,0,0,0,0,350,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,1.2,28,98600,0,0,334,0,0,0,0,0,0,0,350,3.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,1.7,29,98600,0,0,334,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,1.7,30,98600,0,0,331,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,1.9,32,98600,0,0,328,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,2.6,34,98700,6,266,328,1,242,0,191,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,1.7,25,98700,200,1360,344,118,551,37,13452,2127,4259,166,290,1.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,1.6,20,98800,472,1360,361,343,809,62,40810,37798,7433,309,290,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,1.1,14,98800,714,1360,387,581,986,63,72304,55391,7874,338,270,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.3,0.7,11,98800,905,1360,405,740,988,82,93198,60202,10407,465,160,0.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.3,-1.7,8,98700,1034,1360,412,865,1031,81,110996,63361,10475,469,160,3.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.9,-1.8,8,98700,1090,1360,415,846,883,138,105287,59540,17247,800,330,3.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.8,-1.8,8,98600,1071,1360,432,659,467,291,77299,39338,34343,1686,330,5.2,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.7,-2.2,8,98500,977,1360,431,589,444,270,68606,37382,31608,1544,360,5.3,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.3,-2.3,8,98500,816,1360,425,500,483,210,57806,38420,24405,1157,330,3.5,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.7,-2.9,7,98400,597,1360,412,422,744,96,49934,45038,11360,495,350,5.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,37.5,-2.8,8,98400,337,1360,411,219,655,57,25361,22805,6631,269,350,6.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,36.7,-2.3,8,98400,66,913,408,36,328,20,3971,0,2213,85,350,6.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,1.0,13,98400,0,0,396,0,0,0,0,0,0,0,90,4.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,3.5,18,98500,0,0,385,0,0,0,0,0,0,0,100,3.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,4.3,22,98500,0,0,374,0,0,0,0,0,0,0,280,0.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,4.2,22,98500,0,0,372,0,0,0,0,0,0,0,280,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,5.6,28,98500,0,0,363,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,5.7,31,98500,0,0,355,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,6.3,36,98400,0,0,347,0,0,0,0,0,0,0,330,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,7.1,39,98300,0,0,345,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,6.5,39,98300,0,0,342,0,0,0,0,0,0,0,10,0.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,5.3,36,98400,0,0,339,0,0,0,0,0,0,0,10,2.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,3.8,31,98400,0,0,341,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,6.4,38,98400,5,251,343,0,0,0,0,0,0,0,190,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,5.2,31,98400,196,1361,350,113,515,39,12777,1345,4393,172,190,1.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,5.7,27,98400,469,1361,366,314,671,83,36393,33470,9605,408,190,3.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.4,3.3,17,98500,710,1361,388,549,893,83,66930,52384,10175,446,90,2.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,3.1,15,98500,901,1361,399,713,923,101,88252,57680,12533,568,100,3.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.1,2.3,13,98400,1029,1361,406,809,909,121,100720,58904,15157,699,140,4.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,35.4,3.0,13,98400,1086,1361,433,614,348,336,71265,30371,39288,1950,180,2.8,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,4.5,15,98300,1066,1361,427,601,345,330,69577,29872,38508,1912,180,4.2,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.9,4.9,16,98300,972,1361,409,672,668,195,79951,48683,23288,1112,180,5.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,4.6,16,98300,810,1361,405,556,668,158,65569,46778,18744,871,180,4.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,6.3,19,98300,591,1361,425,309,318,171,34763,22926,19330,882,230,3.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,7.8,23,98300,330,1361,419,144,210,93,15915,8964,10332,436,230,3.2,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,9.4,27,98300,62,882,414,21,105,16,2310,0,1783,68,300,2.9,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,9.4,30,98400,0,0,402,0,0,0,0,0,0,0,300,2.4,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,9.5,32,98400,0,0,378,0,0,0,0,0,0,0,330,1.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,10.0,34,98500,0,0,375,0,0,0,0,0,0,0,320,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,9.9,35,98500,0,0,373,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,9.6,36,98500,0,0,369,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,10.5,39,98500,0,0,368,0,0,0,0,0,0,0,290,1.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,10.1,40,98500,0,0,364,0,0,0,0,0,0,0,330,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,10.6,43,98500,0,0,360,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,10.8,44,98500,0,0,360,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.8,50,98500,0,0,356,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,12.4,54,98500,0,0,354,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.3,58,98500,4,236,354,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,13.2,54,98600,193,1361,359,97,362,46,10778,531,5101,203,100,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,12.5,47,98600,465,1361,366,279,508,106,31600,26179,11998,520,190,0.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,11.0,37,98700,706,1361,376,457,582,155,52847,38762,18037,830,190,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,10.4,32,98700,897,1361,383,602,622,192,70730,44030,22697,1081,190,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,9.5,27,98600,1025,1361,393,734,731,183,88273,50180,22158,1056,190,0.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,9.8,25,98600,1081,1361,402,799,790,172,97302,52522,21000,995,190,2.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,8.8,23,98500,1061,1361,417,682,539,262,80215,41593,31022,1517,190,2.5,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,8.3,21,98500,966,1361,405,714,794,151,86523,52493,18334,860,160,4.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.2,8.3,22,98500,804,1361,404,581,760,132,69253,49001,15787,724,160,3.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,8.5,22,98500,584,1361,403,403,704,101,47166,40147,11853,519,200,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,8.9,24,98500,323,1361,413,168,364,82,18737,13670,9147,382,290,2.6,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,9.4,26,98500,58,851,417,23,182,16,2582,0,1731,66,290,2.5,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,9.6,28,98600,0,0,391,0,0,0,0,0,0,0,320,2.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,10.6,33,98600,0,0,407,0,0,0,0,0,0,0,300,2.4,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,10.5,34,98600,0,0,398,0,0,0,0,0,0,0,270,1.3,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,10.0,35,98700,0,0,373,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,10.1,37,98700,0,0,369,0,0,0,0,0,0,0,310,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,10.6,41,98700,0,0,365,0,0,0,0,0,0,0,310,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,10.7,43,98700,0,0,362,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,11.2,48,98700,0,0,356,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.8,51,98700,0,0,355,0,0,0,0,0,0,0,340,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,12.2,57,98700,0,0,349,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,12.2,57,98800,0,0,348,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.1,58,98800,4,221,347,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,11.7,50,98900,190,1362,355,96,369,45,10660,452,4982,198,320,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,11.5,42,99000,462,1362,369,295,602,91,33820,29188,10475,449,320,0.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,10.5,32,99000,703,1362,384,496,731,120,58559,44607,14169,639,320,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,9.8,26,99000,893,1362,400,663,806,135,80051,51378,16348,758,150,0.4,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,9.1,23,99000,1021,1362,404,777,849,141,95286,54399,17366,812,150,2.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,9.6,22,98900,1076,1362,412,827,866,143,102073,55031,17675,826,150,2.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.5,9.2,21,98800,1056,1362,413,809,860,142,99557,54921,17571,822,160,2.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.8,8.4,20,98800,961,1362,413,723,829,139,88059,53571,16947,790,160,4.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.7,8.9,22,98800,798,1362,408,579,770,128,69124,48983,15372,704,310,4.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,8.7,23,98800,578,1362,403,391,670,106,45444,38735,12402,545,310,4.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,8.6,24,98800,317,1362,397,183,491,69,20661,15965,7808,322,300,4.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,8.6,25,98800,54,820,392,27,246,18,2992,0,1940,75,300,4.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,9.9,30,98800,0,0,386,0,0,0,0,0,0,0,280,2.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,9.5,31,98800,0,0,380,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,10.1,35,98900,0,0,375,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,10.5,37,98900,0,0,373,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,10.6,40,98900,0,0,367,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,14.0,55,98900,0,0,363,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,14.4,60,98900,0,0,358,0,0,0,0,0,0,0,90,1.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,14.4,64,98900,0,0,354,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,14.2,65,98900,0,0,350,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,12.9,62,98800,0,0,347,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,13.2,65,98900,0,0,345,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,12.8,62,98900,3,206,345,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,12.8,57,98900,186,1363,352,94,363,44,10393,0,4904,195,160,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,12.4,46,99000,458,1363,368,292,597,91,33367,28446,10465,448,160,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,10.0,31,99000,699,1363,383,492,726,120,58002,44562,14221,641,160,0.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,9.7,28,99000,889,1363,391,658,801,136,79350,51228,16449,763,160,2.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,8.7,23,98900,1016,1363,401,772,844,142,94482,54421,17510,819,140,3.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,10.9,26,98800,1071,1363,408,821,861,144,101100,54199,17819,834,140,4.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,9.8,23,98700,1050,1363,408,802,855,144,98584,54462,17720,830,170,4.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,8.9,21,98700,955,1363,411,717,823,140,87102,53133,17055,795,140,4.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,8.9,23,98600,792,1363,405,573,764,129,68249,48676,15423,706,300,5.7,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,8.8,24,98600,572,1363,399,384,664,106,44664,38189,12366,543,310,5.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,8.3,25,98600,310,1363,391,178,483,68,20056,15263,7697,317,300,5.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,7.7,25,98600,50,790,385,25,242,16,2739,0,1778,68,300,4.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,6.8,27,98600,0,0,374,0,0,0,0,0,0,0,300,3.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,4.1,24,98600,0,0,365,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,2.1,22,98700,0,0,358,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,1.9,23,98700,0,0,354,0,0,0,0,0,0,0,230,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,3.2,27,98700,0,0,348,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,9,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,4.2,30,98700,0,0,346,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,12.3,56,98700,0,0,350,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,12.7,63,98700,0,0,344,0,0,0,0,0,0,0,340,1.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.0,63,98700,0,0,340,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,10.6,61,98700,0,0,334,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,10.3,60,98700,0,0,333,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,8.9,55,98700,3,191,331,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,9.3,52,98800,183,1364,337,91,353,44,10095,262,4861,193,80,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,11.5,50,98800,454,1364,355,287,584,92,32751,28222,10572,453,80,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,10.8,42,98900,695,1364,364,485,712,123,57036,43642,14489,654,100,0.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,11.5,38,98800,885,1364,377,650,786,140,78035,49829,16863,784,100,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,10.3,31,98800,1012,1364,386,762,829,147,92940,53172,18017,845,130,3.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,8.0,25,98700,1066,1364,388,811,846,149,99645,55169,18423,864,190,4.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,6.2,22,98600,1045,1364,389,792,839,149,97110,55549,18295,857,170,4.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,6.1,21,98600,949,1364,390,706,808,144,85691,53733,17537,818,170,6.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,3.1,18,98500,786,1364,382,563,749,132,67105,50021,15760,720,160,6.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,3.2,19,98500,565,1364,378,376,649,108,43725,39057,12531,549,160,5.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,4.7,23,98500,304,1364,373,172,468,68,19374,15178,7660,314,170,4.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,4.9,25,98500,46,760,368,23,234,15,2526,0,1663,64,170,4.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,8.4,36,98500,0,0,362,0,0,0,0,0,0,0,160,3.4,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,11.7,50,98600,0,0,355,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,11.9,54,98600,0,0,350,0,0,0,0,0,0,0,110,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,12.8,61,98600,0,0,347,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,13.0,65,98600,0,0,343,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,14.4,76,98600,0,0,340,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,14.2,78,98600,0,0,337,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.8,76,98600,0,0,331,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.8,78,98600,0,0,329,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,12.7,78,98600,0,0,328,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,12.2,81,98600,0,0,334,0,0,0,0,0,0,0,280,1.3,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.2,82,98600,3,177,322,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.7,76,98700,179,1365,341,62,116,47,6828,59,5160,206,110,0.0,4,4,16.1,213,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,14.4,78,98700,451,1365,353,208,228,132,22974,12867,14698,649,110,1.5,3,3,12.9,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,13.9,67,98700,691,1365,358,353,280,212,39652,20752,23867,1125,120,2.2,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,13.7,59,98700,881,1365,355,570,565,206,66340,39886,24049,1152,120,0.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.5,48,98700,1007,1365,363,689,649,210,81593,45430,24989,1205,170,2.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,10.8,41,98600,1061,1365,366,751,710,199,90162,49092,24028,1152,170,4.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,12.2,44,98600,1040,1365,386,623,431,295,72189,34122,34357,1699,170,6.0,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,12.2,45,98500,943,1365,383,542,381,278,62178,30362,32137,1580,180,4.8,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,12.0,45,98500,779,1365,382,442,384,223,50284,29129,25484,1216,150,6.2,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,10.7,43,98500,559,1365,374,306,376,152,34450,24722,17208,776,160,6.1,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,9.5,42,98500,297,1365,363,145,305,78,16019,10158,8704,362,160,5.3,1,1,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,8.5,41,98500,42,729,351,20,152,15,2181,0,1670,64,160,4.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,9.5,48,98500,0,0,344,0,0,0,0,0,0,0,330,2.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,10.3,58,98500,0,0,336,0,0,0,0,0,0,0,130,2.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.8,66,98600,0,0,335,0,0,0,0,0,0,0,90,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.3,71,98600,0,0,333,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.8,76,98600,0,0,331,0,0,0,0,0,0,0,110,1.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.8,78,98600,0,0,328,0,0,0,0,0,0,0,100,2.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.7,81,98600,0,0,326,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,12.0,80,98600,0,0,322,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,10.6,77,98600,0,0,317,0,0,0,0,0,0,0,360,0.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,7.4,58,98700,0,0,319,0,0,0,0,0,0,0,360,3.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,4.8,47,98700,0,0,318,0,0,0,0,0,0,0,20,3.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,3.9,44,98700,2,162,317,0,0,0,0,0,0,0,360,3.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,3.9,42,98800,176,1365,320,93,418,39,10388,0,4383,172,360,4.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,3.8,38,98900,447,1365,328,270,523,99,30711,28006,11281,484,350,5.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,3.2,33,98900,687,1365,335,435,551,157,50175,39044,18249,836,350,4.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,2.7,29,98900,876,1365,341,577,595,196,67710,44732,23053,1094,350,2.4,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,2.0,26,98800,1003,1365,355,567,356,305,65466,30826,35443,1750,250,1.7,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,1.0,22,98700,1056,1365,351,759,738,188,91714,53437,22811,1085,250,3.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,0.8,21,98600,1034,1365,354,759,779,169,92180,54999,20589,972,230,4.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,2.2,22,98500,938,1365,358,701,818,139,85170,55216,16982,789,300,4.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,5.0,28,98500,773,1365,358,542,710,140,64072,47720,16579,760,270,4.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,4.7,28,98500,552,1365,357,369,657,103,42847,38314,12029,525,280,3.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,5.0,30,98500,291,1365,353,168,500,62,19001,14205,7007,285,270,3.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,5.1,31,98500,39,699,350,17,250,10,1916,0,1115,42,270,3.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,5.8,36,98500,0,0,344,0,0,0,0,0,0,0,280,3.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,5.7,37,98500,0,0,341,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,-0.2,25,98500,0,0,332,0,0,0,0,0,0,0,340,2.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,-0.8,23,98500,0,0,333,0,0,0,0,0,0,0,330,3.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,1.1,28,98500,0,0,333,0,0,0,0,0,0,0,310,2.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,4.5,39,98400,0,0,330,0,0,0,0,0,0,0,310,2.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,8.1,57,98400,0,0,324,0,0,0,0,0,0,0,90,0.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.1,66,98400,0,0,326,0,0,0,0,0,0,0,90,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.5,70,98400,0,0,323,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,9.7,72,98400,0,0,317,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.2,69,98400,0,0,312,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,7.9,67,98400,2,147,312,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,8.6,67,98500,172,1366,316,82,309,43,9026,0,4729,187,250,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,10.1,62,98600,443,1366,330,267,523,98,30335,26172,11137,478,90,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,10.5,53,98600,683,1366,343,458,644,136,53228,40960,15858,720,90,1.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,9.8,45,98500,872,1366,352,615,714,159,73040,47940,18983,889,80,2.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,9.0,40,98400,998,1366,356,722,754,171,86925,51170,20679,980,170,2.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,9.6,39,98400,1051,1366,362,768,771,175,92968,51883,21274,1010,150,2.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,10.8,40,98300,1029,1366,369,748,764,173,90339,50935,21016,998,150,3.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,11.7,42,98300,932,1366,369,666,734,165,79461,48553,19813,936,180,5.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,11.7,44,98300,767,1366,365,527,677,147,61842,43847,17316,799,170,5.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,11.9,48,98200,546,1366,359,347,581,115,39806,33034,13244,584,140,4.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.4,51,98300,284,1366,352,152,407,68,16980,10794,7558,311,130,4.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,10.9,53,98300,36,669,346,15,204,10,1681,0,1087,41,130,4.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,9.9,56,98300,0,0,335,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,9.5,57,98400,0,0,333,0,0,0,0,0,0,0,110,2.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,10.3,60,98400,0,0,334,0,0,0,0,0,0,0,80,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.6,66,98400,0,0,334,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,11.4,71,98400,0,0,328,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.8,76,98400,0,0,330,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,12.9,82,98400,0,0,326,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,13.1,86,98400,0,0,323,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.3,87,98400,0,0,318,0,0,0,0,0,0,0,280,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.5,90,98400,0,0,317,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.1,87,98400,0,0,312,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.3,89,98500,1,133,321,0,0,0,0,0,0,0,340,1.3,2,2,13.4,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.2,87,98500,169,1367,318,76,264,43,8333,0,4755,189,70,0.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.9,72,98600,439,1367,329,256,478,103,28900,23893,11629,501,70,1.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,9.7,56,98600,679,1367,334,431,558,154,49627,37505,17804,815,70,0.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,8.1,44,98600,868,1367,344,588,643,179,69144,45555,21211,1001,70,2.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,7.1,35,98600,993,1367,354,711,734,177,85321,51101,21389,1016,140,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,7.3,33,98500,1046,1367,359,773,793,166,93982,53634,20263,958,140,0.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,10.8,41,98400,1023,1367,366,743,761,174,89611,50816,21027,999,140,3.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,12.2,44,98400,926,1367,370,647,694,177,76710,46737,21090,1001,140,5.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,12.3,47,98300,761,1367,364,503,613,162,58516,40885,18906,878,140,4.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.5,51,98300,540,1367,359,328,513,125,37206,29940,14281,633,140,4.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,12.5,56,98300,278,1367,352,140,343,70,15499,8938,7817,323,150,4.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.1,57,98400,33,640,348,13,171,9,1459,0,1003,37,150,3.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,11.9,61,98400,0,0,342,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.8,71,98400,0,0,336,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,12.9,74,98400,0,0,333,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.2,80,98400,0,0,329,0,0,0,0,0,0,0,210,1.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.3,69,98400,0,0,329,0,0,0,0,0,0,0,70,2.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,3.5,37,98400,0,0,327,0,0,0,0,0,0,0,20,4.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,7.8,55,98400,0,0,325,0,0,0,0,0,0,0,10,6.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,11.2,75,98400,0,0,323,0,0,0,0,0,0,0,50,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,11.6,76,98400,0,0,324,0,0,0,0,0,0,0,70,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.0,81,98400,0,0,316,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.2,82,98400,0,0,311,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,7.8,71,98500,1,118,307,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,8.0,68,98500,165,1368,311,87,410,37,9660,0,4131,162,160,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,9.3,57,98500,435,1368,331,292,682,74,33744,29894,8637,363,160,1.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,8.8,43,98600,675,1368,350,502,831,93,60165,47429,11119,489,110,3.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,7.7,34,98600,863,1368,361,677,915,100,83269,55151,12300,556,110,2.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,4.3,23,98600,988,1368,368,796,961,101,99671,59471,12668,577,110,0.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,3.2,19,98500,1041,1368,377,846,979,100,106806,60789,12721,579,140,2.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,-1.3,13,98500,1018,1368,379,824,972,101,103783,61795,12717,578,140,3.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,-4.8,9,98400,920,1368,376,731,937,101,90887,60553,12555,568,170,4.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,-4.2,10,98400,755,1368,376,576,869,96,70031,55081,11755,522,180,4.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,-5.0,9,98400,533,1368,373,376,752,83,44346,42228,9813,419,170,5.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,-4.9,10,98400,271,1368,368,160,530,55,18151,13735,6249,251,200,4.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,-4.6,11,98400,30,610,364,11,505,0,1696,0,14,0,200,2.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,-5.2,11,98400,0,0,354,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,-2.5,17,98400,0,0,346,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-0.7,20,98400,0,0,345,0,0,0,0,0,0,0,240,0.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,1.7,27,98400,0,0,340,0,0,0,0,0,0,0,240,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,1.8,30,98500,0,0,331,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,2.2,32,98500,0,0,329,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,2.4,34,98500,0,0,326,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,3.1,41,98400,0,0,318,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,2.1,39,98400,0,0,315,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,0.2,32,98400,0,0,316,0,0,0,0,0,0,0,360,1.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-8.3,12,98400,0,0,329,0,0,0,0,0,0,0,360,6.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,-8.1,12,98500,1,102,328,0,0,0,0,0,0,0,360,5.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,-6.7,13,98500,162,1368,332,103,271,71,10947,5700,7594,312,360,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-3.8,15,98600,431,1368,342,263,541,92,30022,28826,10589,450,230,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,-4.1,12,98600,670,1368,358,457,677,126,53671,45659,14796,663,230,1.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-8.8,7,98600,859,1368,365,636,806,130,76871,55878,15792,724,340,3.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,-8.3,7,98500,984,1368,369,744,841,139,91188,58723,17139,796,280,2.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,-8.4,7,98500,1036,1368,375,772,812,158,94497,58065,19356,908,170,3.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,-8.7,6,98400,1012,1368,401,592,401,295,68748,35141,34511,1696,170,3.7,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,-7.5,7,98400,914,1368,401,564,488,238,65646,40364,27874,1343,160,1.8,4,4,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,-6.2,7,98300,749,1368,384,552,808,110,66415,53251,13314,597,160,3.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,-7.2,7,98300,527,1368,379,364,720,87,42769,41234,10255,439,160,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,-6.7,8,98300,265,1368,373,157,535,53,17780,13129,6038,242,200,4.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.3,-6.5,8,98300,27,581,369,10,519,0,1953,0,0,0,200,3.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,-4.5,11,98300,0,0,361,0,0,0,0,0,0,0,200,1.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,1.4,21,98400,0,0,356,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,-0.8,19,98400,0,0,348,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,-2.2,19,98400,0,0,339,0,0,0,0,0,0,0,290,1.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,-1.9,20,98400,0,0,336,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,0.1,26,98400,0,0,331,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,0.8,29,98400,0,0,327,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,1.9,35,98400,0,0,321,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,2.8,40,98400,0,0,318,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,2.9,41,98300,0,0,317,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,3.2,46,98400,0,0,311,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,2.9,44,98400,1,89,311,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,2.8,35,98500,158,1369,327,83,414,35,9282,0,3930,153,150,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,-0.2,22,98500,427,1369,340,288,695,71,33495,32146,8287,345,150,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,-1.7,15,98600,666,1369,358,500,848,88,60251,50969,10585,462,150,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,-5.4,10,98600,854,1369,368,676,933,94,83671,59515,11629,521,150,0.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,-7.8,7,98600,979,1369,373,795,981,94,100210,63075,11880,537,150,1.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.5,-7.6,7,98500,1031,1369,379,845,999,93,107344,64023,11897,538,150,0.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,-6.8,7,98400,1007,1369,387,822,990,94,104016,63450,11902,538,150,3.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,-7.1,7,98400,908,1369,386,727,955,94,90768,61341,11787,530,160,5.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.6,-5.9,7,98400,743,1369,387,571,885,91,69561,55517,11109,490,170,4.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.2,-3.1,10,98400,521,1369,384,369,763,79,43532,41397,9319,396,300,3.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,-1.7,12,98400,258,1369,377,152,531,52,17241,11658,5894,236,300,3.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,-2.2,13,98400,24,552,369,8,449,0,1227,0,13,0,300,3.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,-2.6,14,98500,0,0,359,0,0,0,0,0,0,0,280,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,-4.4,13,98500,0,0,348,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-0.9,20,98500,0,0,345,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-0.1,23,98600,0,0,339,0,0,0,0,0,0,0,330,1.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,-0.6,23,98600,0,0,336,0,0,0,0,0,0,0,290,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-0.3,25,98600,0,0,331,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,1.4,32,98600,0,0,325,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,3.4,40,98600,0,0,320,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,3.9,44,98500,0,0,318,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,3.9,48,98500,0,0,312,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,3.9,48,98600,0,0,311,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,3.7,48,98600,0,75,310,0,0,0,0,0,0,0,280,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,2.6,39,98700,155,1370,317,82,420,34,9131,0,3819,148,280,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,1.4,29,98800,423,1370,332,281,672,73,32557,30983,8535,356,280,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,-0.6,19,98800,662,1370,352,513,907,75,62496,52125,9125,393,280,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,-1.1,14,98800,850,1370,369,690,984,80,86326,59875,10007,443,230,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,-3.5,10,98700,974,1370,382,821,1053,72,105268,64085,9310,413,230,0.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.5,-0.9,11,98700,1025,1370,393,839,995,94,106286,62426,11974,542,230,2.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.4,0.3,12,98600,1001,1370,400,793,930,113,98749,60115,14088,646,140,3.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,34.2,2.1,13,98600,902,1370,401,669,807,137,80938,54526,16690,773,130,4.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,1.4,13,98600,736,1370,394,512,704,134,60456,47630,15866,721,190,3.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,0.9,14,98600,514,1370,410,255,280,150,28505,19306,16831,751,300,4.1,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,0.3,15,98600,252,1370,400,101,171,69,11114,4834,7671,314,300,4.4,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,0.8,17,98600,22,523,390,7,85,6,806,0,651,24,300,4.1,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,2.4,21,98600,0,0,363,0,0,0,0,0,0,0,270,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,3.5,24,98600,0,0,359,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,4.6,28,98700,0,0,354,0,0,0,0,0,0,0,250,1.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,5.7,33,98600,0,0,351,0,0,0,0,0,0,0,300,2.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,6.2,37,98600,0,0,343,0,0,0,0,0,0,0,340,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,6.8,42,98600,0,0,337,0,0,0,0,0,0,0,320,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,7.2,44,98600,0,0,336,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,7.2,49,98600,0,0,329,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,7.2,54,98600,0,0,322,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,7.0,55,98600,0,0,320,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,6.1,50,98600,0,0,321,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,6.3,52,98700,0,61,320,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,7.0,50,98700,151,1371,327,77,387,34,8599,0,3844,150,210,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,5.8,37,98800,419,1371,342,269,618,80,30860,28364,9184,386,210,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,4.4,27,98800,658,1371,357,479,793,98,56977,47448,11721,516,210,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,4.3,23,98800,845,1371,370,645,866,111,78522,54873,13604,618,210,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,4.2,20,98800,969,1371,380,743,870,128,91174,56788,15811,732,210,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,6.1,22,98700,1020,1371,386,756,802,159,91905,54332,19428,915,210,0.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,6.2,21,98700,995,1371,392,741,810,153,89968,54354,18607,873,210,3.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,6.5,20,98600,897,1371,396,661,796,140,79592,52662,16955,787,110,3.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,6.0,21,98600,730,1371,409,427,434,196,48784,32896,22528,1055,280,3.3,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,7.0,25,98600,508,1371,383,322,585,106,36931,32915,12140,528,280,3.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,8.0,29,98600,246,1371,376,125,357,61,13831,7285,6747,274,300,4.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,8.1,32,98600,19,494,369,6,178,3,713,0,414,14,300,4.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,10.2,43,98700,0,0,377,0,0,0,0,0,0,0,300,3.4,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,11.0,48,98700,0,0,355,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,10.8,49,98700,0,0,351,0,0,0,0,0,0,0,250,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,11.7,56,98700,0,0,347,0,0,0,0,0,0,0,250,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,11.8,60,98700,0,0,342,0,0,0,0,0,0,0,320,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,12.2,66,98700,0,0,337,0,0,0,0,0,0,0,320,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,12.2,71,98700,0,0,332,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,12.2,75,98700,0,0,328,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.5,77,98700,0,0,328,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.6,86,98700,0,0,327,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.1,80,98800,0,0,323,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.1,80,98800,0,47,323,0,0,0,0,0,0,0,110,0.3,0,0,15.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,14.4,93,98900,148,1372,342,47,91,37,5139,0,4071,160,130,1.8,4,4,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,14.3,90,99000,415,1372,347,150,100,119,16516,5133,13245,577,130,2.2,5,5,9.3,175,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,14.0,77,99000,653,1372,357,264,120,207,29487,8873,23221,1087,130,3.0,5,5,11.5,330,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,13.9,72,99000,841,1372,358,380,161,281,42743,13169,31790,1555,160,2.6,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.8,64,99000,964,1372,349,620,549,234,72204,39928,27376,1330,160,2.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.2,56,98900,1015,1372,357,691,645,214,81735,45099,25461,1230,120,3.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,12.8,49,98900,990,1372,364,730,793,158,88046,50685,19101,901,110,3.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,12.8,47,98800,891,1372,367,655,794,140,78637,49599,16854,784,110,3.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,12.7,50,98800,724,1372,361,493,669,140,57583,42143,16409,751,130,4.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,12.3,53,98800,502,1372,355,301,507,116,34151,28095,13182,578,130,4.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,12.2,58,98800,240,1372,348,114,297,62,12569,5262,6858,280,150,4.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,12.3,62,98800,17,466,342,5,149,3,595,0,373,13,150,3.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.9,71,98800,0,0,336,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,13.3,76,98800,0,0,334,0,0,0,0,0,0,0,60,2.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.3,81,98800,0,0,329,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.3,84,98800,0,0,327,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,13.2,85,98900,0,0,325,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.9,90,98900,0,0,319,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,13.3,92,98900,0,0,320,0,0,0,0,0,0,0,100,1.9,0,0,14.2,244,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,13.3,96,98900,0,0,317,0,0,0,0,0,0,0,80,2.2,0,0,12.9,156,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,13.3,96,98900,0,0,317,0,0,0,0,0,0,0,80,0.0,0,0,12.6,192,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,13.2,93,98900,0,0,325,0,0,0,0,0,0,0,190,0.4,1,1,11.5,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.8,91,98900,0,0,324,0,0,0,0,0,0,0,190,2.5,1,1,13.1,239,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.8,92,98900,0,35,327,0,0,0,0,0,0,0,150,2.1,2,2,13.0,222,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,12.8,90,98900,145,1372,330,51,129,37,5581,0,4102,161,120,1.7,2,2,5.5,280,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,12.8,83,99000,411,1372,338,174,178,121,19203,9427,13367,582,80,2.4,3,3,9.3,314,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.7,80,99100,649,1372,341,283,162,206,31558,12087,23142,1082,90,1.5,3,3,14.3,399,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,12.2,69,99100,836,1372,351,380,166,279,42793,13740,31566,1540,90,1.6,4,4,9.3,588,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.2,66,99000,959,1372,354,461,195,325,52334,16613,37078,1845,100,2.0,4,4,16.1,640,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,12.2,60,99000,1009,1372,356,577,372,303,66396,30204,35109,1740,150,2.4,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,12.2,54,98900,984,1372,353,698,720,181,83248,48422,21721,1035,140,1.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,12.3,52,98800,885,1372,357,650,792,139,77937,49718,16775,780,140,2.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,12.8,54,98800,718,1372,357,503,720,127,59132,43692,14928,677,150,4.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,12.8,56,98800,495,1372,353,314,585,102,35810,30197,11741,510,160,4.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,12.8,61,98800,234,1372,347,118,358,57,13060,5016,6343,257,130,3.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,12.7,64,98800,15,438,343,4,356,0,625,0,8,0,130,3.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,12.3,69,98800,0,0,335,0,0,0,0,0,0,0,130,2.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,12.8,75,98900,0,0,331,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,12.7,75,98900,0,0,331,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.1,75,98900,0,0,328,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.7,76,98900,0,0,324,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.7,81,98900,0,0,320,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.7,82,98900,0,0,319,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.6,87,98900,0,0,315,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.1,87,98800,0,0,312,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.0,89,98800,0,0,309,0,0,0,0,0,0,0,10,0.0,0,0,15.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.7,91,98900,0,0,307,0,0,0,0,0,0,0,10,0.3,0,0,10.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,11.1,92,98900,0,22,308,0,0,0,0,0,0,0,10,2.0,0,0,15.8,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.5,88,98900,141,1373,313,67,327,34,7457,0,3747,146,130,0.0,0,0,13.0,270,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,12.8,89,99000,407,1373,320,252,570,83,28613,23866,9463,400,130,0.0,0,0,6.7,152,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,12.7,78,99000,644,1373,328,447,711,113,52266,41085,13294,593,130,0.0,0,0,8.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.2,64,99000,831,1373,340,609,790,130,72769,48871,15640,720,130,0.0,0,0,12.6,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,12.0,55,98900,954,1373,350,717,834,138,87036,52087,16789,783,150,0.0,0,0,12.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,10.8,43,98900,1004,1373,362,762,851,140,93118,53729,17175,803,150,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.3,9.3,34,98800,979,1373,370,740,843,139,90113,54001,17002,793,150,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,9.6,33,98700,879,1373,375,651,808,134,78367,51556,16149,747,150,0.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,13.3,43,98700,712,1373,379,505,742,120,59473,43945,14202,642,150,4.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.0,13.5,46,98600,489,1373,374,318,626,95,36448,30682,10894,470,150,4.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,13.3,50,98600,227,1373,365,120,409,53,13378,4282,5860,236,150,3.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,13.3,54,98600,13,411,359,3,291,0,434,0,24,1,150,3.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,13.3,62,98700,0,0,349,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,13.3,66,98700,0,0,344,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.4,69,98700,0,0,341,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.9,76,98700,0,0,337,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,14.0,79,98800,0,0,335,0,0,0,0,0,0,0,130,0.0,0,0,15.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,14.4,85,98700,0,0,332,0,0,0,0,0,0,0,120,0.0,0,0,12.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,14.4,93,98700,0,0,325,0,0,0,0,0,0,0,120,0.0,0,0,9.2,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,14.1,97,98700,0,0,331,0,0,0,0,0,0,0,120,0.0,2,2,6.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,13.9,100,98700,0,0,366,0,0,0,0,0,0,0,70,0.8,10,10,1.0,30,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,13.9,100,98700,0,0,349,0,0,0,0,0,0,0,140,2.3,8,8,4.3,61,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,13.8,99,98800,0,0,339,0,0,0,0,0,0,0,40,1.7,6,6,5.1,95,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,13.3,96,98800,0,9,333,0,0,0,0,0,0,0,140,1.7,4,4,5.9,132,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,13.3,95,98800,138,1374,332,46,109,35,5027,0,3836,150,140,1.5,3,3,4.8,187,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,13.3,88,98900,403,1374,329,172,186,118,18991,9544,13028,566,140,1.3,1,1,5.1,213,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.3,78,98900,640,1374,331,356,384,177,40146,26524,20067,926,140,0.0,0,0,6.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,13.0,65,98900,826,1374,343,516,517,205,59463,37174,23749,1131,150,0.0,0,0,9.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.1,51,98800,949,1374,350,655,675,189,77544,46835,22487,1073,150,0.3,0,0,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,11.3,43,98800,999,1374,365,760,857,138,92878,53596,16881,788,150,2.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,12.1,42,98700,973,1374,373,754,892,122,92561,53849,15054,697,150,3.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,11.8,40,98600,873,1374,375,665,862,117,80686,51911,14249,653,100,3.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,12.1,44,98600,706,1374,369,479,665,137,55800,41804,16027,730,130,4.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,12.3,46,98600,483,1374,366,295,536,107,33516,28153,12172,529,160,3.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,12.6,50,98600,221,1374,361,108,331,55,11983,3746,6111,247,140,3.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,13.5,57,98600,12,384,357,2,185,0,272,0,59,2,140,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,14.3,68,98600,0,0,347,0,0,0,0,0,0,0,110,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,13.9,74,98600,0,0,339,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,13.9,78,98700,0,0,335,0,0,0,0,0,0,0,110,3.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.9,81,98700,0,0,332,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.9,84,98700,0,0,330,0,0,0,0,0,0,0,90,2.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,13.8,87,98700,0,0,327,0,0,0,0,0,0,0,130,2.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,13.5,87,98700,0,0,331,0,0,0,0,0,0,0,360,1.7,1,1,14.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,14.4,93,98700,0,0,342,0,0,0,0,0,0,0,80,2.0,4,4,11.3,239,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,14.4,93,98700,0,0,342,0,0,0,0,0,0,0,40,1.6,4,4,11.3,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,14.3,92,98700,0,0,342,0,0,0,0,0,0,0,100,2.1,4,4,11.3,222,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,13.8,88,98700,0,0,340,0,0,0,0,0,0,0,150,2.0,3,3,10.8,283,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,13.3,86,98700,0,0,339,0,0,0,0,0,0,0,70,1.5,3,3,8.0,339,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,13.3,86,98800,134,1371,339,45,115,34,4961,0,3739,146,360,1.3,3,3,8.0,366,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,13.3,81,98800,398,1375,343,164,164,117,18068,8294,12899,560,360,0.0,3,3,8.0,366,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.3,74,98900,635,1375,347,290,195,200,32367,14296,22428,1044,360,0.2,2,2,8.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.2,63,98900,821,1375,347,499,477,214,57281,34893,24698,1180,170,1.3,0,0,9.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,12.8,52,98800,944,1375,359,654,682,186,77374,46314,22086,1053,170,0.3,0,0,12.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,12.9,47,98700,993,1375,369,740,814,152,89523,51388,18425,867,170,2.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,13.5,47,98600,967,1375,372,715,802,151,86240,50409,18302,861,170,3.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,14.4,52,98600,867,1375,370,593,664,174,69593,43837,20564,972,160,5.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,14.7,56,98600,700,1375,385,363,297,212,40769,21815,23936,1129,160,5.0,4,4,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,15.5,64,98600,477,1375,376,228,254,140,25187,14676,15511,690,290,4.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,16.1,72,98600,215,1375,369,80,139,58,8710,1245,6351,258,230,3.8,3,3,16.1,884,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,16.2,77,98600,10,357,365,2,69,1,248,0,185,6,230,3.5,3,3,16.1,813,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,16.7,84,98600,0,0,361,0,0,0,0,0,0,0,250,2.7,3,3,16.1,432,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,16.8,85,98700,0,0,360,0,0,0,0,0,0,0,250,2.9,3,3,15.9,422,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,17.2,90,98700,0,0,358,0,0,0,0,0,0,0,230,1.7,3,3,14.7,396,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,17.2,93,98700,0,0,356,0,0,0,0,0,0,0,220,2.9,3,3,16.1,405,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,16.7,87,98800,0,0,358,0,0,0,0,0,0,0,250,1.5,3,3,16.1,432,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,17.1,90,98800,0,0,358,0,0,0,0,0,0,0,220,2.1,3,3,16.1,339,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.7,90,98800,0,0,355,0,0,0,0,0,0,0,200,2.1,3,3,16.1,777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,16.6,90,98800,0,0,355,0,0,0,0,0,0,0,250,2.2,3,3,16.1,718,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.1,90,98700,0,0,352,0,0,0,0,0,0,0,210,2.5,3,3,16.1,644,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.2,90,98700,0,0,352,0,0,0,0,0,0,0,200,2.1,3,3,16.1,648,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.6,93,98700,0,0,353,0,0,0,0,0,0,0,190,2.0,3,3,16.1,500,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,16.1,87,98800,0,0,355,0,0,0,0,0,0,0,210,2.4,3,3,16.1,577,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,16.1,86,98800,131,1357,355,46,134,33,5027,0,3641,143,230,1.6,3,3,16.1,1029,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,15.5,80,98900,394,1375,358,166,179,115,18300,8655,12697,551,200,2.2,3,3,16.1,570,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,14.8,71,98900,631,1375,362,277,169,199,30830,12189,22303,1039,260,2.7,3,3,16.1,1193,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.7,62,98900,817,1375,367,384,194,269,43211,15659,30431,1479,250,3.0,3,3,16.1,1196,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,13.0,54,98800,938,1375,373,489,271,304,55548,22381,34745,1720,180,2.7,3,3,16.1,1067,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,14.5,61,98800,988,1375,373,517,272,322,58949,22405,36893,1839,180,3.2,3,3,16.1,1022,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,14.3,59,98800,962,1375,374,526,323,300,60008,26005,34459,1707,240,3.2,3,3,16.1,1487,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,13.9,59,98700,861,1375,371,459,305,268,52051,24190,30598,1493,280,4.1,3,3,16.1,1280,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,13.9,60,98700,694,1375,370,377,347,202,42423,25146,22814,1071,260,4.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,13.4,59,98600,471,1375,374,222,247,138,24637,14558,15340,680,270,3.6,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,12.9,60,98600,210,1375,370,81,162,56,8882,1598,6193,251,250,3.3,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,12.2,58,98600,9,331,368,1,89,0,135,0,59,2,250,3.1,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,12.2,64,98600,0,0,357,0,0,0,0,0,0,0,270,3.0,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.4,69,98700,0,0,335,0,0,0,0,0,0,0,270,2.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.4,75,98700,0,0,335,0,0,0,0,0,0,0,270,2.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.9,78,98700,0,0,335,0,0,0,0,0,0,0,240,1.5,0,0,16.1,1546,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.4,75,98700,0,0,335,0,0,0,0,0,0,0,210,0.3,0,0,16.1,743,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,14.2,80,98700,0,0,335,0,0,0,0,0,0,0,190,2.2,0,0,14.9,630,9,999999999,250,0.0000,0,88,999.000,1.0,1.0 +2016,10,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.9,95,98700,0,0,332,0,0,0,0,0,0,0,100,2.6,0,0,6.0,618,9,999999999,279,0.0000,0,88,999.000,5.0,1.0 +2016,10,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,16.1,100,98600,0,0,330,0,0,0,0,0,0,0,100,3.0,0,0,5.8,122,9,999999999,290,0.0000,0,88,999.000,6.0,1.0 +2016,10,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,16.1,100,98600,0,0,330,0,0,0,0,0,0,0,100,2.2,0,0,4.4,115,9,999999999,290,0.0000,0,88,999.000,1.0,1.0 +2016,10,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,16.1,100,98600,0,0,330,0,0,0,0,0,0,0,90,2.3,0,0,4.3,100,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,16.3,100,98600,0,0,331,0,0,0,0,0,0,0,110,2.1,0,0,8.1,278,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,16.7,100,98600,0,0,333,0,0,0,0,0,0,0,110,2.1,0,0,5.2,122,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,16.8,100,98600,127,1345,334,54,249,31,5972,0,3447,135,170,1.6,0,0,2.9,97,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,17.2,96,98700,390,1376,339,195,316,106,21576,13808,11743,507,130,2.3,0,0,4.8,148,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,16.7,92,98700,626,1376,339,314,274,189,34982,18730,21207,985,100,0.0,0,0,16.1,488,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,16.6,83,98700,812,1376,346,440,330,246,49716,24726,27907,1349,140,0.1,0,0,16.1,1008,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,15.2,69,98700,933,1376,352,563,456,254,64816,34106,29381,1436,140,1.7,0,0,16.1,978,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,14.9,65,98600,982,1376,356,647,590,225,75710,41644,26523,1287,190,1.9,0,0,16.1,1097,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,14.5,58,98500,956,1376,361,666,693,185,78881,45967,22027,1052,160,4.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,14.8,61,98500,855,1376,359,572,627,182,66766,41993,21358,1012,170,3.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,13.9,59,98400,688,1376,377,354,289,209,39654,21328,23576,1109,150,2.9,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,13.7,59,98400,465,1376,376,219,244,136,24189,14186,15126,670,130,4.5,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,13.6,60,98400,204,1376,374,78,160,55,8580,1201,6006,243,120,3.7,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,13.4,63,98400,7,305,367,1,150,0,142,0,28,1,120,3.0,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.9,71,98400,0,0,353,0,0,0,0,0,0,0,110,2.6,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,14.0,77,98500,0,0,337,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,14.4,85,98500,0,0,332,0,0,0,0,0,0,0,190,0.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,14.4,89,98500,0,0,328,0,0,0,0,0,0,0,190,1.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,14.2,85,98500,0,0,330,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,28.0,1.0 +2016,10,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.4,75,98500,0,0,329,0,0,0,0,0,0,0,320,0.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,7.0,48,98500,0,0,330,0,0,0,0,0,0,0,320,3.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,6.8,49,98500,0,0,327,0,0,0,0,0,0,0,310,2.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.1,79,98500,0,0,319,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.6,79,98500,0,0,315,0,0,0,0,0,0,0,280,1.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,8.1,61,98500,0,0,319,0,0,0,0,0,0,0,280,2.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,9.8,78,98600,0,0,312,0,0,0,0,0,0,0,280,2.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,8.3,64,98600,124,1334,317,59,349,28,6602,0,3094,119,210,2.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,4.7,36,98700,386,1377,336,245,614,73,28040,25583,8380,348,340,4.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,3.3,30,98700,622,1377,342,448,783,94,53084,45996,11234,490,340,5.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,3.1,27,98700,807,1377,349,584,772,132,69712,51474,15765,721,340,4.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,1.4,22,98600,928,1377,353,632,653,192,74758,48687,22811,1084,340,4.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,-0.3,17,98600,977,1377,361,719,794,156,87133,55663,18927,887,340,4.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,-2.2,14,98500,950,1377,364,725,864,129,88788,58305,15798,729,330,4.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,0.8,17,98400,849,1377,368,642,849,118,77845,55604,14335,653,360,2.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,2.5,20,98400,682,1377,367,478,726,118,56300,46688,13990,626,130,4.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,4.3,25,98400,459,1377,361,284,559,98,32374,29834,11172,479,140,3.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,4.9,30,98400,198,1377,364,80,193,53,8865,2029,5827,234,130,3.6,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,3.6,29,98400,6,279,365,1,96,1,133,0,75,2,130,3.6,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,1.4,25,98400,0,0,343,0,0,0,0,0,0,0,330,3.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,0.0,25,98500,0,0,335,0,0,0,0,0,0,0,350,5.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,0.0,25,98500,0,0,335,0,0,0,0,0,0,0,360,5.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,0.1,25,98500,0,0,335,0,0,0,0,0,0,0,340,6.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,0.7,25,98500,0,0,338,0,0,0,0,0,0,0,340,8.1,0,0,15.9,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,1.4,27,98500,0,0,336,0,0,0,0,0,0,0,350,7.3,0,0,14.7,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,3.0,31,98500,0,0,336,0,0,0,0,0,0,0,360,8.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,4.0,33,98500,0,0,340,0,0,0,0,0,0,0,360,8.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,4.4,33,98500,0,0,342,0,0,0,0,0,0,0,350,8.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,4.4,34,98500,0,0,340,0,0,0,0,0,0,0,360,8.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,4.4,34,98600,0,0,339,0,0,0,0,0,0,0,360,9.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,4.2,34,98600,0,0,338,0,0,0,0,0,0,0,360,10.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,3.1,29,98600,121,1320,342,58,366,26,6512,0,2922,112,360,9.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,1.7,24,98700,381,1378,349,238,591,75,27237,25396,8560,356,360,8.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,-1.5,15,98800,617,1378,360,435,747,101,51373,45859,11933,522,350,8.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,-3.7,12,98800,802,1378,365,599,832,115,72345,55099,13910,629,350,9.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,-3.2,11,98800,923,1378,371,709,878,120,86902,58677,14815,679,350,7.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,-5.8,8,98700,971,1378,375,753,895,122,92962,60299,15088,694,340,7.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,-6.6,8,98700,944,1378,376,728,886,121,89604,59818,14948,686,350,6.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,-6.1,8,98700,844,1378,377,637,849,117,77331,56949,14265,648,30,6.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,-6.2,8,98600,676,1378,376,487,776,106,57923,50007,12647,560,360,7.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,-6.6,8,98600,453,1378,371,296,647,84,34268,33993,9714,410,10,7.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.6,-6.4,9,98700,192,1378,366,100,403,44,11204,3106,4935,195,360,7.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,-6.2,9,98700,5,253,362,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,-6.6,10,98700,0,0,356,0,0,0,0,0,0,0,10,6.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,-6.2,11,98700,0,0,353,0,0,0,0,0,0,0,10,5.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,-6.6,10,98700,0,0,351,0,0,0,0,0,0,0,360,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,-6.4,12,98700,0,0,344,0,0,0,0,0,0,0,360,4.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,-7.9,10,98800,0,0,343,0,0,0,0,0,0,0,350,5.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,-8.2,10,98700,0,0,344,0,0,0,0,0,0,0,360,8.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,-7.9,10,98700,0,0,343,0,0,0,0,0,0,0,360,7.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,-8.3,10,98700,0,0,341,0,0,0,0,0,0,0,360,6.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-8.7,10,98700,0,0,340,0,0,0,0,0,0,0,350,6.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,-9.1,10,98700,0,0,339,0,0,0,0,0,0,0,350,5.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,-9.3,9,98700,0,0,338,0,0,0,0,0,0,0,350,4.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,-8.9,10,98700,0,0,337,0,0,0,0,0,0,0,350,5.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-8.9,10,98800,118,1307,340,56,370,25,6340,0,2789,106,360,5.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,-9.0,9,98800,377,1378,348,234,586,74,26833,26326,8512,353,350,6.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,-9.4,7,98900,612,1378,360,431,743,101,50860,46716,11917,521,350,5.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,-9.6,6,98800,797,1378,370,594,829,115,71720,55778,13913,628,350,7.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.4,-10.6,5,98800,918,1378,374,703,875,121,86206,59673,14840,679,340,4.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,-10.5,5,98700,966,1378,379,747,892,122,92183,60829,15126,695,330,4.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.3,-10.1,5,98600,939,1378,379,722,883,121,88813,60150,14974,687,330,5.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.4,-10.6,5,98600,838,1378,379,631,845,117,76550,57317,14263,647,330,5.9,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,-10.6,5,98500,670,1378,381,481,772,106,57211,50196,12619,557,340,7.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,-10.1,5,98500,447,1378,377,291,642,83,33665,33769,9638,406,340,5.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,-10.3,6,98500,187,1378,372,96,396,43,10790,2631,4813,189,350,6.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,-10.0,6,98500,4,229,367,0,0,0,0,0,0,0,350,6.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,-10.0,7,98500,0,0,359,0,0,0,0,0,0,0,350,5.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,-10.0,7,98500,0,0,353,0,0,0,0,0,0,0,360,4.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,-10.0,7,98500,0,0,352,0,0,0,0,0,0,0,220,1.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,-9.0,8,98500,0,0,349,0,0,0,0,0,0,0,320,2.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,-3.1,17,98500,0,0,339,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,-1.8,22,98500,0,0,332,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,-2.3,21,98400,0,0,329,0,0,0,0,0,0,0,280,1.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,-2.8,21,98400,0,0,325,0,0,0,0,0,0,0,280,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,-2.5,24,98400,0,0,320,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-0.6,31,98400,0,0,314,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-0.4,32,98400,0,0,313,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,0.8,38,98400,0,0,310,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,1.6,35,98500,115,1298,319,58,441,22,6627,0,2479,94,140,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,0.6,25,98500,372,1379,336,246,680,62,28467,26318,7246,297,140,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,-2.6,15,98500,608,1379,353,455,854,78,54604,48747,9416,404,140,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,-5.7,9,98500,792,1379,369,628,947,84,77532,58762,10385,458,140,0.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.0,-9.2,6,98500,912,1379,379,744,997,85,93550,63142,10655,475,140,2.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,-8.4,6,98400,961,1379,385,791,1015,84,100159,64158,10675,478,140,4.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.9,-8.9,6,98400,933,1379,384,764,1005,84,96397,63621,10672,477,170,4.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.8,-9.0,6,98300,832,1379,383,666,965,84,82796,60745,10517,466,170,4.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.1,-9.1,6,98300,664,1379,380,507,886,81,61496,53351,9800,424,180,4.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.9,-7.1,7,98300,441,1379,377,305,741,68,35771,35419,8008,332,150,3.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,-5.9,9,98300,181,1379,372,99,462,38,11145,948,4327,169,160,3.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,-4.8,10,98200,3,205,366,0,0,0,0,0,0,0,160,2.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,-3.8,12,98300,0,0,359,0,0,0,0,0,0,0,110,0.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-2.7,16,98300,0,0,348,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,1.2,24,98300,0,0,345,0,0,0,0,0,0,0,70,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,4.3,32,98400,0,0,343,0,0,0,0,0,0,0,70,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,3.9,35,98400,0,0,333,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,4.0,38,98400,0,0,328,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,4.4,42,98300,0,0,323,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,4.3,47,98300,0,0,316,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,3.9,49,98300,0,0,310,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,4.0,49,98300,0,0,311,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,4.4,55,98300,0,0,305,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,4.4,56,98400,0,0,304,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,4.2,49,98400,112,1287,312,55,408,22,6202,0,2471,94,150,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,2.4,34,98500,368,1380,327,234,622,68,26842,24562,7839,323,150,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,-0.3,22,98500,603,1380,342,435,789,90,51586,46242,10710,464,150,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,-1.7,16,98500,787,1380,357,602,879,101,73174,55854,12271,548,150,1.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,-1.9,14,98500,907,1380,367,713,927,104,88159,59699,12922,586,150,3.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,-2.4,12,98400,955,1380,371,758,944,105,94343,60969,13086,595,150,4.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,0.1,15,98400,927,1380,374,732,934,105,90719,59679,12985,590,180,6.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,0.7,16,98400,826,1380,372,638,895,102,77967,56641,12499,562,180,6.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,1.1,18,98400,659,1380,369,485,819,94,57903,49246,11239,492,160,6.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,1.7,20,98400,436,1380,363,290,679,76,33600,32063,8779,368,160,4.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,2.4,23,98400,176,1380,357,92,417,39,10334,0,4405,173,150,3.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.1,3.6,27,98400,3,182,353,0,0,0,0,0,0,0,150,2.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,5.2,33,98400,0,0,345,0,0,0,0,0,0,0,160,1.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,6.2,37,98400,0,0,344,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,6.6,41,98400,0,0,339,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,6.2,43,98500,0,0,333,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,6.8,49,98500,0,0,327,0,0,0,0,0,0,0,350,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,7.2,52,98500,0,0,325,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,7.2,53,98500,0,0,324,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.3,58,98600,0,0,318,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.7,62,98600,0,0,316,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,7.2,59,98600,0,0,316,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,7.3,58,98600,0,0,318,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,7.9,61,98700,0,0,318,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,8.2,62,98700,108,1274,318,51,376,22,5775,0,2451,93,300,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,7.6,49,98800,363,1381,331,210,486,82,23633,20060,9259,388,300,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,6.7,38,98900,598,1381,346,398,652,116,46170,39715,13475,596,100,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,6.5,36,99000,782,1381,366,424,336,234,48143,27117,26724,1275,100,0.5,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,5.1,30,98900,902,1381,353,618,667,182,72950,48196,21611,1022,100,3.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,1.9,21,98800,950,1381,362,684,756,164,82111,53432,19778,930,140,3.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.5,0.9,18,98700,922,1381,366,709,883,119,86878,57893,14663,672,150,5.5,0,0,16.1,4572,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,6.6,29,98700,821,1381,365,587,751,140,69774,49949,16757,772,170,4.7,0,0,16.1,4572,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,9.4,40,98800,653,1381,358,398,506,159,45427,34482,18193,831,170,5.0,0,0,16.1,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,9.7,43,98800,430,1381,355,236,407,109,26399,21308,12273,530,140,4.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,9.4,43,98800,171,1381,352,82,326,42,9067,0,4621,183,170,4.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,9.6,45,98800,2,160,350,0,0,0,0,0,0,0,170,4.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,10.6,51,98800,0,0,347,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,10.9,53,98800,0,0,362,0,0,0,0,0,0,0,310,1.5,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,13.0,63,98800,0,0,361,0,0,0,0,0,0,0,310,1.3,3,3,16.1,3612,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,14.5,73,98800,0,0,358,0,0,0,0,0,0,0,310,0.0,3,3,16.1,3353,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,15.0,77,98800,0,0,358,0,0,0,0,0,0,0,340,0.2,3,3,16.1,3353,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,15.1,81,98800,0,0,354,0,0,0,0,0,0,0,340,1.3,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,15.6,83,98800,0,0,358,0,0,0,0,0,0,0,340,0.0,4,4,16.1,3353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,15.5,91,98800,0,0,350,0,0,0,0,0,0,0,340,0.0,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,15.2,85,98800,0,0,351,0,0,0,0,0,0,0,340,0.0,3,3,15.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,16.0,93,98800,0,0,349,0,0,0,0,0,0,0,80,0.0,3,3,14.7,2964,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,15.5,93,98800,0,0,346,0,0,0,0,0,0,0,80,0.0,3,3,16.1,3170,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,15.0,89,98900,0,0,347,0,0,0,0,0,0,0,80,0.3,3,3,16.1,2134,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,15.1,84,99000,105,1259,354,37,81,31,4038,0,3381,133,80,2.3,4,4,16.1,2134,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,15.6,83,99100,359,1381,358,145,162,103,15938,6853,11377,488,150,3.5,4,4,16.1,2111,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,15.4,73,99100,593,1381,367,264,183,185,29249,12611,20634,951,150,2.9,4,4,16.1,1981,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,14.2,58,99100,777,1381,379,378,228,250,42439,17884,28223,1359,170,4.8,4,4,16.1,1981,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,12.9,49,99000,897,1381,384,481,309,280,54614,24991,32028,1571,110,6.0,4,4,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,13.3,52,99000,944,1381,363,624,602,212,72963,42679,24966,1202,120,4.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,13.4,52,98900,916,1381,371,508,345,279,57846,27530,31969,1570,150,3.5,1,1,16.1,3406,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,13.8,53,98900,815,1381,380,438,321,249,49551,25004,28267,1365,150,3.6,3,3,16.1,1981,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,13.4,53,98900,647,1381,384,328,282,196,36630,20339,21990,1023,140,6.0,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,13.5,56,98900,424,1381,377,207,286,119,22951,15005,13268,578,170,4.5,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.6,59,98900,166,1381,369,66,188,43,7234,0,4776,190,190,3.5,3,3,16.1,3658,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,13.4,60,98900,2,138,358,0,0,0,0,0,0,0,190,2.6,1,1,16.1,3658,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,13.9,69,98900,0,0,344,0,0,0,0,0,0,0,110,2.4,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,13.8,73,99000,0,0,340,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.3,73,99000,0,0,336,0,0,0,0,0,0,0,180,1.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,13.2,75,99100,0,0,334,0,0,0,0,0,0,0,90,2.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,12.8,76,99100,0,0,330,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,5.0,1.0 +2016,10,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.7,80,99100,0,0,326,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.1,78,99100,0,0,325,0,0,0,0,0,0,0,280,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,99100,0,0,320,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.7,84,99000,0,0,317,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,99000,0,0,315,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,99100,0,0,315,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.7,89,99100,0,0,313,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.8,85,99100,102,1245,317,47,376,20,5334,0,2214,84,300,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.2,74,99200,354,1382,329,211,532,75,23839,18852,8483,354,260,0.0,0,0,15.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,12.1,65,99200,589,1382,338,399,685,107,46315,38304,12507,551,260,0.0,0,0,14.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,11.4,51,99200,772,1382,352,555,767,127,65834,47428,15068,687,260,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,9.9,42,99200,891,1382,358,660,812,136,79357,51867,16431,761,260,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,9.3,37,99100,939,1382,365,701,828,139,84887,53308,16892,786,260,1.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,9.0,35,99000,911,1382,368,677,819,137,81645,52786,16633,772,260,2.1,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.2,9.7,33,98900,809,1382,375,588,782,130,70073,49559,15543,712,210,2.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,11.7,39,98900,642,1382,375,444,711,114,51809,41509,13306,592,140,3.9,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,11.8,45,98900,419,1382,366,261,582,85,29710,25421,9687,410,130,5.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,11.7,50,98900,161,1382,355,79,347,38,8694,0,4244,167,140,3.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,11.7,54,98900,1,117,350,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,11.7,59,98900,0,0,342,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,11.6,61,98900,0,0,339,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.2,64,98900,0,0,334,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.7,68,98900,0,0,332,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,11.7,72,98900,0,0,328,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.7,73,98900,0,0,327,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,11.6,78,98900,0,0,322,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.0,81,98800,0,0,316,0,0,0,0,0,0,0,270,0.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,10.6,80,98800,0,0,315,0,0,0,0,0,0,0,270,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.6,78,98800,0,0,316,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.5,78,98800,0,0,332,0,0,0,0,0,0,0,270,0.0,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,10.1,79,98900,0,0,312,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.6,73,98900,86,1074,321,40,466,11,4658,0,1258,46,270,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,10.4,60,99000,350,1383,334,207,522,75,23335,18879,8478,353,150,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,9.4,45,99000,584,1383,349,407,733,97,47598,40656,11421,498,150,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,9.2,41,99000,767,1383,356,533,705,142,62619,46141,16727,768,150,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,7.8,30,99000,886,1383,391,533,458,239,61348,36109,27723,1338,150,0.3,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,8.0,28,98900,933,1383,379,696,825,139,84215,53753,16904,786,150,2.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,9.0,30,98800,905,1383,380,676,829,133,81679,53064,16173,749,190,2.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,9.5,32,98700,804,1383,379,554,688,154,65131,46149,18184,843,150,3.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,10.1,33,98700,636,1383,380,425,656,124,49331,40133,14419,645,120,3.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,10.1,34,98700,414,1383,376,259,592,82,29564,25868,9409,397,120,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,9.9,36,98700,156,1383,372,81,416,34,9046,0,3843,150,90,1.8,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,9.5,36,98700,1,96,368,0,0,0,0,0,0,0,90,1.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,10.2,41,98700,0,0,361,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,11.1,47,98700,0,0,357,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,11.1,51,98700,0,0,350,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,11.4,55,98800,0,0,346,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,13.3,69,98800,0,0,341,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,13.2,73,98700,0,0,336,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,12.7,73,98700,0,0,332,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.1,77,98700,0,0,326,0,0,0,0,0,0,0,10,0.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.8,73,98600,0,0,327,0,0,0,0,0,0,0,10,1.8,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.1,76,98600,0,0,326,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.8,71,98700,0,0,330,0,0,0,0,0,0,0,10,0.0,0,0,16.1,6096,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,12.1,74,98700,0,0,329,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.7,69,98700,83,1054,331,39,503,9,4633,0,1072,39,10,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,11.8,60,98800,345,1383,342,206,537,72,23275,18215,8168,339,10,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,11.9,54,98800,579,1383,351,394,694,104,45776,38208,12066,529,10,0.0,0,0,16.1,3658,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,9.8,38,98800,762,1383,366,551,778,122,65408,48307,14550,660,110,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,8.9,32,98700,881,1383,373,655,824,131,78958,52559,15833,730,110,0.2,0,0,16.1,3932,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,8.6,30,98700,928,1383,378,697,840,134,84472,53880,16263,754,110,1.5,0,0,16.1,5211,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.9,7.1,25,98500,900,1383,381,672,830,132,81224,53831,16030,740,110,1.3,0,0,16.1,3658,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.8,7.0,25,98500,798,1383,380,582,793,125,69582,50809,14992,683,110,0.0,0,0,16.1,3658,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,9.2,31,98500,631,1383,379,438,721,109,51227,42466,12831,568,110,0.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,10.9,35,98400,408,1383,379,255,588,82,29027,25038,9316,393,110,2.1,0,0,16.1,3658,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,11.7,40,98400,151,1383,375,74,349,36,8156,0,3957,155,230,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,12.0,42,98400,0,77,371,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,10.5,44,98400,0,0,359,0,0,0,0,0,0,0,300,4.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,7.0,39,98400,0,0,345,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,6.0,38,98400,0,0,341,0,0,0,0,0,0,0,310,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,5.8,39,98400,0,0,338,0,0,0,0,0,0,0,310,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,6.9,44,98400,0,0,335,0,0,0,0,0,0,0,310,0.0,0,0,16.1,3353,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,10,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,7.9,48,98300,0,0,335,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,8.4,52,98400,0,0,332,0,0,0,0,0,0,0,290,1.3,0,0,16.1,3215,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,9.0,53,98500,0,0,335,0,0,0,0,0,0,0,240,0.2,0,0,16.1,2438,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,9.7,56,98500,0,0,342,0,0,0,0,0,0,0,240,1.6,1,1,16.1,2392,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,11.4,63,98400,0,0,342,0,0,0,0,0,0,0,10,1.8,1,1,16.1,2156,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,10.3,56,98400,0,0,344,0,0,0,0,0,0,0,300,0.3,1,1,16.1,2308,9,999999999,189,0.0000,0,88,999.000,3.0,1.0 +2016,10,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,12.5,69,98400,0,0,347,0,0,0,0,0,0,0,300,2.0,2,2,16.1,2369,9,999999999,220,0.0000,0,88,999.000,5.0,1.0 +2016,10,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,14.5,82,98500,80,1034,346,28,54,24,2996,0,2664,104,330,1.3,2,2,15.9,1935,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,15.0,86,98600,341,1384,346,122,109,95,13430,4250,10524,447,50,0.4,2,2,14.7,1653,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,15.1,81,98700,574,1384,354,227,120,177,25153,8110,19734,904,50,2.2,3,3,16.1,1524,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,15.7,78,98700,757,1384,360,320,133,247,35757,10297,27776,1335,50,0.2,3,3,16.1,1638,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,16.1,74,98700,875,1384,367,424,212,290,47739,17030,32806,1614,50,1.3,3,3,16.1,2194,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,16.1,66,98600,922,1384,380,490,297,292,55596,23550,33339,1646,300,0.5,4,4,16.1,1580,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,16.1,64,98500,894,1384,382,496,351,270,56395,27017,30837,1511,300,2.6,4,4,16.1,1040,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,16.0,65,98500,793,1384,380,436,350,235,49192,26067,26696,1283,300,0.5,4,4,16.1,1067,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,15.4,61,98500,625,1384,385,319,293,186,35564,20231,20908,968,300,3.5,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,14.6,57,98500,403,1384,382,205,330,109,22694,15675,12090,522,260,2.5,4,4,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,14.1,56,98600,146,1384,373,65,272,37,7191,0,4043,159,270,2.0,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,14.1,59,98600,0,59,358,0,0,0,0,0,0,0,270,1.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,15.1,69,98600,0,0,351,0,0,0,0,0,0,0,300,2.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,15.6,77,98600,0,0,346,0,0,0,0,0,0,0,280,1.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,15.5,81,98700,0,0,342,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,15.0,82,98700,0,0,338,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,15.0,84,98700,0,0,336,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,14.9,87,98700,0,0,344,0,0,0,0,0,0,0,300,0.0,2,2,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,14.3,87,98700,0,0,330,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,13.9,90,98700,0,0,325,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,13.8,90,98700,0,0,325,0,0,0,0,0,0,0,280,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.3,90,98700,0,0,322,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.2,89,98700,0,0,322,0,0,0,0,0,0,0,300,0.2,0,0,16.1,3139,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,12.9,87,98700,0,0,322,0,0,0,0,0,0,0,300,1.6,0,0,16.1,3566,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,13.3,85,98800,76,1014,326,35,124,28,3718,0,2994,118,270,1.8,0,0,16.1,3002,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,13.4,74,98900,336,1385,342,154,249,93,16926,9760,10329,438,270,0.0,1,1,16.1,2743,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,13.9,67,98900,569,1385,353,288,296,167,32134,19670,18666,850,270,0.0,1,1,16.1,2697,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,13.9,60,98900,751,1385,361,394,302,230,44286,23024,25982,1239,320,0.0,1,1,16.1,2415,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,13.9,57,98900,870,1385,371,463,305,272,52474,24308,30957,1512,320,0.3,2,2,16.1,2286,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,13.9,55,98800,917,1385,374,501,330,283,57023,26386,32384,1592,320,1.8,2,2,16.1,2331,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,13.6,50,98700,889,1385,380,516,410,253,59000,31576,29106,1416,130,0.2,2,2,16.1,2591,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.6,11.7,40,98700,787,1385,391,488,516,195,56092,37095,22513,1062,130,1.5,3,3,16.1,2591,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,11.7,41,98700,620,1385,389,375,501,150,42602,32597,17160,778,200,1.5,3,3,16.1,2636,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,11.3,40,98700,398,1385,388,222,436,97,24846,20081,10858,463,170,1.5,3,3,16.1,2907,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,10.4,38,98600,142,1385,388,59,221,36,6500,0,4019,158,190,1.8,4,4,16.1,2983,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,9.1,35,98600,0,41,386,0,0,0,0,0,0,0,190,1.8,4,4,16.1,2979,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.4,7.4,32,98700,0,0,382,0,0,0,0,0,0,0,190,0.0,4,4,16.1,2591,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,9.1,38,98700,0,0,378,0,0,0,0,0,0,0,190,0.0,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,14.1,57,98700,0,0,376,0,0,0,0,0,0,0,290,0.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,15.0,64,98700,0,0,378,0,0,0,0,0,0,0,290,0.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,15.0,66,98700,0,0,376,0,0,0,0,0,0,0,290,1.3,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,15.0,66,98700,0,0,375,0,0,0,0,0,0,0,290,0.0,5,5,16.1,2438,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,15.0,69,98600,0,0,369,0,0,0,0,0,0,0,290,0.0,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,15.0,73,98600,0,0,364,0,0,0,0,0,0,0,110,0.0,4,4,16.1,3612,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,15.0,76,98600,0,0,359,0,0,0,0,0,0,0,110,0.3,3,3,16.1,3353,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,15.0,76,98500,0,0,358,0,0,0,0,0,0,0,110,1.8,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.0,78,98600,0,0,359,0,0,0,0,0,0,0,110,0.0,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,14.9,78,98600,0,0,359,0,0,0,0,0,0,0,280,0.0,4,4,16.1,1341,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,14.6,77,98700,73,993,358,25,47,22,2677,0,2415,94,280,0.3,4,4,16.1,1350,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,15.4,86,98800,331,1386,354,113,94,91,12480,3416,10053,426,280,2.0,4,4,16.1,1392,9,999999999,270,0.0000,0,88,999.000,20.0,1.0 +2016,10,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,15.0,85,98900,564,1386,352,194,70,165,21591,4590,18491,841,290,0.8,4,4,10.1,1173,9,999999999,270,0.0000,0,88,999.000,3.0,1.0 +2016,10,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,16.1,93,98900,746,1386,352,249,49,223,27993,3570,25178,1199,100,0.4,4,4,8.3,1373,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,16.2,90,98900,865,1386,355,336,85,283,37867,6743,32100,1575,100,2.7,4,4,10.8,952,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,16.5,92,98900,912,1386,356,396,133,309,44631,10834,34972,1734,120,2.9,4,4,16.1,522,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,15.8,82,98800,883,1386,360,443,242,288,49942,19389,32725,1610,170,2.9,4,4,16.1,732,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.9,73,98800,782,1386,358,411,301,241,46303,23312,27285,1310,180,3.1,4,4,16.1,1520,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,13.9,73,98800,615,1386,355,335,365,173,37521,24720,19441,892,190,2.8,3,3,16.1,1285,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,13.8,75,98900,393,1386,352,192,295,109,21238,14000,12054,520,170,4.0,3,3,16.1,703,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,14.2,78,98900,138,1386,351,54,181,36,5888,0,3921,154,220,3.2,3,3,16.1,718,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,14.4,82,98900,0,26,349,0,0,0,0,0,0,0,220,2.3,3,3,16.1,788,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,14.4,81,98900,0,0,350,0,0,0,0,0,0,0,200,2.2,3,3,16.1,754,9,999999999,250,0.0000,0,88,999.000,3.0,1.0 +2016,10,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,15.1,91,98900,0,0,345,0,0,0,0,0,0,0,160,0.0,3,3,11.9,998,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,15.6,96,98900,0,0,344,0,0,0,0,0,0,0,220,0.0,3,3,7.9,610,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,15.5,96,99000,0,0,343,0,0,0,0,0,0,0,220,1.5,3,3,16.1,375,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,13.9,91,99000,0,0,338,0,0,0,0,0,0,0,260,1.7,3,3,16.1,610,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,10,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,13.3,93,99000,0,0,319,0,0,0,0,0,0,0,240,2.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,13.1,93,98900,0,0,318,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,12.2,94,98900,0,0,312,0,0,0,0,0,0,0,350,0.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,12.1,100,98800,0,0,308,0,0,0,0,0,0,0,350,1.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.6,99,98800,0,0,306,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,11.1,97,98900,0,0,305,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,11.1,99,98900,0,0,303,0,0,0,0,0,0,0,280,0.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,11.2,96,98900,70,973,312,25,43,23,2751,0,2521,99,280,1.6,1,1,14.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,12.2,100,99000,327,1386,327,109,87,89,12043,3275,9822,414,270,0.0,5,5,2.7,57,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,13.2,90,99000,559,1386,321,306,381,152,34267,24302,17134,773,270,0.0,0,0,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,12.7,73,99000,741,1386,352,335,176,241,37470,13885,27112,1295,270,0.2,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,12.0,63,99000,860,1386,359,439,264,276,49654,21602,31358,1530,130,1.3,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,10.7,54,98900,906,1386,363,484,306,285,55085,25304,32552,1597,130,0.6,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,10.9,52,98800,878,1386,368,476,325,270,54114,26488,30884,1506,130,4.0,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,9.9,49,98700,777,1386,366,419,332,233,47435,26257,26504,1265,130,3.7,5,5,16.1,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,9.3,49,98700,609,1386,363,315,310,179,35281,22293,20121,923,180,4.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,8.7,49,98700,388,1386,359,179,245,110,19766,12503,12240,527,160,3.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,8.6,51,98700,134,1386,355,48,141,34,5273,0,3791,148,160,3.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,8.6,54,98700,0,11,348,0,0,0,0,0,0,0,160,3.4,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,10.2,62,98700,0,0,341,0,0,0,0,0,0,0,220,2.1,2,2,16.1,1372,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.0,70,98800,0,0,326,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.8,74,98800,0,0,321,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,98800,0,0,320,0,0,0,0,0,0,0,130,0.0,0,0,16.1,1189,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.7,85,98800,0,0,317,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,10,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.6,89,98800,0,0,313,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.9,87,98700,0,0,311,0,0,0,0,0,0,0,90,0.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,98800,0,0,327,0,0,0,0,0,0,0,10,0.0,5,5,16.1,335,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,11.1,85,98700,0,0,332,0,0,0,0,0,0,0,350,1.0,5,5,16.1,457,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.7,81,98700,0,0,333,0,0,0,0,0,0,0,80,1.5,5,5,16.1,482,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,10.2,79,98800,0,0,331,0,0,0,0,0,0,0,120,1.3,5,5,16.1,610,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,10.8,87,98800,0,0,328,0,0,0,0,0,0,0,100,0.2,5,5,16.1,610,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,9.4,76,98800,67,952,330,22,60,19,2398,0,2085,80,100,1.3,5,5,16.1,610,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,9.6,72,98900,322,1387,335,118,120,90,12986,4720,9962,420,120,0.2,5,5,16.1,628,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,10.6,71,99000,554,1387,342,228,142,171,25289,9891,19067,866,120,1.5,5,5,16.1,818,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,10.5,66,99000,736,1387,347,308,130,239,34504,10437,26928,1283,120,0.0,5,5,16.1,1097,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,9.9,57,98900,854,1387,351,416,219,281,46943,18445,31875,1555,120,0.2,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,9.3,51,98900,901,1387,350,500,351,272,57110,28868,31238,1525,210,1.6,2,2,16.1,1189,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,8.8,46,98800,873,1387,343,616,729,158,73100,49240,18823,880,210,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,8.4,43,98700,771,1387,365,456,448,207,52053,33981,23725,1121,210,1.7,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,9.1,45,98700,604,1387,347,421,733,102,49295,41775,11972,525,180,2.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,10.0,50,98600,383,1387,345,238,586,76,27033,23138,8664,362,180,1.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,11.0,58,98700,130,1382,351,51,192,33,5631,0,3662,143,150,1.8,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,11.7,66,98700,0,0,351,0,0,0,0,0,0,0,150,2.0,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,11.7,71,98800,0,0,330,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.6,72,98800,0,0,327,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.8,71,98800,0,0,324,0,0,0,0,0,0,0,280,1.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,8.9,63,98900,0,0,322,0,0,0,0,0,0,0,360,3.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,10.7,73,98900,0,0,321,0,0,0,0,0,0,0,50,2.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,11,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.0,78,98900,0,0,319,0,0,0,0,0,0,0,60,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,10.4,81,98900,0,0,313,0,0,0,0,0,0,0,40,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.4,84,98900,0,0,305,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.4,89,98900,0,0,301,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.3,89,98900,0,0,300,0,0,0,0,0,0,0,300,0.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,8.6,86,98900,0,0,299,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,7.2,71,99000,0,0,304,0,0,0,0,0,0,0,160,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,6.6,60,99000,64,931,311,33,300,20,3666,0,2158,83,160,2.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,2.7,32,99100,317,1388,333,197,600,60,22481,18630,6834,278,330,4.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-1.0,20,99000,549,1388,345,391,779,83,46204,43230,9819,420,20,9.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.2,-3.5,15,99100,731,1388,349,554,872,95,67047,54567,11496,508,20,9.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,-4.3,13,99000,849,1388,353,663,921,100,81480,59202,12271,551,20,7.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,-4.0,13,99000,896,1388,356,707,939,101,87344,60498,12492,564,20,6.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,-4.7,11,98900,867,1388,360,680,928,100,83786,59851,12370,556,10,7.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.8,-5.9,10,98900,766,1388,358,587,888,96,71311,56530,11763,522,30,7.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,-5.2,11,98900,599,1388,358,435,807,87,51775,47575,10341,446,10,6.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,-6.0,11,98900,378,1388,354,246,656,67,28326,27539,7726,318,20,4.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.7,-6.1,11,98900,126,1365,348,64,406,27,7162,0,3042,116,10,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,-5.9,12,98900,0,0,344,0,0,0,0,0,0,0,10,4.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,-5.0,15,98900,0,0,338,0,0,0,0,0,0,0,10,0.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,-4.8,16,98900,0,0,333,0,0,0,0,0,0,0,10,4.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,-4.1,18,98900,0,0,329,0,0,0,0,0,0,0,360,4.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,-4.9,15,98900,0,0,336,0,0,0,0,0,0,0,350,3.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,-4.4,16,98900,0,0,334,0,0,0,0,0,0,0,350,7.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,-4.3,16,98900,0,0,334,0,0,0,0,0,0,0,360,5.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-3.9,17,98900,0,0,334,0,0,0,0,0,0,0,350,6.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-3.9,17,98900,0,0,333,0,0,0,0,0,0,0,360,5.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-3.9,17,98900,0,0,333,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.9,-3.9,17,98900,0,0,333,0,0,0,0,0,0,0,350,5.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-3.7,17,98900,0,0,336,0,0,0,0,0,0,0,10,3.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,-2.9,19,99000,0,0,332,0,0,0,0,0,0,0,340,2.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,-3.3,17,99000,61,910,337,31,271,19,3411,0,2112,81,340,4.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.3,-3.3,16,99100,313,1388,345,186,541,64,21106,18326,7299,298,350,5.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,-3.3,13,99100,545,1388,357,372,710,94,43502,41353,11002,474,360,7.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,-3.3,12,99000,726,1388,366,529,798,111,63100,51992,13323,595,360,8.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-3.4,11,99000,844,1388,373,633,845,120,76632,56491,14541,661,340,6.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.6,-3.9,10,98900,890,1388,375,675,862,122,82135,57964,14929,683,340,5.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.8,-4.2,10,98800,862,1388,375,649,851,121,78793,57207,14695,670,330,4.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.0,-5.1,9,98800,761,1388,380,560,813,114,67097,53817,13726,616,130,0.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.0,-2.1,12,98800,594,1388,379,414,737,99,48699,44593,11687,509,130,2.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,-1.6,13,98800,373,1388,374,233,594,73,26581,25201,8355,346,90,3.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,-1.7,14,98800,122,1350,368,59,373,27,6664,0,3000,115,90,2.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,-1.6,15,98800,0,0,360,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,-1.2,17,98800,0,0,353,0,0,0,0,0,0,0,230,1.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-1.4,19,98800,0,0,344,0,0,0,0,0,0,0,230,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,0.3,24,98800,0,0,339,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,2.3,31,98900,0,0,334,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,2.9,36,98900,0,0,325,0,0,0,0,0,0,0,180,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,3.4,39,98900,0,0,323,0,0,0,0,0,0,0,180,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,4.1,43,98900,0,0,320,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,4.9,52,98900,0,0,311,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,4.5,48,98900,0,0,315,0,0,0,0,0,0,0,310,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,4.8,49,98900,0,0,315,0,0,0,0,0,0,0,310,1.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,4.0,50,98900,0,0,309,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,4.4,51,98900,0,0,311,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,4.3,45,99000,58,889,318,31,290,19,3387,0,2067,80,340,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,3.9,35,99100,308,1389,334,188,580,60,21397,17030,6790,276,120,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,3.7,27,99100,540,1389,351,379,759,85,44560,40912,9967,427,120,0.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,2.7,21,99100,721,1389,366,540,852,98,64923,52091,11832,524,120,2.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,2.4,18,99000,839,1389,376,647,900,104,79006,56678,12732,574,120,2.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,3.3,18,99000,885,1389,382,690,917,106,84716,57759,13017,590,120,3.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,3.6,18,98900,857,1389,386,664,907,105,81225,56853,12848,580,70,2.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,4.8,21,98900,756,1389,382,572,867,100,69017,52909,12125,540,120,4.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,4.1,21,98900,589,1389,375,423,787,89,49986,44367,10531,455,100,3.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,5.0,24,98900,369,1389,369,236,636,67,27066,24167,7725,318,150,2.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,5.6,28,98900,119,1338,362,60,410,25,6692,0,2762,105,100,2.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,6.0,31,98900,0,0,356,0,0,0,0,0,0,0,100,2.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,5.7,33,99000,0,0,349,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,6.2,36,99000,0,0,346,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,6.8,41,99000,0,0,340,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,7.3,45,99000,0,0,337,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,7.9,51,99000,0,0,330,0,0,0,0,0,0,0,290,0.0,0,0,15.9,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,8.3,57,98900,0,0,325,0,0,0,0,0,0,0,290,0.0,0,0,14.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,8.3,61,98900,0,0,321,0,0,0,0,0,0,0,290,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,8.2,65,98900,0,0,316,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,7.9,68,98900,0,0,311,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.2,72,98900,0,0,309,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,7.8,72,98900,0,0,306,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.9,73,98900,0,0,306,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,8.1,73,98900,55,868,307,31,308,18,3344,0,2015,78,330,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,7.1,53,99000,303,1390,323,190,616,55,21644,15872,6333,256,330,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,6.7,41,99000,535,1390,339,385,803,76,45514,40629,9046,384,330,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,6.4,34,99000,716,1390,353,550,899,87,66563,51876,10530,462,330,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.9,4.4,24,99000,833,1390,367,660,949,90,81238,57220,11174,498,190,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,4.1,21,98900,880,1390,375,703,967,91,87189,58704,11363,509,190,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,2.6,17,98800,852,1390,383,677,956,91,83623,58439,11260,503,170,0.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.9,5.0,21,98700,751,1390,383,583,915,88,70924,53990,10757,475,170,2.9,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.2,4.0,20,98700,585,1390,378,430,833,80,51199,45288,9523,408,130,1.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.0,2.7,20,98700,364,1390,371,239,675,62,27548,24813,7171,293,300,2.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,1.5,20,98700,115,1325,361,59,445,22,6706,0,2527,96,290,2.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,4.2,27,98700,0,0,356,0,0,0,0,0,0,0,290,2.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,6.0,34,98700,0,0,348,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,5.7,37,98700,0,0,340,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,6.4,42,98700,0,0,336,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,9.1,56,98800,0,0,331,0,0,0,0,0,0,0,120,0.3,0,0,15.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.9,81,98800,0,0,332,0,0,0,0,0,0,0,120,1.8,0,0,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,11,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,13.7,84,98800,0,0,329,0,0,0,0,0,0,0,120,0.0,0,0,9.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,12.4,83,98800,0,0,322,0,0,0,0,0,0,0,120,0.0,0,0,10.6,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.8,77,98800,0,0,313,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,8.9,75,98700,0,0,309,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,8.8,77,98700,0,0,307,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,8.3,78,98800,0,0,304,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,8.3,79,98900,0,0,303,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,8.4,76,98900,53,847,306,28,261,18,3035,0,1967,76,140,0.0,0,0,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,9.0,65,99000,299,1390,320,175,522,63,19690,14092,7064,288,140,0.0,0,0,14.5,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,9.2,54,99000,530,1390,334,358,693,94,41493,36709,10927,472,140,0.0,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,8.2,43,99000,711,1390,346,512,780,113,60622,47681,13414,601,140,0.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.5,8.1,37,99000,828,1390,355,615,827,122,73847,52195,14750,673,140,4.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.6,9.7,39,99000,875,1390,363,656,843,125,79165,52825,15185,698,140,3.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.6,7.9,33,98900,847,1390,365,631,834,123,75980,52846,14921,683,130,3.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.5,5.8,28,98900,746,1390,362,543,795,116,64625,50120,13856,624,140,4.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,6.7,32,98900,580,1390,359,400,720,100,46694,41110,11676,509,150,4.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,6.7,35,98900,360,1390,352,221,577,72,25130,21838,8181,339,150,4.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,7.6,40,98900,113,1315,347,54,384,23,6095,0,2611,99,140,3.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,8.4,45,98900,0,0,343,0,0,0,0,0,0,0,140,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,9.4,53,99000,0,0,337,0,0,0,0,0,0,0,140,0.0,0,0,15.6,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,12.1,66,99000,0,0,355,0,0,0,0,0,0,0,140,0.0,4,4,13.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,11.4,67,99000,0,0,332,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.1,66,99000,0,0,326,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.5,70,99000,0,0,323,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,10.0,70,99000,0,0,320,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,9.9,75,98900,0,0,315,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.4,77,98900,0,0,310,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,9.4,77,98900,0,0,310,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.5,78,98900,0,0,310,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,9.9,83,98900,0,0,309,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,9.4,79,99000,0,0,309,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,9.5,75,99000,50,825,313,26,295,15,2855,0,1699,65,340,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,10.0,63,99100,294,1391,328,180,590,56,20458,13610,6332,256,340,0.0,0,0,15.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,9.7,52,99200,525,1391,340,372,776,79,43654,38158,9310,397,340,0.0,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,7.5,36,99200,706,1391,354,533,872,91,64197,50370,11023,485,160,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,5.0,25,99100,823,1391,366,642,921,97,78500,56065,11845,530,160,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,1.8,18,99000,870,1391,374,685,939,98,84380,58607,12104,544,160,0.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.4,3.2,19,99000,842,1391,378,659,928,97,80858,57321,11959,536,160,3.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.3,8.4,27,98900,741,1391,384,566,888,93,68435,51559,11294,500,150,4.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,5.3,23,98900,576,1391,377,417,806,83,49329,43706,9864,424,160,3.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,5.0,23,99000,356,1391,373,229,650,63,26297,22936,7249,297,140,3.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,5.2,25,99000,109,1301,368,55,446,20,6288,0,2316,87,140,1.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,6.1,28,99000,0,0,364,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,6.4,32,99000,0,0,357,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,8.1,40,99000,0,0,369,0,0,0,0,0,0,0,270,0.0,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,7.3,42,99000,0,0,342,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,7.7,47,99000,0,0,335,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,7.3,48,99000,0,0,332,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,7.8,54,99000,0,0,326,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,8.0,56,99000,0,0,325,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,8.7,64,99000,0,0,319,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.7,62,98900,0,0,316,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,7.0,59,98900,0,0,316,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,6.0,53,99000,0,0,317,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,5.6,52,99000,0,0,316,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,5.5,49,99100,47,804,319,24,313,13,2663,0,1487,56,280,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,5.1,38,99100,289,1392,336,182,626,52,20768,14571,5904,237,280,1.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.1,4.9,27,99200,520,1392,359,378,822,71,44782,40625,8418,355,240,2.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,0.4,15,99100,701,1392,376,544,921,80,66169,53941,9760,424,340,4.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.8,-0.8,12,99100,818,1392,385,655,972,83,81045,59178,10311,456,340,3.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.3,-1.7,11,99000,865,1392,386,699,990,84,87127,60896,10462,465,330,3.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.9,-1.7,11,98900,837,1392,389,673,980,83,83494,60045,10383,460,330,3.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,33.2,-1.7,11,98900,737,1392,391,578,938,81,70704,56206,9956,435,350,4.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.7,-1.6,11,98900,571,1392,388,424,853,74,50722,46506,8869,377,360,3.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,-0.9,12,98800,352,1392,386,232,690,58,26851,24275,6699,272,350,3.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,-0.1,13,98800,106,1287,383,55,487,18,6342,0,2090,78,330,3.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,0.7,15,98800,0,0,379,0,0,0,0,0,0,0,330,3.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,1.2,18,98900,0,0,367,0,0,0,0,0,0,0,360,3.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,1.9,20,98900,0,0,365,0,0,0,0,0,0,0,360,2.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,3.0,23,98900,0,0,360,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,4.1,28,99000,0,0,351,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,5.1,35,98900,0,0,341,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,5.8,42,99000,0,0,332,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,6.8,45,98900,0,0,333,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,7.0,52,98900,0,0,324,0,0,0,0,0,0,0,280,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,5.7,43,98900,0,0,330,0,0,0,0,0,0,0,280,1.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,6.1,49,98800,0,0,323,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,6.2,52,98900,0,0,319,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,6.6,53,98900,0,0,320,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,6.1,48,98900,45,783,324,22,289,13,2443,0,1417,54,280,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,6.1,39,99000,285,1392,339,173,578,55,19607,13541,6220,251,280,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.4,5.9,31,99000,515,1392,369,300,472,126,33947,28958,14265,628,290,1.6,2,2,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,4.4,23,99000,696,1392,371,525,871,90,63231,51221,10880,477,260,2.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,0.9,15,99000,813,1392,399,523,574,188,60768,43439,21899,1028,340,2.2,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,-0.1,12,98900,860,1392,404,572,627,185,67096,47081,21784,1025,20,2.2,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,-0.6,12,98800,832,1392,390,637,888,107,77618,57094,13030,587,20,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.8,-0.6,12,98700,732,1392,390,534,802,112,63684,51788,13405,600,330,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.6,-0.6,12,98700,567,1392,389,390,719,97,45588,42356,11413,495,330,1.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.7,-0.1,13,98600,348,1392,385,220,625,64,25202,22858,7341,300,340,4.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,0.6,15,98600,104,1275,381,54,492,17,6163,0,1977,74,330,4.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.7,1.2,16,98600,0,0,377,0,0,0,0,0,0,0,330,3.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,1.7,18,98700,0,0,370,0,0,0,0,0,0,0,350,5.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.0,1.8,20,98700,0,0,364,0,0,0,0,0,0,0,350,3.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.8,2.2,22,98700,0,0,359,0,0,0,0,0,0,0,60,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,2.3,24,98800,0,0,352,0,0,0,0,0,0,0,60,2.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,2.7,27,98800,0,0,344,0,0,0,0,0,0,0,30,1.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,2.6,31,98800,0,0,334,0,0,0,0,0,0,0,30,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,5.2,40,98800,0,0,331,0,0,0,0,0,0,0,30,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,6.1,50,98800,0,0,321,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,6.0,53,98800,0,0,316,0,0,0,0,0,0,0,320,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,5.8,54,98700,0,0,314,0,0,0,0,0,0,0,320,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,6.6,56,98800,0,0,316,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,6.1,58,98800,0,0,312,0,0,0,0,0,0,0,320,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,6.0,55,98900,42,761,315,20,278,12,2231,0,1295,49,230,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,5.3,40,99000,280,1393,333,167,555,56,18923,13052,6300,254,230,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,3.8,28,99000,510,1393,350,370,821,69,43844,40246,8249,347,230,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.3,2.5,20,99000,691,1393,367,546,960,70,66990,53811,8662,373,130,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.7,-2.3,12,99000,808,1393,377,653,992,77,81121,59822,9626,423,130,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.2,-3.2,10,98900,855,1393,378,670,931,99,82375,59464,12163,546,160,0.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.6,-5.5,8,98800,827,1393,390,527,556,196,61194,43575,22926,1080,160,2.2,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,-5.0,9,98800,728,1393,388,435,472,188,49816,36852,21674,1007,220,0.2,2,2,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,-5.0,9,98800,563,1393,387,330,473,139,37549,32530,15882,707,220,1.7,2,2,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,-5.0,10,98800,344,1393,381,181,381,87,20194,17207,9714,406,180,3.0,2,2,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.7,-4.4,11,98800,101,1264,377,43,305,21,4884,0,2402,91,190,2.2,2,2,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.6,-3.5,13,98800,0,0,372,0,0,0,0,0,0,0,190,1.8,2,2,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.4,-1.0,17,98900,0,0,370,0,0,0,0,0,0,0,290,3.3,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,-0.7,19,98900,0,0,359,0,0,0,0,0,0,0,270,1.3,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,-1.0,21,98900,0,0,352,0,0,0,0,0,0,0,310,0.2,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,-0.4,23,99000,0,0,344,0,0,0,0,0,0,0,310,1.5,1,1,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,0.7,29,99000,0,0,334,0,0,0,0,0,0,0,20,1.6,1,1,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,1.2,30,99000,0,0,334,0,0,0,0,0,0,0,10,1.8,1,1,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,1.9,35,99000,0,0,327,0,0,0,0,0,0,0,10,0.0,1,1,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,3.4,45,98900,0,0,319,0,0,0,0,0,0,0,10,0.0,1,1,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,3.9,51,98900,0,0,313,0,0,0,0,0,0,0,10,0.0,1,1,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,3.9,50,98900,0,0,314,0,0,0,0,0,0,0,10,0.0,1,1,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,4.0,54,98900,0,0,310,0,0,0,0,0,0,0,290,0.0,1,1,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,4.4,57,99000,0,0,303,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,4.2,56,99000,40,740,303,18,311,9,2043,0,1037,38,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,3.2,38,99100,275,1394,323,172,622,49,19632,13020,5616,224,290,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,2.5,29,99200,505,1394,340,367,823,68,43459,40306,8135,341,290,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,0.5,20,99200,686,1394,353,532,923,78,64702,53393,9478,410,290,1.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.6,-2.8,13,99100,803,1394,366,643,975,81,79578,59421,10052,442,140,3.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.1,-3.0,11,99000,850,1394,373,688,993,82,85671,61030,10195,451,180,2.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.5,-3.8,10,99000,823,1394,374,661,983,81,82099,60318,10119,446,140,3.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.0,-3.6,11,98900,723,1394,372,567,941,79,69422,56283,9699,422,160,3.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,-4.8,10,98900,558,1394,369,415,856,72,49591,46407,8596,363,210,2.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.1,-4.2,11,98900,340,1394,367,224,689,56,25893,23402,6458,261,210,2.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.9,-2.9,13,98900,98,1252,363,52,518,15,5958,0,1741,64,220,2.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,-1.7,15,99000,0,0,359,0,0,0,0,0,0,0,220,1.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.2,1.2,22,99000,0,0,350,0,0,0,0,0,0,0,300,2.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,1.7,26,99000,0,0,343,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,1.7,28,99000,0,0,336,0,0,0,0,0,0,0,320,1.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,1.5,29,99000,0,0,332,0,0,0,0,0,0,0,300,1.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,1.0,28,99100,0,0,331,0,0,0,0,0,0,0,300,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,3.2,39,99000,0,0,321,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,3.0,40,99000,0,0,319,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,3.9,48,99000,0,0,311,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,3.8,50,99000,0,0,308,0,0,0,0,0,0,0,350,1.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,3.3,46,99000,0,0,311,0,0,0,0,0,0,0,310,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,3.4,48,99000,0,0,309,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,4.0,50,99000,0,0,309,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,4.2,50,99100,37,718,311,17,281,9,1918,0,1069,40,310,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,3.4,40,99100,271,1394,320,162,561,53,18345,12250,6011,241,310,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,3.6,34,99200,501,1394,334,348,751,79,40782,38135,9248,392,310,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,1.4,23,99200,681,1394,349,507,848,93,60765,50975,11184,490,310,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,-0.1,17,99200,798,1394,361,613,897,100,74657,56492,12159,543,100,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,-0.4,16,99100,845,1394,364,656,915,102,80369,58151,12476,561,100,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.3,0.6,17,99000,818,1394,369,632,905,101,77035,56996,12299,551,140,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.2,0.8,17,98900,719,1394,369,541,865,95,65203,52995,11521,508,140,1.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.7,1.7,19,98900,554,1394,368,395,784,84,46605,42988,9879,423,130,2.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,1.9,20,98900,336,1394,364,212,626,61,24320,21192,7051,288,200,2.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.9,2.0,21,98900,96,1239,359,48,480,15,5551,0,1766,65,180,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,2.5,24,98900,0,0,354,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,3.7,28,98900,0,0,348,0,0,0,0,0,0,0,280,1.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,2.7,28,99000,0,0,342,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.4,2.2,30,99000,0,0,334,0,0,0,0,0,0,0,290,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,2.4,33,99000,0,0,328,0,0,0,0,0,0,0,300,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,3.3,40,99000,0,0,321,0,0,0,0,0,0,0,340,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,3.4,41,99000,0,0,320,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,4.1,47,99000,0,0,314,0,0,0,0,0,0,0,350,1.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,5.0,52,99000,0,0,312,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,5.0,56,99000,0,0,308,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,5.0,58,99000,0,0,305,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,4.9,62,99000,0,0,300,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,4.5,58,99000,0,0,302,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,4.8,60,99100,35,697,301,15,595,0,2945,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,3.9,44,99200,266,1395,318,167,631,46,19064,11436,5321,211,260,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,3.7,33,99200,496,1395,337,362,838,65,43031,39452,7686,320,260,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.0,2.5,23,99200,676,1395,356,529,941,73,64501,52798,8896,383,260,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.5,0.3,16,99200,794,1395,370,641,994,76,79531,58799,9395,411,150,0.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.5,-1.2,14,99100,841,1395,373,686,1012,76,85766,60853,9524,419,150,2.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,-1.8,12,99000,814,1395,375,660,1002,76,82224,60115,9449,414,230,2.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.1,-2.5,11,99000,715,1395,379,566,960,74,69456,56192,9088,393,170,2.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.9,-3.9,10,99000,551,1395,376,412,873,68,49448,46102,8119,341,170,3.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.8,-1.6,13,99000,333,1395,374,221,703,53,25565,22153,6148,248,170,3.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.4,0.8,17,99000,82,1074,370,44,648,6,5365,0,701,24,260,2.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.7,2.1,20,99000,0,0,363,0,0,0,0,0,0,0,260,2.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.7,1.8,24,99000,0,0,349,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,2.2,26,99100,0,0,344,0,0,0,0,0,0,0,290,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,2.2,28,99100,0,0,339,0,0,0,0,0,0,0,300,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,2.2,30,99100,0,0,333,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,2.4,34,99100,0,0,326,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,3.4,40,99100,0,0,320,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,3.8,43,99000,0,0,318,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,3.3,46,99000,0,0,311,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,3.3,47,99000,0,0,310,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,3.5,51,99000,0,0,305,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,4.4,54,99100,0,0,307,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,4.2,55,99100,0,0,304,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,3.4,47,99100,33,675,310,14,599,0,2744,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,3.8,40,99200,262,1395,324,162,620,46,18545,10779,5302,211,190,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,3.0,30,99300,491,1395,340,356,827,65,42225,39070,7775,324,190,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.9,0.8,21,99300,671,1395,353,521,930,74,63462,52832,9082,391,190,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,28.1,-0.6,16,99200,789,1395,367,633,982,78,78333,58636,9630,422,190,0.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.2,-0.9,13,99100,836,1395,377,678,1001,78,84484,60369,9785,431,190,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.3,-3.0,11,99000,809,1395,379,652,990,78,81035,60009,9709,426,190,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,32.1,-3.2,10,99000,711,1395,383,559,948,76,68425,55902,9298,403,160,0.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,31.5,0.6,14,99000,547,1395,385,407,862,69,48629,44583,8246,347,160,4.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,30.4,1.7,16,99000,329,1395,381,217,693,53,25062,20955,6178,249,150,2.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,29.0,2.5,18,99000,79,1059,375,42,656,5,5237,0,630,22,290,1.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.4,3.7,22,99000,0,0,369,0,0,0,0,0,0,0,290,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.7,3.0,25,99000,0,0,355,0,0,0,0,0,0,0,290,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,4.0,29,99100,0,0,348,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,4.4,34,99000,0,0,339,0,0,0,0,0,0,0,310,0.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,4.6,36,99000,0,0,336,0,0,0,0,0,0,0,310,1.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,5.6,45,99000,0,0,325,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,5.6,48,99000,0,0,321,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,5.7,51,99000,0,0,317,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,6.1,59,98900,0,0,310,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,6.0,58,98900,0,0,311,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,5.5,61,98900,0,0,305,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,5.1,59,98900,0,0,305,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,5.5,69,98900,0,0,297,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,5.0,63,98900,31,654,299,12,249,6,1383,0,747,27,360,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,5.0,47,99000,257,1396,320,146,499,54,16443,9909,6143,247,220,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,4.4,37,99000,486,1396,332,341,765,74,39900,37134,8712,367,220,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,0.8,23,99000,666,1396,346,513,912,78,62168,52237,9421,407,220,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.1,-0.3,18,99000,784,1396,357,598,886,101,72570,55880,12251,547,120,1.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.2,1.2,20,98800,831,1396,360,621,842,119,74916,55233,14459,657,120,1.8,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.8,1.9,20,98800,805,1396,364,580,777,132,69146,52220,15816,722,130,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,27.1,3.6,22,98700,707,1396,367,493,727,125,58001,47381,14749,664,130,2.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,26.5,5.6,26,98700,543,1396,386,300,398,145,33718,26423,16364,731,140,3.5,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,25.3,5.9,29,98700,326,1396,361,196,554,66,22164,18225,7545,310,120,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.0,5.9,31,98700,77,1046,355,36,497,8,4240,0,980,35,130,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.5,6.4,35,98600,0,0,349,0,0,0,0,0,0,0,130,2.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,7.9,44,98700,0,0,342,0,0,0,0,0,0,0,110,1.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,8.6,50,98700,0,0,336,0,0,0,0,0,0,0,110,0.0,0,0,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,10.1,60,98600,0,0,332,0,0,0,0,0,0,0,350,0.0,0,0,14.5,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,10.4,68,98600,0,0,325,0,0,0,0,0,0,0,350,0.2,0,0,14.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,9.5,71,98600,0,0,317,0,0,0,0,0,0,0,350,1.3,0,0,15.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,10.0,77,98600,0,0,314,0,0,0,0,0,0,0,350,0.0,0,0,14.5,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,9.7,77,98500,0,0,312,0,0,0,0,0,0,0,250,0.0,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.1,79,98500,0,0,302,0,0,0,0,0,0,0,250,0.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.2,76,98400,0,0,299,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.3,75,98400,0,0,301,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,7.7,81,98400,0,0,298,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.2,83,98400,0,0,309,0,0,0,0,0,0,0,230,0.0,4,4,15.9,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,7.4,80,98400,29,633,297,11,218,6,1263,0,745,27,230,0.2,0,0,14.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,8.5,68,98500,252,1396,314,136,437,58,15223,8272,6438,260,230,1.5,0,0,11.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,9.6,72,98400,481,1396,317,305,603,97,34882,31042,11169,481,230,1.5,0,0,9.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.5,67,98500,662,1396,326,450,687,124,52307,42057,14491,650,230,1.3,0,0,9.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,9.7,53,98400,779,1396,339,547,731,139,64445,47321,16463,755,250,0.2,0,0,10.4,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,8.1,44,98300,827,1396,343,587,747,145,69523,49552,17208,795,250,1.7,0,0,14.5,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.2,7.4,39,98300,801,1396,348,565,738,142,66749,48950,16809,773,190,3.2,0,0,14.7,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,11.8,52,98200,703,1396,353,483,703,130,56447,43377,15184,687,140,4.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.5,11.9,58,98200,540,1396,346,351,633,106,40320,34414,12263,536,140,5.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,11.7,60,98200,323,1396,342,186,497,71,20852,15407,7971,330,140,4.4,0,0,16.1,1463,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,10.3,58,98200,75,1033,335,35,249,22,3880,0,2425,94,60,3.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,9.5,59,98200,0,0,329,0,0,0,0,0,0,0,60,2.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,2.8,42,98200,0,0,315,0,0,0,0,0,0,0,10,7.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-0.2,36,98300,0,0,307,0,0,0,0,0,0,0,360,9.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-1.2,34,98300,0,0,303,0,0,0,0,0,0,0,360,10.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-1.8,33,98200,0,0,301,0,0,0,0,0,0,0,360,9.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-2.4,31,98300,0,0,302,0,0,0,0,0,0,0,350,11.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-3.3,30,98400,0,0,299,0,0,0,0,0,0,0,360,8.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-3.3,31,98400,0,0,296,0,0,0,0,0,0,0,350,7.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,-3.2,32,98400,0,0,295,0,0,0,0,0,0,0,350,7.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,-3.1,32,98400,0,0,295,0,0,0,0,0,0,0,360,9.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-4.8,28,98400,0,0,295,0,0,0,0,0,0,0,340,8.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-3.9,31,98400,0,0,294,0,0,0,0,0,0,0,350,5.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-4.1,31,98500,0,0,291,0,0,0,0,0,0,0,10,8.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,-5.3,28,98500,27,611,291,10,250,5,1169,0,606,22,360,8.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,-6.8,21,98700,248,1397,299,141,500,52,15887,10393,5895,236,360,7.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-6.1,20,98700,477,1397,322,250,350,130,27976,22745,14643,641,10,5.2,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-5.1,20,98800,657,1397,327,346,325,193,39003,25842,21875,1010,140,2.2,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-4.0,22,98800,775,1397,330,400,289,240,45345,24677,27364,1302,140,0.2,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,-2.9,21,98700,822,1397,338,467,393,236,53429,32861,27144,1296,150,1.3,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,-2.6,20,98600,797,1397,331,573,773,132,68204,52896,15778,719,150,1.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,-3.7,18,98600,699,1397,331,521,849,96,62521,52898,11584,510,150,2.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.6,-2.5,20,98600,536,1397,334,380,779,81,44811,42686,9595,408,170,3.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.0,-5.4,16,98600,320,1397,328,206,657,55,23664,20743,6358,256,170,2.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,-8.2,14,98600,73,1020,319,38,633,4,4680,0,551,19,350,3.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-13.9,9,98600,0,0,307,0,0,0,0,0,0,0,350,4.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,-13.7,10,98700,0,0,303,0,0,0,0,0,0,0,360,4.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-12.8,11,98700,0,0,300,0,0,0,0,0,0,0,360,4.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,-12.9,12,98800,0,0,298,0,0,0,0,0,0,0,360,4.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,-13.4,11,98800,0,0,297,0,0,0,0,0,0,0,10,4.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,-14.1,11,98800,0,0,295,0,0,0,0,0,0,0,360,4.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,-15.1,10,98800,0,0,291,0,0,0,0,0,0,0,350,2.9,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,-15.5,10,98900,0,0,292,0,0,0,0,0,0,0,360,4.4,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-14.9,11,98900,0,0,290,0,0,0,0,0,0,0,340,3.2,0,0,15.9,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-14.4,12,98900,0,0,289,0,0,0,0,0,0,0,350,3.5,0,0,14.7,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-14.2,12,98900,0,0,287,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-13.5,13,99000,0,0,288,0,0,0,0,0,0,0,360,0.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,-14.0,12,98900,0,0,286,0,0,0,0,0,0,0,360,4.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-11.3,17,99000,25,590,284,9,503,0,1756,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-8.9,19,99000,243,1398,293,142,535,49,16063,10070,5536,220,300,1.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,-9.9,14,99100,472,1398,306,324,731,77,37816,37999,8978,377,350,0.9,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,-15.6,7,99100,652,1398,314,480,830,92,57362,52023,11093,483,350,6.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-15.7,7,99100,770,1398,317,585,880,100,71015,57768,12214,543,350,6.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,-16.1,6,99000,818,1398,322,629,898,103,76717,59592,12598,564,360,5.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,-16.1,6,98900,793,1398,323,605,889,102,73657,58663,12397,553,350,3.5,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.9,-15.9,6,98900,695,1398,327,518,849,96,62278,54388,11537,506,10,3.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-14.8,6,98900,533,1398,328,376,768,83,44247,43786,9753,415,350,3.5,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,-13.5,7,98900,317,1398,325,198,610,59,22611,20700,6780,274,360,3.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-12.9,8,98900,71,1008,320,37,305,21,4067,0,2362,91,170,3.4,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-12.4,10,98900,0,0,315,0,0,0,0,0,0,0,170,3.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-12.6,10,98900,0,0,309,0,0,0,0,0,0,0,50,0.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,-12.2,11,99000,0,0,306,0,0,0,0,0,0,0,50,1.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,-12.0,13,99000,0,0,298,0,0,0,0,0,0,0,30,2.4,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,-10.9,15,99100,0,0,297,0,0,0,0,0,0,0,40,1.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,-9.5,18,99100,0,0,292,0,0,0,0,0,0,0,30,1.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,-6.3,25,99100,0,0,290,0,0,0,0,0,0,0,30,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,-3.8,35,99100,0,0,286,0,0,0,0,0,0,0,30,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,-3.2,42,99000,0,0,279,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,-2.7,44,98900,0,0,279,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,-2.3,49,98900,0,0,275,0,0,0,0,0,0,0,10,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,-2.7,50,98900,0,0,271,0,0,0,0,0,0,0,10,1.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,-2.4,50,98900,0,0,273,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,-3.3,45,99000,23,569,274,8,482,0,1557,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,-3.6,36,99000,239,1398,285,144,582,45,16377,8747,5076,200,280,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-5.7,24,99100,468,1398,297,332,792,67,39107,38404,7905,328,280,1.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-9.7,13,99100,648,1398,311,493,896,78,59642,53074,9487,408,280,0.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-11.8,9,99100,766,1398,321,603,949,83,74087,59284,10256,450,70,0.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,-11.9,8,99000,814,1398,328,648,968,85,80163,61144,10485,463,70,3.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.2,-9.7,10,98900,789,1398,332,624,958,84,76942,59909,10357,456,190,3.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,-7.5,12,98900,692,1398,333,534,917,80,64927,55219,9798,425,160,4.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-5.4,15,98900,530,1398,333,387,832,71,45994,44055,8509,358,180,3.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,-2.7,20,98800,315,1398,331,203,665,53,23348,19668,6154,247,170,3.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,-0.5,25,98800,70,997,329,38,332,21,4123,0,2314,89,170,2.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,0.3,29,98800,0,0,324,0,0,0,0,0,0,0,170,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,2.0,35,98900,0,0,321,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,4.2,44,98800,0,0,318,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,5.2,55,98800,0,0,310,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,2.9,50,98800,0,0,303,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,3.3,53,98800,0,0,302,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,3.3,53,98800,0,0,301,0,0,0,0,0,0,0,360,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,3.2,57,98800,0,0,296,0,0,0,0,0,0,0,360,1.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,3.0,62,98700,0,0,290,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,4.0,64,98600,0,0,293,0,0,0,0,0,0,0,300,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,8.0,1.0 +2016,11,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,4.7,67,98700,0,0,294,0,0,0,0,0,0,0,300,2.0,0,0,14.9,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,6.9,77,98700,0,0,297,0,0,0,0,0,0,0,80,1.3,0,0,9.3,2918,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,7.7,80,98700,0,0,299,0,0,0,0,0,0,0,80,0.0,0,0,16.1,3093,9,999999999,160,0.0000,0,88,999.000,8.0,1.0 +2016,11,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,7.4,80,98700,22,548,297,7,161,5,818,0,528,19,80,0.2,0,0,16.1,3284,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,8.3,81,98700,234,1399,301,113,322,59,12514,5576,6578,267,80,1.3,0,0,16.1,2964,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,8.2,70,98800,463,1399,311,264,455,113,29679,25233,12796,556,110,0.0,0,0,16.1,3398,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,8.0,58,98800,643,1399,322,394,523,153,44948,35477,17587,799,110,0.0,0,0,16.1,3566,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,9.5,58,98800,761,1399,330,482,557,179,55508,39607,20662,964,110,0.5,0,0,16.1,3048,9,999999999,179,0.0000,0,88,999.000,20.0,1.0 +2016,11,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.4,63,98700,810,1399,330,519,570,189,59920,40805,21889,1031,110,3.6,0,0,15.4,2910,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.8,81,98700,785,1399,326,500,564,183,57546,39159,21228,996,170,3.8,0,0,12.0,1960,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,13.0,83,98600,688,1399,326,427,537,163,48812,35724,18738,862,140,4.8,0,0,16.1,798,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,13.1,92,98600,527,1399,319,309,482,128,34868,27897,14466,641,150,4.2,0,0,9.3,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,12.9,93,98500,312,1399,317,162,375,78,17920,11882,8696,362,180,2.1,0,0,15.5,427,9,999999999,229,0.0000,0,88,999.000,3.0,1.0 +2016,11,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,12.2,90,98500,68,987,315,30,187,21,3240,0,2252,87,130,2.4,0,0,11.5,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.5,95,98500,0,0,313,0,0,0,0,0,0,0,130,2.1,0,0,5.8,369,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,13.2,100,98500,0,0,314,0,0,0,0,0,0,0,140,1.8,0,0,3.2,115,9,999999999,229,0.0000,0,88,999.000,6.0,1.0 +2016,11,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.7,99,98500,0,0,311,0,0,0,0,0,0,0,220,1.9,0,0,3.5,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,11,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.8,100,98500,0,0,312,0,0,0,0,0,0,0,110,2.3,0,0,8.9,633,9,999999999,229,0.0000,0,88,999.000,25.0,1.0 +2016,11,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.8,100,98500,0,0,312,0,0,0,0,0,0,0,130,2.6,0,0,5.7,360,9,999999999,229,0.0000,0,88,999.000,8.0,1.0 +2016,11,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.8,100,98500,0,0,312,0,0,0,0,0,0,0,70,2.3,0,0,9.0,217,9,999999999,229,0.0000,0,88,999.000,36.0,1.0 +2016,11,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.8,100,98500,0,0,312,0,0,0,0,0,0,0,150,1.2,0,0,8.9,186,9,999999999,229,0.0000,0,88,999.000,49.0,1.0 +2016,11,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.8,100,98400,0,0,312,0,0,0,0,0,0,0,300,1.4,0,0,3.7,134,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.8,100,98400,0,0,312,0,0,0,0,0,0,0,30,3.5,0,0,13.4,1388,9,999999999,229,0.0000,0,88,999.000,3.0,1.0 +2016,11,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,12.7,100,98400,0,0,311,0,0,0,0,0,0,0,150,3.0,0,0,16.1,2011,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,12.2,100,98300,0,0,308,0,0,0,0,0,0,0,180,0.0,0,0,16.1,3048,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.2,96,98400,0,0,311,0,0,0,0,0,0,0,340,1.3,0,0,15.9,1866,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,12.2,97,98500,0,0,311,0,0,0,0,0,0,0,340,0.0,0,0,14.7,1219,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,12.2,99,98500,20,527,309,6,178,3,712,0,411,14,270,0.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,12.2,95,98600,230,1399,312,115,356,56,12704,4577,6253,253,270,1.5,0,0,16.1,1383,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.1,87,98700,458,1399,317,271,504,106,30518,25658,11948,517,280,1.6,0,0,16.1,1158,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,11.0,76,98700,639,1399,320,405,579,141,46468,36946,16239,734,280,0.0,0,0,16.1,583,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,10.5,69,98700,757,1399,324,497,618,163,57580,42002,18944,877,200,0.3,0,0,16.1,657,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,10.0,62,98600,806,1399,329,535,632,171,62267,43784,20015,935,180,2.7,0,0,16.1,932,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,9.9,59,98600,781,1399,332,516,625,167,59894,43033,19478,906,180,3.1,0,0,16.1,1036,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,9.3,54,98600,685,1399,335,441,595,150,50813,39646,17327,790,180,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,8.4,51,98600,524,1399,334,319,535,119,36248,31399,13550,595,350,1.4,0,0,16.1,1730,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,6.5,47,98600,310,1399,329,166,416,74,18558,14042,8310,344,350,5.0,0,0,16.1,2367,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,5.0,44,98700,67,977,324,30,208,20,3315,0,2237,86,350,4.0,0,0,16.1,1895,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,5.0,45,98700,0,0,322,0,0,0,0,0,0,0,350,3.2,0,0,16.1,1521,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,4.8,46,98800,0,0,320,0,0,0,0,0,0,0,360,3.5,0,0,16.1,1676,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,3.9,45,98900,0,0,316,0,0,0,0,0,0,0,330,2.8,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,3.8,46,98900,0,0,314,0,0,0,0,0,0,0,330,4.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,3.4,46,98900,0,0,311,0,0,0,0,0,0,0,10,7.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,4.0,50,98900,0,0,309,0,0,0,0,0,0,0,10,5.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,67.0,1.0 +2016,11,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,4.5,54,99000,0,0,307,0,0,0,0,0,0,0,10,2.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,5.0,58,99000,0,0,305,0,0,0,0,0,0,0,20,0.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,4.9,63,99000,0,0,299,0,0,0,0,0,0,0,20,3.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,4.6,63,99000,0,0,297,0,0,0,0,0,0,0,360,2.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,5.6,78,99000,0,0,289,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,5.6,83,99000,0,0,286,0,0,0,0,0,0,0,280,0.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,5.6,84,99100,0,0,285,0,0,0,0,0,0,0,280,1.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,5.6,84,99100,18,506,285,5,359,0,709,0,39,1,280,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,5.6,72,99200,226,1400,294,125,470,49,13960,5654,5496,219,280,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,6.1,62,99200,454,1400,306,297,658,84,34163,31755,9639,408,120,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,8.7,63,99300,634,1400,321,446,752,105,52325,43873,12384,546,120,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,7.5,52,99200,753,1400,327,548,801,117,65140,49959,13975,630,120,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,5.3,41,99100,802,1400,332,590,818,121,70632,52597,14589,662,120,1.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,3.1,32,99100,778,1400,334,569,809,119,67975,52433,14314,647,120,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.1,2.7,30,99100,682,1400,338,487,772,110,57521,48410,13082,581,180,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,6.0,38,99100,521,1400,341,352,697,92,40788,37428,10715,461,180,2.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,7.8,46,99100,307,1400,338,183,548,63,20656,15546,7089,289,190,3.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,9.3,54,99100,65,968,334,33,274,20,3611,0,2224,86,160,2.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,9.8,60,99100,0,0,330,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,8.9,61,99100,0,0,323,0,0,0,0,0,0,0,270,1.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,8.9,68,99100,0,0,316,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,8.9,72,99200,0,0,312,0,0,0,0,0,0,0,290,0.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,9.0,76,99100,0,0,309,0,0,0,0,0,0,0,290,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.3,83,99100,0,0,305,0,0,0,0,0,0,0,290,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,8.8,83,99200,0,0,302,0,0,0,0,0,0,0,330,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,8.2,83,99100,0,0,299,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,7.8,87,99100,0,0,294,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,99100,0,0,290,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,7.6,92,99100,0,0,289,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,99100,0,0,287,0,0,0,0,0,0,0,280,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,6.7,90,99100,0,0,287,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,6.8,89,99200,17,485,288,5,198,3,605,0,316,11,300,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,7.4,78,99200,221,1400,299,114,395,52,12721,4772,5796,232,300,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,7.6,61,99300,450,1400,333,230,330,124,25559,19131,13810,603,350,0.6,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,4.1,36,99300,630,1400,332,480,901,75,57870,49211,9064,389,350,4.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,4.9,35,99300,749,1400,339,567,876,98,68345,53058,11875,528,360,7.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,4.3,32,99200,798,1400,343,592,833,117,70984,53308,14076,637,330,4.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.0,3.7,30,99100,774,1400,363,418,337,232,47340,27599,26368,1253,340,6.3,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,2.8,31,99100,679,1400,354,371,365,194,41919,28247,22028,1022,350,9.6,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,3.0,34,99100,519,1400,329,317,543,116,36141,32758,13281,580,350,8.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,3.6,39,99100,305,1400,325,164,416,73,18273,14141,8186,338,350,8.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,4.1,43,99100,64,960,321,27,208,18,3005,0,1960,75,350,10.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,3.6,43,99100,0,0,316,0,0,0,0,0,0,0,350,11.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,2.1,39,99100,0,0,315,0,0,0,0,0,0,0,350,8.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,1.4,37,99100,0,0,314,0,0,0,0,0,0,0,330,4.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,0.1,33,99200,0,0,315,0,0,0,0,0,0,0,290,3.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,0.7,35,99200,0,0,313,0,0,0,0,0,0,0,330,3.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,0.6,35,99200,0,0,313,0,0,0,0,0,0,0,340,7.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,0.9,38,99200,0,0,309,0,0,0,0,0,0,0,10,6.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,0.1,34,99200,0,0,312,0,0,0,0,0,0,0,360,6.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,0.6,36,99200,0,0,311,0,0,0,0,0,0,0,350,8.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,0.5,36,99200,0,0,311,0,0,0,0,0,0,0,350,8.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,0.1,35,99200,0,0,310,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,0.5,38,99200,0,0,308,0,0,0,0,0,0,0,360,6.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,0.0,36,99300,0,0,308,0,0,0,0,0,0,0,350,6.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-0.1,34,99300,15,464,311,4,351,0,594,0,19,1,350,6.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-0.7,30,99400,217,1401,315,117,445,48,13114,5544,5419,215,350,6.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,-1.2,26,99400,445,1401,322,286,631,85,32831,32042,9838,416,350,6.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,-1.9,22,99400,626,1401,328,433,724,109,50695,45603,12848,566,350,9.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,-3.0,19,99300,745,1401,332,533,772,123,63273,51682,14617,658,350,6.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,-3.9,17,99200,794,1401,335,575,789,128,68662,53761,15306,695,360,7.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.8,-3.6,17,99100,771,1401,338,555,781,125,66099,52831,14978,678,340,8.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.7,-2.2,19,99000,676,1401,339,475,745,115,55931,48375,13623,606,350,7.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-2.9,18,99000,516,1401,336,343,672,95,39698,38390,11063,475,350,9.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-5.2,16,99000,303,1401,330,177,526,64,20061,17141,7211,293,350,7.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.7,-7.3,14,99000,63,952,324,32,263,20,3474,0,2187,84,350,7.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,-7.7,14,99000,0,0,320,0,0,0,0,0,0,0,350,7.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-7.2,16,99000,0,0,315,0,0,0,0,0,0,0,350,7.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-7.3,17,99100,0,0,311,0,0,0,0,0,0,0,360,4.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-7.8,16,99100,0,0,310,0,0,0,0,0,0,0,320,2.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-7.3,18,99100,0,0,308,0,0,0,0,0,0,0,330,3.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,-4.2,27,99100,0,0,301,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-2.8,36,99100,0,0,291,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,-2.6,37,99100,0,0,289,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,-1.8,47,99000,0,0,280,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-2.2,47,99000,0,0,277,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,-2.2,49,99000,0,0,276,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,-2.2,50,99000,0,0,275,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,-2.1,55,98900,0,0,269,0,0,0,0,0,0,0,300,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,-1.9,54,99000,14,445,271,4,402,0,772,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,-3.2,39,99100,213,1401,284,129,596,38,14680,4159,4367,170,350,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-2.9,31,99100,441,1401,300,318,828,58,37662,35996,6833,280,350,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,-4.5,20,99100,621,1401,318,483,940,66,58830,51953,8090,343,350,0.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,-11.4,9,99100,741,1401,326,596,996,70,73938,59693,8668,374,350,2.9,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.0,-13.3,7,99000,791,1401,327,644,1017,71,80460,62032,8842,384,80,1.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.5,-13.1,7,99000,768,1401,334,622,1007,70,77418,61067,8769,380,80,2.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,24.8,-12.0,7,98900,673,1401,336,532,966,68,65312,56312,8373,358,140,3.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.6,-9.9,9,98900,514,1401,334,384,878,62,46013,44454,7411,308,160,2.9,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-6.1,14,98900,301,1401,332,198,702,47,22945,18405,5502,219,150,4.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.3,-2.8,21,98900,62,945,328,35,351,20,3862,0,2175,84,160,3.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,-2.5,24,98900,0,0,320,0,0,0,0,0,0,0,160,2.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-0.8,31,98900,0,0,313,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,0.6,40,98900,0,0,305,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,0.7,42,98900,0,0,302,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,1.2,50,98900,0,0,294,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,1.6,54,98800,0,0,291,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,1.3,54,98800,0,0,289,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,2.1,64,98800,0,0,283,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.8,1.7,70,98800,0,0,276,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,1.6,69,98700,0,0,276,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.1,1.1,76,98600,0,0,269,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,1.1,73,98600,0,0,270,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.3,1.0,74,98600,0,0,269,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,0.6,77,98600,13,425,265,3,311,0,444,0,19,1,360,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,0.6,62,98700,209,1402,278,108,395,49,11991,4342,5457,217,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,0.9,51,98800,437,1402,290,276,610,86,31627,30442,9901,418,90,0.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,3.4,48,98700,617,1402,308,451,823,88,53546,46994,10506,455,90,2.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,6.9,56,98600,737,1402,337,399,345,217,45056,27251,24669,1163,160,4.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,7.8,60,98600,787,1402,338,412,301,243,46513,24568,27563,1319,190,4.6,5,5,16.1,1480,9,999999999,160,0.0000,0,88,999.000,10.0,1.0 +2016,11,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,7.8,63,98500,764,1402,334,367,222,246,41237,18337,27771,1327,180,4.6,5,5,13.7,2105,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.9,92,98500,670,1402,319,261,104,211,29110,8035,23668,1107,300,2.4,5,5,3.9,837,9,999999999,189,0.0000,0,88,999.000,3.0,1.0 +2016,11,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,8.7,88,98500,512,1402,316,196,115,154,21721,7658,17124,766,10,0.0,5,5,16.1,958,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,9.4,94,98500,300,1402,316,104,104,82,11430,3528,9022,376,10,2.3,5,5,7.5,475,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.6,94,98600,61,939,317,19,52,17,2097,0,1853,71,260,1.0,5,5,12.2,700,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,9.4,94,98600,0,0,315,0,0,0,0,0,0,0,260,0.8,5,5,16.1,1051,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.8,92,98600,0,0,313,0,0,0,0,0,0,0,330,1.5,5,5,16.1,2955,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.3,89,98700,0,0,313,0,0,0,0,0,0,0,160,0.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.9,97,98700,0,0,293,0,0,0,0,0,0,0,130,0.8,0,0,16.1,640,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,98800,0,0,296,0,0,0,0,0,0,0,120,0.0,0,0,16.1,876,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,98700,0,0,301,0,0,0,0,0,0,0,120,1.6,1,1,16.1,980,9,999999999,170,0.0000,0,88,999.000,40.0,1.0 +2016,11,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,98800,0,0,306,0,0,0,0,0,0,0,130,2.0,2,2,16.1,766,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,8.9,93,98800,0,0,309,0,0,0,0,0,0,0,190,1.5,3,3,16.1,766,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,8.2,86,98900,0,0,312,0,0,0,0,0,0,0,180,1.6,4,4,16.1,628,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,7.8,91,98900,0,0,306,0,0,0,0,0,0,0,180,2.1,4,4,16.1,732,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,7.8,91,98900,0,0,306,0,0,0,0,0,0,0,170,0.0,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,7.9,97,98800,0,0,301,0,0,0,0,0,0,0,170,0.0,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,7.8,93,98900,0,0,303,0,0,0,0,0,0,0,170,0.0,3,3,16.1,702,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,8.3,89,98900,12,405,308,3,90,2,364,0,273,9,190,0.0,3,3,16.1,713,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,8.4,85,98900,205,1402,312,81,179,55,8880,1862,6027,243,190,0.2,3,3,16.1,623,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,9.3,84,98900,432,1402,317,192,214,127,21261,12207,14046,614,190,1.7,3,3,16.1,1279,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,9.8,78,98900,613,1402,325,283,212,190,31525,15665,21310,982,250,4.3,3,3,16.1,1049,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,10.6,80,98800,733,1402,329,351,224,234,39319,17858,26328,1250,250,3.9,3,3,15.1,1562,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,9.4,69,98700,784,1402,334,396,266,247,44599,21701,27987,1341,270,3.6,4,4,16.1,1041,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,8.8,63,98600,761,1402,337,405,323,230,45732,25704,26055,1238,280,4.2,4,4,16.1,1311,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,7.9,55,98500,668,1402,342,384,429,179,43430,31154,20361,939,360,4.8,4,4,16.1,1288,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,5.0,50,98500,510,1402,331,274,374,138,30655,24034,15510,687,10,4.3,4,4,16.1,1304,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,2.7,44,98500,298,1402,327,143,300,79,15793,10754,8770,364,10,10.7,4,4,16.1,2134,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,1.4,42,98600,60,934,322,21,150,15,2360,0,1644,62,10,9.9,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,1.0,42,98600,0,0,319,0,0,0,0,0,0,0,10,8.9,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,0.6,42,98600,0,0,311,0,0,0,0,0,0,0,360,6.8,2,2,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,0.5,44,98700,0,0,298,0,0,0,0,0,0,0,360,7.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-0.2,44,98700,0,0,294,0,0,0,0,0,0,0,360,7.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-1.1,41,98700,0,0,293,0,0,0,0,0,0,0,20,6.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-1.2,41,98800,0,0,293,0,0,0,0,0,0,0,20,3.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,-1.7,40,98700,0,0,291,0,0,0,0,0,0,0,20,8.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,-1.5,45,98700,0,0,284,0,0,0,0,0,0,0,340,2.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,-0.4,53,98700,0,0,281,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,0.7,64,98700,0,0,276,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,1.1,68,98700,0,0,274,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,1.2,71,98700,0,0,272,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,1.6,73,98700,0,0,273,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,1.3,70,98700,11,385,274,2,106,1,254,0,152,5,290,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,2.2,67,98700,201,1403,291,83,211,53,9192,2451,5881,236,290,1.3,2,2,16.1,2134,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,2.5,58,98700,428,1403,307,207,279,121,22940,16357,13528,587,120,0.3,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,4.0,51,98700,609,1403,321,344,417,163,38876,29758,18475,838,120,2.2,3,3,16.1,2286,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,4.3,48,98600,729,1403,323,428,449,194,48728,34268,22245,1038,140,2.5,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,4.0,44,98500,780,1403,317,554,755,134,65583,50341,15948,727,170,2.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,4.5,45,98300,759,1403,320,519,688,146,60738,47079,17198,788,170,3.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,5.1,47,98300,666,1403,331,388,451,174,44075,32906,19885,914,210,3.0,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,5.6,50,98200,508,1403,319,328,630,100,37686,34724,11530,498,210,1.8,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,6.2,52,98200,297,1403,329,148,338,76,16374,11239,8479,351,210,0.1,2,2,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,5.9,52,98200,59,929,323,24,169,16,2609,0,1822,69,360,0.9,1,1,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,5.9,55,98200,0,0,314,0,0,0,0,0,0,0,360,2.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,3.1,47,98200,0,0,308,0,0,0,0,0,0,0,20,6.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,2.5,47,98200,0,0,305,0,0,0,0,0,0,0,360,11.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,3.8,53,98300,0,0,304,0,0,0,0,0,0,0,360,5.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,3.3,51,98400,0,0,303,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,3.5,54,98400,0,0,302,0,0,0,0,0,0,0,320,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,4.3,59,98400,0,0,300,0,0,0,0,0,0,0,320,2.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,3.7,56,98400,0,0,300,0,0,0,0,0,0,0,340,7.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,2.6,52,98400,0,0,299,0,0,0,0,0,0,0,10,9.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,1.7,49,98400,0,0,297,0,0,0,0,0,0,0,10,5.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,1.4,49,98400,0,0,296,0,0,0,0,0,0,0,10,6.1,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-0.2,43,98500,0,0,296,0,0,0,0,0,0,0,360,7.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-1.2,39,98600,0,0,295,0,0,0,0,0,0,0,360,6.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-2.0,36,98600,10,365,295,2,288,0,317,0,6,0,360,8.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,-4.1,28,98700,197,1403,297,104,433,44,11688,3121,4916,194,350,8.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,-4.0,25,98800,424,1403,306,271,628,81,31111,30745,9330,391,360,6.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,1.2,36,98900,605,1403,315,418,727,105,48942,44157,12289,538,360,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,-2.4,24,98900,726,1403,320,520,777,118,61678,51214,14059,630,350,3.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-6.4,17,98800,777,1403,318,564,795,123,67300,54001,14768,667,350,7.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-8.0,14,98700,756,1403,320,545,788,121,64983,53385,14491,652,350,8.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,-9.4,13,98700,663,1403,316,467,752,111,55086,49248,13189,583,330,7.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-9.2,13,98700,506,1403,315,336,677,92,39026,38762,10726,459,340,7.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,-9.1,14,98700,295,1403,312,173,529,61,19564,16656,6974,283,350,6.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,-8.3,16,98700,59,925,308,30,265,19,3316,0,2109,81,360,6.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-8.2,17,98700,0,0,304,0,0,0,0,0,0,0,360,6.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,-7.7,20,98800,0,0,298,0,0,0,0,0,0,0,360,4.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-7.2,22,98800,0,0,295,0,0,0,0,0,0,0,360,4.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-7.2,23,98900,0,0,292,0,0,0,0,0,0,0,360,4.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,-7.0,24,98900,0,0,290,0,0,0,0,0,0,0,20,3.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,-5.3,31,99000,0,0,285,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,-3.2,39,99000,0,0,282,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,-2.6,46,99000,0,0,277,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,-1.6,54,99000,0,0,274,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,-1.0,58,99100,0,0,272,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,-0.7,62,99000,0,0,271,0,0,0,0,0,0,0,140,1.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.9,-1.1,61,99000,0,0,269,0,0,0,0,0,0,0,310,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.0,-1.1,64,99000,0,0,266,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.4,-1.2,62,99000,9,347,267,1,89,0,136,0,61,2,310,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,-1.7,49,99100,193,1404,278,109,512,39,12304,1541,4397,172,130,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,-1.9,39,99100,420,1404,291,287,735,66,33372,32367,7762,321,130,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-3.6,28,99100,602,1404,301,444,846,82,52998,48516,9753,419,130,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,-5.3,20,99000,722,1404,312,553,901,89,67018,55643,10824,475,130,1.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,-6.8,17,98900,774,1404,315,600,922,92,73246,58142,11205,495,200,1.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-6.8,15,98800,753,1404,321,581,914,91,70724,57287,11066,488,140,1.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,-4.4,19,98700,661,1404,323,497,874,85,59820,52324,10308,447,140,4.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,-4.1,21,98700,505,1404,319,358,792,74,42250,41069,8738,368,160,4.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,-3.3,24,98700,294,1404,314,184,625,53,21040,16753,6077,244,150,2.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,-2.8,27,98700,58,922,310,32,312,19,3518,0,2107,81,280,2.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,-3.2,27,98700,0,0,306,0,0,0,0,0,0,0,280,2.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,-2.5,31,98800,0,0,301,0,0,0,0,0,0,0,250,1.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-0.5,39,98700,0,0,299,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,0.3,46,98700,0,0,293,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,1.8,56,98700,0,0,290,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,2.3,63,98700,0,0,285,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,11,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,2.7,64,98700,0,0,286,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,2.3,68,98700,0,0,281,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,2.8,69,98700,0,0,283,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,2.9,69,98600,0,0,282,0,0,0,0,0,0,0,250,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,3.2,73,98600,0,0,281,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,2.8,73,98600,0,0,279,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,2.8,71,98600,0,0,286,0,0,0,0,0,0,0,350,1.3,1,1,16.1,6096,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.5,2.9,73,98600,8,328,289,1,126,0,139,0,43,1,350,0.0,2,2,16.1,5867,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,3.1,64,98700,189,1404,301,78,210,50,8594,1549,5508,220,350,0.0,3,3,16.1,4572,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,2.2,55,98800,416,1404,308,195,258,119,21653,14811,13232,572,140,0.2,4,4,16.1,4572,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,2.3,47,98800,598,1404,320,319,352,169,35871,25741,19115,868,140,1.5,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,2.2,40,98700,719,1404,313,501,729,128,58944,48223,15109,681,140,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,-1.2,28,98600,771,1404,316,575,849,109,69164,54719,13152,589,140,2.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,-1.8,26,98600,751,1404,318,557,839,108,66758,53963,12993,580,180,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-2.3,24,98500,659,1404,319,480,815,97,57131,50110,11620,509,180,0.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-3.0,23,98500,503,1404,319,350,758,79,41074,39960,9275,392,180,2.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,-2.5,25,98400,293,1404,317,185,641,51,21218,16543,5902,236,330,3.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-1.3,29,98500,58,920,314,28,633,2,3648,0,261,9,20,2.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,1.8,39,98500,0,0,313,0,0,0,0,0,0,0,20,2.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,2.0,44,98500,0,0,306,0,0,0,0,0,0,0,300,4.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,0.7,44,98500,0,0,299,0,0,0,0,0,0,0,350,6.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,1.0,47,98500,0,0,297,0,0,0,0,0,0,0,360,6.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,0.5,45,98600,0,0,296,0,0,0,0,0,0,0,350,6.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,0.2,44,98600,0,0,296,0,0,0,0,0,0,0,360,6.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,1,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,1.1,49,98600,0,0,294,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,1.0,50,98700,0,0,293,0,0,0,0,0,0,0,20,4.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,0.4,46,98700,0,0,294,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,-1.1,42,98700,0,0,291,0,0,0,0,0,0,0,10,6.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,-4.1,33,98700,0,0,289,0,0,0,0,0,0,0,350,4.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,-5.4,31,98700,0,0,284,0,0,0,0,0,0,0,310,3.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,-7.9,23,98700,0,0,295,0,0,0,0,0,0,0,20,8.7,2,2,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,-8.3,23,98800,7,309,291,1,173,0,145,0,22,1,20,5.4,1,1,16.1,1036,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-8.6,21,98800,185,1404,287,95,399,43,10624,2060,4763,187,10,7.5,0,0,15.4,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,-10.6,17,98900,413,1404,289,257,591,83,29352,29477,9521,399,30,9.5,0,0,11.0,975,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-10.4,16,98900,594,1404,292,401,688,110,46732,44061,12830,562,30,11.0,0,0,9.7,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-10.9,15,98900,716,1404,295,501,737,125,59143,50622,14854,667,40,10.4,0,0,10.8,884,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-12.4,13,98900,768,1404,296,545,755,132,64677,52959,15681,711,50,10.2,0,0,14.5,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-13.4,12,98900,748,1404,295,528,749,129,62578,52251,15368,694,40,9.4,0,0,14.7,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,-14.1,11,98800,658,1404,294,453,714,118,53131,48047,13918,618,50,10.4,0,0,16.1,945,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,-15.2,10,98900,502,1404,293,326,643,97,37699,37835,11196,480,50,10.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-16.0,10,98900,292,1404,290,167,501,63,18896,16321,7141,290,60,8.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-15.8,10,98900,58,918,287,29,250,19,3198,0,2080,80,40,7.9,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-15.6,11,98900,0,0,286,0,0,0,0,0,0,0,40,7.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-15.7,11,98900,0,0,286,0,0,0,0,0,0,0,30,7.5,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-16.0,10,98900,0,0,285,0,0,0,0,0,0,0,40,8.9,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,-15.7,11,99000,0,0,284,0,0,0,0,0,0,0,30,7.0,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-16.2,10,99000,0,0,296,0,0,0,0,0,0,0,40,8.7,2,2,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-16.6,10,99000,0,0,286,0,0,0,0,0,0,0,20,8.1,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,2,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-16.1,10,99000,0,0,285,0,0,0,0,0,0,0,30,7.4,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,-15.8,11,99000,0,0,289,0,0,0,0,0,0,0,30,9.1,1,1,16.1,884,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-16.8,10,99000,0,0,294,0,0,0,0,0,0,0,10,10.9,2,2,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-17.2,9,99000,0,0,284,0,0,0,0,0,0,0,10,10.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-17.4,9,99000,0,0,284,0,0,0,0,0,0,0,10,8.0,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,-18.0,9,99000,0,0,282,0,0,0,0,0,0,0,20,6.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,-16.2,11,99100,0,0,281,0,0,0,0,0,0,0,360,6.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-16.4,10,99100,6,291,282,1,227,0,165,0,3,0,250,4.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-15.0,12,99100,181,1405,283,96,439,40,10816,1579,4480,175,360,5.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,-14.7,11,99200,409,1405,289,264,647,75,30370,30974,8702,362,350,4.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-13.1,12,99200,591,1405,296,413,752,97,48629,46434,11463,497,110,1.3,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,-12.0,12,99100,713,1405,302,518,805,109,61721,53203,13086,581,90,0.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,-10.9,11,99000,766,1405,312,564,825,114,67591,55385,13725,615,90,3.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,-9.7,12,99000,746,1405,316,547,818,112,65416,54440,13491,603,100,2.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.0,-8.0,14,98900,656,1405,320,469,781,104,55502,49829,12341,543,100,2.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.8,-5.6,17,98900,501,1405,322,338,705,87,39319,38810,10136,431,140,2.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.1,-5.5,18,98900,292,1405,319,173,552,59,19653,16146,6684,270,130,3.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-6.9,17,98900,57,917,314,30,276,19,3303,0,2078,80,20,4.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-9.9,14,98900,0,0,308,0,0,0,0,0,0,0,20,3.9,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,-9.9,14,98900,0,0,306,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,-12.9,11,98900,0,0,302,0,0,0,0,0,0,0,360,7.9,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-12.8,12,98900,0,0,299,0,0,0,0,0,0,0,50,2.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.1,-10.2,16,98900,0,0,297,0,0,0,0,0,0,0,50,2.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,-10.9,14,99000,0,0,297,0,0,0,0,0,0,0,10,3.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,3,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-9.2,18,99000,0,0,293,0,0,0,0,0,0,0,10,2.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,-4.7,32,98900,0,0,287,0,0,0,0,0,0,0,10,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,-5.8,29,98900,0,0,286,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,-3.7,42,98900,0,0,275,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,-2.8,49,98900,0,0,272,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,-3.0,45,98900,0,0,276,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,-3.8,40,98900,0,0,278,0,0,0,0,0,0,0,150,0.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-3.1,44,99000,5,274,276,0,0,0,0,0,0,0,150,1.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,-2.4,38,99000,178,1405,290,101,525,35,11447,0,3950,153,150,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,-3.6,26,99000,405,1405,305,281,765,60,32818,31592,7036,288,170,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-5.7,18,99000,588,1405,315,442,883,72,53040,48985,8730,370,170,1.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-6.3,15,99000,710,1405,328,554,941,78,67638,56429,9599,416,170,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.9,-6.8,13,98900,763,1405,334,604,964,80,74248,58941,9912,433,80,0.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.4,-4.5,15,98800,744,1405,340,586,956,80,71875,57698,9806,428,80,2.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.8,-5.0,14,98800,654,1405,341,503,916,76,60907,53193,9234,397,80,1.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,-4.9,15,98800,500,1405,338,363,831,67,43016,41649,7966,332,130,2.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,-4.4,17,98700,291,1405,331,186,659,49,21369,16577,5692,227,130,3.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.1,-4.4,18,98700,57,917,325,32,330,19,3550,0,2092,81,80,2.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,-4.5,20,98700,0,0,319,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,-4.7,21,98700,0,0,313,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,-2.7,26,98700,0,0,311,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,-2.0,30,98700,0,0,307,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-0.4,40,98700,0,0,299,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,0.7,46,98700,0,0,296,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,4,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,1.3,52,98700,0,0,292,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,2.1,59,98600,0,0,288,0,0,0,0,0,0,0,230,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,1.7,66,98600,0,0,280,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,1.6,66,98500,0,0,279,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.1,1.1,66,98500,0,0,276,0,0,0,0,0,0,0,230,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,1.1,68,98500,0,0,274,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,1.1,71,98500,0,0,272,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,1.1,69,98600,5,257,274,0,0,0,0,0,0,0,230,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,1.1,59,98600,174,1406,283,90,407,40,10041,0,4423,173,130,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,1.2,48,98700,402,1406,296,265,685,69,30582,29048,8009,331,130,0.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,2.5,45,98700,584,1406,307,418,791,89,49269,44712,10495,453,130,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,7.4,58,98700,707,1406,336,400,406,196,45281,30625,22297,1040,110,1.3,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,8.1,55,98600,761,1406,327,532,731,136,62583,47653,16105,735,110,0.4,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,7.4,50,98500,742,1406,328,523,745,129,61535,47908,15288,693,110,2.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,8.3,52,98500,653,1406,331,455,737,113,53266,44353,13241,588,150,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,8.3,53,98500,499,1406,331,329,668,92,37940,34432,10651,457,160,2.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,8.5,57,98500,291,1406,326,168,511,62,18848,13108,6984,285,150,2.6,0,0,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,8.9,64,98500,57,917,321,24,502,4,3009,0,502,17,180,2.9,0,0,15.2,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,9.4,72,98500,0,0,315,0,0,0,0,0,0,0,180,2.6,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,9.7,74,98500,0,0,315,0,0,0,0,0,0,0,140,0.0,0,0,15.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,10.7,85,98500,0,0,311,0,0,0,0,0,0,0,140,1.5,0,0,12.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,98600,0,0,307,0,0,0,0,0,0,0,120,1.5,0,0,8.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,10.8,92,98600,0,0,306,0,0,0,0,0,0,0,70,1.3,0,0,8.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.4,92,98600,0,0,312,0,0,0,0,0,0,0,70,0.0,3,3,8.0,579,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,5,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,9.8,88,98600,0,0,317,0,0,0,0,0,0,0,70,0.0,3,3,9.9,515,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.9,80,98600,0,0,318,0,0,0,0,0,0,0,10,0.0,3,3,11.3,488,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.5,84,98600,0,0,321,0,0,0,0,0,0,0,10,0.0,4,4,11.5,801,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,9.7,88,98600,0,0,319,0,0,0,0,0,0,0,10,0.0,4,4,12.5,853,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,8.0,81,98600,0,0,317,0,0,0,0,0,0,0,10,1.8,5,5,12.9,827,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,6.1,72,98600,0,0,314,0,0,0,0,0,0,0,10,0.0,5,5,12.9,853,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,6.1,75,98600,0,0,312,0,0,0,0,0,0,0,10,0.0,5,5,13.5,853,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,6.4,80,98700,4,240,305,0,0,0,0,0,0,0,10,0.0,3,3,11.1,792,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,6.9,77,98700,171,1406,310,61,137,45,6727,0,4917,195,10,0.0,3,3,11.0,666,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,7.9,74,98800,398,1406,318,180,232,114,19875,12258,12672,547,190,0.0,3,3,9.7,1036,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,8.8,69,98800,581,1406,329,302,327,167,33814,22851,18775,852,190,0.0,3,3,13.4,1110,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,8.3,64,98800,704,1406,330,373,327,209,41938,25251,23661,1109,190,0.0,3,3,16.1,1207,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,8.2,63,98700,758,1406,334,396,303,232,44569,24313,26307,1250,190,0.5,4,4,16.1,1320,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,7.8,55,98600,741,1406,341,407,365,215,46004,28446,24421,1151,190,3.0,4,4,16.1,1362,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,7.9,55,98600,652,1406,342,369,413,177,41625,29858,20073,923,190,2.8,4,4,16.1,1297,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,8.3,58,98600,498,1406,340,270,389,132,30241,23811,14865,656,190,4.1,4,4,16.1,1219,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,7.9,60,98600,291,1406,338,127,227,80,13959,7534,8837,368,170,4.0,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,8.0,63,98600,57,919,335,18,113,14,2056,0,1544,58,180,3.2,5,5,16.1,1372,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,7.9,65,98600,0,0,332,0,0,0,0,0,0,0,180,2.4,5,5,16.1,1339,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,8.5,69,98700,0,0,332,0,0,0,0,0,0,0,270,1.6,5,5,16.1,1158,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,9.4,78,98700,0,0,326,0,0,0,0,0,0,0,300,1.8,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,9.4,80,98700,0,0,324,0,0,0,0,0,0,0,300,0.0,4,4,16.1,1022,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.3,84,98700,0,0,318,0,0,0,0,0,0,0,360,0.0,3,3,16.1,945,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,8.2,83,98800,0,0,309,0,0,0,0,0,0,0,360,0.4,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,6,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,4.9,68,98800,0,0,294,0,0,0,0,0,0,0,360,2.4,0,0,15.9,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,7.8,87,98800,0,0,294,0,0,0,0,0,0,0,250,1.3,0,0,14.2,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,6.9,86,98800,0,0,290,0,0,0,0,0,0,0,320,0.2,0,0,13.4,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,2.4,59,98800,0,0,290,0,0,0,0,0,0,0,320,1.3,0,0,15.9,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,6.2,89,98800,0,0,284,0,0,0,0,0,0,0,340,0.2,0,0,14.7,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,3.5,71,98800,0,0,284,0,0,0,0,0,0,0,340,1.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,4.6,76,98900,0,0,286,0,0,0,0,0,0,0,340,1.3,0,0,15.9,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,5.6,85,98900,4,224,284,0,0,0,0,0,0,0,340,0.0,0,0,14.7,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,5.6,79,99000,168,1406,289,85,395,38,9495,0,4271,167,30,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,5.4,70,99100,395,1406,295,246,596,78,28006,25664,8951,374,30,0.2,0,0,16.1,2695,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,4.6,53,99100,578,1406,309,392,699,104,45519,41045,12157,531,30,1.3,0,0,16.1,1065,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,5.3,52,99100,701,1406,314,494,750,120,58135,47600,14130,633,30,0.0,0,0,16.1,3048,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,3.6,43,99100,756,1406,317,540,771,126,63988,50458,14945,676,340,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,2.0,37,99000,739,1406,318,526,765,124,62182,50202,14691,662,340,1.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,0.7,32,99000,651,1406,321,452,731,114,52956,46339,13362,592,120,1.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,-0.3,30,99000,498,1406,318,326,659,93,37668,36332,10812,463,150,2.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,3.7,44,99000,291,1406,317,168,515,62,18904,14201,6955,283,170,4.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,7.5,61,99100,57,921,316,29,257,19,3202,0,2065,80,230,3.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,7.2,61,99100,0,0,314,0,0,0,0,0,0,0,230,2.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,7.2,67,99200,0,0,323,0,0,0,0,0,0,0,270,1.8,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,7.2,69,99200,0,0,319,0,0,0,0,0,0,0,270,0.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,7.2,73,99200,0,0,312,0,0,0,0,0,0,0,270,0.0,2,2,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,7.1,77,99200,0,0,298,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,6.6,80,99200,0,0,293,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,7,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,5.8,79,99200,0,0,290,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,4.1,73,99300,0,0,286,0,0,0,0,0,0,0,280,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,4.8,81,99300,0,0,292,0,0,0,0,0,0,0,280,0.2,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,3.9,78,99200,0,0,281,0,0,0,0,0,0,0,280,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,3.9,81,99200,0,0,290,0,0,0,0,0,0,0,280,0.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,3.9,74,99300,0,0,296,0,0,0,0,0,0,0,360,0.2,3,3,16.1,1981,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,3.8,72,99300,0,0,297,0,0,0,0,0,0,0,360,1.5,3,3,16.1,1958,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,3.4,65,99400,3,208,303,0,0,0,0,0,0,0,60,1.3,4,4,16.1,1829,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,4.0,62,99500,164,1407,310,66,202,43,7316,0,4734,187,60,0.0,4,4,16.1,1829,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,4.1,53,99500,392,1407,322,201,350,104,22407,17881,11604,496,60,0.2,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,2.2,40,99600,575,1407,313,401,748,95,46917,43054,11149,483,160,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,2.1,36,99600,699,1407,320,503,790,110,59585,49795,13131,584,160,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,1.7,33,99500,754,1407,342,444,453,201,50713,35424,23084,1082,160,2.1,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.5,2.2,32,99500,737,1407,330,537,807,114,63878,51566,13577,608,200,2.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,5.2,38,99400,650,1407,335,463,780,103,54664,46686,12222,538,130,2.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,5.8,41,99400,497,1407,333,334,696,88,38613,35879,10176,434,190,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,4.9,41,99500,291,1407,346,140,308,76,15480,10201,8472,351,290,2.6,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,3.9,40,99500,58,923,337,22,154,16,2467,0,1774,68,280,2.3,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,4.1,44,99500,0,0,329,0,0,0,0,0,0,0,280,2.2,2,2,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,5.3,51,99500,0,0,315,0,0,0,0,0,0,0,260,2.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,7.2,63,99500,0,0,312,0,0,0,0,0,0,0,260,2.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,10.1,82,99600,0,0,311,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,99600,0,0,309,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,10.6,90,99600,0,0,317,0,0,0,0,0,0,0,310,1.3,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,8,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,10.4,90,99600,0,0,306,0,0,0,0,0,0,0,360,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,9.1,91,99600,0,0,298,0,0,0,0,0,0,0,360,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,7.2,82,99600,0,0,294,0,0,0,0,0,0,0,10,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,7.2,79,99600,0,0,303,0,0,0,0,0,0,0,360,1.2,1,1,16.1,2286,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,7.2,80,99500,0,0,306,0,0,0,0,0,0,0,360,0.0,2,2,16.1,2286,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,7.1,84,99500,0,0,302,0,0,0,0,0,0,0,340,0.2,2,2,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,6.8,89,99500,0,0,287,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,7.4,86,99500,3,193,293,0,0,0,0,0,0,0,330,0.3,0,0,16.1,2308,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,8.6,82,99600,161,1407,302,78,350,38,8685,0,4258,167,330,1.8,0,0,16.1,2438,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,10.6,79,99600,389,1407,315,232,536,84,26156,22243,9484,399,330,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,10.7,70,99600,572,1407,325,372,633,115,42779,36515,13257,584,110,0.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.1,67,99600,696,1407,329,471,681,134,54775,42789,15662,710,110,3.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.2,67,99500,752,1407,331,517,700,142,60367,45010,16700,765,100,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,11.7,63,99400,736,1407,338,504,695,140,58730,44171,16396,749,90,2.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,11.7,61,99300,649,1407,340,433,664,127,50101,40320,14758,662,160,2.2,0,0,15.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.8,11.7,63,99300,497,1407,337,314,598,103,35761,31039,11731,508,160,3.0,0,0,12.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.6,65,99300,291,1407,334,162,465,66,18056,11733,7350,301,140,2.1,0,0,12.8,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,11.7,69,99300,58,927,331,28,233,19,3099,0,2063,80,140,1.8,0,0,11.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.8,73,99300,0,0,327,0,0,0,0,0,0,0,140,1.3,0,0,11.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.4,80,99300,0,0,325,0,0,0,0,0,0,0,140,0.0,0,0,14.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,13.3,90,99300,0,0,321,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,13.2,94,99300,0,0,318,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,12.8,94,99300,0,0,329,0,0,0,0,0,0,0,140,0.0,3,3,15.1,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,12.1,93,99400,0,0,331,0,0,0,0,0,0,0,140,0.0,5,5,12.6,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,9,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.6,93,99300,0,0,328,0,0,0,0,0,0,0,340,0.0,5,5,11.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,99300,0,0,323,0,0,0,0,0,0,0,340,0.0,5,5,9.7,147,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,11.3,96,99200,0,0,324,0,0,0,0,0,0,0,340,0.0,5,5,9.7,134,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,11.7,96,99300,0,0,327,0,0,0,0,0,0,0,340,0.0,5,5,9.7,126,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.7,94,99200,0,0,328,0,0,0,0,0,0,0,340,0.2,5,5,9.2,147,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.7,97,99200,0,0,326,0,0,0,0,0,0,0,340,1.3,5,5,6.1,117,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,11.7,98,99200,0,0,325,0,0,0,0,0,0,0,340,0.0,5,5,4.0,79,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.7,100,99300,2,178,324,0,0,0,0,0,0,0,340,0.0,5,5,2.4,61,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,12.0,99,99300,158,1407,327,47,78,38,5213,0,4255,167,170,0.0,5,5,2.6,78,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.7,92,99300,386,1407,330,149,137,111,16360,6697,12294,530,170,0.3,5,5,3.5,167,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,11.7,83,99400,570,1407,337,254,195,175,28216,13627,19539,891,170,0.9,5,5,4.8,280,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,11.6,76,99300,694,1407,324,433,546,163,49464,36869,18755,863,170,1.8,0,0,6.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,11.1,65,99300,751,1407,333,515,699,142,60161,44967,16667,763,170,0.0,0,0,6.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,11.1,63,99200,735,1407,334,509,719,134,59631,45277,15740,716,130,0.6,0,0,8.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.1,63,99100,648,1407,334,441,697,120,51281,41723,13996,625,110,2.6,0,0,7.8,834,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.3,66,99100,497,1407,332,309,574,106,35104,30434,12097,525,170,2.6,0,0,6.4,722,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.3,11.6,69,99100,291,1407,330,162,469,65,18130,11793,7326,300,180,2.6,0,0,6.6,684,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.9,72,99000,58,931,329,26,234,17,2902,0,1838,70,180,2.9,0,0,7.4,775,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.8,73,99000,0,0,334,0,0,0,0,0,0,0,180,3.0,1,1,7.8,830,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.2,77,99100,0,0,332,0,0,0,0,0,0,0,150,2.2,1,1,6.4,696,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.2,75,99100,0,0,334,0,0,0,0,0,0,0,150,0.4,1,1,6.7,671,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.2,79,99100,0,0,331,0,0,0,0,0,0,0,150,2.2,1,1,8.0,803,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,99100,0,0,327,0,0,0,0,0,0,0,140,1.6,1,1,6.4,732,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,12.8,87,99100,0,0,332,0,0,0,0,0,0,0,90,2.4,2,2,6.4,903,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,10,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.9,91,99100,0,0,329,0,0,0,0,0,0,0,130,2.1,2,2,6.4,461,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,13.6,95,99100,0,0,330,0,0,0,0,0,0,0,130,2.1,2,2,5.6,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.9,93,99100,0,0,333,0,0,0,0,0,0,0,100,1.5,2,2,7.8,239,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,13.8,94,99100,0,0,332,0,0,0,0,0,0,0,70,1.3,2,2,6.4,241,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,13.6,95,99100,0,0,333,0,0,0,0,0,0,0,160,1.8,3,3,5.7,317,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,13.9,97,99100,0,0,334,0,0,0,0,0,0,0,120,0.0,3,3,6.4,292,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,13.9,97,99100,0,0,334,0,0,0,0,0,0,0,120,0.0,3,3,6.4,430,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.9,93,99100,2,163,336,0,0,0,0,0,0,0,120,0.0,3,3,7.5,526,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,13.9,92,99200,155,1408,337,55,140,40,6078,0,4405,174,120,0.0,3,3,5.1,295,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,13.8,88,99300,383,1408,343,161,185,111,17681,8731,12207,526,120,0.3,4,4,6.4,579,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,13.2,80,99300,567,1408,346,258,208,174,28556,14222,19366,883,120,2.0,4,4,6.4,565,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,12.7,76,99200,692,1408,347,325,216,219,36286,16514,24581,1157,110,1.3,4,4,6.7,506,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,12.2,69,99100,749,1408,351,383,283,232,42943,22090,26182,1246,120,0.2,4,4,8.3,619,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,12.2,64,99000,734,1408,358,405,372,212,45698,27848,23977,1131,120,1.3,4,4,9.9,671,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,12.2,63,99000,648,1408,361,352,366,184,39544,25985,20716,957,140,0.1,5,5,11.3,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,12.8,69,98900,497,1408,358,249,302,142,27570,18319,15807,703,140,3.3,5,5,12.9,880,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,13.0,74,98900,292,1408,354,121,195,81,13315,5965,8916,372,170,3.6,5,5,12.9,942,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,13.1,77,98900,59,936,351,19,98,15,2077,0,1627,62,180,2.8,5,5,13.8,876,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,13.2,80,98900,0,0,348,0,0,0,0,0,0,0,180,2.1,5,5,14.7,813,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,12.8,80,98900,0,0,346,0,0,0,0,0,0,0,170,2.0,5,5,16.1,743,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,12.9,79,99000,0,0,348,0,0,0,0,0,0,0,130,1.3,5,5,15.1,640,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,13.2,83,99000,0,0,346,0,0,0,0,0,0,0,130,0.3,5,5,9.9,653,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,12.8,83,99000,0,0,343,0,0,0,0,0,0,0,130,1.8,5,5,9.1,732,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,13.3,90,99000,0,0,336,0,0,0,0,0,0,0,170,0.0,3,3,4.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,11,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,13.3,91,99000,0,0,337,0,0,0,0,0,0,0,140,1.3,4,4,9.4,550,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,13.3,93,99000,0,0,338,0,0,0,0,0,0,0,140,0.0,5,5,8.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,13.3,96,99000,0,0,336,0,0,0,0,0,0,0,50,0.0,5,5,8.0,545,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,13.2,96,99000,0,0,335,0,0,0,0,0,0,0,50,0.0,5,5,7.9,776,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,12.2,91,98900,0,0,334,0,0,0,0,0,0,0,50,0.0,5,5,10.8,848,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,12.0,97,98900,0,0,328,0,0,0,0,0,0,0,50,0.0,5,5,8.0,823,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,11.3,95,99000,0,0,325,0,0,0,0,0,0,0,50,0.0,5,5,8.0,488,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.2,87,99000,2,149,325,0,0,0,0,0,0,0,360,1.3,5,5,9.2,510,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,11.3,89,99100,152,1408,329,48,95,38,5314,0,4192,165,350,0.0,5,5,6.1,588,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,12.8,91,99200,380,1408,337,156,171,110,17130,8112,12118,522,350,1.9,5,5,4.2,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,12.6,85,99200,564,1408,341,255,203,173,28229,13962,19284,878,30,0.0,5,5,5.3,387,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,12.2,78,99100,690,1408,345,326,221,218,36401,16946,24443,1150,30,0.0,5,5,5.1,762,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,11.0,66,99000,747,1408,337,420,393,212,47556,29711,24083,1137,20,0.2,1,1,10.1,3048,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,10.5,60,99000,733,1408,335,506,712,135,59156,45237,15897,723,20,1.3,0,0,13.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,10.3,56,98900,648,1408,338,457,760,107,53551,44008,12591,557,160,0.5,0,0,14.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,12.1,70,98900,497,1408,333,312,589,104,35493,30597,11884,516,160,3.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,11.8,71,98900,292,1408,330,161,451,67,17918,11654,7499,308,150,3.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,11.7,73,98900,60,942,327,26,226,16,2836,0,1787,68,160,2.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.7,76,98900,0,0,325,0,0,0,0,0,0,0,160,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.8,79,99000,0,0,322,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.2,84,99000,0,0,320,0,0,0,0,0,0,0,80,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,12.1,87,99000,0,0,328,0,0,0,0,0,0,0,110,1.5,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,99000,0,0,315,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.7,87,99000,0,0,315,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,12,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,11.7,89,99100,0,0,313,0,0,0,0,0,0,0,100,0.0,0,0,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,11.7,88,99000,0,0,314,0,0,0,0,0,0,0,100,0.0,0,0,15.2,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,11.6,93,99000,0,0,310,0,0,0,0,0,0,0,100,0.0,0,0,14.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.1,93,99000,0,0,323,0,0,0,0,0,0,0,160,0.0,4,4,14.4,333,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,11.2,93,99000,0,0,324,0,0,0,0,0,0,0,160,0.0,4,4,12.2,260,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.8,94,99000,0,0,324,0,0,0,0,0,0,0,160,0.0,3,3,7.8,192,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,12.2,96,99100,0,0,325,0,0,0,0,0,0,0,160,0.0,3,3,6.4,244,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.2,93,99100,1,136,324,0,0,0,0,0,0,0,160,0.3,2,2,6.2,244,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.2,93,99100,149,1408,324,54,146,39,5942,0,4253,168,160,1.3,2,2,5.4,265,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,11.7,86,99200,377,1408,322,170,235,107,18727,11110,11845,508,160,0.0,1,1,5.1,327,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,11.7,83,99200,562,1408,324,269,250,169,29874,17116,18868,857,160,0.0,1,1,6.4,457,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,11.7,79,99200,688,1408,321,407,469,178,46139,32809,20253,937,160,0.0,0,0,6.4,461,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,11.7,71,99100,746,1408,329,478,585,169,55078,39878,19505,905,160,0.2,0,0,6.7,488,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.6,65,99000,732,1408,334,507,718,134,59303,44937,15720,715,160,1.3,0,0,6.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,11.1,64,99000,647,1408,333,445,717,116,51902,42331,13537,603,160,0.0,0,0,8.5,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.3,63,99000,497,1408,336,330,680,90,38039,33430,10426,447,160,0.6,0,0,11.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,11.6,68,99000,293,1408,331,165,484,65,18505,12140,7252,297,160,3.9,0,0,9.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,11.9,75,98900,60,948,326,27,242,17,2974,0,1837,70,180,2.6,0,0,9.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,11.7,78,98900,0,0,323,0,0,0,0,0,0,0,180,1.3,0,0,10.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,11.7,78,99000,0,0,322,0,0,0,0,0,0,0,180,0.0,0,0,12.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,11.6,81,99000,0,0,319,0,0,0,0,0,0,0,180,0.0,0,0,11.3,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.1,84,99000,0,0,314,0,0,0,0,0,0,0,180,0.0,0,0,11.3,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,11.0,87,99000,0,0,311,0,0,0,0,0,0,0,300,0.0,0,0,11.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.5,90,99100,0,0,306,0,0,0,0,0,0,0,300,0.0,0,0,9.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,13,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,10.0,90,99100,0,0,304,0,0,0,0,0,0,0,300,0.0,0,0,9.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,9.9,93,99100,0,0,301,0,0,0,0,0,0,0,300,0.2,0,0,8.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,9.3,93,99000,0,0,298,0,0,0,0,0,0,0,300,1.3,0,0,8.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.9,97,99000,0,0,293,0,0,0,0,0,0,0,300,0.0,0,0,8.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.9,97,99000,0,0,293,0,0,0,0,0,0,0,300,0.0,0,0,7.8,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,8.8,97,99000,0,0,293,0,0,0,0,0,0,0,300,0.0,0,0,6.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,8.3,94,99000,0,0,297,0,0,0,0,0,0,0,300,0.0,1,1,6.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,8.6,96,99000,1,124,292,0,0,0,0,0,0,0,300,0.0,0,0,4.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,9.4,92,99000,147,1408,299,75,410,33,8384,0,3643,141,300,0.0,0,0,4.8,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.8,88,99100,374,1408,309,237,628,70,27021,22543,8003,332,160,0.0,0,0,4.8,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,11.6,75,99100,560,1408,325,388,743,93,45212,38669,10838,469,160,0.0,0,0,5.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.6,11.0,61,99100,686,1408,336,496,800,106,58573,46286,12567,558,160,0.0,0,0,6.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,10.6,52,99000,745,1408,345,546,822,111,64997,49066,13293,597,160,0.0,0,0,9.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.8,10.6,49,99000,732,1408,350,535,817,110,63527,48513,13127,588,160,0.0,0,0,11.5,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.3,10.6,48,98900,647,1408,353,462,784,102,54405,44509,12054,531,160,0.0,0,0,13.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.6,10.8,47,98900,498,1408,354,337,710,86,38939,34375,9942,425,160,0.5,0,0,15.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,11.0,52,98900,294,1408,348,176,561,59,19806,12953,6626,269,160,3.1,0,0,13.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,11.4,59,98900,61,955,341,32,280,20,3459,0,2143,83,180,2.8,0,0,14.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.0,63,98900,0,0,334,0,0,0,0,0,0,0,180,2.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,10.8,65,98900,0,0,330,0,0,0,0,0,0,0,180,0.0,0,0,15.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,12.1,78,98900,0,0,325,0,0,0,0,0,0,0,290,0.0,0,0,9.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,11.7,81,98900,0,0,320,0,0,0,0,0,0,0,290,0.2,0,0,9.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.6,84,98900,0,0,316,0,0,0,0,0,0,0,290,1.5,0,0,8.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,11.0,87,98900,0,0,311,0,0,0,0,0,0,0,280,1.3,0,0,7.8,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,14,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,10.5,91,98900,0,0,306,0,0,0,0,0,0,0,280,0.0,0,0,6.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,10.1,92,98900,0,0,302,0,0,0,0,0,0,0,330,0.2,0,0,6.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,10.5,90,98900,0,0,306,0,0,0,0,0,0,0,330,1.3,0,0,8.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.0,89,98900,0,0,304,0,0,0,0,0,0,0,350,0.2,0,0,8.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.0,89,98800,0,0,304,0,0,0,0,0,0,0,350,1.7,0,0,9.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.1,89,98800,0,0,305,0,0,0,0,0,0,0,290,2.5,0,0,7.8,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,10.6,89,98800,0,0,307,0,0,0,0,0,0,0,60,1.8,0,0,6.7,4343,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,10.6,87,98800,1,111,315,0,0,0,0,0,0,0,10,0.2,1,1,7.6,3048,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,10.7,89,98800,144,1409,314,54,160,37,5893,0,4105,161,10,1.3,1,1,5.1,3276,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,11.0,79,98800,372,1409,329,178,288,103,19701,13213,11366,486,10,0.0,2,2,6.7,4572,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,10.6,69,98900,558,1409,336,298,363,155,33358,23921,17382,783,10,0.0,2,2,7.8,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,10.4,64,98800,685,1409,336,395,435,184,44665,31229,20865,967,140,0.0,1,1,6.9,5486,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.4,9.6,57,98700,744,1409,333,503,674,147,58589,44515,17179,787,140,0.0,0,0,9.4,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.5,10.6,60,98600,731,1409,335,489,658,148,56810,43133,17223,789,140,0.0,0,0,8.0,3230,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,11.1,63,98600,647,1409,334,421,622,135,48500,39006,15640,705,140,3.6,0,0,8.0,3353,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,11.1,65,98600,499,1409,332,305,551,110,34604,29845,12528,546,130,3.7,0,0,8.3,3261,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,11.8,71,98500,295,1409,329,161,440,69,17909,11785,7682,316,140,4.6,0,0,9.5,2720,9,999999999,209,0.0000,0,88,999.000,3.0,1.0 +2016,12,15,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,12.4,78,98600,62,963,333,24,375,7,2814,0,869,31,150,4.3,1,1,8.7,2567,9,999999999,220,0.0000,0,88,999.000,10.0,1.0 +2016,12,15,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,13.4,88,98600,0,0,330,0,0,0,0,0,0,0,150,4.0,1,1,7.6,2392,9,999999999,240,0.0000,0,88,999.000,13.0,1.0 +2016,12,15,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,13.7,96,98600,0,0,325,0,0,0,0,0,0,0,150,3.2,1,1,5.8,2042,9,999999999,240,0.0000,0,88,999.000,13.0,1.0 +2016,12,15,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,12.2,91,98600,0,0,321,0,0,0,0,0,0,0,150,3.7,1,1,10.3,1371,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,15,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.3,97,98600,0,0,311,0,0,0,0,0,0,0,130,2.4,1,1,8.0,639,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2016,12,15,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.1,96,98600,0,0,315,0,0,0,0,0,0,0,130,4.5,2,2,4.1,335,9,999999999,200,0.0000,0,88,999.000,5.0,1.0 +2016,12,15,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.7,100,98500,0,0,316,0,0,0,0,0,0,0,120,4.9,2,2,6.5,136,9,999999999,209,0.0000,0,88,999.000,70.0,1.0 +2016,12,15,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,11.7,100,98400,0,0,316,0,0,0,0,0,0,0,150,4.6,2,2,4.3,122,9,999999999,209,0.0000,0,88,999.000,8.0,1.0 +2016,12,16,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,11.8,100,98400,0,0,316,0,0,0,0,0,0,0,150,4.5,2,2,4.4,152,9,999999999,209,0.0000,0,88,999.000,46.0,1.0 +2016,12,16,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,12.2,100,98200,0,0,319,0,0,0,0,0,0,0,160,2.8,2,2,5.5,135,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,12.3,100,98200,0,0,322,0,0,0,0,0,0,0,160,2.8,3,3,6.4,178,9,999999999,220,0.0000,0,88,999.000,1.0,1.0 +2016,12,16,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,12.8,100,98100,0,0,325,0,0,0,0,0,0,0,140,5.0,3,3,6.2,122,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,13.4,100,98100,0,0,328,0,0,0,0,0,0,0,140,2.2,3,3,9.9,188,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,13.9,100,98100,0,0,331,0,0,0,0,0,0,0,150,2.6,3,3,12.3,93,9,999999999,250,0.0000,0,88,999.000,3.0,1.0 +2016,12,16,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,15.0,97,98100,1,98,339,0,0,0,0,0,0,0,220,2.4,3,3,11.3,670,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.2,14.5,96,98200,142,1409,341,50,137,36,5498,0,3998,157,210,0.2,4,4,10.2,1026,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,14.3,90,98300,370,1409,344,162,214,106,17763,9520,11635,499,230,1.8,4,4,13.4,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,13.3,86,98300,556,1409,341,240,175,171,26585,11864,19018,865,240,2.1,4,4,16.1,2415,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,12.0,78,98300,683,1409,341,312,195,217,34770,14981,24355,1144,290,3.0,4,4,16.1,1829,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,10.4,67,98200,743,1409,343,364,245,235,40842,19576,26486,1259,330,2.7,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,9.0,63,98100,731,1409,322,460,557,171,52833,39175,19730,913,330,3.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,6.4,55,98100,648,1409,333,344,338,188,38593,25370,21237,980,240,3.5,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,5.0,52,98200,499,1409,312,303,540,112,34460,31223,12757,555,260,2.7,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,4.5,53,98200,296,1409,324,135,259,81,14902,9205,8914,370,260,3.6,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,5.0,57,98200,63,972,316,25,130,19,2719,0,2089,80,240,3.3,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,4.8,59,98200,0,0,303,0,0,0,0,0,0,0,240,3.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,4.0,58,98200,0,0,300,0,0,0,0,0,0,0,240,2.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,4.3,61,98300,0,0,313,0,0,0,0,0,0,0,270,2.1,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,3.4,60,98400,0,0,304,0,0,0,0,0,0,0,320,2.7,2,2,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.4,0.5,51,98400,0,0,289,0,0,0,0,0,0,0,330,6.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,16,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.5,-0.3,51,98500,0,0,284,0,0,0,0,0,0,0,360,8.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,82.0,1.0 +2016,12,16,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,-1.7,44,98500,0,0,285,0,0,0,0,0,0,0,350,7.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,-1.8,46,98600,0,0,282,0,0,0,0,0,0,0,300,4.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,-2.3,46,98700,0,0,278,0,0,0,0,0,0,0,350,8.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,-2.8,43,98800,0,0,279,0,0,0,0,0,0,0,340,6.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,-2.8,45,98800,0,0,277,0,0,0,0,0,0,0,330,5.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.2,-2.8,45,98900,0,0,277,0,0,0,0,0,0,0,340,5.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.7,-2.8,47,99000,0,0,275,0,0,0,0,0,0,0,340,2.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,-2.8,48,99000,1,90,273,0,0,0,0,0,0,0,340,5.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,-3.0,45,99100,140,1409,276,70,393,32,7853,0,3525,136,330,5.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,-3.6,38,99200,367,1409,282,229,608,71,26189,25040,8114,335,330,5.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,-2.5,39,99200,554,1409,288,379,722,95,44231,42112,11168,482,350,6.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-4.4,29,99200,682,1409,295,487,778,110,57589,50218,13049,578,350,6.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-7.1,20,99200,742,1409,300,538,801,116,64123,53432,13878,622,120,2.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-6.6,21,99100,731,1409,300,528,797,115,62863,52859,13720,613,120,2.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-6.1,22,99100,648,1409,300,458,764,106,54022,48700,12584,554,160,2.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-6.0,23,99100,500,1409,298,335,694,89,38880,38482,10330,440,360,2.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-4.2,28,99100,298,1409,298,177,550,60,20000,16639,6867,278,360,3.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-2.7,33,99100,64,981,297,33,275,20,3579,0,2216,85,150,3.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-0.8,41,99100,0,0,294,0,0,0,0,0,0,0,150,2.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,-1.8,42,99100,0,0,287,0,0,0,0,0,0,0,30,1.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,-2.3,42,99200,0,0,284,0,0,0,0,0,0,0,30,3.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.8,-2.9,43,99200,0,0,279,0,0,0,0,0,0,0,20,3.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,-2.9,45,99200,0,0,276,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,-0.5,61,99300,0,0,273,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,17,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.0,0.1,66,99300,0,0,271,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.3,0.4,71,99200,0,0,269,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.8,-0.7,72,99100,0,0,262,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,-1.2,72,99100,0,0,259,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.5,-2.2,65,99200,0,0,259,0,0,0,0,0,0,0,360,0.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.3,-5.1,40,99200,0,0,271,0,0,0,0,0,0,0,360,6.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,-5.7,37,99200,0,0,272,0,0,0,0,0,0,0,350,5.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.0,-6.2,35,99200,0,79,273,0,0,0,0,0,0,0,350,6.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,-6.9,29,99300,137,1409,279,71,417,30,7922,0,3382,130,350,6.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,-7.9,24,99300,365,1409,284,233,643,66,26764,25992,7650,314,350,6.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-8.6,20,99400,552,1409,290,387,763,88,45451,44162,10363,444,350,9.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,-10.6,16,99400,681,1409,294,497,822,100,59333,52524,11984,527,350,8.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-11.0,14,99300,742,1409,299,551,846,105,66145,55479,12680,563,350,7.9,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-13.3,11,99200,731,1409,299,541,842,104,64926,55240,12568,557,350,9.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.1,-13.4,11,99200,649,1409,297,470,809,97,55830,51062,11606,507,360,8.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,-14.0,11,99200,501,1409,296,344,735,83,40214,40609,9678,410,360,8.5,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,-14.7,11,99300,299,1409,291,182,586,58,20745,18150,6578,265,360,6.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-15.1,11,99300,65,991,287,34,293,20,3730,0,2244,86,360,7.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-15.5,11,99300,0,0,283,0,0,0,0,0,0,0,360,8.0,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,-15.3,12,99400,0,0,280,0,0,0,0,0,0,0,360,6.9,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-17.1,10,99400,0,0,284,0,0,0,0,0,0,0,10,7.7,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-16.6,10,99400,0,0,282,0,0,0,0,0,0,0,10,5.5,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-16.0,11,99400,0,0,280,0,0,0,0,0,0,0,340,7.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,-15.6,12,99400,0,0,279,0,0,0,0,0,0,0,360,8.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,18,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,-15.6,11,99400,0,0,281,0,0,0,0,0,0,0,360,8.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-15.7,11,99400,0,0,297,0,0,0,0,0,0,0,360,8.9,5,5,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-16.1,11,99400,0,0,295,0,0,0,0,0,0,0,10,9.9,5,5,16.1,579,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,-16.0,12,99400,0,0,290,0,0,0,0,0,0,0,360,8.6,3,3,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,-15.6,12,99400,0,0,286,0,0,0,0,0,0,0,360,8.0,2,2,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,-15.7,13,99400,0,0,275,0,0,0,0,0,0,0,360,9.7,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-16.1,12,99500,0,0,274,0,0,0,0,0,0,0,360,9.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,-16.0,13,99500,0,69,273,0,0,0,0,0,0,0,350,11.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,-15.5,12,99500,135,1410,278,69,411,30,7759,0,3356,129,350,10.7,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,-14.9,12,99600,363,1410,285,231,635,67,26468,26246,7702,316,360,10.4,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,-14.4,11,99600,551,1410,290,384,755,89,45099,44451,10502,450,360,11.4,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,-14.3,10,99600,680,1410,296,495,814,102,58931,52621,12182,536,360,11.7,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-14.1,10,99500,741,1410,300,548,838,107,65752,55536,12911,574,350,10.9,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,-15.0,9,99400,731,1410,303,539,834,106,64603,55162,12795,568,350,11.4,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,-15.1,9,99400,649,1410,304,468,802,99,55635,51041,11809,516,360,8.9,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.6,-15.6,8,99400,503,1410,301,344,729,84,40145,40658,9827,416,360,10.0,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-16.0,9,99300,301,1410,296,183,582,58,20791,18387,6670,269,360,11.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,-16.2,9,99400,67,1001,292,34,291,21,3776,0,2271,87,360,10.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,-16.7,9,99400,0,0,288,0,0,0,0,0,0,0,360,9.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-16.7,10,99400,0,0,286,0,0,0,0,0,0,0,350,9.1,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-16.9,10,99400,0,0,284,0,0,0,0,0,0,0,360,8.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-18.2,9,99500,0,0,283,0,0,0,0,0,0,0,360,8.4,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-17.7,9,99500,0,0,283,0,0,0,0,0,0,0,350,9.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-17.2,10,99400,0,0,281,0,0,0,0,0,0,0,350,9.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,19,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-17.3,10,99500,0,0,281,0,0,0,0,0,0,0,350,8.9,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-17.6,10,99500,0,0,280,0,0,0,0,0,0,0,350,9.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-16.9,11,99400,0,0,277,0,0,0,0,0,0,0,350,8.4,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-17.7,10,99500,0,0,277,0,0,0,0,0,0,0,340,6.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,-17.4,10,99400,0,0,277,0,0,0,0,0,0,0,350,8.6,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,-18.3,9,99400,0,0,278,0,0,0,0,0,0,0,350,7.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,-18.3,9,99500,0,0,279,0,0,0,0,0,0,0,340,5.1,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,-17.4,10,99500,0,59,279,0,0,0,0,0,0,0,330,4.7,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,-11.9,18,99500,133,1410,276,71,452,28,7955,0,3160,121,290,2.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.9,-10.3,18,99600,361,1410,288,238,694,60,27533,26616,6972,284,290,1.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,-12.2,11,99600,549,1410,304,398,822,77,47188,46033,9204,390,350,3.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.2,-12.0,10,99500,679,1410,312,513,885,87,61849,54552,10478,455,350,7.4,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.2,-11.3,10,99400,741,1410,321,569,911,90,69131,57513,11004,483,360,5.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-12.2,9,99300,731,1410,322,560,907,90,67992,57180,10918,479,350,5.3,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-12.2,9,99200,650,1410,322,487,872,85,58558,52963,10216,442,350,7.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.4,-12.1,9,99100,504,1410,321,358,796,74,42264,42207,8710,366,360,8.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.2,-12.1,10,99100,303,1410,316,191,640,54,21902,18878,6160,247,350,8.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.0,-12.3,10,99100,68,1012,311,36,320,21,3985,0,2293,88,350,8.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,-12.9,10,99100,0,0,306,0,0,0,0,0,0,0,350,7.9,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-13.3,10,99100,0,0,304,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-13.5,10,99100,0,0,304,0,0,0,0,0,0,0,360,6.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-14.3,9,99100,0,0,303,0,0,0,0,0,0,0,350,4.8,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-14.0,10,99100,0,0,303,0,0,0,0,0,0,0,330,3.2,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-14.2,9,99100,0,0,303,0,0,0,0,0,0,0,340,3.5,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2016,12,20,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.0,-12.5,11,99100,0,0,302,0,0,0,0,0,0,0,310,0.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,-7.6,19,99000,0,0,300,0,0,0,0,0,0,0,310,1.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-6.1,25,99100,0,0,293,0,0,0,0,0,0,0,10,3.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,-2.8,35,99000,0,0,293,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,-2.8,34,99000,0,0,293,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.6,-2.4,35,98900,0,0,295,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-1.3,39,98900,0,0,295,0,0,0,0,0,0,0,330,0.3,0,0,16.1,3612,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-7.9,18,98900,0,50,302,0,0,0,0,0,0,0,330,2.1,0,0,16.1,3307,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.6,-2.1,31,98900,131,1410,304,61,315,32,6766,0,3528,136,320,2.0,0,0,16.1,2933,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.8,-1.6,30,98900,359,1410,309,207,496,81,23364,21468,9126,380,210,1.3,0,0,16.1,2263,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.4,-1.3,28,98900,548,1410,317,347,596,116,39846,37119,13307,582,330,0.4,0,0,16.1,2134,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-2.1,25,98900,678,1410,320,448,646,138,52078,44488,16089,725,330,2.5,0,0,16.1,2134,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,-1.4,26,98900,741,1410,320,498,666,148,58180,47076,17372,793,40,2.2,0,0,16.1,2134,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.5,0.6,32,98800,732,1410,319,491,663,147,57253,46325,17174,783,30,3.3,0,0,16.1,2156,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,0.8,37,98800,651,1410,311,428,636,134,49496,42688,15517,696,10,5.0,0,0,16.1,2354,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,2.0,39,98700,506,1410,314,315,577,108,35954,33583,12373,536,360,7.1,0,0,16.1,2651,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,2.6,42,98700,304,1410,313,169,457,70,18880,14999,7844,322,360,6.9,0,0,16.1,2122,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.6,2.1,40,98600,70,1024,312,32,229,21,3548,0,2317,89,360,7.9,0,0,16.1,2046,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,3.0,44,98600,0,0,313,0,0,0,0,0,0,0,360,8.7,0,0,16.1,2049,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,4.2,50,98600,0,0,310,0,0,0,0,0,0,0,360,8.3,0,0,16.1,2323,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,21,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,2.9,45,98500,0,0,310,0,0,0,0,0,0,0,360,9.0,0,0,16.1,1881,9,999999999,110,0.0000,0,88,999.000,5.0,1.0 +2016,12,21,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,3.4,50,98600,0,0,306,0,0,0,0,0,0,0,360,9.9,0,0,16.1,2782,9,999999999,120,0.0000,0,88,999.000,48.0,1.0 +2016,12,21,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,4.4,59,98600,0,0,301,0,0,0,0,0,0,0,360,6.7,0,0,12.2,1209,9,999999999,129,0.0000,0,88,999.000,33.0,1.0 +2016,12,21,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.8,86,98700,0,0,295,0,0,0,0,0,0,0,350,7.0,0,0,5.5,1049,9,999999999,160,0.0000,0,88,999.000,82.0,1.0 +2016,12,21,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,7.2,83,98600,0,0,294,0,0,0,0,0,0,0,350,7.6,0,0,9.3,2011,9,999999999,150,0.0000,0,88,999.000,3.0,1.0 +2016,12,22,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,7.3,82,98400,0,0,295,0,0,0,0,0,0,0,10,9.3,0,0,16.1,2956,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,7.6,77,98400,0,0,301,0,0,0,0,0,0,0,10,7.2,0,0,16.1,2392,9,999999999,160,0.0000,0,88,999.000,3.0,1.0 +2016,12,22,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,6.7,74,98300,0,0,299,0,0,0,0,0,0,0,350,9.4,0,0,16.1,2179,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.5,7.0,74,98300,0,0,300,0,0,0,0,0,0,0,360,6.4,0,0,16.1,2483,9,999999999,150,0.0000,0,88,999.000,13.0,1.0 +2016,12,22,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,8.6,86,98300,0,0,299,0,0,0,0,0,0,0,350,2.8,0,0,16.1,2720,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,7.0,73,98300,0,0,301,0,0,0,0,0,0,0,350,7.0,0,0,16.1,2568,9,999999999,150,0.0000,0,88,999.000,3.0,1.0 +2016,12,22,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,6.2,67,98300,0,42,302,0,0,0,0,0,0,0,360,8.9,0,0,16.1,2460,9,999999999,139,0.0000,0,88,999.000,10.0,1.0 +2016,12,22,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,6.9,71,98500,129,1410,303,61,322,31,6716,0,3454,134,360,8.8,0,0,16.1,2408,9,999999999,150,0.0000,0,88,999.000,3.0,1.0 +2016,12,22,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,7.9,77,98600,358,1410,303,187,376,92,20770,16211,10209,431,10,6.3,0,0,16.1,1554,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,8.2,73,98600,547,1410,308,309,433,141,34769,27798,15959,712,360,6.9,0,0,16.1,2545,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,7.9,64,98500,677,1410,315,420,540,160,47982,37335,18406,842,350,8.0,0,0,16.1,2308,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,8.2,58,98500,741,1410,323,510,708,138,59716,46290,16226,739,360,6.4,0,0,16.1,2438,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,7.8,51,98400,732,1410,329,540,834,107,64379,50345,12753,569,350,4.3,0,0,16.1,2438,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.9,7.7,48,98400,653,1410,333,485,858,88,57885,47985,10540,459,350,2.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.7,7.8,49,98500,507,1410,344,310,548,113,35203,31226,12869,561,20,2.5,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,9.9,60,98600,306,1410,330,182,553,62,20571,14745,7024,287,170,4.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,11.7,73,98600,71,1037,338,26,302,11,3037,0,1282,47,170,3.7,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.4,12.2,81,98600,0,0,342,0,0,0,0,0,0,0,170,2.9,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.2,87,98700,0,0,334,0,0,0,0,0,0,0,140,1.1,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.6,84,98800,0,0,327,0,0,0,0,0,0,0,90,2.2,2,2,16.1,522,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.7,11.1,84,98800,0,0,320,0,0,0,0,0,0,0,140,0.3,1,1,16.1,549,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,11.0,93,98800,0,0,307,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,10.4,94,98900,0,0,303,0,0,0,0,0,0,0,290,1.3,0,0,15.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,22,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.4,96,98900,0,0,296,0,0,0,0,0,0,0,300,0.2,0,0,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,9.4,95,98900,0,0,297,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.7,9.5,92,98900,0,0,299,0,0,0,0,0,0,0,300,0.0,0,0,16.1,657,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,9.8,92,98900,0,0,301,0,0,0,0,0,0,0,300,0.3,0,0,15.8,555,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.9,9.8,93,98900,0,0,300,0,0,0,0,0,0,0,300,0.8,0,0,15.5,583,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,10.0,92,98900,0,0,302,0,0,0,0,0,0,0,300,0.0,0,0,16.1,382,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.0,89,98900,0,0,304,0,0,0,0,0,0,0,270,0.2,0,0,15.9,305,9,999999999,189,0.0000,0,88,999.000,3.0,1.0 +2016,12,23,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.7,10.2,91,99000,0,35,310,0,0,0,0,0,0,0,270,1.0,1,1,11.7,283,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,11.1,95,99000,128,1410,311,46,142,33,5009,0,3601,140,270,0.0,1,1,7.8,213,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,11.4,94,99000,356,1410,314,157,223,101,17310,9862,11143,475,140,0.3,1,1,6.9,208,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.5,12.9,96,99000,546,1410,321,263,260,162,29160,17135,18098,818,140,2.4,1,1,9.9,192,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.5,13.3,93,98900,677,1410,326,344,288,205,38418,21288,23075,1079,140,4.2,1,1,11.7,248,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.9,12.7,87,98800,741,1410,327,397,335,221,44597,25458,24931,1181,150,3.8,1,1,13.2,368,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.7,90,98700,733,1410,329,389,328,219,43759,24867,24747,1170,180,4.6,2,2,16.1,638,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,12.0,86,98700,654,1410,328,351,353,188,39401,25312,21174,980,170,7.0,2,2,16.1,536,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98600,509,1410,326,263,335,142,29290,20676,15906,708,160,7.0,2,2,16.1,731,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,11.7,88,98500,309,1410,324,148,304,82,16364,10150,9066,379,180,5.3,2,2,11.3,457,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,11.7,90,98500,73,1050,323,27,152,20,3016,0,2155,83,170,7.0,2,2,11.3,457,9,999999999,209,0.0000,0,88,999.000,13.0,1.0 +2016,12,23,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.8,11.7,93,98400,0,0,321,0,0,0,0,0,0,0,160,5.7,2,2,12.9,511,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,11.6,96,98200,0,0,321,0,0,0,0,0,0,0,140,7.6,3,3,11.8,459,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,10.1,89,98100,0,0,318,0,0,0,0,0,0,0,140,7.1,3,3,6.4,904,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,23,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,10.6,97,98200,0,0,315,0,0,0,0,0,0,0,160,1.8,3,3,3.8,350,9,999999999,189,0.0000,0,88,999.000,56.0,1.0 +2016,12,23,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,10.0,96,98100,0,0,312,0,0,0,0,0,0,0,140,3.5,3,3,4.8,488,9,999999999,189,0.0000,0,88,999.000,13.0,1.0 +2016,12,23,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,9.8,100,98000,0,0,309,0,0,0,0,0,0,0,100,6.0,3,3,5.9,162,9,999999999,179,0.0000,0,88,999.000,240.0,1.0 +2016,12,23,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.6,8.9,95,97900,0,0,307,0,0,0,0,0,0,0,90,6.2,3,3,15.0,1310,9,999999999,170,0.0000,0,88,999.000,6.0,1.0 +2016,12,24,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.2,95,97800,0,0,311,0,0,0,0,0,0,0,120,4.1,4,4,15.7,620,9,999999999,179,0.0000,0,88,999.000,3.0,1.0 +2016,12,24,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,9.4,96,97800,0,0,311,0,0,0,0,0,0,0,230,1.9,4,4,16.1,392,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.9,97,97800,0,0,308,0,0,0,0,0,0,0,310,1.3,4,4,16.1,558,9,999999999,170,0.0000,0,88,999.000,3.0,1.0 +2016,12,24,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.2,92,97900,0,0,308,0,0,0,0,0,0,0,310,0.5,4,4,15.7,747,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,4.0,70,97900,0,0,302,0,0,0,0,0,0,0,310,3.7,4,4,16.1,1284,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,4.2,76,97900,0,0,299,0,0,0,0,0,0,0,300,2.0,4,4,16.1,1311,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,2.6,68,97900,0,29,297,0,0,0,0,0,0,0,350,4.7,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,2.1,65,97900,126,1410,282,54,253,32,6010,0,3510,136,330,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,4.4,73,98000,355,1410,297,164,258,99,18098,12117,10968,465,260,1.3,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,3.9,65,98000,545,1410,292,325,505,130,36840,32114,14765,653,310,0.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,0.8,49,98000,677,1410,308,354,319,201,39868,25328,22725,1055,310,3.5,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,-0.5,43,97900,741,1410,294,497,660,150,57939,46643,17526,801,310,3.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,0.0,43,97900,734,1410,302,441,487,188,50479,37391,21562,1002,310,4.1,1,1,16.1,1935,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-0.3,43,97900,655,1410,307,385,465,169,43765,34374,19261,880,10,6.9,3,3,16.1,1676,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.1,-1.9,40,97900,511,1410,304,278,392,136,31222,25907,15353,678,360,5.3,4,4,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,-2.9,38,97900,311,1410,287,187,569,62,21258,18236,7034,286,350,6.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,-3.1,38,98000,75,1064,291,32,408,10,3718,0,1182,43,350,5.3,1,1,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,-3.1,40,98000,0,0,295,0,0,0,0,0,0,0,350,4.7,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,-1.7,47,98100,0,0,290,0,0,0,0,0,0,0,10,4.6,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.7,-2.0,47,98200,0,0,280,0,0,0,0,0,0,0,330,2.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,-0.6,55,98300,0,0,277,0,0,0,0,0,0,0,340,3.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,-0.7,55,98300,0,0,277,0,0,0,0,0,0,0,250,2.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,24,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.9,-1.2,52,98400,0,0,277,0,0,0,0,0,0,0,340,2.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,6.0,1.0 +2016,12,24,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,-1.5,50,98500,0,0,278,0,0,0,0,0,0,0,340,4.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.4,-0.5,61,98500,0,0,272,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.4,0.0,73,98600,0,0,265,0,0,0,0,0,0,0,300,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.5,-0.1,72,98600,0,0,265,0,0,0,0,0,0,0,300,1.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,4.7,-0.7,68,98700,0,0,265,0,0,0,0,0,0,0,250,2.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,3.2,-1.4,71,98700,0,0,259,0,0,0,0,0,0,0,310,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.6,-2.8,54,98800,0,0,267,0,0,0,0,0,0,0,310,2.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.8,-2.9,53,98800,0,24,267,0,0,0,0,0,0,0,340,5.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.9,-3.3,47,98900,125,1410,271,61,354,29,6746,0,3251,125,350,4.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,-3.2,43,99000,354,1410,278,213,557,73,24147,22602,8309,343,360,5.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,-2.8,40,99000,544,1410,284,361,670,102,41781,39933,11869,514,20,2.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,-3.0,39,99000,677,1410,285,469,727,120,55016,47916,14139,630,160,2.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.8,-4.4,31,99000,742,1410,290,523,750,128,61781,51120,15202,686,40,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,-4.4,30,99000,735,1410,292,517,748,127,61066,50824,15099,681,40,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.7,-4.1,30,98900,657,1410,294,452,719,118,53021,47091,13819,613,180,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,-2.0,37,98900,513,1410,293,336,655,98,38766,37482,11305,486,180,2.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,-1.4,43,98900,313,1410,287,183,526,66,20673,17683,7508,307,160,3.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.3,-1.1,48,99000,77,1078,283,37,263,23,4067,0,2502,97,170,3.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,-1.4,50,99000,0,0,279,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,-3.0,42,99000,0,0,289,0,0,0,0,0,0,0,80,0.2,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,-0.9,50,99100,0,0,291,0,0,0,0,0,0,0,80,1.3,2,2,16.1,3307,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.9,0.0,54,99200,0,0,288,0,0,0,0,0,0,0,80,0.0,1,1,16.1,3048,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.6,0.2,56,99200,0,0,281,0,0,0,0,0,0,0,80,0.0,0,0,16.1,3048,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,1.2,68,99200,0,0,275,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,25,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.7,1.7,71,99200,0,0,275,0,0,0,0,0,0,0,80,0.0,0,0,15.9,2248,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.5,1.8,72,99200,0,0,275,0,0,0,0,0,0,0,360,0.0,0,0,14.5,2896,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,5.7,2.2,78,99200,0,0,272,0,0,0,0,0,0,0,360,0.0,0,0,14.5,2896,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.1,2.2,76,99200,0,0,273,0,0,0,0,0,0,0,360,0.0,0,0,14.7,2918,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.3,1.8,73,99200,0,0,274,0,0,0,0,0,0,0,360,0.6,0,0,16.1,3048,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,-0.7,57,99200,0,0,275,0,0,0,0,0,0,0,360,4.2,0,0,16.1,3048,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.2,-1.1,55,99200,0,0,275,0,0,0,0,0,0,0,360,4.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.4,-1.2,54,99200,0,18,289,0,0,0,0,0,0,0,360,5.8,4,4,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.4,-1.5,49,99300,124,1411,279,60,361,29,6725,0,3198,123,350,6.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.1,-0.6,51,99400,353,1411,283,208,526,76,23468,21486,8622,358,360,5.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,-0.6,47,99500,544,1411,297,298,395,146,33513,27092,16478,734,360,5.0,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.5,-0.7,40,99500,677,1411,296,457,681,130,53267,45730,15218,683,360,4.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-1.1,35,99400,742,1411,302,537,797,117,63816,52242,14010,629,340,3.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,-1.0,35,99300,736,1411,304,542,832,108,64827,53221,12957,577,30,4.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,-0.6,37,99300,659,1411,302,461,748,112,54247,47596,13198,584,20,6.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-0.8,38,99200,515,1411,300,338,658,98,39035,37529,11321,487,10,7.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.0,-1.4,37,99200,316,1411,298,192,583,62,21844,18755,7035,286,360,6.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-1.7,37,99200,91,1261,295,46,495,15,5351,0,1671,62,360,7.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,-1.8,39,99300,0,0,291,0,0,0,0,0,0,0,360,7.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.0,-2.2,39,99300,0,0,289,0,0,0,0,0,0,0,350,5.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,-2.4,40,99400,0,0,287,0,0,0,0,0,0,0,350,5.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.6,-3.3,37,99400,0,0,286,0,0,0,0,0,0,0,350,6.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,-3.3,37,99500,0,0,285,0,0,0,0,0,0,0,350,7.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,-3.3,38,99500,0,0,283,0,0,0,0,0,0,0,360,6.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,26,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.1,-3.4,38,99500,0,0,284,0,0,0,0,0,0,0,360,6.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.5,-3.9,35,99500,0,0,285,0,0,0,0,0,0,0,350,7.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,-3.9,37,99400,0,0,283,0,0,0,0,0,0,0,360,6.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,-4.0,36,99400,0,0,283,0,0,0,0,0,0,0,350,7.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,-4.5,35,99300,0,0,282,0,0,0,0,0,0,0,350,7.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,-5.1,33,99300,0,0,282,0,0,0,0,0,0,0,350,8.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.0,-5.6,32,99300,0,0,281,0,0,0,0,0,0,0,340,7.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,-5.7,31,99400,0,12,282,0,0,0,0,0,0,0,350,11.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,-6.0,28,99400,123,1411,286,62,394,27,6906,0,3080,118,350,9.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-5.8,26,99400,352,1411,293,220,616,67,25169,23873,7633,313,360,10.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,-6.7,21,99400,543,1411,301,375,740,90,43883,42707,10597,454,340,5.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,-6.4,19,99400,677,1411,309,489,801,104,58016,51149,12427,548,340,6.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.9,-4.9,20,99300,743,1411,315,546,827,110,65288,54043,13248,591,350,8.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.2,-4.5,21,99200,738,1411,316,541,825,110,64671,53733,13181,588,350,8.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.8,-5.0,20,99200,661,1411,314,475,794,103,56241,50048,12215,537,350,8.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.7,-4.8,21,99100,518,1411,314,354,726,87,41253,40424,10227,436,350,9.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,-4.3,22,99100,319,1411,312,195,588,62,22156,19558,7059,287,350,8.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.6,-4.2,23,99100,93,1272,310,46,458,16,5287,0,1830,68,340,6.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.9,-4.4,24,99100,0,0,307,0,0,0,0,0,0,0,340,5.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,-4.4,26,99200,0,0,302,0,0,0,0,0,0,0,340,6.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-4.4,27,99200,0,0,299,0,0,0,0,0,0,0,350,8.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,-4.3,27,99300,0,0,300,0,0,0,0,0,0,0,350,3.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-3.6,29,99200,0,0,299,0,0,0,0,0,0,0,340,3.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,-1.9,39,99300,0,0,291,0,0,0,0,0,0,0,10,2.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,27,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-3.0,32,99300,0,0,297,0,0,0,0,0,0,0,10,4.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,-4.0,29,99200,0,0,296,0,0,0,0,0,0,0,10,5.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.1,-4.3,29,99200,0,0,295,0,0,0,0,0,0,0,10,3.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.4,-4.2,30,99200,0,0,292,0,0,0,0,0,0,0,270,2.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.4,-5.7,25,99200,0,0,295,0,0,0,0,0,0,0,320,3.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-6.1,24,99200,0,0,296,0,0,0,0,0,0,0,340,4.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,-6.1,24,99100,0,0,296,0,0,0,0,0,0,0,330,5.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,-5.9,24,99200,0,6,297,0,0,0,0,0,0,0,340,4.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.7,-4.9,25,99300,122,1411,301,61,395,27,6840,0,3039,116,350,3.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-4.5,23,99300,351,1411,309,220,618,66,25134,23647,7590,311,350,5.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,-4.7,20,99300,543,1411,315,375,742,90,43930,42483,10538,452,350,6.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.6,-2.9,21,99300,677,1411,324,490,804,104,58131,50657,12341,544,360,7.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.8,-3.2,19,99200,744,1411,329,548,831,110,65511,53876,13168,588,360,8.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-2.8,19,99100,739,1411,334,543,829,109,64959,53582,13103,584,360,7.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.7,-2.8,19,99100,663,1411,334,477,798,102,56568,49873,12155,534,360,5.9,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.5,-2.9,19,99100,520,1411,333,356,730,87,41571,40387,10204,435,360,7.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.6,-3.2,20,99100,321,1411,328,197,593,62,22427,19774,7080,288,360,7.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,-3.3,21,99100,95,1282,323,47,453,17,5399,0,1914,71,360,6.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.1,-3.1,23,99100,0,0,318,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,-2.3,26,99100,0,0,314,0,0,0,0,0,0,0,360,6.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,-2.9,26,99200,0,0,312,0,0,0,0,0,0,0,360,5.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.1,-3.2,24,99200,0,0,313,0,0,0,0,0,0,0,330,3.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-2.9,26,99300,0,0,312,0,0,0,0,0,0,0,350,6.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.7,-3.3,25,99300,0,0,311,0,0,0,0,0,0,0,330,4.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,28,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.3,-3.1,26,99300,0,0,310,0,0,0,0,0,0,0,330,3.8,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,-1.3,37,99200,0,0,299,0,0,0,0,0,0,0,310,1.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,1.0,58,99200,0,0,284,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,0.5,54,99200,0,0,285,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.2,-0.5,48,99100,0,0,287,0,0,0,0,0,0,0,330,0.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.1,-2.8,31,99200,0,0,301,0,0,0,0,0,0,0,330,2.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,-0.7,48,99100,0,0,286,0,0,0,0,0,0,0,330,0.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.7,-4.3,24,99200,0,1,306,0,0,0,0,0,0,0,330,4.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.4,-3.8,24,99300,121,1411,309,61,408,27,6879,0,2980,114,310,3.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.0,-3.3,23,99300,350,1411,317,222,635,64,25412,23668,7381,302,340,3.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.7,-3.1,21,99300,543,1411,325,380,762,86,44531,42758,10158,434,340,7.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,21.3,-2.2,20,99300,677,1411,333,496,826,99,59040,51206,11842,521,350,6.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.4,-2.0,19,99200,745,1411,338,555,853,105,66610,54365,12597,561,360,5.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,-1.0,20,99100,741,1411,343,551,851,104,66093,53942,12552,558,360,3.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.3,-0.9,20,99100,665,1411,344,485,821,98,57640,50266,11696,513,360,5.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,23.1,-2.8,17,99100,523,1411,340,363,752,84,42445,41123,9885,421,340,3.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,22.1,-2.2,19,99100,324,1411,336,202,613,61,23003,20219,6958,283,320,2.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,20.9,-1.5,22,99000,97,1293,332,49,460,17,5586,0,1971,73,360,4.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.9,-0.6,25,99000,0,0,328,0,0,0,0,0,0,0,360,5.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.4,-0.6,26,99100,0,0,326,0,0,0,0,0,0,0,330,3.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,19.3,-0.7,26,99000,0,0,326,0,0,0,0,0,0,0,330,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,18.3,-0.5,28,99100,0,0,321,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.3,2.5,42,99100,0,0,312,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.5,1.4,36,99100,0,0,316,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2016,12,29,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.5,3.1,44,99100,0,0,313,0,0,0,0,0,0,0,310,0.4,0,0,16.1,2743,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.8,5.3,53,99100,0,0,312,0,0,0,0,0,0,0,310,2.2,0,0,16.1,2743,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.0,6.7,62,99000,0,0,311,0,0,0,0,0,0,0,300,0.2,0,0,16.1,2765,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,6.7,60,98900,0,0,312,0,0,0,0,0,0,0,300,1.7,0,0,16.1,2850,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,6.7,62,98900,0,0,310,0,0,0,0,0,0,0,250,3.2,0,0,16.1,2613,9,999999999,150,0.0000,0,88,999.000,8.0,1.0 +2016,12,30,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.6,7.0,64,99000,0,0,309,0,0,0,0,0,0,0,290,3.3,0,0,16.1,2697,9,999999999,150,0.0000,0,88,999.000,23.0,1.0 +2016,12,30,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,9.1,82,99000,0,0,304,0,0,0,0,0,0,0,280,1.6,0,0,15.1,2415,9,999999999,179,0.0000,0,88,999.000,13.0,1.0 +2016,12,30,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,9.7,90,99100,0,0,302,0,0,0,0,0,0,0,280,2.7,0,0,10.6,2331,9,999999999,179,0.0000,0,88,999.000,8.0,1.0 +2016,12,30,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.2,8.4,78,99000,120,1409,310,40,120,30,4442,0,3324,129,10,5.3,1,1,15.9,2545,9,999999999,170,0.0000,0,88,999.000,13.0,1.0 +2016,12,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.2,83,99100,350,1411,311,156,232,99,17176,10248,10892,463,10,0.2,1,1,14.7,2308,9,999999999,179,0.0000,0,88,999.000,3.0,1.0 +2016,12,30,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.0,10.8,92,99000,543,1411,312,254,237,163,28210,15985,18204,822,30,1.7,1,1,16.1,2483,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.2,11.6,84,98800,678,1411,323,342,280,207,38186,21093,23259,1088,30,2.8,1,1,16.1,2743,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.2,10.9,71,98800,746,1411,331,434,438,202,49213,32463,23050,1083,220,3.9,1,1,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.8,10.1,65,98700,742,1411,333,469,563,173,53934,39411,19963,926,270,2.7,1,1,16.1,2690,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,17.2,9.8,62,98600,667,1411,334,418,561,153,47862,37475,17611,802,280,3.1,1,1,16.1,1546,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.9,9.8,63,98600,525,1411,333,306,478,128,34542,28698,14516,641,280,2.8,1,1,16.1,1699,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,16.0,10.3,69,98600,327,1411,329,169,372,83,18756,13509,9220,386,280,2.6,1,1,16.1,1851,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,15.0,11.0,77,98600,100,1308,330,38,217,23,4262,0,2566,98,290,2.3,2,2,16.1,2004,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.3,11.2,82,98600,0,0,327,0,0,0,0,0,0,0,290,2.0,2,2,16.1,2065,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.9,11.7,87,98600,0,0,326,0,0,0,0,0,0,0,290,1.6,2,2,16.1,1676,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.8,11.8,88,98600,0,0,325,0,0,0,0,0,0,0,240,1.8,2,2,16.1,1653,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.2,93,98600,0,0,324,0,0,0,0,0,0,0,240,0.0,2,2,16.1,1492,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.3,12.3,94,98600,0,0,324,0,0,0,0,0,0,0,240,0.0,2,2,16.1,1288,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,14.4,10.4,77,98600,0,0,327,0,0,0,0,0,0,0,240,0.0,2,2,16.0,1160,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,30,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,13.2,11.6,90,98600,0,0,322,0,0,0,0,0,0,0,240,0.0,2,2,15.7,1174,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.3,12.3,100,98600,0,0,319,0,0,0,0,0,0,0,240,0.0,2,2,15.4,1189,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.3,11.3,100,98500,0,0,317,0,0,0,0,0,0,0,240,0.0,3,3,15.0,1203,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,3,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.4,11.4,100,98500,0,0,317,0,0,0,0,0,0,0,240,0.0,3,3,14.7,1218,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,4,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.8,10.8,100,98500,0,0,314,0,0,0,0,0,0,0,240,0.0,3,3,14.3,1232,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,5,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,10.3,100,98500,0,0,311,0,0,0,0,0,0,0,240,0.0,3,3,14.0,1247,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,6,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,8.5,100,98400,0,0,302,0,0,0,0,0,0,0,240,0.0,3,3,13.7,1261,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.6,7.6,100,98400,0,0,297,0,0,0,0,0,0,0,240,0.0,3,3,13.3,1275,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,8,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,8.3,100,98400,119,1406,301,35,76,28,3833,0,3130,121,240,0.0,3,3,13.0,1290,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,8.1,100,98400,349,1411,300,142,171,100,15626,7710,11021,468,290,0.0,3,3,12.7,1304,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,10,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,7.8,7.8,100,98400,543,1411,298,238,188,166,26432,13113,18509,836,290,0.0,3,3,12.3,1319,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,11,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,9.8,100,98400,679,1411,311,305,184,216,33980,14362,24236,1136,290,0.0,4,4,12.0,1333,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,12,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.6,11.5,99,98400,748,1411,321,383,286,231,42952,22438,26075,1239,290,0.0,4,4,11.6,1348,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,13,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.9,10.0,88,98400,744,1411,321,422,404,209,47748,30611,23742,1118,290,0.0,4,4,11.3,1362,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,14,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,12.1,9.9,86,98300,670,1411,321,375,402,185,42337,29123,20941,969,290,0.0,4,4,11.0,1377,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,15,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,11.2,9.4,89,98300,528,1411,317,269,315,151,29929,20610,16875,755,290,0.0,4,4,10.6,1391,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,16,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,10.3,8.8,90,98300,330,1411,312,150,248,92,16475,10049,10130,427,290,0.0,4,4,10.3,1406,9,999999999,170,0.0000,0,88,999.000,20.0,1.0 +2016,12,31,17,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.3,93,98300,103,1322,308,34,138,24,3794,0,2690,103,290,0.0,4,4,9.9,1420,9,999999999,170,0.0000,0,88,999.000,3.0,1.0 +2016,12,31,18,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,8.2,92,98300,0,0,308,0,0,0,0,0,0,0,290,0.0,4,4,10.6,1560,9,999999999,160,0.0000,0,88,999.000,3.0,1.0 +2016,12,31,19,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.4,7.8,90,98300,0,0,307,0,0,0,0,0,0,0,290,0.0,4,4,16.1,2286,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,20,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.2,7.8,91,98300,0,0,309,0,0,0,0,0,0,0,290,0.8,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,21,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.5,6.0,84,98300,0,0,299,0,0,0,0,0,0,0,340,2.4,3,3,16.1,956,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,22,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.3,4.7,78,98300,0,0,290,0,0,0,0,0,0,0,330,1.5,1,1,16.1,1189,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,23,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,8.1,3.0,70,98300,0,0,282,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2016,12,31,24,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,6.6,4.5,87,98300,0,0,278,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0